blob: 3788da99180ebbde3fd09e752dcbcf71cf72d02b [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 Moolenaare9c21ae2017-08-03 20:44:48 +0200178static int WaitForChar(long msec, int *interrupted, int ignore_input);
179static int WaitForCharOrMouse(long msec, int *interrupted, int ignore_input);
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 Moolenaar4f44b882017-08-13 20:06:18 +0200368/* Why is NeXT excluded here (and not in os_unixx.h)? */
369#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
370# define NEW_TTY_SYSTEM
371#endif
372
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000373/*
Bram Moolenaard23a8232018-02-10 18:45:26 +0100374 * Write s[len] to the screen (stdout).
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000375 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100377mch_write(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378{
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000379 ignored = (int)write(1, (char *)s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 if (p_wd) /* Unix is too fast, slow down a bit more */
Bram Moolenaar8fdd7212016-03-26 19:41:48 +0100381 RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382}
383
384/*
Bram Moolenaarc2a27c32007-12-01 16:19:33 +0000385 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 * Get a characters from the keyboard.
387 * Return the number of characters that are available.
388 * If wtime == 0 do not wait for characters.
389 * If wtime == n wait a short time for characters.
390 * If wtime == -1 wait forever for characters.
391 */
392 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100393mch_inchar(
394 char_u *buf,
395 int maxlen,
396 long wtime, /* don't use "time", MIPS cannot handle it */
397 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398{
399 int len;
Bram Moolenaarcda77642016-06-04 13:32:35 +0200400 int interrupted = FALSE;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200401 int did_start_blocking = FALSE;
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200402 long wait_time;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200403 long elapsed_time = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +0100404#ifdef ELAPSED_FUNC
405 ELAPSED_TYPE start_tv;
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200406
Bram Moolenaar833eb1d2016-11-24 17:22:50 +0100407 ELAPSED_INIT(start_tv);
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200408#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200410 /* repeat until we got a character or waited long enough */
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200411 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412 {
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200413 /* Check if window changed size while we were busy, perhaps the ":set
414 * columns=99" command was used. */
415 while (do_resize)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 handle_resize();
Bram Moolenaar67c53842010-05-22 18:28:27 +0200417
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200418#ifdef MESSAGE_QUEUE
419 parse_queued_messages();
Bram Moolenaard85f2712017-07-28 21:51:57 +0200420 /* If input was put directly in typeahead buffer bail out here. */
421 if (typebuf_changed(tb_change_cnt))
422 return 0;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200423#endif
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200424 if (wtime < 0 && did_start_blocking)
425 /* blocking and already waited for p_ut */
426 wait_time = -1;
427 else
428 {
429 if (wtime >= 0)
430 wait_time = wtime;
431 else
432 /* going to block after p_ut */
433 wait_time = p_ut;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +0100434#ifdef ELAPSED_FUNC
435 elapsed_time = ELAPSED_FUNC(start_tv);
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200436#endif
437 wait_time -= elapsed_time;
438 if (wait_time < 0)
439 {
440 if (wtime >= 0)
441 /* no character available within "wtime" */
442 return 0;
443
444 if (wtime < 0)
445 {
446 /* no character available within 'updatetime' */
447 did_start_blocking = TRUE;
448#ifdef FEAT_AUTOCMD
449 if (trigger_cursorhold() && maxlen >= 3
450 && !typebuf_changed(tb_change_cnt))
451 {
452 buf[0] = K_SPECIAL;
453 buf[1] = KS_EXTRA;
454 buf[2] = (int)KE_CURSORHOLD;
455 return 3;
456 }
457#endif
458 /*
459 * If there is no character available within 'updatetime'
460 * seconds flush all the swap files to disk.
461 * Also done when interrupted by SIGWINCH.
462 */
463 before_blocking();
464 continue;
465 }
466 }
467 }
468
469#ifdef FEAT_JOB_CHANNEL
470 /* Checking if a job ended requires polling. Do this every 100 msec. */
471 if (has_pending_job() && (wait_time < 0 || wait_time > 100L))
472 wait_time = 100L;
Bram Moolenaar8a8199e2016-11-26 15:13:33 +0100473 /* If there is readahead then parse_queued_messages() timed out and we
474 * should call it again soon. */
475 if ((wait_time < 0 || wait_time > 100L) && channel_any_readahead())
476 wait_time = 10L;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200477#endif
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100478#ifdef FEAT_BEVAL_GUI
Bram Moolenaar59716a22017-03-01 20:32:44 +0100479 if (p_beval && wait_time > 100L)
480 /* The 'balloonexpr' may indirectly invoke a callback while waiting
481 * for a character, need to check often. */
482 wait_time = 100L;
483#endif
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200484
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 /*
Bram Moolenaar48bae372010-07-29 23:12:15 +0200486 * We want to be interrupted by the winch signal
487 * or by an event on the monitored file descriptors.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 */
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200489 if (WaitForChar(wait_time, &interrupted, FALSE))
Bram Moolenaar67c53842010-05-22 18:28:27 +0200490 {
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200491 /* If input was put directly in typeahead buffer bail out here. */
492 if (typebuf_changed(tb_change_cnt))
493 return 0;
494
495 /*
496 * For some terminals we only get one character at a time.
497 * We want the get all available characters, so we could keep on
498 * trying until none is available
499 * For some other terminals this is quite slow, that's why we don't
500 * do it.
501 */
502 len = read_from_input_buf(buf, (long)maxlen);
503 if (len > 0)
504 return len;
505 continue;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200508 /* no character available */
509#if !(defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H))
510 /* estimate the elapsed time */
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100511 elapsed_time += wait_time;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200512#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200514 if (do_resize /* interrupted by SIGWINCH signal */
515#ifdef FEAT_CLIENTSERVER
516 || server_waiting()
517#endif
518#ifdef MESSAGE_QUEUE
519 || interrupted
520#endif
521 || wait_time > 0
Bram Moolenaar1572e302017-03-25 20:16:28 +0100522 || (wtime < 0 && !did_start_blocking))
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200523 continue;
524
525 /* no character available or interrupted */
526 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 }
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200528 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529}
530
531 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100532handle_resize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533{
534 do_resize = FALSE;
535 shell_resized();
536}
537
538/*
Bram Moolenaar40b1b542016-04-20 20:18:23 +0200539 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 */
541 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100542mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543{
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200544 return WaitForChar(0L, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545}
546
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200547#if defined(FEAT_TERMINAL) || defined(PROTO)
548/*
549 * Check for any pending input or messages.
550 */
551 int
552mch_check_messages(void)
553{
554 return WaitForChar(0L, NULL, TRUE);
555}
556#endif
557
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558#if defined(HAVE_TOTAL_MEM) || defined(PROTO)
559# ifdef HAVE_SYS_RESOURCE_H
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000560# include <sys/resource.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561# endif
562# if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
563# include <sys/sysctl.h>
564# endif
565# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
566# include <sys/sysinfo.h>
567# endif
568
569/*
Bram Moolenaar914572a2007-05-01 11:37:47 +0000570 * Return total amount of memory available in Kbyte.
571 * Doesn't change when memory has been allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 long_u
Bram Moolenaar05540972016-01-30 20:31:25 +0100574mch_total_mem(int special UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 long_u mem = 0;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000577 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200579# ifdef HAVE_SYSCTL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 int mib[2], physmem;
581 size_t len;
582
583 /* BSD way of getting the amount of RAM available. */
584 mib[0] = CTL_HW;
585 mib[1] = HW_USERMEM;
586 len = sizeof(physmem);
587 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
588 mem = (long_u)physmem;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200589# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200591# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 if (mem == 0)
593 {
594 struct sysinfo sinfo;
595
596 /* Linux way of getting amount of RAM available */
597 if (sysinfo(&sinfo) == 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000598 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200599# ifdef HAVE_SYSINFO_MEM_UNIT
Bram Moolenaar914572a2007-05-01 11:37:47 +0000600 /* avoid overflow as much as possible */
601 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
602 {
603 sinfo.mem_unit = sinfo.mem_unit >> 1;
604 --shiftright;
605 }
606 mem = sinfo.totalram * sinfo.mem_unit;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200607# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 mem = sinfo.totalram;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200609# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200612# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200614# ifdef HAVE_SYSCONF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 if (mem == 0)
616 {
617 long pagesize, pagecount;
618
619 /* Solaris way of getting amount of RAM available */
620 pagesize = sysconf(_SC_PAGESIZE);
621 pagecount = sysconf(_SC_PHYS_PAGES);
622 if (pagesize > 0 && pagecount > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000623 {
624 /* avoid overflow as much as possible */
625 while (shiftright > 0 && (pagesize & 1) == 0)
626 {
Bram Moolenaar3d27a452007-05-10 17:44:18 +0000627 pagesize = (long_u)pagesize >> 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000628 --shiftright;
629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 mem = (long_u)pagesize * pagecount;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200633# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634
635 /* Return the minimum of the physical memory and the user limit, because
636 * using more than the user limit may cause Vim to be terminated. */
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200637# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638 {
639 struct rlimit rlp;
640
641 if (getrlimit(RLIMIT_DATA, &rlp) == 0
642 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200643# ifdef RLIM_INFINITY
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 && rlp.rlim_cur != RLIM_INFINITY
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200645# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000646 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647 )
Bram Moolenaar914572a2007-05-01 11:37:47 +0000648 {
649 mem = (long_u)rlp.rlim_cur;
650 shiftright = 10;
651 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200653# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654
655 if (mem > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000656 return mem >> shiftright;
657 return (long_u)0x1fffff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658}
659#endif
660
661 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100662mch_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663{
664 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000665#ifdef FEAT_MZSCHEME
666 long total = msec; /* remember original value */
667#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668
669 if (ignoreinput)
670 {
671 /* Go to cooked mode without echo, to allow SIGINT interrupting us
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000672 * here. But we don't want QUIT to kill us (CTRL-\ used in a
673 * shell may produce SIGQUIT). */
674 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 old_tmode = curr_tmode;
676 if (curr_tmode == TMODE_RAW)
677 settmode(TMODE_SLEEP);
678
679 /*
680 * Everybody sleeps in a different way...
681 * Prefer nanosleep(), some versions of usleep() can only sleep up to
682 * one second.
683 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000684#ifdef FEAT_MZSCHEME
685 do
686 {
687 /* if total is large enough, wait by portions in p_mzq */
688 if (total > p_mzq)
689 msec = p_mzq;
690 else
691 msec = total;
692 total -= msec;
693#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694#ifdef HAVE_NANOSLEEP
695 {
696 struct timespec ts;
697
698 ts.tv_sec = msec / 1000;
699 ts.tv_nsec = (msec % 1000) * 1000000;
700 (void)nanosleep(&ts, NULL);
701 }
702#else
703# ifdef HAVE_USLEEP
704 while (msec >= 1000)
705 {
706 usleep((unsigned int)(999 * 1000));
707 msec -= 999;
708 }
709 usleep((unsigned int)(msec * 1000));
710# else
711# ifndef HAVE_SELECT
712 poll(NULL, 0, (int)msec);
713# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 {
715 struct timeval tv;
716
717 tv.tv_sec = msec / 1000;
718 tv.tv_usec = (msec % 1000) * 1000;
719 /*
720 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
721 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
722 */
723 select(0, NULL, NULL, NULL, &tv);
724 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725# endif /* HAVE_SELECT */
726# endif /* HAVE_NANOSLEEP */
727#endif /* HAVE_USLEEP */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000728#ifdef FEAT_MZSCHEME
729 }
730 while (total > 0);
731#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732
733 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000734 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 }
736 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200737 WaitForChar(msec, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738}
739
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000740#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
742# define HAVE_CHECK_STACK_GROWTH
743/*
744 * Support for checking for an almost-out-of-stack-space situation.
745 */
746
747/*
748 * Return a pointer to an item on the stack. Used to find out if the stack
749 * grows up or down.
750 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100751static void check_stack_growth(char *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752static int stack_grows_downwards;
753
754/*
755 * Find out if the stack grows upwards or downwards.
756 * "p" points to a variable on the stack of the caller.
757 */
758 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100759check_stack_growth(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760{
761 int i;
762
763 stack_grows_downwards = (p > (char *)&i);
764}
765#endif
766
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000767#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768static char *stack_limit = NULL;
769
770#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
771# include <pthread.h>
772# include <pthread_np.h>
773#endif
774
775/*
776 * Find out until how var the stack can grow without getting into trouble.
777 * Called when starting up and when switching to the signal stack in
778 * deathtrap().
779 */
780 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100781get_stack_limit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782{
783 struct rlimit rlp;
784 int i;
785 long lim;
786
787 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
788 * limit doesn't fit in a long (rlim_cur might be "long long"). */
789 if (getrlimit(RLIMIT_STACK, &rlp) == 0
790 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
791# ifdef RLIM_INFINITY
792 && rlp.rlim_cur != RLIM_INFINITY
793# endif
794 )
795 {
796 lim = (long)rlp.rlim_cur;
797#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
798 {
799 pthread_attr_t attr;
800 size_t size;
801
802 /* On FreeBSD the initial thread always has a fixed stack size, no
803 * matter what the limits are set to. Normally it's 1 Mbyte. */
804 pthread_attr_init(&attr);
805 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
806 {
807 pthread_attr_getstacksize(&attr, &size);
808 if (lim > (long)size)
809 lim = (long)size;
810 }
811 pthread_attr_destroy(&attr);
812 }
813#endif
814 if (stack_grows_downwards)
815 {
816 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
817 if (stack_limit >= (char *)&i)
818 /* overflow, set to 1/16 of current stack position */
819 stack_limit = (char *)((long)&i / 16L);
820 }
821 else
822 {
823 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
824 if (stack_limit <= (char *)&i)
825 stack_limit = NULL; /* overflow */
826 }
827 }
828}
829
830/*
831 * Return FAIL when running out of stack space.
832 * "p" must point to any variable local to the caller that's on the stack.
833 */
834 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100835mch_stackcheck(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836{
837 if (stack_limit != NULL)
838 {
839 if (stack_grows_downwards)
840 {
841 if (p < stack_limit)
842 return FAIL;
843 }
844 else if (p > stack_limit)
845 return FAIL;
846 }
847 return OK;
848}
849#endif
850
851#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
852/*
853 * Support for using the signal stack.
854 * This helps when we run out of stack space, which causes a SIGSEGV. The
855 * signal handler then must run on another stack, since the normal stack is
856 * completely full.
857 */
858
859#ifndef SIGSTKSZ
860# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
861#endif
862
863# ifdef HAVE_SIGALTSTACK
864static stack_t sigstk; /* for sigaltstack() */
865# else
866static struct sigstack sigstk; /* for sigstack() */
867# endif
868
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100869static void init_signal_stack(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870static char *signal_stack;
871
872 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100873init_signal_stack(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874{
875 if (signal_stack != NULL)
876 {
877# ifdef HAVE_SIGALTSTACK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878# ifdef HAVE_SS_BASE
879 sigstk.ss_base = signal_stack;
880# else
881 sigstk.ss_sp = signal_stack;
882# endif
883 sigstk.ss_size = SIGSTKSZ;
884 sigstk.ss_flags = 0;
885 (void)sigaltstack(&sigstk, NULL);
886# else
887 sigstk.ss_sp = signal_stack;
888 if (stack_grows_downwards)
889 sigstk.ss_sp += SIGSTKSZ - 1;
890 sigstk.ss_onstack = 0;
891 (void)sigstack(&sigstk, NULL);
892# endif
893 }
894}
895#endif
896
897/*
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000898 * We need correct prototypes for a signal function, otherwise mean compilers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 * will barf when the second argument to signal() is ``wrong''.
900 * Let me try it with a few tricky defines from my own osdef.h (jw).
901 */
902#if defined(SIGWINCH)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 static RETSIGTYPE
904sig_winch SIGDEFARG(sigarg)
905{
906 /* this is not required on all systems, but it doesn't hurt anybody */
907 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
908 do_resize = TRUE;
909 SIGRETURN;
910}
911#endif
912
913#if defined(SIGINT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 static RETSIGTYPE
915catch_sigint SIGDEFARG(sigarg)
916{
917 /* this is not required on all systems, but it doesn't hurt anybody */
918 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
919 got_int = TRUE;
920 SIGRETURN;
921}
922#endif
923
924#if defined(SIGPWR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 static RETSIGTYPE
926catch_sigpwr SIGDEFARG(sigarg)
927{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000928 /* this is not required on all systems, but it doesn't hurt anybody */
929 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 /*
931 * I'm not sure we get the SIGPWR signal when the system is really going
932 * down or when the batteries are almost empty. Just preserve the swap
933 * files and don't exit, that can't do any harm.
934 */
935 ml_sync_all(FALSE, FALSE);
936 SIGRETURN;
937}
938#endif
939
940#ifdef SET_SIG_ALARM
941/*
942 * signal function for alarm().
943 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 static RETSIGTYPE
945sig_alarm SIGDEFARG(sigarg)
946{
947 /* doesn't do anything, just to break a system call */
948 sig_alarm_called = TRUE;
949 SIGRETURN;
950}
951#endif
952
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000953#if (defined(HAVE_SETJMP_H) \
954 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
955 || defined(FEAT_LIBCALL))) \
956 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957/*
958 * A simplistic version of setjmp() that only allows one level of using.
959 * Don't call twice before calling mch_endjmp()!.
960 * Usage:
961 * mch_startjmp();
962 * if (SETJMP(lc_jump_env) != 0)
963 * {
964 * mch_didjmp();
965 * EMSG("crash!");
966 * }
967 * else
968 * {
969 * do_the_work;
970 * mch_endjmp();
971 * }
972 * Note: Can't move SETJMP() here, because a function calling setjmp() must
973 * not return before the saved environment is used.
974 * Returns OK for normal return, FAIL when the protected code caused a
975 * problem and LONGJMP() was used.
976 */
977 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100978mch_startjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979{
980#ifdef SIGHASARG
981 lc_signal = 0;
982#endif
983 lc_active = TRUE;
984}
985
986 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100987mch_endjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988{
989 lc_active = FALSE;
990}
991
992 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100993mch_didjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994{
995# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
996 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
997 * otherwise catching the signal only works once. */
998 init_signal_stack();
999# endif
1000}
1001#endif
1002
1003/*
1004 * This function handles deadly signals.
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001005 * It tries to preserve any swap files and exit properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 * (partly from Elvis).
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001007 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in
1008 * a deadlock.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 */
1010 static RETSIGTYPE
1011deathtrap SIGDEFARG(sigarg)
1012{
1013 static int entered = 0; /* count the number of times we got here.
1014 Note: when memory has been corrupted
1015 this may get an arbitrary value! */
1016#ifdef SIGHASARG
1017 int i;
1018#endif
1019
1020#if defined(HAVE_SETJMP_H)
1021 /*
1022 * Catch a crash in protected code.
1023 * Restores the environment saved in lc_jump_env, which looks like
1024 * SETJMP() returns 1.
1025 */
1026 if (lc_active)
1027 {
1028# if defined(SIGHASARG)
1029 lc_signal = sigarg;
1030# endif
1031 lc_active = FALSE; /* don't jump again */
1032 LONGJMP(lc_jump_env, 1);
1033 /* NOTREACHED */
1034 }
1035#endif
1036
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001037#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +00001038# ifdef SIGQUIT
1039 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
1040 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
1041 * pressing CTRL-\, but we don't want Vim to exit then. */
1042 if (in_mch_delay && sigarg == SIGQUIT)
1043 SIGRETURN;
1044# endif
1045
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001046 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
1047 * here. This avoids that a non-reentrant function is interrupted, e.g.,
1048 * free(). Calling free() again may then cause a crash. */
1049 if (entered == 0
1050 && (0
1051# ifdef SIGHUP
1052 || sigarg == SIGHUP
1053# endif
1054# ifdef SIGQUIT
1055 || sigarg == SIGQUIT
1056# endif
1057# ifdef SIGTERM
1058 || sigarg == SIGTERM
1059# endif
1060# ifdef SIGPWR
1061 || sigarg == SIGPWR
1062# endif
1063# ifdef SIGUSR1
1064 || sigarg == SIGUSR1
1065# endif
1066# ifdef SIGUSR2
1067 || sigarg == SIGUSR2
1068# endif
1069 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001070 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001071 SIGRETURN;
1072#endif
1073
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 /* Remember how often we have been called. */
1075 ++entered;
1076
Bram Moolenaare429e702016-06-10 19:49:14 +02001077#ifdef FEAT_AUTOCMD
1078 /* Executing autocommands is likely to use more stack space than we have
1079 * available in the signal stack. */
1080 block_autocmds();
1081#endif
1082
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083#ifdef FEAT_EVAL
1084 /* Set the v:dying variable. */
1085 set_vim_var_nr(VV_DYING, (long)entered);
1086#endif
1087
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001088#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 /* Since we are now using the signal stack, need to reset the stack
1090 * limit. Otherwise using a regexp will fail. */
1091 get_stack_limit();
1092#endif
1093
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001094#if 0
1095 /* This is for opening gdb the moment Vim crashes.
1096 * You need to manually adjust the file name and Vim executable name.
1097 * Suggested by SungHyun Nam. */
1098 {
1099# define VI_GDB_FILE "/tmp/vimgdb"
1100# define VIM_NAME "/usr/bin/vim"
1101 FILE *fp = fopen(VI_GDB_FILE, "w");
1102 if (fp)
1103 {
1104 fprintf(fp,
1105 "file %s\n"
1106 "attach %d\n"
1107 "set height 1000\n"
1108 "bt full\n"
1109 , VIM_NAME, getpid());
1110 fclose(fp);
1111 system("xterm -e gdb -x "VI_GDB_FILE);
1112 unlink(VI_GDB_FILE);
1113 }
1114 }
1115#endif
1116
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117#ifdef SIGHASARG
1118 /* try to find the name of this signal */
1119 for (i = 0; signal_info[i].sig != -1; i++)
1120 if (sigarg == signal_info[i].sig)
1121 break;
1122 deadly_signal = sigarg;
1123#endif
1124
1125 full_screen = FALSE; /* don't write message to the GUI, it might be
1126 * part of the problem... */
1127 /*
1128 * If something goes wrong after entering here, we may get here again.
1129 * When this happens, give a message and try to exit nicely (resetting the
1130 * terminal mode, etc.)
1131 * When this happens twice, just exit, don't even try to give a message,
1132 * stack may be corrupt or something weird.
1133 * When this still happens again (or memory was corrupted in such a way
1134 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1135 */
1136 if (entered >= 3)
1137 {
1138 reset_signals(); /* don't catch any signals anymore */
1139 may_core_dump();
1140 if (entered >= 4)
1141 _exit(8);
1142 exit(7);
1143 }
1144 if (entered == 2)
1145 {
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001146 /* No translation, it may call malloc(). */
1147 OUT_STR("Vim: Double signal, exiting\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 out_flush();
1149 getout(1);
1150 }
1151
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001152 /* No translation, it may call malloc(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153#ifdef SIGHASARG
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001154 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 signal_info[i].name);
1156#else
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001157 sprintf((char *)IObuff, "Vim: Caught deadly signal\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158#endif
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001159
1160 /* Preserve files and exit. This sets the really_exiting flag to prevent
1161 * calling free(). */
1162 preserve_exit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163
Bram Moolenaare429e702016-06-10 19:49:14 +02001164 /* NOTREACHED */
1165
Bram Moolenaar009b2592004-10-24 19:18:58 +00001166#ifdef NBDEBUG
1167 reset_signals();
1168 may_core_dump();
1169 abort();
1170#endif
1171
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 SIGRETURN;
1173}
1174
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001175#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176/*
1177 * On Solaris with multi-threading, suspending might not work immediately.
1178 * Catch the SIGCONT signal, which will be used as an indication whether the
1179 * suspending has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001180 *
1181 * On Linux, signal is not always handled immediately either.
1182 * See https://bugs.launchpad.net/bugs/291373
1183 *
Bram Moolenaarb292a2a2011-02-09 18:47:40 +01001184 * volatile because it is used in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001186static volatile int sigcont_received;
Bram Moolenaard99df422016-01-29 23:20:40 +01001187static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188
1189/*
1190 * signal handler for SIGCONT
1191 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 static RETSIGTYPE
1193sigcont_handler SIGDEFARG(sigarg)
1194{
1195 sigcont_received = TRUE;
1196 SIGRETURN;
1197}
1198#endif
1199
Bram Moolenaar62b42182010-09-21 22:09:37 +02001200# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001201static void loose_clipboard(void);
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001202# ifdef USE_SYSTEM
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001203static void save_clipboard(void);
1204static void restore_clipboard(void);
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001205
1206static void *clip_star_save = NULL;
1207static void *clip_plus_save = NULL;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001208# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001209
1210/*
1211 * Called when Vim is going to sleep or execute a shell command.
1212 * We can't respond to requests for the X selections. Lose them, otherwise
1213 * other applications will hang. But first copy the text to cut buffer 0.
1214 */
1215 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001216loose_clipboard(void)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001217{
1218 if (clip_star.owned || clip_plus.owned)
1219 {
1220 x11_export_final_selection();
1221 if (clip_star.owned)
1222 clip_lose_selection(&clip_star);
1223 if (clip_plus.owned)
1224 clip_lose_selection(&clip_plus);
1225 if (x11_display != NULL)
1226 XFlush(x11_display);
1227 }
1228}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001229
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001230# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001231/*
1232 * Save clipboard text to restore later.
1233 */
1234 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001235save_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001236{
1237 if (clip_star.owned)
1238 clip_star_save = get_register('*', TRUE);
1239 if (clip_plus.owned)
1240 clip_plus_save = get_register('+', TRUE);
1241}
1242
1243/*
1244 * Restore clipboard text if no one own the X selection.
1245 */
1246 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001247restore_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001248{
1249 if (clip_star_save != NULL)
1250 {
1251 if (!clip_gen_owner_exists(&clip_star))
1252 put_register('*', clip_star_save);
1253 else
1254 free_register(clip_star_save);
1255 clip_star_save = NULL;
1256 }
1257 if (clip_plus_save != NULL)
1258 {
1259 if (!clip_gen_owner_exists(&clip_plus))
1260 put_register('+', clip_plus_save);
1261 else
1262 free_register(clip_plus_save);
1263 clip_plus_save = NULL;
1264 }
1265}
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001266# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001267#endif
1268
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269/*
1270 * If the machine has job control, use it to suspend the program,
1271 * otherwise fake it by starting a new shell.
1272 */
1273 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001274mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275{
1276 /* BeOS does have SIGTSTP, but it doesn't work. */
1277#if defined(SIGTSTP) && !defined(__BEOS__)
1278 out_flush(); /* needed to make cursor visible on some systems */
1279 settmode(TMODE_COOK);
1280 out_flush(); /* needed to disable mouse on some systems */
1281
1282# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001283 loose_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284# endif
1285
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001286# if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 sigcont_received = FALSE;
1288# endif
1289 kill(0, SIGTSTP); /* send ourselves a STOP signal */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001290# if defined(_REENTRANT) && defined(SIGCONT)
1291 /*
1292 * Wait for the SIGCONT signal to be handled. It generally happens
1293 * immediately, but somehow not all the time. Do not call pause()
1294 * because there would be race condition which would hang Vim if
1295 * signal happened in between the test of sigcont_received and the
1296 * call to pause(). If signal is not yet received, call sleep(0)
1297 * to just yield CPU. Signal should then be received. If somehow
1298 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1299 * further if signal is not received after 1+2+3+4 ms (not expected
1300 * to happen).
1301 */
1302 {
Bram Moolenaar262735e2009-07-14 10:20:22 +00001303 long wait_time;
1304 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001305 /* Loop is not entered most of the time */
Bram Moolenaar262735e2009-07-14 10:20:22 +00001306 mch_delay(wait_time, FALSE);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001307 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308# endif
1309
1310# ifdef FEAT_TITLE
1311 /*
1312 * Set oldtitle to NULL, so the current title is obtained again.
1313 */
Bram Moolenaard23a8232018-02-10 18:45:26 +01001314 VIM_CLEAR(oldtitle);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001315# endif
1316 settmode(TMODE_RAW);
1317 need_check_timestamps = TRUE;
1318 did_check_timestamps = FALSE;
1319#else
1320 suspend_shell();
1321#endif
1322}
1323
1324 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001325mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326{
1327 Columns = 80;
1328 Rows = 24;
1329
1330 out_flush();
1331 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001332
Bram Moolenaar56718732006-03-15 22:53:57 +00001333#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001334 mac_conv_init();
1335#endif
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001336#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
1337 win_clip_init();
1338#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001339}
1340
1341 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001342set_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343{
1344#if defined(SIGWINCH)
1345 /*
1346 * WINDOW CHANGE signal is handled with sig_winch().
1347 */
1348 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1349#endif
1350
1351 /*
1352 * We want the STOP signal to work, to make mch_suspend() work.
1353 * For "rvim" the STOP signal is ignored.
1354 */
1355#ifdef SIGTSTP
1356 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1357#endif
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001358#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 signal(SIGCONT, sigcont_handler);
1360#endif
1361
1362 /*
1363 * We want to ignore breaking of PIPEs.
1364 */
1365#ifdef SIGPIPE
1366 signal(SIGPIPE, SIG_IGN);
1367#endif
1368
Bram Moolenaar071d4272004-06-13 20:20:40 +00001369#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001370 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371#endif
1372
1373 /*
1374 * Ignore alarm signals (Perl's alarm() generates it).
1375 */
1376#ifdef SIGALRM
1377 signal(SIGALRM, SIG_IGN);
1378#endif
1379
1380 /*
1381 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1382 * work will be lost.
1383 */
1384#ifdef SIGPWR
1385 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1386#endif
1387
1388 /*
1389 * Arrange for other signals to gracefully shutdown Vim.
1390 */
1391 catch_signals(deathtrap, SIG_ERR);
1392
1393#if defined(FEAT_GUI) && defined(SIGHUP)
1394 /*
1395 * When the GUI is running, ignore the hangup signal.
1396 */
1397 if (gui.in_use)
1398 signal(SIGHUP, SIG_IGN);
1399#endif
1400}
1401
Bram Moolenaardf177f62005-02-22 08:39:57 +00001402#if defined(SIGINT) || defined(PROTO)
1403/*
1404 * Catch CTRL-C (only works while in Cooked mode).
1405 */
1406 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001407catch_int_signal(void)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001408{
1409 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1410}
1411#endif
1412
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001414reset_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415{
1416 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001417#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001418 /* SIGCONT isn't in the list, because its default action is ignore */
1419 signal(SIGCONT, SIG_DFL);
1420#endif
1421}
1422
1423 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001424catch_signals(
1425 RETSIGTYPE (*func_deadly)(),
1426 RETSIGTYPE (*func_other)())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427{
1428 int i;
1429
1430 for (i = 0; signal_info[i].sig != -1; i++)
1431 if (signal_info[i].deadly)
1432 {
1433#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1434 struct sigaction sa;
1435
1436 /* Setup to use the alternate stack for the signal function. */
1437 sa.sa_handler = func_deadly;
1438 sigemptyset(&sa.sa_mask);
1439# if defined(__linux__) && defined(_REENTRANT)
1440 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1441 * thread handling in combination with using the alternate stack:
1442 * pthread library functions try to use the stack pointer to
1443 * identify the current thread, causing a SEGV signal, which
1444 * recursively calls deathtrap() and hangs. */
1445 sa.sa_flags = 0;
1446# else
1447 sa.sa_flags = SA_ONSTACK;
1448# endif
1449 sigaction(signal_info[i].sig, &sa, NULL);
1450#else
1451# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1452 struct sigvec sv;
1453
1454 /* Setup to use the alternate stack for the signal function. */
1455 sv.sv_handler = func_deadly;
1456 sv.sv_mask = 0;
1457 sv.sv_flags = SV_ONSTACK;
1458 sigvec(signal_info[i].sig, &sv, NULL);
1459# else
1460 signal(signal_info[i].sig, func_deadly);
1461# endif
1462#endif
1463 }
1464 else if (func_other != SIG_ERR)
1465 signal(signal_info[i].sig, func_other);
1466}
1467
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02001468#ifdef HAVE_SIGPROCMASK
1469 static void
1470block_signals(sigset_t *set)
1471{
1472 sigset_t newset;
1473 int i;
1474
1475 sigemptyset(&newset);
1476
1477 for (i = 0; signal_info[i].sig != -1; i++)
1478 sigaddset(&newset, signal_info[i].sig);
1479
1480# if defined(_REENTRANT) && defined(SIGCONT)
1481 /* SIGCONT isn't in the list, because its default action is ignore */
1482 sigaddset(&newset, SIGCONT);
1483# endif
1484
1485 sigprocmask(SIG_BLOCK, &newset, set);
1486}
1487
1488 static void
1489unblock_signals(sigset_t *set)
1490{
1491 sigprocmask(SIG_SETMASK, set, NULL);
1492}
1493#endif
1494
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001496 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001497 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1498 * return TRUE
1499 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1500 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
Bram Moolenaar67c53842010-05-22 18:28:27 +02001501 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001502 * Returns TRUE when Vim should exit.
1503 */
1504 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001505vim_handle_signal(int sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001506{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001507 static int got_signal = 0;
1508 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001509
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001510 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001511 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001512 case SIGNAL_BLOCK: blocked = TRUE;
1513 break;
1514
1515 case SIGNAL_UNBLOCK: blocked = FALSE;
1516 if (got_signal != 0)
1517 {
1518 kill(getpid(), got_signal);
1519 got_signal = 0;
1520 }
1521 break;
1522
1523 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001524 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001525 got_signal = sig;
1526#ifdef SIGPWR
1527 if (sig != SIGPWR)
1528#endif
1529 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001530 break;
1531 }
1532 return FALSE;
1533}
1534
1535/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536 * Check_win checks whether we have an interactive stdout.
1537 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001538 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001539mch_check_win(int argc UNUSED, char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541 if (isatty(1))
1542 return OK;
1543 return FAIL;
1544}
1545
1546/*
1547 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1548 */
1549 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001550mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551{
1552 if (isatty(read_cmd_fd))
1553 return TRUE;
1554 return FALSE;
1555}
1556
1557#ifdef FEAT_X11
1558
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001559# if defined(ELAPSED_TIMEVAL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1561
Bram Moolenaar071d4272004-06-13 20:20:40 +00001562/*
1563 * Give a message about the elapsed time for opening the X window.
1564 */
1565 static void
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001566xopen_message(long elapsed_msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001567{
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001568 smsg((char_u *)_("Opening the X display took %ld msec"), elapsed_msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001569}
1570# endif
1571#endif
1572
1573#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1574/*
1575 * A few functions shared by X11 title and clipboard code.
1576 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001577static int x_error_handler(Display *dpy, XErrorEvent *error_event);
1578static int x_error_check(Display *dpy, XErrorEvent *error_event);
1579static int x_connect_to_server(void);
1580static int test_x11_window(Display *dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581
1582static int got_x_error = FALSE;
1583
1584/*
1585 * X Error handler, otherwise X just exits! (very rude) -- webb
1586 */
1587 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001588x_error_handler(Display *dpy, XErrorEvent *error_event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001589{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001590 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 STRCAT(IObuff, _("\nVim: Got X error\n"));
1592
1593 /* We cannot print a message and continue, because no X calls are allowed
1594 * here (causes my system to hang). Silently continuing might be an
1595 * alternative... */
1596 preserve_exit(); /* preserve files and exit */
1597
1598 return 0; /* NOTREACHED */
1599}
1600
1601/*
1602 * Another X Error handler, just used to check for errors.
1603 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001605x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606{
1607 got_x_error = TRUE;
1608 return 0;
1609}
1610
1611#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1612# if defined(HAVE_SETJMP_H)
1613/*
1614 * An X IO Error handler, used to catch error while opening the display.
1615 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001616static int x_IOerror_check(Display *dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001619x_IOerror_check(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620{
1621 /* This function should not return, it causes exit(). Longjump instead. */
1622 LONGJMP(lc_jump_env, 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02001623# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001624 return 0; /* avoid the compiler complains about missing return value */
1625# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626}
1627# endif
1628
1629/*
1630 * An X IO Error handler, used to catch terminal errors.
1631 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001632static int x_IOerror_handler(Display *dpy);
1633static void may_restore_clipboard(void);
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001634static int xterm_dpy_was_reset = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001635
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001637x_IOerror_handler(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638{
1639 xterm_dpy = NULL;
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001640 xterm_dpy_was_reset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 x11_window = 0;
1642 x11_display = NULL;
1643 xterm_Shell = (Widget)0;
1644
1645 /* This function should not return, it causes exit(). Longjump instead. */
1646 LONGJMP(x_jump_env, 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02001647# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001648 return 0; /* avoid the compiler complains about missing return value */
1649# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650}
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001651
1652/*
1653 * If the X11 connection was lost try to restore it.
1654 * Helps when the X11 server was stopped and restarted while Vim was inactive
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01001655 * (e.g. through tmux).
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001656 */
1657 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001658may_restore_clipboard(void)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001659{
1660 if (xterm_dpy_was_reset)
1661 {
1662 xterm_dpy_was_reset = FALSE;
Bram Moolenaar527a6782014-12-17 17:59:31 +01001663
1664# ifndef LESSTIF_VERSION
1665 /* This has been reported to avoid Vim getting stuck. */
1666 if (app_context != (XtAppContext)NULL)
1667 {
1668 XtDestroyApplicationContext(app_context);
1669 app_context = (XtAppContext)NULL;
1670 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
1671 }
1672# endif
1673
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001674 setup_term_clip();
1675 get_x11_title(FALSE);
1676 }
1677}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678#endif
1679
1680/*
1681 * Return TRUE when connection to the X server is desired.
1682 */
1683 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001684x_connect_to_server(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686#if defined(FEAT_CLIENTSERVER)
1687 if (x_force_connect)
1688 return TRUE;
1689#endif
1690 if (x_no_connect)
1691 return FALSE;
1692
1693 /* Check for a match with "exclude:" from 'clipboard'. */
1694 if (clip_exclude_prog != NULL)
1695 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01001696 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 return FALSE;
1698 }
1699 return TRUE;
1700}
1701
1702/*
1703 * Test if "dpy" and x11_window are valid by getting the window title.
1704 * I don't actually want it yet, so there may be a simpler call to use, but
1705 * this will cause the error handler x_error_check() to be called if anything
1706 * is wrong, such as the window pointer being invalid (as can happen when the
1707 * user changes his DISPLAY, but not his WINDOWID) -- webb
1708 */
1709 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001710test_x11_window(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711{
1712 int (*old_handler)();
1713 XTextProperty text_prop;
1714
1715 old_handler = XSetErrorHandler(x_error_check);
1716 got_x_error = FALSE;
1717 if (XGetWMName(dpy, x11_window, &text_prop))
1718 XFree((void *)text_prop.value);
1719 XSync(dpy, False);
1720 (void)XSetErrorHandler(old_handler);
1721
1722 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001723 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724
1725 return (got_x_error ? FAIL : OK);
1726}
1727#endif
1728
1729#ifdef FEAT_TITLE
1730
1731#ifdef FEAT_X11
1732
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001733static int get_x11_thing(int get_title, int test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734
1735/*
1736 * try to get x11 window and display
1737 *
1738 * return FAIL for failure, OK otherwise
1739 */
1740 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001741get_x11_windis(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742{
1743 char *winid;
1744 static int result = -1;
1745#define XD_NONE 0 /* x11_display not set here */
1746#define XD_HERE 1 /* x11_display opened here */
1747#define XD_GUI 2 /* x11_display used from gui.dpy */
1748#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1749 static int x11_display_from = XD_NONE;
1750 static int did_set_error_handler = FALSE;
1751
1752 if (!did_set_error_handler)
1753 {
1754 /* X just exits if it finds an error otherwise! */
1755 (void)XSetErrorHandler(x_error_handler);
1756 did_set_error_handler = TRUE;
1757 }
1758
Bram Moolenaar9372a112005-12-06 19:59:18 +00001759#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001760 if (gui.in_use)
1761 {
1762 /*
1763 * If the X11 display was opened here before, for the window where Vim
1764 * was started, close that one now to avoid a memory leak.
1765 */
1766 if (x11_display_from == XD_HERE && x11_display != NULL)
1767 {
1768 XCloseDisplay(x11_display);
1769 x11_display_from = XD_NONE;
1770 }
1771 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1772 {
1773 x11_display_from = XD_GUI;
1774 return OK;
1775 }
1776 x11_display = NULL;
1777 return FAIL;
1778 }
1779 else if (x11_display_from == XD_GUI)
1780 {
1781 /* GUI must have stopped somehow, clear x11_display */
1782 x11_window = 0;
1783 x11_display = NULL;
1784 x11_display_from = XD_NONE;
1785 }
1786#endif
1787
1788 /* When started with the "-X" argument, don't try connecting. */
1789 if (!x_connect_to_server())
1790 return FAIL;
1791
1792 /*
1793 * If WINDOWID not set, should try another method to find out
1794 * what the current window number is. The only code I know for
1795 * this is very complicated.
1796 * We assume that zero is invalid for WINDOWID.
1797 */
1798 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1799 x11_window = (Window)atol(winid);
1800
1801#ifdef FEAT_XCLIPBOARD
1802 if (xterm_dpy != NULL && x11_window != 0)
1803 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001804 /* We may have checked it already, but Gnome terminal can move us to
1805 * another window, so we need to check every time. */
1806 if (x11_display_from != XD_XTERM)
1807 {
1808 /*
1809 * If the X11 display was opened here before, for the window where
1810 * Vim was started, close that one now to avoid a memory leak.
1811 */
1812 if (x11_display_from == XD_HERE && x11_display != NULL)
1813 XCloseDisplay(x11_display);
1814 x11_display = xterm_dpy;
1815 x11_display_from = XD_XTERM;
1816 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001817 if (test_x11_window(x11_display) == FAIL)
1818 {
1819 /* probably bad $WINDOWID */
1820 x11_window = 0;
1821 x11_display = NULL;
1822 x11_display_from = XD_NONE;
1823 return FAIL;
1824 }
1825 return OK;
1826 }
1827#endif
1828
1829 if (x11_window == 0 || x11_display == NULL)
1830 result = -1;
1831
1832 if (result != -1) /* Have already been here and set this */
1833 return result; /* Don't do all these X calls again */
1834
1835 if (x11_window != 0 && x11_display == NULL)
1836 {
1837#ifdef SET_SIG_ALARM
1838 RETSIGTYPE (*sig_save)();
1839#endif
1840#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1841 struct timeval start_tv;
1842
1843 if (p_verbose > 0)
1844 gettimeofday(&start_tv, NULL);
1845#endif
1846
1847#ifdef SET_SIG_ALARM
1848 /*
1849 * Opening the Display may hang if the DISPLAY setting is wrong, or
1850 * the network connection is bad. Set an alarm timer to get out.
1851 */
1852 sig_alarm_called = FALSE;
1853 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1854 (RETSIGTYPE (*)())sig_alarm);
1855 alarm(2);
1856#endif
1857 x11_display = XOpenDisplay(NULL);
1858
1859#ifdef SET_SIG_ALARM
1860 alarm(0);
1861 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1862 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001863 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864#endif
1865 if (x11_display != NULL)
1866 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001867# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001869 {
1870 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001871 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001872 verbose_leave();
1873 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874# endif
1875 if (test_x11_window(x11_display) == FAIL)
1876 {
1877 /* Maybe window id is bad */
1878 x11_window = 0;
1879 XCloseDisplay(x11_display);
1880 x11_display = NULL;
1881 }
1882 else
1883 x11_display_from = XD_HERE;
1884 }
1885 }
1886 if (x11_window == 0 || x11_display == NULL)
1887 return (result = FAIL);
Bram Moolenaar727c8762010-10-20 19:17:48 +02001888
1889# ifdef FEAT_EVAL
1890 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
1891# endif
1892
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 return (result = OK);
1894}
1895
1896/*
1897 * Determine original x11 Window Title
1898 */
1899 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001900get_x11_title(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001901{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001902 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903}
1904
1905/*
1906 * Determine original x11 Window icon
1907 */
1908 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001909get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910{
1911 int retval = FALSE;
1912
1913 retval = get_x11_thing(FALSE, test_only);
1914
1915 /* could not get old icon, use terminal name */
1916 if (oldicon == NULL && !test_only)
1917 {
1918 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001919 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001921 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 }
1923
1924 return retval;
1925}
1926
1927 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001928get_x11_thing(
1929 int get_title, /* get title string */
1930 int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931{
1932 XTextProperty text_prop;
1933 int retval = FALSE;
1934 Status status;
1935
1936 if (get_x11_windis() == OK)
1937 {
1938 /* Get window/icon name if any */
1939 if (get_title)
1940 status = XGetWMName(x11_display, x11_window, &text_prop);
1941 else
1942 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1943
1944 /*
1945 * If terminal is xterm, then x11_window may be a child window of the
1946 * outer xterm window that actually contains the window/icon name, so
1947 * keep traversing up the tree until a window with a title/icon is
1948 * found.
1949 */
1950 /* Previously this was only done for xterm and alikes. I don't see a
1951 * reason why it would fail for other terminal emulators.
1952 * if (term_is_xterm) */
1953 {
1954 Window root;
1955 Window parent;
1956 Window win = x11_window;
1957 Window *children;
1958 unsigned int num_children;
1959
1960 while (!status || text_prop.value == NULL)
1961 {
1962 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1963 &num_children))
1964 break;
1965 if (children)
1966 XFree((void *)children);
1967 if (parent == root || parent == 0)
1968 break;
1969
1970 win = parent;
1971 if (get_title)
1972 status = XGetWMName(x11_display, win, &text_prop);
1973 else
1974 status = XGetWMIconName(x11_display, win, &text_prop);
1975 }
1976 }
1977 if (status && text_prop.value != NULL)
1978 {
1979 retval = TRUE;
1980 if (!test_only)
1981 {
Bram Moolenaarf82bac32010-07-25 22:30:20 +02001982#if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE)
1983 if (text_prop.encoding == XA_STRING
1984# ifdef FEAT_MBYTE
1985 && !has_mbyte
1986# endif
1987 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 {
1989#endif
1990 if (get_title)
1991 oldtitle = vim_strsave((char_u *)text_prop.value);
1992 else
1993 oldicon = vim_strsave((char_u *)text_prop.value);
Bram Moolenaarf82bac32010-07-25 22:30:20 +02001994#if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001995 }
1996 else
1997 {
1998 char **cl;
1999 Status transform_status;
2000 int n = 0;
2001
2002 transform_status = XmbTextPropertyToTextList(x11_display,
2003 &text_prop,
2004 &cl, &n);
2005 if (transform_status >= Success && n > 0 && cl[0])
2006 {
2007 if (get_title)
2008 oldtitle = vim_strsave((char_u *) cl[0]);
2009 else
2010 oldicon = vim_strsave((char_u *) cl[0]);
2011 XFreeStringList(cl);
2012 }
2013 else
2014 {
2015 if (get_title)
2016 oldtitle = vim_strsave((char_u *)text_prop.value);
2017 else
2018 oldicon = vim_strsave((char_u *)text_prop.value);
2019 }
2020 }
2021#endif
2022 }
2023 XFree((void *)text_prop.value);
2024 }
2025 }
2026 return retval;
2027}
2028
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002029/* Xutf8 functions are not avaialble on older systems. Note that on some
2030 * systems X_HAVE_UTF8_STRING may be defined in a header file but
2031 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for
2032 * that and defines HAVE_XUTF8SETWMPROPERTIES. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002034# if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002035# define USE_UTF8_STRING
2036# endif
2037#endif
2038
2039/*
2040 * Set x11 Window Title
2041 *
2042 * get_x11_windis() must be called before this and have returned OK
2043 */
2044 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002045set_x11_title(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046{
2047 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
2048 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
2049 * supported everywhere and STRING doesn't work for multi-byte titles.
2050 */
2051#ifdef USE_UTF8_STRING
2052 if (enc_utf8)
2053 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
2054 NULL, NULL, 0, NULL, NULL, NULL);
2055 else
2056#endif
2057 {
2058#if XtSpecificationRelease >= 4
2059# ifdef FEAT_XFONTSET
2060 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
2061 NULL, NULL, 0, NULL, NULL, NULL);
2062# else
2063 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002064 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065
2066 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002067 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 XSetWMProperties(x11_display, x11_window, &text_prop,
2069 NULL, NULL, 0, NULL, NULL, NULL);
2070# endif
2071#else
2072 XStoreName(x11_display, x11_window, (char *)title);
2073#endif
2074 }
2075 XFlush(x11_display);
2076}
2077
2078/*
2079 * Set x11 Window icon
2080 *
2081 * get_x11_windis() must be called before this and have returned OK
2082 */
2083 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002084set_x11_icon(char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002085{
2086 /* See above for comments about using X*SetWMProperties(). */
2087#ifdef USE_UTF8_STRING
2088 if (enc_utf8)
2089 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2090 NULL, 0, NULL, NULL, NULL);
2091 else
2092#endif
2093 {
2094#if XtSpecificationRelease >= 4
2095# ifdef FEAT_XFONTSET
2096 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2097 NULL, 0, NULL, NULL, NULL);
2098# else
2099 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002100 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002102 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
2104 NULL, 0, NULL, NULL, NULL);
2105# endif
2106#else
2107 XSetIconName(x11_display, x11_window, (char *)icon);
2108#endif
2109 }
2110 XFlush(x11_display);
2111}
2112
2113#else /* FEAT_X11 */
2114
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002116get_x11_title(int test_only UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117{
2118 return FALSE;
2119}
2120
2121 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002122get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123{
2124 if (!test_only)
2125 {
2126 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002127 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002129 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 }
2131 return FALSE;
2132}
2133
2134#endif /* FEAT_X11 */
2135
2136 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002137mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138{
2139 return get_x11_title(TRUE);
2140}
2141
2142 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002143mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144{
2145 return get_x11_icon(TRUE);
2146}
2147
2148/*
2149 * Set the window title and icon.
2150 */
2151 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002152mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153{
2154 int type = 0;
2155 static int recursive = 0;
2156
2157 if (T_NAME == NULL) /* no terminal name (yet) */
2158 return;
2159 if (title == NULL && icon == NULL) /* nothing to do */
2160 return;
2161
2162 /* When one of the X11 functions causes a deadly signal, we get here again
2163 * recursively. Avoid hanging then (something is probably locked). */
2164 if (recursive)
2165 return;
2166 ++recursive;
2167
2168 /*
2169 * if the window ID and the display is known, we may use X11 calls
2170 */
2171#ifdef FEAT_X11
2172 if (get_x11_windis() == OK)
2173 type = 1;
2174#else
2175# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
2176 if (gui.in_use)
2177 type = 1;
2178# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179#endif
2180
2181 /*
Bram Moolenaarf82bac32010-07-25 22:30:20 +02002182 * Note: if "t_ts" is set, title is set with escape sequence rather
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 * than x11 calls, because the x11 calls don't always work
2184 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 if ((type || *T_TS != NUL) && title != NULL)
2186 {
2187 if (oldtitle == NULL
2188#ifdef FEAT_GUI
2189 && !gui.in_use
2190#endif
2191 ) /* first call but not in GUI, save title */
2192 (void)get_x11_title(FALSE);
2193
2194 if (*T_TS != NUL) /* it's OK if t_fs is empty */
2195 term_settitle(title);
2196#ifdef FEAT_X11
2197 else
2198# ifdef FEAT_GUI_GTK
2199 if (!gui.in_use) /* don't do this if GTK+ is running */
2200# endif
2201 set_x11_title(title); /* x11 */
2202#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002203#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2205 else
2206 gui_mch_settitle(title, icon);
2207#endif
2208 did_set_title = TRUE;
2209 }
2210
2211 if ((type || *T_CIS != NUL) && icon != NULL)
2212 {
2213 if (oldicon == NULL
2214#ifdef FEAT_GUI
2215 && !gui.in_use
2216#endif
2217 ) /* first call, save icon */
2218 get_x11_icon(FALSE);
2219
2220 if (*T_CIS != NUL)
2221 {
2222 out_str(T_CIS); /* set icon start */
2223 out_str_nf(icon);
2224 out_str(T_CIE); /* set icon end */
2225 out_flush();
2226 }
2227#ifdef FEAT_X11
2228 else
2229# ifdef FEAT_GUI_GTK
2230 if (!gui.in_use) /* don't do this if GTK+ is running */
2231# endif
2232 set_x11_icon(icon); /* x11 */
2233#endif
2234 did_set_icon = TRUE;
2235 }
2236 --recursive;
2237}
2238
2239/*
2240 * Restore the window/icon title.
2241 * "which" is one of:
2242 * 1 only restore title
2243 * 2 only restore icon
2244 * 3 restore title and icon
2245 */
2246 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002247mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002248{
2249 /* only restore the title or icon when it has been set */
2250 mch_settitle(((which & 1) && did_set_title) ?
2251 (oldtitle ? oldtitle : p_titleold) : NULL,
2252 ((which & 2) && did_set_icon) ? oldicon : NULL);
2253}
2254
2255#endif /* FEAT_TITLE */
2256
2257/*
2258 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002259 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260 */
2261 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002262vim_is_xterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263{
2264 if (name == NULL)
2265 return FALSE;
2266 return (STRNICMP(name, "xterm", 5) == 0
2267 || STRNICMP(name, "nxterm", 6) == 0
2268 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002269 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002270 || STRNICMP(name, "rxvt", 4) == 0
Bram Moolenaar995e4af2017-09-01 20:24:03 +02002271 || STRNICMP(name, "screen.xterm", 12) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 || STRCMP(name, "builtin_xterm") == 0);
2273}
2274
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002275#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2276/*
2277 * Return TRUE if "name" appears to be that of a terminal
2278 * known to support the xterm-style mouse protocol.
2279 * Relies on term_is_xterm having been set to its correct value.
2280 */
2281 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002282use_xterm_like_mouse(char_u *name)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002283{
2284 return (name != NULL
Bram Moolenaare56132b2016-08-14 18:23:21 +02002285 && (term_is_xterm
2286 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002287 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaare56132b2016-08-14 18:23:21 +02002288 || STRICMP(name, "st") == 0
2289 || STRNICMP(name, "st-", 3) == 0
2290 || STRNICMP(name, "stterm", 6) == 0));
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002291}
2292#endif
2293
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2295/*
2296 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2297 * Return 1 for "xterm".
2298 * Return 2 for "xterm2".
Bram Moolenaarc8427482011-10-20 21:09:35 +02002299 * Return 3 for "urxvt".
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002300 * Return 4 for "sgr".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002301 */
2302 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002303use_xterm_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002304{
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002305 if (ttym_flags == TTYM_SGR)
2306 return 4;
Bram Moolenaarc8427482011-10-20 21:09:35 +02002307 if (ttym_flags == TTYM_URXVT)
2308 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002309 if (ttym_flags == TTYM_XTERM2)
2310 return 2;
2311 if (ttym_flags == TTYM_XTERM)
2312 return 1;
2313 return 0;
2314}
2315#endif
2316
2317 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002318vim_is_iris(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319{
2320 if (name == NULL)
2321 return FALSE;
2322 return (STRNICMP(name, "iris-ansi", 9) == 0
2323 || STRCMP(name, "builtin_iris-ansi") == 0);
2324}
2325
2326 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002327vim_is_vt300(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002328{
2329 if (name == NULL)
2330 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002331 /* catch VT100 - VT5xx */
2332 return ((STRNICMP(name, "vt", 2) == 0
2333 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 || STRCMP(name, "builtin_vt320") == 0);
2335}
2336
2337/*
2338 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2339 * This should include all windowed terminal emulators.
2340 */
2341 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002342vim_is_fastterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002343{
2344 if (name == NULL)
2345 return FALSE;
2346 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2347 return TRUE;
2348 return ( STRNICMP(name, "hpterm", 6) == 0
2349 || STRNICMP(name, "sun-cmd", 7) == 0
2350 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002351 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 || STRNICMP(name, "dtterm", 6) == 0);
2353}
2354
2355/*
2356 * Insert user name in s[len].
2357 * Return OK if a name found.
2358 */
2359 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002360mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361{
2362#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002363 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 return OK;
2365#else
2366 return mch_get_uname(getuid(), s, len);
2367#endif
2368}
2369
2370/*
2371 * Insert user name for "uid" in s[len].
2372 * Return OK if a name found.
2373 */
2374 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002375mch_get_uname(uid_t uid, char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376{
2377#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2378 struct passwd *pw;
2379
2380 if ((pw = getpwuid(uid)) != NULL
2381 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2382 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002383 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 return OK;
2385 }
2386#endif
2387 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2388 return FAIL; /* a number is not a name */
2389}
2390
2391/*
2392 * Insert host name is s[len].
2393 */
2394
2395#ifdef HAVE_SYS_UTSNAME_H
2396 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002397mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398{
2399 struct utsname vutsname;
2400
2401 if (uname(&vutsname) < 0)
2402 *s = NUL;
2403 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002404 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002405}
2406#else /* HAVE_SYS_UTSNAME_H */
2407
2408# ifdef HAVE_SYS_SYSTEMINFO_H
2409# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2410# endif
2411
2412 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002413mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414{
2415# ifdef VAXC
2416 vaxc$gethostname((char *)s, len);
2417# else
2418 gethostname((char *)s, len);
2419# endif
2420 s[len - 1] = NUL; /* make sure it's terminated */
2421}
2422#endif /* HAVE_SYS_UTSNAME_H */
2423
2424/*
2425 * return process ID
2426 */
2427 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002428mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429{
2430 return (long)getpid();
2431}
2432
2433#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002434static char *strerror(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435
2436 static char *
Bram Moolenaar05540972016-01-30 20:31:25 +01002437strerror(int err)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438{
2439 extern int sys_nerr;
2440 extern char *sys_errlist[];
2441 static char er[20];
2442
2443 if (err > 0 && err < sys_nerr)
2444 return (sys_errlist[err]);
2445 sprintf(er, "Error %d", err);
2446 return er;
2447}
2448#endif
2449
2450/*
2451 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2452 * Return OK for success, FAIL for failure.
2453 */
2454 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002455mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456{
2457#if defined(USE_GETCWD)
2458 if (getcwd((char *)buf, len) == NULL)
2459 {
2460 STRCPY(buf, strerror(errno));
2461 return FAIL;
2462 }
2463 return OK;
2464#else
2465 return (getwd((char *)buf) != NULL ? OK : FAIL);
2466#endif
2467}
2468
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002470 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 *
2472 * return FAIL for failure, OK for success
2473 */
2474 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002475mch_FullName(
2476 char_u *fname,
2477 char_u *buf,
2478 int len,
2479 int force) /* also expand when already absolute path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002480{
2481 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002482#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 int fd = -1;
2484 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002485#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 char_u olddir[MAXPATHL];
2487 char_u *p;
2488 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002489#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002490 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2491 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002492#endif
2493
Bram Moolenaar38323e42007-03-06 19:22:53 +00002494#ifdef VMS
2495 fname = vms_fixfilename(fname);
2496#endif
2497
Bram Moolenaara2442432007-04-26 14:26:37 +00002498#ifdef __CYGWIN__
2499 /*
2500 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2501 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002502# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaar06b07342015-12-31 22:26:28 +01002503 /* Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in
2504 * a forward slash. */
2505 cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE,
2506 fname, posix_fname, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002507# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002508 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002509# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002510 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002511#endif
2512
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002513 /* Expand it if forced or not an absolute path.
2514 * Do not do it for "/file", the result is always "/". */
2515 if ((force || !mch_isFullName(fname))
2516 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 {
2518 /*
2519 * If the file name has a path, change to that directory for a moment,
2520 * and then do the getwd() (and get back to where we were).
2521 * This will get the correct path name with "../" things.
2522 */
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002523 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002525#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 /*
2527 * Use fchdir() if possible, it's said to be faster and more
2528 * reliable. But on SunOS 4 it might not work. Check this by
2529 * doing a fchdir() right now.
2530 */
2531 if (!dont_fchdir)
2532 {
2533 fd = open(".", O_RDONLY | O_EXTRA, 0);
2534 if (fd >= 0 && fchdir(fd) < 0)
2535 {
2536 close(fd);
2537 fd = -1;
2538 dont_fchdir = TRUE; /* don't try again */
2539 }
2540 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002541#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542
2543 /* Only change directory when we are sure we can return to where
2544 * we are now. After doing "su" chdir(".") might not work. */
2545 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002546#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002548#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 (mch_dirname(olddir, MAXPATHL) == FAIL
2550 || mch_chdir((char *)olddir) != 0))
2551 {
2552 p = NULL; /* can't get current dir: don't chdir */
2553 retval = FAIL;
2554 }
2555 else
2556 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 /* The directory is copied into buf[], to be able to remove
2558 * the file name without changing it (could be a string in
2559 * read-only memory) */
2560 if (p - fname >= len)
2561 retval = FAIL;
2562 else
2563 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002564 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 if (mch_chdir((char *)buf))
2566 retval = FAIL;
2567 else
2568 fname = p + 1;
2569 *buf = NUL;
2570 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 }
2572 }
2573 if (mch_dirname(buf, len) == FAIL)
2574 {
2575 retval = FAIL;
2576 *buf = NUL;
2577 }
2578 if (p != NULL)
2579 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002580#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 if (fd >= 0)
2582 {
Bram Moolenaar25724922009-07-14 15:38:41 +00002583 if (p_verbose >= 5)
2584 {
2585 verbose_enter();
2586 MSG("fchdir() to previous dir");
2587 verbose_leave();
2588 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 l = fchdir(fd);
2590 close(fd);
2591 }
2592 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002593#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 l = mch_chdir((char *)olddir);
2595 if (l != 0)
2596 EMSG(_(e_prev_dir));
2597 }
2598
2599 l = STRLEN(buf);
Bram Moolenaardac75692012-10-14 04:35:45 +02002600 if (l >= len - 1)
2601 retval = FAIL; /* no space for trailing "/" */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002602#ifndef VMS
Bram Moolenaardac75692012-10-14 04:35:45 +02002603 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604 && STRCMP(fname, ".") != 0)
Bram Moolenaardac75692012-10-14 04:35:45 +02002605 STRCAT(buf, "/");
Bram Moolenaar38323e42007-03-06 19:22:53 +00002606#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002608
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 /* Catch file names which are too long. */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002610 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 return FAIL;
2612
2613 /* Do not append ".", "/dir/." is equal to "/dir". */
2614 if (STRCMP(fname, ".") != 0)
2615 STRCAT(buf, fname);
2616
2617 return OK;
2618}
2619
2620/*
2621 * Return TRUE if "fname" does not depend on the current directory.
2622 */
2623 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002624mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002626#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 return ( fname[0] == '/' || fname[0] == '.' ||
2628 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2629 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2630 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002631#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 return (*fname == '/' || *fname == '~');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633#endif
2634}
2635
Bram Moolenaar24552be2005-12-10 20:17:30 +00002636#if defined(USE_FNAME_CASE) || defined(PROTO)
2637/*
2638 * Set the case of the file name, if it already exists. This will cause the
2639 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002640 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002641 */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002642 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002643fname_case(
2644 char_u *name,
2645 int len UNUSED) /* buffer size, only used when name gets longer */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002646{
2647 struct stat st;
2648 char_u *slash, *tail;
2649 DIR *dirp;
2650 struct dirent *dp;
2651
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002652 if (mch_lstat((char *)name, &st) >= 0)
Bram Moolenaar24552be2005-12-10 20:17:30 +00002653 {
2654 /* Open the directory where the file is located. */
2655 slash = vim_strrchr(name, '/');
2656 if (slash == NULL)
2657 {
2658 dirp = opendir(".");
2659 tail = name;
2660 }
2661 else
2662 {
2663 *slash = NUL;
2664 dirp = opendir((char *)name);
2665 *slash = '/';
2666 tail = slash + 1;
2667 }
2668
2669 if (dirp != NULL)
2670 {
2671 while ((dp = readdir(dirp)) != NULL)
2672 {
2673 /* Only accept names that differ in case and are the same byte
2674 * length. TODO: accept different length name. */
2675 if (STRICMP(tail, dp->d_name) == 0
2676 && STRLEN(tail) == STRLEN(dp->d_name))
2677 {
2678 char_u newname[MAXPATHL + 1];
2679 struct stat st2;
2680
2681 /* Verify the inode is equal. */
2682 vim_strncpy(newname, name, MAXPATHL);
2683 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2684 MAXPATHL - (tail - name));
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002685 if (mch_lstat((char *)newname, &st2) >= 0
Bram Moolenaar24552be2005-12-10 20:17:30 +00002686 && st.st_ino == st2.st_ino
2687 && st.st_dev == st2.st_dev)
2688 {
2689 STRCPY(tail, dp->d_name);
2690 break;
2691 }
2692 }
2693 }
2694
2695 closedir(dirp);
2696 }
2697 }
2698}
2699#endif
2700
Bram Moolenaar071d4272004-06-13 20:20:40 +00002701/*
2702 * Get file permissions for 'name'.
2703 * Returns -1 when it doesn't exist.
2704 */
2705 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002706mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707{
2708 struct stat statb;
2709
2710 /* Keep the #ifdef outside of stat(), it may be a macro. */
2711#ifdef VMS
2712 if (stat((char *)vms_fixfilename(name), &statb))
2713#else
2714 if (stat((char *)name, &statb))
2715#endif
2716 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002717#ifdef __INTERIX
2718 /* The top bit makes the value negative, which means the file doesn't
2719 * exist. Remove the bit, we don't use it. */
2720 return statb.st_mode & ~S_ADDACE;
2721#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002723#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724}
2725
2726/*
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002727 * Set file permission for "name" to "perm".
2728 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002729 */
2730 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002731mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732{
2733 return (chmod((char *)
2734#ifdef VMS
2735 vms_fixfilename(name),
2736#else
2737 name,
2738#endif
2739 (mode_t)perm) == 0 ? OK : FAIL);
2740}
2741
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002742#if defined(HAVE_FCHMOD) || defined(PROTO)
2743/*
2744 * Set file permission for open file "fd" to "perm".
2745 * Return FAIL for failure, OK otherwise.
2746 */
2747 int
2748mch_fsetperm(int fd, long perm)
2749{
2750 return (fchmod(fd, (mode_t)perm) == 0 ? OK : FAIL);
2751}
2752#endif
2753
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754#if defined(HAVE_ACL) || defined(PROTO)
2755# ifdef HAVE_SYS_ACL_H
2756# include <sys/acl.h>
2757# endif
2758# ifdef HAVE_SYS_ACCESS_H
2759# include <sys/access.h>
2760# endif
2761
2762# ifdef HAVE_SOLARIS_ACL
2763typedef struct vim_acl_solaris_T {
2764 int acl_cnt;
2765 aclent_t *acl_entry;
2766} vim_acl_solaris_T;
2767# endif
2768
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002769#if defined(HAVE_SELINUX) || defined(PROTO)
2770/*
2771 * Copy security info from "from_file" to "to_file".
2772 */
2773 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002774mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002775{
2776 if (from_file == NULL)
2777 return;
2778
2779 if (selinux_enabled == -1)
2780 selinux_enabled = is_selinux_enabled();
2781
2782 if (selinux_enabled > 0)
2783 {
2784 security_context_t from_context = NULL;
2785 security_context_t to_context = NULL;
2786
2787 if (getfilecon((char *)from_file, &from_context) < 0)
2788 {
2789 /* If the filesystem doesn't support extended attributes,
2790 the original had no special security context and the
2791 target cannot have one either. */
2792 if (errno == EOPNOTSUPP)
2793 return;
2794
2795 MSG_PUTS(_("\nCould not get security context for "));
2796 msg_outtrans(from_file);
2797 msg_putchar('\n');
2798 return;
2799 }
2800 if (getfilecon((char *)to_file, &to_context) < 0)
2801 {
2802 MSG_PUTS(_("\nCould not get security context for "));
2803 msg_outtrans(to_file);
2804 msg_putchar('\n');
2805 freecon (from_context);
2806 return ;
2807 }
2808 if (strcmp(from_context, to_context) != 0)
2809 {
2810 if (setfilecon((char *)to_file, from_context) < 0)
2811 {
2812 MSG_PUTS(_("\nCould not set security context for "));
2813 msg_outtrans(to_file);
2814 msg_putchar('\n');
2815 }
2816 }
2817 freecon(to_context);
2818 freecon(from_context);
2819 }
2820}
2821#endif /* HAVE_SELINUX */
2822
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002823#if defined(HAVE_SMACK) && !defined(PROTO)
2824/*
2825 * Copy security info from "from_file" to "to_file".
2826 */
2827 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002828mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002829{
Bram Moolenaar62f167f2014-04-23 12:52:40 +02002830 static const char * const smack_copied_attributes[] =
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002831 {
2832 XATTR_NAME_SMACK,
2833 XATTR_NAME_SMACKEXEC,
2834 XATTR_NAME_SMACKMMAP
2835 };
2836
2837 char buffer[SMACK_LABEL_LEN];
2838 const char *name;
2839 int index;
2840 int ret;
2841 ssize_t size;
2842
2843 if (from_file == NULL)
2844 return;
2845
2846 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes)
2847 / sizeof(smack_copied_attributes)[0]) ; index++)
2848 {
2849 /* get the name of the attribute to copy */
2850 name = smack_copied_attributes[index];
2851
2852 /* get the value of the attribute in buffer */
2853 size = getxattr((char*)from_file, name, buffer, sizeof(buffer));
2854 if (size >= 0)
2855 {
2856 /* copy the attribute value of buffer */
2857 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0);
2858 if (ret < 0)
2859 {
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002860 vim_snprintf((char *)IObuff, IOSIZE,
2861 _("Could not set security context %s for %s"),
2862 name, to_file);
2863 msg_outtrans(IObuff);
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002864 msg_putchar('\n');
2865 }
2866 }
2867 else
2868 {
2869 /* what reason of not having the attribute value? */
2870 switch (errno)
2871 {
2872 case ENOTSUP:
2873 /* extended attributes aren't supported or enabled */
2874 /* should a message be echoed? not sure... */
2875 return; /* leave because it isn't usefull to continue */
2876
2877 case ERANGE:
2878 default:
2879 /* no enough size OR unexpected error */
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002880 vim_snprintf((char *)IObuff, IOSIZE,
2881 _("Could not get security context %s for %s. Removing it!"),
2882 name, from_file);
2883 msg_puts(IObuff);
2884 msg_putchar('\n');
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002885 /* FALLTHROUGH to remove the attribute */
2886
2887 case ENODATA:
2888 /* no attribute of this name */
2889 ret = removexattr((char*)to_file, name);
Bram Moolenaar57a728d2014-04-02 23:09:26 +02002890 /* Silently ignore errors, apparently this happens when
2891 * smack is not actually being used. */
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002892 break;
2893 }
2894 }
2895 }
2896}
2897#endif /* HAVE_SMACK */
2898
Bram Moolenaar071d4272004-06-13 20:20:40 +00002899/*
2900 * Return a pointer to the ACL of file "fname" in allocated memory.
2901 * Return NULL if the ACL is not available for whatever reason.
2902 */
2903 vim_acl_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002904mch_get_acl(char_u *fname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905{
2906 vim_acl_T ret = NULL;
2907#ifdef HAVE_POSIX_ACL
2908 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2909#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002910#ifdef HAVE_SOLARIS_ZFS_ACL
2911 acl_t *aclent;
2912
2913 if (acl_get((char *)fname, 0, &aclent) < 0)
2914 return NULL;
2915 ret = (vim_acl_T)aclent;
2916#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917#ifdef HAVE_SOLARIS_ACL
2918 vim_acl_solaris_T *aclent;
2919
2920 aclent = malloc(sizeof(vim_acl_solaris_T));
2921 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2922 {
2923 free(aclent);
2924 return NULL;
2925 }
2926 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2927 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2928 {
2929 free(aclent->acl_entry);
2930 free(aclent);
2931 return NULL;
2932 }
2933 ret = (vim_acl_T)aclent;
2934#else
2935#if defined(HAVE_AIX_ACL)
2936 int aclsize;
2937 struct acl *aclent;
2938
2939 aclsize = sizeof(struct acl);
2940 aclent = malloc(aclsize);
2941 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2942 {
2943 if (errno == ENOSPC)
2944 {
2945 aclsize = aclent->acl_len;
2946 aclent = realloc(aclent, aclsize);
2947 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2948 {
2949 free(aclent);
2950 return NULL;
2951 }
2952 }
2953 else
2954 {
2955 free(aclent);
2956 return NULL;
2957 }
2958 }
2959 ret = (vim_acl_T)aclent;
2960#endif /* HAVE_AIX_ACL */
2961#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002962#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963#endif /* HAVE_POSIX_ACL */
2964 return ret;
2965}
2966
2967/*
2968 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2969 */
2970 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002971mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002972{
2973 if (aclent == NULL)
2974 return;
2975#ifdef HAVE_POSIX_ACL
2976 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2977#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002978#ifdef HAVE_SOLARIS_ZFS_ACL
2979 acl_set((char *)fname, (acl_t *)aclent);
2980#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981#ifdef HAVE_SOLARIS_ACL
2982 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2983 ((vim_acl_solaris_T *)aclent)->acl_entry);
2984#else
2985#ifdef HAVE_AIX_ACL
2986 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2987#endif /* HAVE_AIX_ACL */
2988#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002989#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990#endif /* HAVE_POSIX_ACL */
2991}
2992
2993 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002994mch_free_acl(vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995{
2996 if (aclent == NULL)
2997 return;
2998#ifdef HAVE_POSIX_ACL
2999 acl_free((acl_t)aclent);
3000#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01003001#ifdef HAVE_SOLARIS_ZFS_ACL
3002 acl_free((acl_t *)aclent);
3003#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004#ifdef HAVE_SOLARIS_ACL
3005 free(((vim_acl_solaris_T *)aclent)->acl_entry);
3006 free(aclent);
3007#else
3008#ifdef HAVE_AIX_ACL
3009 free(aclent);
3010#endif /* HAVE_AIX_ACL */
3011#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01003012#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003013#endif /* HAVE_POSIX_ACL */
3014}
3015#endif
3016
3017/*
3018 * Set hidden flag for "name".
3019 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003021mch_hide(char_u *name UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003022{
3023 /* can't hide a file */
3024}
3025
3026/*
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003027 * return TRUE if "name" is a directory or a symlink to a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003028 * return FALSE if "name" is not a directory
3029 * return FALSE for error
3030 */
3031 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003032mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033{
3034 struct stat statb;
3035
3036 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3037 return FALSE;
3038 if (stat((char *)name, &statb))
3039 return FALSE;
3040#ifdef _POSIX_SOURCE
3041 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
3042#else
3043 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
3044#endif
3045}
3046
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003047/*
3048 * return TRUE if "name" is a directory, NOT a symlink to a directory
3049 * return FALSE if "name" is not a directory
3050 * return FALSE for error
3051 */
3052 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003053mch_isrealdir(char_u *name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003054{
3055 struct stat statb;
3056
3057 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3058 return FALSE;
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01003059 if (mch_lstat((char *)name, &statb))
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003060 return FALSE;
3061#ifdef _POSIX_SOURCE
3062 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
3063#else
3064 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
3065#endif
3066}
3067
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003068static int executable_file(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003069
3070/*
3071 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
3072 */
3073 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003074executable_file(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075{
3076 struct stat st;
3077
3078 if (stat((char *)name, &st))
3079 return 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003080#ifdef VMS
3081 /* Like on Unix system file can have executable rights but not necessarily
3082 * be an executable, but on Unix is not a default for an ordianry file to
3083 * have an executable flag - on VMS it is in most cases.
3084 * Therefore, this check does not have any sense - let keep us to the
3085 * conventions instead:
3086 * *.COM and *.EXE files are the executables - the rest are not. This is
3087 * not ideal but better then it was.
3088 */
3089 int vms_executable = 0;
3090 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0)
3091 {
3092 if (strstr(vms_tolower((char*)name),".exe") != NULL
3093 || strstr(vms_tolower((char*)name),".com")!= NULL)
3094 vms_executable = 1;
3095 }
3096 return vms_executable;
3097#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003099#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100}
3101
3102/*
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01003103 * Return TRUE if "name" can be found in $PATH and executed, FALSE if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +01003104 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 * Return -1 if unknown.
3106 */
3107 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003108mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109{
3110 char_u *buf;
3111 char_u *p, *e;
3112 int retval;
3113
Bram Moolenaarb5971142015-03-21 17:32:19 +01003114 /* When "use_path" is false and if it's an absolute or relative path don't
3115 * need to use $PATH. */
3116 if (!use_path || mch_isFullName(name) || (name[0] == '.'
3117 && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))))
Bram Moolenaar206f0112014-03-12 16:51:55 +01003118 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01003119 /* There must be a path separator, files in the current directory
3120 * can't be executed. */
3121 if (gettail(name) != name && executable_file(name))
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003122 {
3123 if (path != NULL)
3124 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003125 if (name[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003126 *path = FullName_save(name, TRUE);
3127 else
3128 *path = vim_strsave(name);
3129 }
3130 return TRUE;
3131 }
3132 return FALSE;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003133 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134
3135 p = (char_u *)getenv("PATH");
3136 if (p == NULL || *p == NUL)
3137 return -1;
3138 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
3139 if (buf == NULL)
3140 return -1;
3141
3142 /*
3143 * Walk through all entries in $PATH to check if "name" exists there and
3144 * is an executable file.
3145 */
3146 for (;;)
3147 {
3148 e = (char_u *)strchr((char *)p, ':');
3149 if (e == NULL)
3150 e = p + STRLEN(p);
3151 if (e - p <= 1) /* empty entry means current dir */
3152 STRCPY(buf, "./");
3153 else
3154 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003155 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 add_pathsep(buf);
3157 }
3158 STRCAT(buf, name);
3159 retval = executable_file(buf);
3160 if (retval == 1)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003161 {
3162 if (path != NULL)
3163 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003164 if (buf[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003165 *path = FullName_save(buf, TRUE);
3166 else
3167 *path = vim_strsave(buf);
3168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 break;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003170 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171
3172 if (*e != ':')
3173 break;
3174 p = e + 1;
3175 }
3176
3177 vim_free(buf);
3178 return retval;
3179}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003180
3181/*
3182 * Check what "name" is:
3183 * NODE_NORMAL: file or directory (or doesn't exist)
3184 * NODE_WRITABLE: writable device, socket, fifo, etc.
3185 * NODE_OTHER: non-writable things
3186 */
3187 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003188mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189{
3190 struct stat st;
3191
3192 if (stat((char *)name, &st))
3193 return NODE_NORMAL;
3194 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
3195 return NODE_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
3197 return NODE_OTHER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 /* Everything else is writable? */
3199 return NODE_WRITABLE;
3200}
3201
3202 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003203mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204{
3205#ifdef HAVE_CHECK_STACK_GROWTH
3206 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003207
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 check_stack_growth((char *)&i);
3209
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003210# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211 get_stack_limit();
3212# endif
3213
3214#endif
3215
3216 /*
3217 * Setup an alternative stack for signals. Helps to catch signals when
3218 * running out of stack space.
3219 * Use of sigaltstack() is preferred, it's more portable.
3220 * Ignore any errors.
3221 */
3222#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00003223 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003224 init_signal_stack();
3225#endif
3226}
3227
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003228#if defined(EXITFREE) || defined(PROTO)
3229 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003230mch_free_mem(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003231{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003232# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
3233 if (clip_star.owned)
3234 clip_lose_selection(&clip_star);
3235 if (clip_plus.owned)
3236 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003237# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00003238# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003239 if (xterm_Shell != (Widget)0)
3240 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00003241# ifndef LESSTIF_VERSION
3242 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003243 if (xterm_dpy != NULL)
3244 XtCloseDisplay(xterm_dpy);
3245 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00003246 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003247 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00003248# ifdef FEAT_X11
3249 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
3250# endif
3251 }
3252# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003253# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003254# if defined(FEAT_X11)
Bram Moolenaare8208012008-06-20 09:59:25 +00003255 if (x11_display != NULL
3256# ifdef FEAT_XCLIPBOARD
3257 && x11_display != xterm_dpy
3258# endif
3259 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003260 XCloseDisplay(x11_display);
3261# endif
3262# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaard23a8232018-02-10 18:45:26 +01003263 VIM_CLEAR(signal_stack);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003264# endif
3265# ifdef FEAT_TITLE
3266 vim_free(oldtitle);
3267 vim_free(oldicon);
3268# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003269}
3270#endif
3271
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003272static void exit_scroll(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273
3274/*
3275 * Output a newline when exiting.
3276 * Make sure the newline goes to the same stream as the text.
3277 */
3278 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003279exit_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003281 if (silent_mode)
3282 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 if (newline_on_exit || msg_didout)
3284 {
3285 if (msg_use_printf())
3286 {
3287 if (info_message)
3288 mch_msg("\n");
3289 else
3290 mch_errmsg("\r\n");
3291 }
3292 else
3293 out_char('\n');
3294 }
3295 else
3296 {
3297 restore_cterm_colors(); /* get original colors back */
3298 msg_clr_eos_force(); /* clear the rest of the display */
3299 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3300 }
3301}
3302
3303 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003304mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003305{
3306 exiting = TRUE;
3307
3308#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3309 x11_export_final_selection();
3310#endif
3311
3312#ifdef FEAT_GUI
3313 if (!gui.in_use)
3314#endif
3315 {
3316 settmode(TMODE_COOK);
3317#ifdef FEAT_TITLE
3318 mch_restore_title(3); /* restore xterm title and icon name */
3319#endif
3320 /*
3321 * When t_ti is not empty but it doesn't cause swapping terminal
3322 * pages, need to output a newline when msg_didout is set. But when
3323 * t_ti does swap pages it should not go to the shell page. Do this
3324 * before stoptermcap().
3325 */
3326 if (swapping_screen() && !newline_on_exit)
3327 exit_scroll();
3328
3329 /* Stop termcap: May need to check for T_CRV response, which
3330 * requires RAW mode. */
3331 stoptermcap();
3332
3333 /*
3334 * A newline is only required after a message in the alternate screen.
3335 * This is set to TRUE by wait_return().
3336 */
3337 if (!swapping_screen() || newline_on_exit)
3338 exit_scroll();
3339
3340 /* Cursor may have been switched off without calling starttermcap()
3341 * when doing "vim -u vimrc" and vimrc contains ":q". */
3342 if (full_screen)
3343 cursor_on();
3344 }
3345 out_flush();
3346 ml_close_all(TRUE); /* remove all memfiles */
3347 may_core_dump();
3348#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003350 gui_exit(r);
3351#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003352
Bram Moolenaar56718732006-03-15 22:53:57 +00003353#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003354 mac_conv_cleanup();
3355#endif
3356
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357#ifdef __QNX__
3358 /* A core dump won't be created if the signal handler
3359 * doesn't return, so we can't call exit() */
3360 if (deadly_signal != 0)
3361 return;
3362#endif
3363
Bram Moolenaar009b2592004-10-24 19:18:58 +00003364#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003365 netbeans_send_disconnect();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003366#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003367
3368#ifdef EXITFREE
3369 free_all_mem();
3370#endif
3371
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 exit(r);
3373}
3374
3375 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003376may_core_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377{
3378 if (deadly_signal != 0)
3379 {
3380 signal(deadly_signal, SIG_DFL);
3381 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3382 }
3383}
3384
3385#ifndef VMS
3386
3387 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003388mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003389{
3390 static int first = TRUE;
3391
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003392#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003393# ifdef HAVE_TERMIOS_H
3394 static struct termios told;
3395 struct termios tnew;
3396# else
3397 static struct termio told;
3398 struct termio tnew;
3399# endif
3400
3401 if (first)
3402 {
3403 first = FALSE;
3404# if defined(HAVE_TERMIOS_H)
3405 tcgetattr(read_cmd_fd, &told);
3406# else
3407 ioctl(read_cmd_fd, TCGETA, &told);
3408# endif
3409 }
3410
3411 tnew = told;
3412 if (tmode == TMODE_RAW)
3413 {
3414 /*
3415 * ~ICRNL enables typing ^V^M
3416 */
3417 tnew.c_iflag &= ~ICRNL;
3418 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3419# if defined(IEXTEN) && !defined(__MINT__)
3420 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3421 /* but it breaks function keys on MINT */
3422# endif
3423 );
3424# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3425 tnew.c_oflag &= ~ONLCR;
3426# endif
3427 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3428 tnew.c_cc[VTIME] = 0; /* don't wait */
3429 }
3430 else if (tmode == TMODE_SLEEP)
Bram Moolenaar40de4562016-07-01 15:03:46 +02003431 {
3432 /* Also reset ICANON here, otherwise on Solaris select() won't see
3433 * typeahead characters. */
3434 tnew.c_lflag &= ~(ICANON | ECHO);
3435 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3436 tnew.c_cc[VTIME] = 0; /* don't wait */
3437 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003438
3439# if defined(HAVE_TERMIOS_H)
3440 {
3441 int n = 10;
3442
3443 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3444 * few times. */
3445 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3446 && errno == EINTR && n > 0)
3447 --n;
3448 }
3449# else
3450 ioctl(read_cmd_fd, TCSETA, &tnew);
3451# endif
3452
3453#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 /*
3455 * for "old" tty systems
3456 */
3457# ifndef TIOCSETN
3458# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3459# endif
3460 static struct sgttyb ttybold;
3461 struct sgttyb ttybnew;
3462
3463 if (first)
3464 {
3465 first = FALSE;
3466 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3467 }
3468
3469 ttybnew = ttybold;
3470 if (tmode == TMODE_RAW)
3471 {
3472 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3473 ttybnew.sg_flags |= RAW;
3474 }
3475 else if (tmode == TMODE_SLEEP)
3476 ttybnew.sg_flags &= ~(ECHO);
3477 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3478#endif
3479 curr_tmode = tmode;
3480}
3481
3482/*
3483 * Try to get the code for "t_kb" from the stty setting
3484 *
3485 * Even if termcap claims a backspace key, the user's setting *should*
3486 * prevail. stty knows more about reality than termcap does, and if
3487 * somebody's usual erase key is DEL (which, for most BSD users, it will
3488 * be), they're going to get really annoyed if their erase key starts
3489 * doing forward deletes for no reason. (Eric Fischer)
3490 */
3491 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003492get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493{
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003494 ttyinfo_T info;
3495 char_u buf[2];
3496 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003497
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003498 if (get_tty_info(read_cmd_fd, &info) == OK)
3499 {
3500 intr_char = info.interrupt;
3501 buf[0] = info.backspace;
3502 buf[1] = NUL;
3503 add_termcode((char_u *)"kb", buf, FALSE);
3504
3505 /* If <BS> and <DEL> are now the same, redefine <DEL>. */
3506 p = find_termcode((char_u *)"kD");
3507 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3508 do_fixdel(NULL);
3509 }
3510}
3511
3512/*
3513 * Obtain the characters that Backspace and Enter produce on "fd".
3514 * Returns OK or FAIL.
3515 */
3516 int
3517get_tty_info(int fd, ttyinfo_T *info)
3518{
3519#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520# ifdef HAVE_TERMIOS_H
3521 struct termios keys;
3522# else
3523 struct termio keys;
3524# endif
3525
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003526 if (
Bram Moolenaar071d4272004-06-13 20:20:40 +00003527# if defined(HAVE_TERMIOS_H)
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003528 tcgetattr(fd, &keys) != -1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529# else
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003530 ioctl(fd, TCGETA, &keys) != -1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531# endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003532 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003534 info->backspace = keys.c_cc[VERASE];
3535 info->interrupt = keys.c_cc[VINTR];
3536 if (keys.c_iflag & ICRNL)
3537 info->enter = NL;
3538 else
3539 info->enter = CAR;
3540 if (keys.c_oflag & ONLCR)
3541 info->nl_does_cr = TRUE;
3542 else
3543 info->nl_does_cr = FALSE;
3544 return OK;
3545 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003546#else
3547 /* for "old" tty systems */
3548 struct sgttyb keys;
3549
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003550 if (ioctl(fd, TIOCGETP, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003552 info->backspace = keys.sg_erase;
3553 info->interrupt = keys.sg_kill;
3554 info->enter = CAR;
3555 info->nl_does_cr = TRUE;
3556 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003557 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558#endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003559 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560}
3561
3562#endif /* VMS */
3563
3564#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003565static int mouse_ison = FALSE;
3566
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567/*
3568 * Set mouse clicks on or off.
3569 */
3570 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003571mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572{
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003573# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003574 static int bevalterm_ison = FALSE;
3575# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576 int xterm_mouse_vers;
3577
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003578 if (on == mouse_ison
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003579# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003580 && p_bevalterm == bevalterm_ison
3581# endif
3582 )
3583 /* return quickly if nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 return;
3585
3586 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003587
3588# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003589 if (ttym_flags == TTYM_URXVT)
3590 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003591 out_str_nf((char_u *)
3592 (on
3593 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3594 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003595 mouse_ison = on;
Bram Moolenaarc8427482011-10-20 21:09:35 +02003596 }
3597# endif
3598
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003599# ifdef FEAT_MOUSE_SGR
3600 if (ttym_flags == TTYM_SGR)
3601 {
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003602 /* SGR mode supports columns above 223 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003603 out_str_nf((char_u *)
3604 (on
3605 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3606 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003607 mouse_ison = on;
3608 }
3609# endif
3610
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003611# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003612 if (bevalterm_ison != (p_bevalterm && on))
3613 {
3614 bevalterm_ison = (p_bevalterm && on);
3615 if (xterm_mouse_vers > 1 && !bevalterm_ison)
3616 /* disable mouse movement events, enabling is below */
3617 out_str_nf((char_u *)
3618 (IF_EB("\033[?1003l", ESC_STR "[?1003l")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003619 }
3620# endif
3621
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 if (xterm_mouse_vers > 0)
3623 {
3624 if (on) /* enable mouse events, use mouse tracking if available */
3625 out_str_nf((char_u *)
3626 (xterm_mouse_vers > 1
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003627 ? (
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003628# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003629 bevalterm_ison
3630 ? IF_EB("\033[?1003h", ESC_STR "[?1003h") :
3631# endif
3632 IF_EB("\033[?1002h", ESC_STR "[?1002h"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3634 else /* disable mouse events, could probably always send the same */
3635 out_str_nf((char_u *)
3636 (xterm_mouse_vers > 1
3637 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3638 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003639 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 }
3641
3642# ifdef FEAT_MOUSE_DEC
3643 else if (ttym_flags == TTYM_DEC)
3644 {
3645 if (on) /* enable mouse events */
3646 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3647 else /* disable mouse events */
3648 out_str_nf((char_u *)"\033['z");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003649 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 }
3651# endif
3652
3653# ifdef FEAT_MOUSE_GPM
3654 else
3655 {
3656 if (on)
3657 {
3658 if (gpm_open())
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003659 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 }
3661 else
3662 {
3663 gpm_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003664 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 }
3666 }
3667# endif
3668
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003669# ifdef FEAT_SYSMOUSE
3670 else
3671 {
3672 if (on)
3673 {
3674 if (sysmouse_open() == OK)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003675 mouse_ison = TRUE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003676 }
3677 else
3678 {
3679 sysmouse_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003680 mouse_ison = FALSE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003681 }
3682 }
3683# endif
3684
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685# ifdef FEAT_MOUSE_JSB
3686 else
3687 {
3688 if (on)
3689 {
3690 /* D - Enable Mouse up/down messages
3691 * L - Enable Left Button Reporting
3692 * M - Enable Middle Button Reporting
3693 * R - Enable Right Button Reporting
3694 * K - Enable SHIFT and CTRL key Reporting
3695 * + - Enable Advanced messaging of mouse moves and up/down messages
3696 * Q - Quiet No Ack
3697 * # - Numeric value of mouse pointer required
3698 * 0 = Multiview 2000 cursor, used as standard
3699 * 1 = Windows Arrow
3700 * 2 = Windows I Beam
3701 * 3 = Windows Hour Glass
3702 * 4 = Windows Cross Hair
3703 * 5 = Windows UP Arrow
3704 */
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003705# ifdef JSBTERM_MOUSE_NONADVANCED
3706 /* Disables full feedback of pointer movements */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3708 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003709# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3711 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003712# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003713 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714 }
3715 else
3716 {
3717 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3718 ESC_STR "[0~ZwQ" ESC_STR "\\"));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003719 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 }
3721 }
3722# endif
3723# ifdef FEAT_MOUSE_PTERM
3724 else
3725 {
3726 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3727 if (on)
3728 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3729 else
3730 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003731 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 }
3733# endif
3734}
3735
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003736#if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003737/*
3738 * Called when 'balloonevalterm' changed.
3739 */
3740 void
3741mch_bevalterm_changed(void)
3742{
3743 mch_setmouse(mouse_ison);
3744}
3745#endif
3746
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747/*
3748 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3749 */
3750 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003751check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752{
3753# ifdef FEAT_MOUSE_XTERM
3754 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003755# ifdef FEAT_MOUSE_URXVT
3756 && use_xterm_mouse() != 3
3757# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758# ifdef FEAT_GUI
3759 && !gui.in_use
3760# endif
3761 )
3762 {
3763 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003764 ? IF_EB("\233M", CSI_STR "M")
3765 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 if (*p_mouse != NUL)
3767 {
3768 /* force mouse off and maybe on to send possibly new mouse
3769 * activation sequence to the xterm, with(out) drag tracing. */
3770 mch_setmouse(FALSE);
3771 setmouse();
3772 }
3773 }
3774 else
3775 del_mouse_termcode(KS_MOUSE);
3776# endif
3777
3778# ifdef FEAT_MOUSE_GPM
3779 if (!use_xterm_mouse()
3780# ifdef FEAT_GUI
3781 && !gui.in_use
3782# endif
3783 )
3784 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3785# endif
3786
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003787# ifdef FEAT_SYSMOUSE
3788 if (!use_xterm_mouse()
3789# ifdef FEAT_GUI
3790 && !gui.in_use
3791# endif
3792 )
3793 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3794# endif
3795
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796# ifdef FEAT_MOUSE_JSB
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003797 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 if (!use_xterm_mouse()
3799# ifdef FEAT_GUI
3800 && !gui.in_use
3801# endif
3802 )
3803 set_mouse_termcode(KS_JSBTERM_MOUSE,
3804 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3805 else
3806 del_mouse_termcode(KS_JSBTERM_MOUSE);
3807# endif
3808
3809# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003810 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 * define it in the GUI or when using an xterm. */
3812 if (!use_xterm_mouse()
3813# ifdef FEAT_GUI
3814 && !gui.in_use
3815# endif
3816 )
3817 set_mouse_termcode(KS_NETTERM_MOUSE,
3818 (char_u *)IF_EB("\033}", ESC_STR "}"));
3819 else
3820 del_mouse_termcode(KS_NETTERM_MOUSE);
3821# endif
3822
3823# ifdef FEAT_MOUSE_DEC
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003824 /* Conflicts with xterm mouse: "\033[" and "\033[M" */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003825 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826# ifdef FEAT_GUI
3827 && !gui.in_use
3828# endif
3829 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003830 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3831 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 else
3833 del_mouse_termcode(KS_DEC_MOUSE);
3834# endif
3835# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003836 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003837 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838# ifdef FEAT_GUI
3839 && !gui.in_use
3840# endif
3841 )
3842 set_mouse_termcode(KS_PTERM_MOUSE,
3843 (char_u *) IF_EB("\033[", ESC_STR "["));
3844 else
3845 del_mouse_termcode(KS_PTERM_MOUSE);
3846# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003847# ifdef FEAT_MOUSE_URXVT
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003848 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003849# ifdef FEAT_GUI
3850 && !gui.in_use
3851# endif
3852 )
3853 {
3854 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003855 ? IF_EB("\233*M", CSI_STR "*M")
3856 : IF_EB("\033[*M", ESC_STR "[*M")));
Bram Moolenaarc8427482011-10-20 21:09:35 +02003857
3858 if (*p_mouse != NUL)
3859 {
3860 mch_setmouse(FALSE);
3861 setmouse();
3862 }
3863 }
3864 else
3865 del_mouse_termcode(KS_URXVT_MOUSE);
3866# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003867# ifdef FEAT_MOUSE_SGR
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003868 if (use_xterm_mouse() == 4
3869# ifdef FEAT_GUI
3870 && !gui.in_use
3871# endif
3872 )
3873 {
3874 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003875 ? IF_EB("\233<*M", CSI_STR "<*M")
3876 : IF_EB("\033[<*M", ESC_STR "[<*M")));
3877
3878 set_mouse_termcode(KS_SGR_MOUSE_RELEASE, (char_u *)(term_is_8bit(T_NAME)
3879 ? IF_EB("\233<*m", CSI_STR "<*m")
3880 : IF_EB("\033[<*m", ESC_STR "[<*m")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003881
3882 if (*p_mouse != NUL)
3883 {
3884 mch_setmouse(FALSE);
3885 setmouse();
3886 }
3887 }
3888 else
Bram Moolenaara529ce02017-06-22 22:37:57 +02003889 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003890 del_mouse_termcode(KS_SGR_MOUSE);
Bram Moolenaara529ce02017-06-22 22:37:57 +02003891 del_mouse_termcode(KS_SGR_MOUSE_RELEASE);
3892 }
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003893# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894}
3895#endif
3896
3897/*
3898 * set screen mode, always fails.
3899 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003901mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902{
3903 EMSG(_(e_screenmode));
3904 return FAIL;
3905}
3906
3907#ifndef VMS
3908
3909/*
3910 * Try to get the current window size:
3911 * 1. with an ioctl(), most accurate method
3912 * 2. from the environment variables LINES and COLUMNS
3913 * 3. from the termcap
3914 * 4. keep using the old values
3915 * Return OK when size could be determined, FAIL otherwise.
3916 */
3917 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003918mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919{
3920 long rows = 0;
3921 long columns = 0;
3922 char_u *p;
3923
3924 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 * 1. try using an ioctl. It is the most accurate method.
3926 *
3927 * Try using TIOCGWINSZ first, some systems that have it also define
3928 * TIOCGSIZE but don't have a struct ttysize.
3929 */
3930# ifdef TIOCGWINSZ
3931 {
3932 struct winsize ws;
3933 int fd = 1;
3934
3935 /* When stdout is not a tty, use stdin for the ioctl(). */
3936 if (!isatty(fd) && isatty(read_cmd_fd))
3937 fd = read_cmd_fd;
3938 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3939 {
3940 columns = ws.ws_col;
3941 rows = ws.ws_row;
3942 }
3943 }
3944# else /* TIOCGWINSZ */
3945# ifdef TIOCGSIZE
3946 {
3947 struct ttysize ts;
3948 int fd = 1;
3949
3950 /* When stdout is not a tty, use stdin for the ioctl(). */
3951 if (!isatty(fd) && isatty(read_cmd_fd))
3952 fd = read_cmd_fd;
3953 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3954 {
3955 columns = ts.ts_cols;
3956 rows = ts.ts_lines;
3957 }
3958 }
3959# endif /* TIOCGSIZE */
3960# endif /* TIOCGWINSZ */
3961
3962 /*
3963 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003964 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3965 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003967 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 {
3969 if ((p = (char_u *)getenv("LINES")))
3970 rows = atoi((char *)p);
3971 if ((p = (char_u *)getenv("COLUMNS")))
3972 columns = atoi((char *)p);
3973 }
3974
3975#ifdef HAVE_TGETENT
3976 /*
3977 * 3. try reading "co" and "li" entries from termcap
3978 */
3979 if (columns == 0 || rows == 0)
3980 getlinecol(&columns, &rows);
3981#endif
3982
3983 /*
3984 * 4. If everything fails, use the old values
3985 */
3986 if (columns <= 0 || rows <= 0)
3987 return FAIL;
3988
3989 Rows = rows;
3990 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02003991 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 return OK;
3993}
3994
Bram Moolenaarb13501f2017-07-22 22:32:56 +02003995#if defined(FEAT_TERMINAL) || defined(PROTO)
3996/*
3997 * Report the windows size "rows" and "cols" to tty "fd".
3998 */
3999 int
4000mch_report_winsize(int fd, int rows, int cols)
4001{
4002# ifdef TIOCSWINSZ
4003 struct winsize ws;
4004
4005 ws.ws_col = cols;
4006 ws.ws_row = rows;
4007 ws.ws_xpixel = cols * 5;
4008 ws.ws_ypixel = rows * 10;
4009 if (ioctl(fd, TIOCSWINSZ, &ws) == 0)
4010 {
4011 ch_log(NULL, "ioctl(TIOCSWINSZ) success");
4012 return OK;
4013 }
4014 ch_log(NULL, "ioctl(TIOCSWINSZ) failed");
4015# else
4016# ifdef TIOCSSIZE
4017 struct ttysize ts;
4018
4019 ts.ts_cols = cols;
4020 ts.ts_lines = rows;
4021 if (ioctl(fd, TIOCSSIZE, &ws) == 0)
4022 {
4023 ch_log(NULL, "ioctl(TIOCSSIZE) success");
4024 return OK;
4025 }
4026 ch_log(NULL, "ioctl(TIOCSSIZE) failed");
4027# endif
4028# endif
4029 return FAIL;
4030}
4031#endif
4032
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033/*
4034 * Try to set the window size to Rows and Columns.
4035 */
4036 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004037mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004038{
4039 if (*T_CWS)
4040 {
4041 /*
4042 * NOTE: if you get an error here that term_set_winsize() is
4043 * undefined, check the output of configure. It could probably not
4044 * find a ncurses, termcap or termlib library.
4045 */
4046 term_set_winsize((int)Rows, (int)Columns);
4047 out_flush();
4048 screen_start(); /* don't know where cursor is now */
4049 }
4050}
4051
4052#endif /* VMS */
4053
4054/*
4055 * Rows and/or Columns has changed.
4056 */
4057 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004058mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059{
4060 /* Nothing to do. */
4061}
4062
Bram Moolenaar205b8862011-09-07 15:04:31 +02004063/*
4064 * Wait for process "child" to end.
4065 * Return "child" if it exited properly, <= 0 on error.
4066 */
4067 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01004068wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02004069{
4070 pid_t wait_pid = 0;
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004071 long delay_msec = 1;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004072
4073 while (wait_pid != child)
4074 {
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004075 /* When compiled with Python threads are probably used, in which case
4076 * wait() sometimes hangs for no obvious reason. Use waitpid()
4077 * instead and loop (like the GUI). Also needed for other interfaces,
4078 * they might call system(). */
4079# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004080 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004081# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02004082 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004083# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02004084 if (wait_pid == 0)
4085 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004086 /* Wait for 1 to 10 msec before trying again. */
4087 mch_delay(delay_msec, TRUE);
4088 if (++delay_msec > 10)
4089 delay_msec = 10;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004090 continue;
4091 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004092 if (wait_pid <= 0
4093# ifdef ECHILD
4094 && errno == ECHILD
4095# endif
4096 )
4097 break;
4098 }
4099 return wait_pid;
4100}
4101
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004102#if defined(FEAT_JOB_CHANNEL) || !defined(USE_SYSTEM) || defined(PROTO)
Bram Moolenaar72801402016-02-09 11:37:50 +01004103/*
4104 * Parse "cmd" and put the white-separated parts in "argv".
4105 * "argv" is an allocated array with "argc" entries.
4106 * Returns FAIL when out of memory.
4107 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01004108 int
4109mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
4110{
4111 int i;
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004112 char_u *p, *d;
Bram Moolenaar835dc632016-02-07 14:27:38 +01004113 int inquote;
4114
4115 /*
4116 * Do this loop twice:
4117 * 1: find number of arguments
4118 * 2: separate them and build argv[]
4119 */
4120 for (i = 0; i < 2; ++i)
4121 {
Bram Moolenaar6231cb82016-04-26 19:42:42 +02004122 p = skipwhite(cmd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01004123 inquote = FALSE;
4124 *argc = 0;
4125 for (;;)
4126 {
4127 if (i == 1)
4128 (*argv)[*argc] = (char *)p;
4129 ++*argc;
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004130 d = p;
Bram Moolenaar835dc632016-02-07 14:27:38 +01004131 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB)))
4132 {
Bram Moolenaar9d654a82017-09-03 19:52:17 +02004133 if (p[0] == '"')
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004134 /* quotes surrounding an argument and are dropped */
Bram Moolenaar835dc632016-02-07 14:27:38 +01004135 inquote = !inquote;
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004136 else
Bram Moolenaar9d654a82017-09-03 19:52:17 +02004137 {
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004138 if (p[0] == '\\' && p[1] != NUL)
4139 {
4140 /* First pass: skip over "\ " and "\"".
4141 * Second pass: Remove the backslash. */
Bram Moolenaar9d654a82017-09-03 19:52:17 +02004142 ++p;
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004143 }
4144 if (i == 1)
4145 *d++ = *p;
Bram Moolenaar9d654a82017-09-03 19:52:17 +02004146 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01004147 ++p;
4148 }
4149 if (*p == NUL)
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004150 {
4151 if (i == 1)
4152 *d++ = NUL;
Bram Moolenaar835dc632016-02-07 14:27:38 +01004153 break;
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004154 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01004155 if (i == 1)
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004156 *d++ = NUL;
4157 p = skipwhite(p + 1);
Bram Moolenaar835dc632016-02-07 14:27:38 +01004158 }
4159 if (*argv == NULL)
4160 {
4161 if (use_shcf)
4162 {
4163 /* Account for possible multiple args in p_shcf. */
4164 p = p_shcf;
4165 for (;;)
4166 {
4167 p = skiptowhite(p);
4168 if (*p == NUL)
4169 break;
4170 ++*argc;
4171 p = skipwhite(p);
4172 }
4173 }
4174
4175 *argv = (char **)alloc((unsigned)((*argc + 4) * sizeof(char *)));
4176 if (*argv == NULL) /* out of memory */
4177 return FAIL;
4178 }
4179 }
4180 return OK;
4181}
4182#endif
4183
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004184#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar7da34602017-08-01 17:14:21 +02004185/*
4186 * Set the environment for a child process.
4187 */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004188 static void
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004189set_child_environment(long rows, long columns, char *term)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004190{
4191# ifdef HAVE_SETENV
4192 char envbuf[50];
4193# else
Bram Moolenaar5f7e7bd2017-07-22 14:08:43 +02004194 static char envbuf_Term[30];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004195 static char envbuf_Rows[20];
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004196 static char envbuf_Lines[20];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004197 static char envbuf_Columns[20];
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004198 static char envbuf_Colors[20];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004199# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004200 static char envbuf_Servername[60];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004201# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004202# endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004203 long colors =
4204# ifdef FEAT_GUI
4205 gui.in_use ? 256*256*256 :
4206# endif
4207 t_colors;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004208
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004209# ifdef HAVE_SETENV
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004210 setenv("TERM", term, 1);
4211 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004212 setenv("ROWS", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004213 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004214 setenv("LINES", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004215 sprintf((char *)envbuf, "%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004216 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004217 sprintf((char *)envbuf, "%ld", colors);
4218 setenv("COLORS", (char *)envbuf, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004219# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004220 setenv("VIM_SERVERNAME", serverName == NULL ? "" : (char *)serverName, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004221# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004222# else
4223 /*
4224 * Putenv does not copy the string, it has to remain valid.
4225 * Use a static array to avoid losing allocated memory.
Bram Moolenaar7da34602017-08-01 17:14:21 +02004226 * This won't work well when running multiple children...
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004227 */
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004228 vim_snprintf(envbuf_Term, sizeof(envbuf_Term), "TERM=%s", term);
4229 putenv(envbuf_Term);
4230 vim_snprintf(envbuf_Rows, sizeof(envbuf_Rows), "ROWS=%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004231 putenv(envbuf_Rows);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004232 vim_snprintf(envbuf_Lines, sizeof(envbuf_Lines), "LINES=%ld", rows);
4233 putenv(envbuf_Lines);
4234 vim_snprintf(envbuf_Columns, sizeof(envbuf_Columns),
4235 "COLUMNS=%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004236 putenv(envbuf_Columns);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004237 vim_snprintf(envbuf_Colors, sizeof(envbuf_Colors), "COLORS=%ld", colors);
4238 putenv(envbuf_Colors);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004239# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004240 vim_snprintf(envbuf_Servername, sizeof(envbuf_Servername),
4241 "VIM_SERVERNAME=%s", serverName == NULL ? "" : (char *)serverName);
4242 putenv(envbuf_Servername);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004243# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004244# endif
4245}
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004246
4247 static void
4248set_default_child_environment(void)
4249{
4250 set_child_environment(Rows, Columns, "dumb");
4251}
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004252#endif
4253
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004254#if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004255/*
4256 * Open a PTY, with FD for the master and slave side.
4257 * When failing "pty_master_fd" and "pty_slave_fd" are -1.
4258 * When successful both file descriptors are stored.
4259 */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004260 static void
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02004261open_pty(int *pty_master_fd, int *pty_slave_fd, char_u **namep)
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004262{
4263 char *tty_name;
4264
4265 *pty_master_fd = OpenPTY(&tty_name); /* open pty */
4266 if (*pty_master_fd >= 0)
4267 {
4268 /* Leaving out O_NOCTTY may lead to waitpid() always returning
4269 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4270 * adding O_NOCTTY always works when defined. */
4271#ifdef O_NOCTTY
4272 *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4273#else
4274 *pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4275#endif
4276 if (*pty_slave_fd < 0)
4277 {
4278 close(*pty_master_fd);
4279 *pty_master_fd = -1;
4280 }
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02004281 else if (namep != NULL)
4282 *namep = vim_strsave((char_u *)tty_name);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004283 }
4284}
4285#endif
4286
Bram Moolenaarfae42832017-08-01 22:24:26 +02004287/*
4288 * Send SIGINT to a child process if "c" is an interrupt character.
4289 */
4290 void
4291may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED)
4292{
4293# ifdef SIGINT
4294 if (c == Ctrl_C || c == intr_char)
4295 {
4296# ifdef HAVE_SETSID
4297 kill(-pid, SIGINT);
4298# else
4299 kill(0, SIGINT);
4300# endif
4301 if (wpid > 0)
4302 kill(wpid, SIGINT);
4303 }
4304# endif
4305}
4306
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004308mch_call_shell(
4309 char_u *cmd,
4310 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004311{
4312#ifdef VMS
4313 char *ifn = NULL;
4314 char *ofn = NULL;
4315#endif
4316 int tmode = cur_tmode;
4317#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
Bram Moolenaarb2b050a2016-07-16 21:52:46 +02004318 char_u *newcmd; /* only needed for unix */
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01004319 int x;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004320
4321 out_flush();
4322
4323 if (options & SHELL_COOKED)
4324 settmode(TMODE_COOK); /* set to normal mode */
4325
Bram Moolenaar62b42182010-09-21 22:09:37 +02004326# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004327 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004328 loose_clipboard();
4329# endif
4330
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 if (cmd == NULL)
4332 x = system((char *)p_sh);
4333 else
4334 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004335# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 if (ofn = strchr((char *)cmd, '>'))
4337 *ofn++ = '\0';
4338 if (ifn = strchr((char *)cmd, '<'))
4339 {
4340 char *p;
4341
4342 *ifn++ = '\0';
4343 p = strchr(ifn,' '); /* chop off any trailing spaces */
4344 if (p)
4345 *p = '\0';
4346 }
4347 if (ofn)
4348 x = vms_sys((char *)cmd, ofn, ifn);
4349 else
4350 x = system((char *)cmd);
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004351# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 newcmd = lalloc(STRLEN(p_sh)
4353 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
4354 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
4355 if (newcmd == NULL)
4356 x = 0;
4357 else
4358 {
4359 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4360 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4361 (char *)p_shcf,
4362 (char *)cmd);
4363 x = system((char *)newcmd);
4364 vim_free(newcmd);
4365 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004366# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 }
4368# ifdef VMS
4369 x = vms_sys_status(x);
4370# endif
4371 if (emsg_silent)
4372 ;
4373 else if (x == 127)
4374 MSG_PUTS(_("\nCannot execute shell sh\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 else if (x && !(options & SHELL_SILENT))
4376 {
4377 MSG_PUTS(_("\nshell returned "));
4378 msg_outnum((long)x);
4379 msg_putchar('\n');
4380 }
4381
4382 if (tmode == TMODE_RAW)
4383 settmode(TMODE_RAW); /* set to raw mode */
4384# ifdef FEAT_TITLE
4385 resettitle();
4386# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004387# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4388 restore_clipboard();
4389# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004390 return x;
4391
4392#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
4393
Bram Moolenaardf177f62005-02-22 08:39:57 +00004394# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
4395 127, some shells use that already */
Bram Moolenaarb109bb42017-08-21 21:07:29 +02004396# define OPEN_NULL_FAILED 123 /* Exit code if /dev/null can't be opened */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004397
Bram Moolenaar835dc632016-02-07 14:27:38 +01004398 char_u *newcmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004400 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 pid_t wait_pid = 0;
4402# ifdef HAVE_UNION_WAIT
4403 union wait status;
4404# else
4405 int status = -1;
4406# endif
4407 int retval = -1;
4408 char **argv = NULL;
4409 int argc;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004410 char_u *p_shcf_copy = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411 int i;
4412 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004414# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 int pty_slave_fd = -1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004416# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004417 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 int fd_fromshell[2];
4419 int pipe_error = FALSE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004420 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421
Bram Moolenaar62b42182010-09-21 22:09:37 +02004422 newcmd = vim_strsave(p_sh);
4423 if (newcmd == NULL) /* out of memory */
4424 goto error;
4425
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426 out_flush();
4427 if (options & SHELL_COOKED)
4428 settmode(TMODE_COOK); /* set to normal mode */
4429
Bram Moolenaar835dc632016-02-07 14:27:38 +01004430 if (mch_parse_cmd(newcmd, TRUE, &argv, &argc) == FAIL)
4431 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004432
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 if (cmd != NULL)
4434 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004435 char_u *s;
4436
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 if (extra_shell_arg != NULL)
4438 argv[argc++] = (char *)extra_shell_arg;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004439
4440 /* Break 'shellcmdflag' into white separated parts. This doesn't
4441 * handle quoted strings, they are very unlikely to appear. */
4442 p_shcf_copy = alloc((unsigned)STRLEN(p_shcf) + 1);
4443 if (p_shcf_copy == NULL) /* out of memory */
4444 goto error;
4445 s = p_shcf_copy;
4446 p = p_shcf;
4447 while (*p != NUL)
4448 {
4449 argv[argc++] = (char *)s;
4450 while (*p && *p != ' ' && *p != TAB)
4451 *s++ = *p++;
4452 *s++ = NUL;
4453 p = skipwhite(p);
4454 }
4455
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 argv[argc++] = (char *)cmd;
4457 }
4458 argv[argc] = NULL;
4459
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004461 * For the GUI, when writing the output into the buffer and when reading
4462 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4463 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004465 if ((options & (SHELL_READ|SHELL_WRITE))
4466# ifdef FEAT_GUI
4467 || (gui.in_use && show_shell_mess)
4468# endif
4469 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004471# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 /*
4473 * Try to open a master pty.
4474 * If this works, open the slave pty.
4475 * If the slave can't be opened, close the master pty.
4476 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004477 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02004478 open_pty(&pty_master_fd, &pty_slave_fd, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 /*
4480 * If not opening a pty or it didn't work, try using pipes.
4481 */
4482 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004483# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 {
4485 pipe_error = (pipe(fd_toshell) < 0);
4486 if (!pipe_error) /* pipe create OK */
4487 {
4488 pipe_error = (pipe(fd_fromshell) < 0);
4489 if (pipe_error) /* pipe create failed */
4490 {
4491 close(fd_toshell[0]);
4492 close(fd_toshell[1]);
4493 }
4494 }
4495 if (pipe_error)
4496 {
4497 MSG_PUTS(_("\nCannot create pipes\n"));
4498 out_flush();
4499 }
4500 }
4501 }
4502
4503 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004505 SIGSET_DECL(curset)
4506
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507# ifdef __BEOS__
4508 beos_cleanup_read_thread();
4509# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004510
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004511 BLOCK_SIGNALS(&curset);
4512 pid = fork(); /* maybe we should use vfork() */
4513 if (pid == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004515 UNBLOCK_SIGNALS(&curset);
4516
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004518 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004520 || (gui.in_use && show_shell_mess)
4521# endif
4522 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004524# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 if (pty_master_fd >= 0) /* close the pseudo tty */
4526 {
4527 close(pty_master_fd);
4528 close(pty_slave_fd);
4529 }
4530 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004531# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 {
4533 close(fd_toshell[0]);
4534 close(fd_toshell[1]);
4535 close(fd_fromshell[0]);
4536 close(fd_fromshell[1]);
4537 }
4538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 }
4540 else if (pid == 0) /* child */
4541 {
4542 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004543 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544
4545 if (!show_shell_mess || (options & SHELL_EXPAND))
4546 {
4547 int fd;
4548
4549 /*
4550 * Don't want to show any message from the shell. Can't just
4551 * close stdout and stderr though, because some systems will
4552 * break if you try to write to them after that, so we must
4553 * use dup() to replace them with something else -- webb
4554 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4555 * waiting for input.
4556 */
4557 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4558 fclose(stdin);
4559 fclose(stdout);
4560 fclose(stderr);
4561
4562 /*
4563 * If any of these open()'s and dup()'s fail, we just continue
4564 * anyway. It's not fatal, and on most systems it will make
4565 * no difference at all. On a few it will cause the execvp()
4566 * to exit with a non-zero status even when the completion
4567 * could be done, which is nothing too serious. If the open()
4568 * or dup() failed we'd just do the same thing ourselves
4569 * anyway -- webb
4570 */
4571 if (fd >= 0)
4572 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004573 ignored = dup(fd); /* To replace stdin (fd 0) */
4574 ignored = dup(fd); /* To replace stdout (fd 1) */
4575 ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576
4577 /* Don't need this now that we've duplicated it */
4578 close(fd);
4579 }
4580 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004581 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004582# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004583 || gui.in_use
4584# endif
4585 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 {
4587
Bram Moolenaardf177f62005-02-22 08:39:57 +00004588# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004589 /* Create our own process group, so that the child and all its
4590 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004591 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004592 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004593 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004594 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004595# if defined(SIGHUP)
4596 /* When doing "!xterm&" and 'shell' is bash: the shell
4597 * will exit and send SIGHUP to all processes in its
4598 * group, killing the just started process. Ignore SIGHUP
4599 * to avoid that. (suggested by Simon Schubert)
4600 */
4601 signal(SIGHUP, SIG_IGN);
4602# endif
4603 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004604# endif
4605# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004606 if (pty_slave_fd >= 0)
4607 {
4608 /* push stream discipline modules */
4609 if (options & SHELL_COOKED)
4610 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004612 /* Try to become controlling tty (probably doesn't work,
4613 * unless run by root) */
4614 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004616 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004617# endif
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004618 set_default_child_environment();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619
Bram Moolenaara5792f52005-11-23 21:25:05 +00004620 /*
4621 * stderr is only redirected when using the GUI, so that a
4622 * program like gpg can still access the terminal to get a
4623 * passphrase using stderr.
4624 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004625# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004626 if (pty_master_fd >= 0)
4627 {
4628 close(pty_master_fd); /* close master side of pty */
4629
4630 /* set up stdin/stdout/stderr for the child */
4631 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004632 ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004634 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004635 if (gui.in_use)
4636 {
4637 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004638 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004639 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640
4641 close(pty_slave_fd); /* has been dupped, close it now */
4642 }
4643 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004644# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004645 {
4646 /* set up stdin for the child */
4647 close(fd_toshell[1]);
4648 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004649 ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650 close(fd_toshell[0]);
4651
4652 /* set up stdout for the child */
4653 close(fd_fromshell[0]);
4654 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004655 ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004656 close(fd_fromshell[1]);
4657
Bram Moolenaara5792f52005-11-23 21:25:05 +00004658# ifdef FEAT_GUI
4659 if (gui.in_use)
4660 {
4661 /* set up stderr for the child */
4662 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004663 ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004664 }
4665# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666 }
4667 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004668
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669 /*
4670 * There is no type cast for the argv, because the type may be
4671 * different on different machines. This may cause a warning
4672 * message with strict compilers, don't worry about it.
4673 * Call _exit() instead of exit() to avoid closing the connection
4674 * to the X server (esp. with GTK, which uses atexit()).
4675 */
4676 execvp(argv[0], argv);
4677 _exit(EXEC_FAILED); /* exec failed, return failure code */
4678 }
4679 else /* parent */
4680 {
4681 /*
4682 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004683 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 */
4685 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004686 catch_int_signal();
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004687 UNBLOCK_SIGNALS(&curset);
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01004688# ifdef FEAT_JOB_CHANNEL
4689 ++dont_check_job_ended;
4690# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004691 /*
4692 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004693 * This is also used to pipe stdin/stdout to/from the external
4694 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004696 if ((options & (SHELL_READ|SHELL_WRITE))
4697# ifdef FEAT_GUI
4698 || (gui.in_use && show_shell_mess)
4699# endif
4700 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004702# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004704# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004706# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4708 int ta_len = 0; /* valid bytes in ta_buf[] */
4709 int len;
4710 int p_more_save;
4711 int old_State;
4712 int c;
4713 int toshell_fd;
4714 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004715 garray_T ga;
4716 int noread_cnt;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004717# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4718 struct timeval start_tv;
4719# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720
Bram Moolenaardf177f62005-02-22 08:39:57 +00004721# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 if (pty_master_fd >= 0)
4723 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 fromshell_fd = pty_master_fd;
4725 toshell_fd = dup(pty_master_fd);
4726 }
4727 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004728# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 {
4730 close(fd_toshell[0]);
4731 close(fd_fromshell[1]);
4732 toshell_fd = fd_toshell[1];
4733 fromshell_fd = fd_fromshell[0];
4734 }
4735
4736 /*
4737 * Write to the child if there are typed characters.
4738 * Read from the child if there are characters available.
4739 * Repeat the reading a few times if more characters are
4740 * available. Need to check for typed keys now and then, but
4741 * not too often (delays when no chars are available).
4742 * This loop is quit if no characters can be read from the pty
4743 * (WaitForChar detected special condition), or there are no
4744 * characters available and the child has exited.
4745 * Only check if the child has exited when there is no more
4746 * output. The child may exit before all the output has
4747 * been printed.
4748 *
4749 * Currently this busy loops!
4750 * This can probably dead-lock when the write blocks!
4751 */
4752 p_more_save = p_more;
4753 p_more = FALSE;
4754 old_State = State;
4755 State = EXTERNCMD; /* don't redraw at window resize */
4756
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004757 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004758 {
4759 /* Fork a process that will write the lines to the
4760 * external program. */
4761 if ((wpid = fork()) == -1)
4762 {
4763 MSG_PUTS(_("\nCannot fork\n"));
4764 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004765 else if (wpid == 0) /* child */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004766 {
4767 linenr_T lnum = curbuf->b_op_start.lnum;
4768 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004769 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004770 size_t l;
4771
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004772 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004773 for (;;)
4774 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004775 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004776 if (l == 0)
4777 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004778 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004779 /* NL -> NUL translation */
4780 len = write(toshell_fd, "", (size_t)1);
4781 else
4782 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004783 char_u *s = vim_strchr(lp + written, NL);
4784
Bram Moolenaar89d40322006-08-29 15:30:07 +00004785 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004786 s == NULL ? l
4787 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004788 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004789 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004790 {
4791 /* Finished a line, add a NL, unless this line
4792 * should not have one. */
4793 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004794 || (!curbuf->b_p_bin
4795 && curbuf->b_p_fixeol)
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004796 || (lnum != curbuf->b_no_eol_lnum
Bram Moolenaardf177f62005-02-22 08:39:57 +00004797 && (lnum !=
4798 curbuf->b_ml.ml_line_count
4799 || curbuf->b_p_eol)))
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004800 ignored = write(toshell_fd, "\n",
4801 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004802 ++lnum;
4803 if (lnum > curbuf->b_op_end.lnum)
4804 {
4805 /* finished all the lines, close pipe */
4806 close(toshell_fd);
4807 toshell_fd = -1;
4808 break;
4809 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004810 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004811 written = 0;
4812 }
4813 else if (len > 0)
4814 written += len;
4815 }
4816 _exit(0);
4817 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004818 else /* parent */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004819 {
4820 close(toshell_fd);
4821 toshell_fd = -1;
4822 }
4823 }
4824
4825 if (options & SHELL_READ)
4826 ga_init2(&ga, 1, BUFLEN);
4827
4828 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004829# ifdef ELAPSED_FUNC
4830 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004831# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 for (;;)
4833 {
4834 /*
4835 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004836 * if there are any.
4837 * Don't do this if we are expanding wild cards (would eat
4838 * typeahead).
4839 * Don't do this when filtering and terminal is in cooked
4840 * mode, the shell command will handle the I/O. Avoids
4841 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004842 * Don't get characters when the child has already
4843 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004844 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004845 * while (noread_cnt > 4), avoids that ":r !ls" eats
4846 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 */
4848 len = 0;
4849 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004850 && ((options &
4851 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4852 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004853# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004854 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004855# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004856 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004857 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004858 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004860 if (ta_len == 0)
4861 {
4862 /* Get extra characters when we don't have any.
4863 * Reset the counter and timer. */
4864 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004865# ifdef ELAPSED_FUNC
4866 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004867# endif
4868 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4869 }
4870 if (ta_len > 0 || len > 0)
4871 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004872 /*
4873 * For pipes:
4874 * Check for CTRL-C: send interrupt signal to child.
4875 * Check for CTRL-D: EOF, close pipe to child.
4876 */
4877 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4878 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 /*
4880 * Send SIGINT to the child's group or all
4881 * processes in our group.
4882 */
Bram Moolenaarfae42832017-08-01 22:24:26 +02004883 may_send_sigint(ta_buf[ta_len], pid, wpid);
4884
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 if (pty_master_fd < 0 && toshell_fd >= 0
4886 && ta_buf[ta_len] == Ctrl_D)
4887 {
4888 close(toshell_fd);
4889 toshell_fd = -1;
4890 }
4891 }
4892
4893 /* replace K_BS by <BS> and K_DEL by <DEL> */
4894 for (i = ta_len; i < ta_len + len; ++i)
4895 {
4896 if (ta_buf[i] == CSI && len - i > 2)
4897 {
4898 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4899 if (c == K_DEL || c == K_KDEL || c == K_BS)
4900 {
4901 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4902 (size_t)(len - i - 2));
4903 if (c == K_DEL || c == K_KDEL)
4904 ta_buf[i] = DEL;
4905 else
4906 ta_buf[i] = Ctrl_H;
4907 len -= 2;
4908 }
4909 }
4910 else if (ta_buf[i] == '\r')
4911 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004912# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913 if (has_mbyte)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00004914 i += (*mb_ptr2len_len)(ta_buf + i,
4915 ta_len + len - i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004916# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 }
4918
4919 /*
4920 * For pipes: echo the typed characters.
4921 * For a pty this does not seem to work.
4922 */
4923 if (pty_master_fd < 0)
4924 {
4925 for (i = ta_len; i < ta_len + len; ++i)
4926 {
4927 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4928 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004929# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 else if (has_mbyte)
4931 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004932 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933
4934 msg_outtrans_len(ta_buf + i, l);
4935 i += l - 1;
4936 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004937# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 else
4939 msg_outtrans_len(ta_buf + i, 1);
4940 }
4941 windgoto(msg_row, msg_col);
4942 out_flush();
4943 }
4944
4945 ta_len += len;
4946
4947 /*
4948 * Write the characters to the child, unless EOF has
4949 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004950 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004951 * When writing buffer lines, drop the typed
4952 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004954 if (options & SHELL_WRITE)
4955 ta_len = 0;
4956 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004957 {
4958 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4959 if (len > 0)
4960 {
4961 ta_len -= len;
4962 mch_memmove(ta_buf, ta_buf + len, ta_len);
4963 }
4964 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004965 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966 }
4967
Bram Moolenaardf177f62005-02-22 08:39:57 +00004968 if (got_int)
4969 {
4970 /* CTRL-C sends a signal to the child, we ignore it
4971 * ourselves */
4972# ifdef HAVE_SETSID
4973 kill(-pid, SIGINT);
4974# else
4975 kill(0, SIGINT);
4976# endif
4977 if (wpid > 0)
4978 kill(wpid, SIGINT);
4979 got_int = FALSE;
4980 }
4981
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 /*
4983 * Check if the child has any characters to be printed.
4984 * Read them and write them to our window. Repeat this as
4985 * long as there is something to do, avoid the 10ms wait
4986 * for mch_inchar(), or sending typeahead characters to
4987 * the external process.
4988 * TODO: This should handle escape sequences, compatible
4989 * to some terminal (vt52?).
4990 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004991 ++noread_cnt;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01004992 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004994 len = read_eintr(fromshell_fd, buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004995# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004997# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004999# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 );
5001 if (len <= 0) /* end of file or error */
5002 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005003
5004 noread_cnt = 0;
5005 if (options & SHELL_READ)
5006 {
5007 /* Do NUL -> NL translation, append NL separated
5008 * lines to the current buffer. */
5009 for (i = 0; i < len; ++i)
5010 {
5011 if (buffer[i] == NL)
5012 append_ga_line(&ga);
5013 else if (buffer[i] == NUL)
5014 ga_append(&ga, NL);
5015 else
5016 ga_append(&ga, buffer[i]);
5017 }
5018 }
5019# ifdef FEAT_MBYTE
5020 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005021 {
5022 int l;
5023
Bram Moolenaardf177f62005-02-22 08:39:57 +00005024 len += buffer_off;
5025 buffer[len] = NUL;
5026
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027 /* Check if the last character in buffer[] is
5028 * incomplete, keep these bytes for the next
5029 * round. */
5030 for (p = buffer; p < buffer + len; p += l)
5031 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02005032 l = MB_CPTR2LEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 if (l == 0)
5034 l = 1; /* NUL byte? */
5035 else if (MB_BYTE2LEN(*p) != l)
5036 break;
5037 }
5038 if (p == buffer) /* no complete character */
5039 {
5040 /* avoid getting stuck at an illegal byte */
5041 if (len >= 12)
5042 ++p;
5043 else
5044 {
5045 buffer_off = len;
5046 continue;
5047 }
5048 }
5049 c = *p;
5050 *p = NUL;
5051 msg_puts(buffer);
5052 if (p < buffer + len)
5053 {
5054 *p = c;
5055 buffer_off = (buffer + len) - p;
5056 mch_memmove(buffer, p, buffer_off);
5057 continue;
5058 }
5059 buffer_off = 0;
5060 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005061# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 {
5064 buffer[len] = NUL;
5065 msg_puts(buffer);
5066 }
5067
5068 windgoto(msg_row, msg_col);
5069 cursor_on();
5070 out_flush();
5071 if (got_int)
5072 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005073
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005074# ifdef ELAPSED_FUNC
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005075 if (wait_pid == 0)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005076 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005077 long msec = ELAPSED_FUNC(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005078
5079 /* Avoid that we keep looping here without
5080 * checking for a CTRL-C for a long time. Don't
5081 * break out too often to avoid losing typeahead. */
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005082 if (msec > 2000)
5083 {
5084 noread_cnt = 5;
5085 break;
5086 }
5087 }
5088# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 }
5090
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005091 /* If we already detected the child has finished, continue
5092 * reading output for a short while. Some text may be
5093 * buffered. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005094 if (wait_pid == pid)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005095 {
5096 if (noread_cnt < 5)
5097 continue;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005098 break;
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005099 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005100
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 /*
5102 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00005103 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005105# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02005106 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005107# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005109# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5111 || (wait_pid == pid && WIFEXITED(status)))
5112 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005113 /* Don't break the loop yet, try reading more
5114 * characters from "fromshell_fd" first. When using
5115 * pipes there might still be something to read and
5116 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005117 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005119 else
5120 wait_pid = 0;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005121
Bram Moolenaar95a51352013-03-21 22:53:50 +01005122# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005123 /* Handle any X events, e.g. serving the clipboard. */
5124 clip_update();
5125# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126 }
5127finished:
5128 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005129 if (options & SHELL_READ)
5130 {
5131 if (ga.ga_len > 0)
5132 {
5133 append_ga_line(&ga);
5134 /* remember that the NL was missing */
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005135 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005136 }
5137 else
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005138 curbuf->b_no_eol_lnum = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005139 ga_clear(&ga);
5140 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141
Bram Moolenaar071d4272004-06-13 20:20:40 +00005142 /*
5143 * Give all typeahead that wasn't used back to ui_inchar().
5144 */
5145 if (ta_len)
5146 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 State = old_State;
5148 if (toshell_fd >= 0)
5149 close(toshell_fd);
5150 close(fromshell_fd);
5151 }
Bram Moolenaar95a51352013-03-21 22:53:50 +01005152# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005153 else
5154 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005155 long delay_msec = 1;
5156
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005157 /*
5158 * Similar to the loop above, but only handle X events, no
5159 * I/O.
5160 */
5161 for (;;)
5162 {
5163 if (got_int)
5164 {
5165 /* CTRL-C sends a signal to the child, we ignore it
5166 * ourselves */
5167# ifdef HAVE_SETSID
5168 kill(-pid, SIGINT);
5169# else
5170 kill(0, SIGINT);
5171# endif
5172 got_int = FALSE;
5173 }
5174# ifdef __NeXT__
5175 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
5176# else
5177 wait_pid = waitpid(pid, &status, WNOHANG);
5178# endif
5179 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5180 || (wait_pid == pid && WIFEXITED(status)))
5181 {
5182 wait_pid = pid;
5183 break;
5184 }
5185
5186 /* Handle any X events, e.g. serving the clipboard. */
5187 clip_update();
5188
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005189 /* Wait for 1 to 10 msec. 1 is faster but gives the child
5190 * less time. */
5191 mch_delay(delay_msec, TRUE);
5192 if (++delay_msec > 10)
5193 delay_msec = 10;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005194 }
5195 }
5196# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197
5198 /*
5199 * Wait until our child has exited.
5200 * Ignore wait() returning pids of other children and returning
5201 * because of some signal like SIGWINCH.
5202 * Don't wait if wait_pid was already set above, indicating the
5203 * child already exited.
5204 */
Bram Moolenaar205b8862011-09-07 15:04:31 +02005205 if (wait_pid != pid)
5206 wait_pid = wait4pid(pid, &status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207
Bram Moolenaar624891f2010-10-13 16:22:09 +02005208# ifdef FEAT_GUI
5209 /* Close slave side of pty. Only do this after the child has
5210 * exited, otherwise the child may hang when it tries to write on
5211 * the pty. */
5212 if (pty_master_fd >= 0)
5213 close(pty_slave_fd);
5214# endif
5215
Bram Moolenaardf177f62005-02-22 08:39:57 +00005216 /* Make sure the child that writes to the external program is
5217 * dead. */
5218 if (wpid > 0)
Bram Moolenaar205b8862011-09-07 15:04:31 +02005219 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005220 kill(wpid, SIGKILL);
Bram Moolenaar205b8862011-09-07 15:04:31 +02005221 wait4pid(wpid, NULL);
5222 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005223
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005224# ifdef FEAT_JOB_CHANNEL
5225 --dont_check_job_ended;
5226# endif
5227
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 /*
5229 * Set to raw mode right now, otherwise a CTRL-C after
5230 * catch_signals() will kill Vim.
5231 */
5232 if (tmode == TMODE_RAW)
5233 settmode(TMODE_RAW);
5234 did_settmode = TRUE;
5235 set_signals();
5236
5237 if (WIFEXITED(status))
5238 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00005239 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 retval = WEXITSTATUS(status);
Bram Moolenaar75676462013-01-30 14:55:42 +01005241 if (retval != 0 && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 {
5243 if (retval == EXEC_FAILED)
5244 {
5245 MSG_PUTS(_("\nCannot execute shell "));
5246 msg_outtrans(p_sh);
5247 msg_putchar('\n');
5248 }
5249 else if (!(options & SHELL_SILENT))
5250 {
5251 MSG_PUTS(_("\nshell returned "));
5252 msg_outnum((long)retval);
5253 msg_putchar('\n');
5254 }
5255 }
5256 }
5257 else
5258 MSG_PUTS(_("\nCommand terminated\n"));
5259 }
5260 }
5261 vim_free(argv);
Bram Moolenaarea35ef62011-08-04 22:59:28 +02005262 vim_free(p_shcf_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263
5264error:
5265 if (!did_settmode)
5266 if (tmode == TMODE_RAW)
5267 settmode(TMODE_RAW); /* set to raw mode */
5268# ifdef FEAT_TITLE
5269 resettitle();
5270# endif
5271 vim_free(newcmd);
5272
5273 return retval;
5274
5275#endif /* USE_SYSTEM */
5276}
5277
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005278#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005279 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005280mch_job_start(char **argv, job_T *job, jobopt_T *options)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005281{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005282 pid_t pid;
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02005283 int fd_in[2] = {-1, -1}; /* for stdin */
5284 int fd_out[2] = {-1, -1}; /* for stdout */
5285 int fd_err[2] = {-1, -1}; /* for stderr */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005286 int pty_master_fd = -1;
5287 int pty_slave_fd = -1;
Bram Moolenaar16eb4f82016-02-14 23:02:34 +01005288 channel_T *channel = NULL;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005289 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5290 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5291 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005292 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005293 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5294 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
Bram Moolenaarb2412082017-08-20 18:09:14 +02005295 int use_buffer_for_in = options->jo_io[PART_IN] == JIO_BUFFER;
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005296 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005297 SIGSET_DECL(curset)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005298
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005299 if (use_out_for_err && use_null_for_out)
5300 use_null_for_err = TRUE;
5301
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005302 /* default is to fail */
5303 job->jv_status = JOB_FAILED;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005304
Bram Moolenaarb2412082017-08-20 18:09:14 +02005305 if (options->jo_pty
5306 && (!(use_file_for_in || use_null_for_in)
5307 || !(use_file_for_in || use_null_for_out)
5308 || !(use_out_for_err || use_file_for_err || use_null_for_err)))
Bram Moolenaar2dc9d262017-09-08 14:39:30 +02005309 {
5310 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_out);
5311 if (job->jv_tty_out != NULL)
5312 job->jv_tty_in = vim_strsave(job->jv_tty_out);
5313 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005314
Bram Moolenaar12dcf022016-02-15 23:09:04 +01005315 /* TODO: without the channel feature connect the child to /dev/null? */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005316 /* Open pipes for stdin, stdout, stderr. */
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005317 if (use_file_for_in)
5318 {
5319 char_u *fname = options->jo_io_name[PART_IN];
5320
5321 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0);
5322 if (fd_in[0] < 0)
5323 {
5324 EMSG2(_(e_notopen), fname);
5325 goto failed;
5326 }
5327 }
Bram Moolenaarb2412082017-08-20 18:09:14 +02005328 else
5329 /* When writing buffer lines to the input don't use the pty, so that
5330 * the pipe can be closed when all lines were written. */
5331 if (!use_null_for_in && (pty_master_fd < 0 || use_buffer_for_in)
5332 && pipe(fd_in) < 0)
5333 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005334
5335 if (use_file_for_out)
5336 {
5337 char_u *fname = options->jo_io_name[PART_OUT];
5338
5339 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
5340 if (fd_out[1] < 0)
5341 {
5342 EMSG2(_(e_notopen), fname);
5343 goto failed;
5344 }
5345 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005346 else if (!use_null_for_out && pty_master_fd < 0 && pipe(fd_out) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005347 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005348
5349 if (use_file_for_err)
5350 {
5351 char_u *fname = options->jo_io_name[PART_ERR];
5352
5353 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
5354 if (fd_err[1] < 0)
5355 {
5356 EMSG2(_(e_notopen), fname);
5357 goto failed;
5358 }
5359 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005360 else if (!use_out_for_err && !use_null_for_err
5361 && pty_master_fd < 0 && pipe(fd_err) < 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005362 goto failed;
5363
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005364 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5365 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005366 if (options->jo_set & JO_CHANNEL)
5367 {
5368 channel = options->jo_channel;
5369 if (channel != NULL)
5370 ++channel->ch_refcount;
5371 }
5372 else
5373 channel = add_channel();
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005374 if (channel == NULL)
5375 goto failed;
Bram Moolenaarf3360612017-10-01 16:21:31 +02005376 if (job->jv_tty_out != NULL)
5377 ch_log(channel, "using pty %s on fd %d",
5378 job->jv_tty_out, pty_master_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005379 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005380
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005381 BLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005382 pid = fork(); /* maybe we should use vfork() */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005383 if (pid == -1)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005384 {
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005385 /* failed to fork */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005386 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005387 goto failed;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005388 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005389 if (pid == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005390 {
Bram Moolenaar4694a172016-04-21 14:05:23 +02005391 int null_fd = -1;
5392 int stderr_works = TRUE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005393
Bram Moolenaar835dc632016-02-07 14:27:38 +01005394 /* child */
5395 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005396 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005397
5398# ifdef HAVE_SETSID
5399 /* Create our own process group, so that the child and all its
5400 * children can be kill()ed. Don't do this when using pipes,
5401 * because stdin is not a tty, we would lose /dev/tty. */
5402 (void)setsid();
5403# endif
5404
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005405# ifdef FEAT_TERMINAL
5406 if (options->jo_term_rows > 0)
5407 set_child_environment(
5408 (long)options->jo_term_rows,
5409 (long)options->jo_term_cols,
Bram Moolenaar93723a42017-07-28 15:55:32 +02005410 STRNCMP(T_NAME, "xterm", 5) == 0
5411 ? (char *)T_NAME : "xterm");
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005412 else
5413# endif
5414 set_default_child_environment();
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005415
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005416 if (options->jo_env != NULL)
5417 {
5418 dict_T *dict = options->jo_env;
5419 hashitem_T *hi;
5420 int todo = (int)dict->dv_hashtab.ht_used;
5421
5422 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
5423 if (!HASHITEM_EMPTY(hi))
5424 {
5425 typval_T *item = &dict_lookup(hi)->di_tv;
5426
5427 vim_setenv((char_u*)hi->hi_key, get_tv_string(item));
5428 --todo;
5429 }
5430 }
5431
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005432 if (use_null_for_in || use_null_for_out || use_null_for_err)
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005433 {
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005434 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005435 if (null_fd < 0)
5436 {
5437 perror("opening /dev/null failed");
5438 _exit(OPEN_NULL_FAILED);
5439 }
5440 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005441
Bram Moolenaar223896d2017-08-02 22:33:28 +02005442 if (pty_slave_fd >= 0)
5443 {
5444 /* push stream discipline modules */
5445 SetupSlavePTY(pty_slave_fd);
5446# ifdef TIOCSCTTY
5447 /* Try to become controlling tty (probably doesn't work,
5448 * unless run by root) */
5449 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
5450# endif
5451 }
5452
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005453 /* set up stdin for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005454 close(0);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005455 if (use_null_for_in && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005456 ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005457 else if (fd_in[0] < 0)
5458 ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005459 else
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005460 ignored = dup(fd_in[0]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005461
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005462 /* set up stderr for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005463 close(2);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005464 if (use_null_for_err && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005465 {
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005466 ignored = dup(null_fd);
Bram Moolenaar4694a172016-04-21 14:05:23 +02005467 stderr_works = FALSE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005468 }
5469 else if (use_out_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005470 ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005471 else if (fd_err[1] < 0)
5472 ignored = dup(pty_slave_fd);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005473 else
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005474 ignored = dup(fd_err[1]);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005475
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005476 /* set up stdout for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005477 close(1);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005478 if (use_null_for_out && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005479 ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005480 else if (fd_out[1] < 0)
5481 ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005482 else
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005483 ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005484
5485 if (fd_in[0] >= 0)
5486 close(fd_in[0]);
5487 if (fd_in[1] >= 0)
5488 close(fd_in[1]);
5489 if (fd_out[0] >= 0)
5490 close(fd_out[0]);
5491 if (fd_out[1] >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005492 close(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005493 if (fd_err[0] >= 0)
5494 close(fd_err[0]);
5495 if (fd_err[1] >= 0)
5496 close(fd_err[1]);
5497 if (pty_master_fd >= 0)
5498 {
Bram Moolenaar223896d2017-08-02 22:33:28 +02005499 close(pty_master_fd); /* not used in the child */
5500 close(pty_slave_fd); /* was duped above */
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005501 }
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005502
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005503 if (null_fd >= 0)
5504 close(null_fd);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005505
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005506 if (options->jo_cwd != NULL && mch_chdir((char *)options->jo_cwd) != 0)
5507 _exit(EXEC_FAILED);
5508
Bram Moolenaar835dc632016-02-07 14:27:38 +01005509 /* See above for type of argv. */
5510 execvp(argv[0], argv);
5511
Bram Moolenaar4694a172016-04-21 14:05:23 +02005512 if (stderr_works)
5513 perror("executing job failed");
Bram Moolenaarfae42832017-08-01 22:24:26 +02005514# ifdef EXITFREE
Bram Moolenaarcda77642016-06-04 13:32:35 +02005515 /* calling free_all_mem() here causes problems. Ignore valgrind
5516 * reporting possibly leaked memory. */
Bram Moolenaarfae42832017-08-01 22:24:26 +02005517# endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005518 _exit(EXEC_FAILED); /* exec failed, return failure code */
5519 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005520
5521 /* parent */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005522 UNBLOCK_SIGNALS(&curset);
5523
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005524 job->jv_pid = pid;
5525 job->jv_status = JOB_STARTED;
Bram Moolenaarde279892016-03-11 22:19:44 +01005526 job->jv_channel = channel; /* ch_refcount was set above */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005527
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005528 if (pty_master_fd >= 0)
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005529 close(pty_slave_fd); /* not used in the parent */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005530 /* close child stdin, stdout and stderr */
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005531 if (!use_file_for_in && fd_in[0] >= 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005532 close(fd_in[0]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005533 if (!use_file_for_out && fd_out[1] >= 0)
Bram Moolenaare98d1212016-03-08 15:37:41 +01005534 close(fd_out[1]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005535 if (!use_out_for_err && !use_file_for_err && fd_err[1] >= 0)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005536 close(fd_err[1]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005537 if (channel != NULL)
5538 {
5539 channel_set_pipes(channel,
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005540 use_file_for_in || use_null_for_in
5541 ? INVALID_FD : fd_in[1] < 0 ? pty_master_fd : fd_in[1],
5542 use_file_for_out || use_null_for_out
5543 ? INVALID_FD : fd_out[0] < 0 ? pty_master_fd : fd_out[0],
5544 use_out_for_err || use_file_for_err || use_null_for_err
5545 ? INVALID_FD : fd_err[0] < 0 ? pty_master_fd : fd_err[0]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005546 channel_set_job(channel, job, options);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005547 }
Bram Moolenaar979e8c52017-08-01 15:08:07 +02005548 else
5549 {
5550 if (fd_in[1] >= 0)
5551 close(fd_in[1]);
5552 if (fd_out[0] >= 0)
5553 close(fd_out[0]);
5554 if (fd_err[0] >= 0)
5555 close(fd_err[0]);
5556 if (pty_master_fd >= 0)
5557 close(pty_master_fd);
5558 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005559
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005560 /* success! */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005561 return;
5562
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005563failed:
Bram Moolenaarde279892016-03-11 22:19:44 +01005564 channel_unref(channel);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005565 if (fd_in[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005566 close(fd_in[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005567 if (fd_in[1] >= 0)
5568 close(fd_in[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005569 if (fd_out[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005570 close(fd_out[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005571 if (fd_out[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005572 close(fd_out[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005573 if (fd_err[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005574 close(fd_err[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005575 if (fd_err[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005576 close(fd_err[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005577 if (pty_master_fd >= 0)
5578 close(pty_master_fd);
5579 if (pty_slave_fd >= 0)
5580 close(pty_slave_fd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005581}
5582
5583 char *
5584mch_job_status(job_T *job)
5585{
5586# ifdef HAVE_UNION_WAIT
5587 union wait status;
5588# else
5589 int status = -1;
5590# endif
5591 pid_t wait_pid = 0;
5592
5593# ifdef __NeXT__
5594 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0);
5595# else
5596 wait_pid = waitpid(job->jv_pid, &status, WNOHANG);
5597# endif
5598 if (wait_pid == -1)
5599 {
5600 /* process must have exited */
Bram Moolenaar97792de2016-10-15 18:36:49 +02005601 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005602 }
5603 if (wait_pid == 0)
5604 return "run";
5605 if (WIFEXITED(status))
5606 {
5607 /* LINTED avoid "bitwise operation on signed value" */
5608 job->jv_exitval = WEXITSTATUS(status);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005609 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005610 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005611 if (WIFSIGNALED(status))
5612 {
5613 job->jv_exitval = -1;
Bram Moolenaar97792de2016-10-15 18:36:49 +02005614 goto return_dead;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005615 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01005616 return "run";
Bram Moolenaar97792de2016-10-15 18:36:49 +02005617
5618return_dead:
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005619 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005620 {
5621 ch_log(job->jv_channel, "Job ended");
5622 job->jv_status = JOB_ENDED;
5623 }
5624 return "dead";
5625}
5626
5627 job_T *
5628mch_detect_ended_job(job_T *job_list)
5629{
5630# ifdef HAVE_UNION_WAIT
5631 union wait status;
5632# else
5633 int status = -1;
5634# endif
5635 pid_t wait_pid = 0;
5636 job_T *job;
5637
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005638# ifndef USE_SYSTEM
5639 /* Do not do this when waiting for a shell command to finish, we would get
5640 * the exit value here (and discard it), the exit value obtained there
5641 * would then be wrong. */
5642 if (dont_check_job_ended > 0)
5643 return NULL;
5644# endif
5645
Bram Moolenaar97792de2016-10-15 18:36:49 +02005646# ifdef __NeXT__
5647 wait_pid = wait4(-1, &status, WNOHANG, (struct rusage *)0);
5648# else
5649 wait_pid = waitpid(-1, &status, WNOHANG);
5650# endif
5651 if (wait_pid <= 0)
5652 /* no process ended */
5653 return NULL;
5654 for (job = job_list; job != NULL; job = job->jv_next)
5655 {
5656 if (job->jv_pid == wait_pid)
5657 {
5658 if (WIFEXITED(status))
5659 /* LINTED avoid "bitwise operation on signed value" */
5660 job->jv_exitval = WEXITSTATUS(status);
5661 else if (WIFSIGNALED(status))
5662 job->jv_exitval = -1;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005663 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005664 {
5665 ch_log(job->jv_channel, "Job ended");
5666 job->jv_status = JOB_ENDED;
5667 }
5668 return job;
5669 }
5670 }
5671 return NULL;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005672}
5673
Bram Moolenaar3a117e12016-10-30 21:57:52 +01005674/*
5675 * Send a (deadly) signal to "job".
5676 * Return FAIL if "how" is not a valid name.
5677 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01005678 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005679mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005680{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005681 int sig = -1;
5682 pid_t job_pid;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005683
Bram Moolenaar923d9262016-02-25 20:56:01 +01005684 if (*how == NUL || STRCMP(how, "term") == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005685 sig = SIGTERM;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005686 else if (STRCMP(how, "hup") == 0)
5687 sig = SIGHUP;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005688 else if (STRCMP(how, "quit") == 0)
5689 sig = SIGQUIT;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005690 else if (STRCMP(how, "int") == 0)
5691 sig = SIGINT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005692 else if (STRCMP(how, "kill") == 0)
5693 sig = SIGKILL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02005694#ifdef SIGWINCH
5695 else if (STRCMP(how, "winch") == 0)
5696 sig = SIGWINCH;
5697#endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005698 else if (isdigit(*how))
5699 sig = atoi((char *)how);
5700 else
5701 return FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005702
Bram Moolenaar72801402016-02-09 11:37:50 +01005703 /* TODO: have an option to only kill the process, not the group? */
Bram Moolenaar76467df2016-02-12 19:30:26 +01005704 job_pid = job->jv_pid;
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01005705#ifdef HAVE_GETPGID
Bram Moolenaar76467df2016-02-12 19:30:26 +01005706 if (job_pid == getpgid(job_pid))
5707 job_pid = -job_pid;
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01005708#endif
Bram Moolenaar76467df2016-02-12 19:30:26 +01005709
Bram Moolenaar61a66052017-07-22 18:39:00 +02005710 /* Never kill ourselves! */
5711 if (job_pid != 0)
5712 kill(job_pid, sig);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005713
Bram Moolenaar835dc632016-02-07 14:27:38 +01005714 return OK;
5715}
Bram Moolenaar76467df2016-02-12 19:30:26 +01005716
5717/*
5718 * Clear the data related to "job".
5719 */
5720 void
5721mch_clear_job(job_T *job)
5722{
5723 /* call waitpid because child process may become zombie */
5724# ifdef __NeXT__
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005725 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005726# else
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005727 (void)waitpid(job->jv_pid, NULL, WNOHANG);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005728# endif
5729}
Bram Moolenaar835dc632016-02-07 14:27:38 +01005730#endif
5731
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005732#if defined(FEAT_TERMINAL) || defined(PROTO)
5733 int
5734mch_create_pty_channel(job_T *job, jobopt_T *options)
5735{
5736 int pty_master_fd = -1;
5737 int pty_slave_fd = -1;
5738 channel_T *channel;
5739
Bram Moolenaar2dc9d262017-09-08 14:39:30 +02005740 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_out);
5741 if (job->jv_tty_out != NULL)
5742 job->jv_tty_in = vim_strsave(job->jv_tty_out);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005743 close(pty_slave_fd);
5744
5745 channel = add_channel();
5746 if (channel == NULL)
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005747 {
5748 close(pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005749 return FAIL;
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005750 }
Bram Moolenaarf3360612017-10-01 16:21:31 +02005751 if (job->jv_tty_out != NULL)
5752 ch_log(channel, "using pty %s on fd %d",
5753 job->jv_tty_out, pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005754 job->jv_channel = channel; /* ch_refcount was set by add_channel() */
5755 channel->ch_keep_open = TRUE;
5756
5757 channel_set_pipes(channel, pty_master_fd, pty_master_fd, pty_master_fd);
5758 channel_set_job(channel, job, options);
5759 return OK;
5760}
5761#endif
5762
Bram Moolenaar071d4272004-06-13 20:20:40 +00005763/*
5764 * Check for CTRL-C typed by reading all available characters.
5765 * In cooked mode we should get SIGINT, no need to check.
5766 */
5767 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005768mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005770 if ((curr_tmode == TMODE_RAW || force)
5771 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005772 fill_input_buf(FALSE);
5773}
5774
5775/*
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005776 * Wait "msec" msec until a character is available from the mouse, keyboard,
5777 * from inbuf[].
5778 * "msec" == -1 will block forever.
5779 * Invokes timer callbacks when needed.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005780 * When "ignore_input" is TRUE even check for pending input when input is
5781 * already available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005782 * "interrupted" (if not NULL) is set to TRUE when no character is available
5783 * but something else needs to be done.
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005784 * Returns TRUE when a character is available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005785 * When a GUI is being used, this will never get called -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 */
5787 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005788WaitForChar(long msec, int *interrupted, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005789{
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005790#ifdef FEAT_TIMERS
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01005791 return ui_wait_for_chars_or_timer(
5792 msec, WaitForCharOrMouse, interrupted, ignore_input) == OK;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005793#else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005794 return WaitForCharOrMouse(msec, interrupted, ignore_input);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005795#endif
5796}
5797
5798/*
5799 * Wait "msec" msec until a character is available from the mouse or keyboard
5800 * or from inbuf[].
5801 * "msec" == -1 will block forever.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005802 * for "ignore_input" see WaitForCharOr().
Bram Moolenaarcda77642016-06-04 13:32:35 +02005803 * "interrupted" (if not NULL) is set to TRUE when no character is available
5804 * but something else needs to be done.
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005805 * When a GUI is being used, this will never get called -- webb
5806 */
5807 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005808WaitForCharOrMouse(long msec, int *interrupted, int ignore_input)
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005809{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005810#ifdef FEAT_MOUSE_GPM
5811 int gpm_process_wanted;
5812#endif
5813#ifdef FEAT_XCLIPBOARD
5814 int rest;
5815#endif
5816 int avail;
5817
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005818 if (!ignore_input && input_available()) /* something in inbuf[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819 return 1;
5820
5821#if defined(FEAT_MOUSE_DEC)
5822 /* May need to query the mouse position. */
5823 if (WantQueryMouse)
5824 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005825 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005826 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
5827 }
5828#endif
5829
5830 /*
5831 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
5832 * events. This is a bit complicated, because they might both be defined.
5833 */
5834#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
5835# ifdef FEAT_XCLIPBOARD
5836 rest = 0;
5837 if (do_xterm_trace())
5838 rest = msec;
5839# endif
5840 do
5841 {
5842# ifdef FEAT_XCLIPBOARD
5843 if (rest != 0)
5844 {
5845 msec = XT_TRACE_DELAY;
5846 if (rest >= 0 && rest < XT_TRACE_DELAY)
5847 msec = rest;
5848 if (rest >= 0)
5849 rest -= msec;
5850 }
5851# endif
5852# ifdef FEAT_MOUSE_GPM
5853 gpm_process_wanted = 0;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005854 avail = RealWaitForChar(read_cmd_fd, msec,
Bram Moolenaarcda77642016-06-04 13:32:35 +02005855 &gpm_process_wanted, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856# else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005857 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858# endif
5859 if (!avail)
5860 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005861 if (!ignore_input && input_available())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005862 return 1;
5863# ifdef FEAT_XCLIPBOARD
5864 if (rest == 0 || !do_xterm_trace())
5865# endif
5866 break;
5867 }
5868 }
5869 while (FALSE
5870# ifdef FEAT_MOUSE_GPM
5871 || (gpm_process_wanted && mch_gpm_process() == 0)
5872# endif
5873# ifdef FEAT_XCLIPBOARD
5874 || (!avail && rest != 0)
5875# endif
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005876 )
5877 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878
5879#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005880 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881#endif
5882 return avail;
5883}
5884
Bram Moolenaar4ffa0702013-12-11 17:12:37 +01005885#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005886/*
5887 * Wait "msec" msec until a character is available from file descriptor "fd".
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005888 * "msec" == 0 will check for characters once.
5889 * "msec" == -1 will block until a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890 * When a GUI is being used, this will not be used for input -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 * Or when a Linux GPM mouse event is waiting.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02005892 * Or when a clientserver message is on the queue.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005893 * "interrupted" (if not NULL) is set to TRUE when no character is available
5894 * but something else needs to be done.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896#if defined(__BEOS__)
5897 int
5898#else
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005899 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00005900#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005901RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902{
5903 int ret;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005904 int result;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005905#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 static int busy = FALSE;
5907
5908 /* May retry getting characters after an event was handled. */
5909# define MAY_LOOP
5910
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005911# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 /* Remember at what time we started, so that we know how much longer we
5913 * should wait after being interrupted. */
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005914 long start_msec = msec;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005915 ELAPSED_TYPE start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005917 if (msec > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005918 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919# endif
5920
5921 /* Handle being called recursively. This may happen for the session
5922 * manager stuff, it may save the file, which does a breakcheck. */
5923 if (busy)
5924 return 0;
5925#endif
5926
5927#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005928 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005929#endif
5930 {
5931#ifdef MAY_LOOP
5932 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005933# ifdef FEAT_MZSCHEME
5934 int mzquantum_used = FALSE;
5935# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005936#endif
5937#ifndef HAVE_SELECT
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005938 /* each channel may use in, out and err */
5939 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940 int nfd;
5941# ifdef FEAT_XCLIPBOARD
5942 int xterm_idx = -1;
5943# endif
5944# ifdef FEAT_MOUSE_GPM
5945 int gpm_idx = -1;
5946# endif
5947# ifdef USE_XSMP
5948 int xsmp_idx = -1;
5949# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005950 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005951
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005952# ifdef FEAT_MZSCHEME
5953 mzvim_check_threads();
5954 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
5955 {
5956 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
5957 mzquantum_used = TRUE;
5958 }
5959# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960 fds[0].fd = fd;
5961 fds[0].events = POLLIN;
5962 nfd = 1;
5963
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01005965 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966 if (xterm_Shell != (Widget)0)
5967 {
5968 xterm_idx = nfd;
5969 fds[nfd].fd = ConnectionNumber(xterm_dpy);
5970 fds[nfd].events = POLLIN;
5971 nfd++;
5972 }
5973# endif
5974# ifdef FEAT_MOUSE_GPM
5975 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
5976 {
5977 gpm_idx = nfd;
5978 fds[nfd].fd = gpm_fd;
5979 fds[nfd].events = POLLIN;
5980 nfd++;
5981 }
5982# endif
5983# ifdef USE_XSMP
5984 if (xsmp_icefd != -1)
5985 {
5986 xsmp_idx = nfd;
5987 fds[nfd].fd = xsmp_icefd;
5988 fds[nfd].events = POLLIN;
5989 nfd++;
5990 }
5991# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005992#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02005993 nfd = channel_poll_setup(nfd, &fds, &towait);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005994#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005995 if (interrupted != NULL)
5996 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005998 ret = poll(fds, nfd, towait);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005999
6000 result = ret > 0 && (fds[0].revents & POLLIN);
Bram Moolenaarcda77642016-06-04 13:32:35 +02006001 if (result == 0 && interrupted != NULL && ret > 0)
6002 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006003
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006004# ifdef FEAT_MZSCHEME
6005 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006006 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006007 finished = FALSE;
6008# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010# ifdef FEAT_XCLIPBOARD
6011 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
6012 {
6013 xterm_update(); /* Maybe we should hand out clipboard */
6014 if (--ret == 0 && !input_available())
6015 /* Try again */
6016 finished = FALSE;
6017 }
6018# endif
6019# ifdef FEAT_MOUSE_GPM
6020 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
6021 {
6022 *check_for_gpm = 1;
6023 }
6024# endif
6025# ifdef USE_XSMP
6026 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
6027 {
6028 if (fds[xsmp_idx].revents & POLLIN)
6029 {
6030 busy = TRUE;
6031 xsmp_handle_requests();
6032 busy = FALSE;
6033 }
6034 else if (fds[xsmp_idx].revents & POLLHUP)
6035 {
6036 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006037 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006038 xsmp_close();
6039 }
6040 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006041 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042 }
6043# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006044#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006045 /* also call when ret == 0, we may be polling a keep-open channel */
6046 if (ret >= 0)
Bram Moolenaare0874f82016-01-24 20:36:41 +01006047 ret = channel_poll_check(ret, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006048#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006049
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050#else /* HAVE_SELECT */
6051
6052 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006053 struct timeval *tvp;
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006054 fd_set rfds, wfds, efds;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006055 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006056 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006058# ifdef FEAT_MZSCHEME
6059 mzvim_check_threads();
6060 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6061 {
6062 towait = p_mzq; /* don't wait longer than 'mzquantum' */
6063 mzquantum_used = TRUE;
6064 }
6065# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006067 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006069 tv.tv_sec = towait / 1000;
6070 tv.tv_usec = (towait % 1000) * (1000000/1000);
6071 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006072 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006073 else
6074 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075
6076 /*
6077 * Select on ready for reading and exceptional condition (end of file).
6078 */
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006079select_eintr:
6080 FD_ZERO(&rfds);
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006081 FD_ZERO(&wfds);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006082 FD_ZERO(&efds);
6083 FD_SET(fd, &rfds);
6084# if !defined(__QNX__) && !defined(__CYGWIN32__)
6085 /* For QNX select() always returns 1 if this is set. Why? */
6086 FD_SET(fd, &efds);
6087# endif
6088 maxfd = fd;
6089
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006091 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092 if (xterm_Shell != (Widget)0)
6093 {
6094 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
6095 if (maxfd < ConnectionNumber(xterm_dpy))
6096 maxfd = ConnectionNumber(xterm_dpy);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006097
6098 /* An event may have already been read but not handled. In
6099 * particulary, XFlush may cause this. */
6100 xterm_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101 }
6102# endif
6103# ifdef FEAT_MOUSE_GPM
6104 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6105 {
6106 FD_SET(gpm_fd, &rfds);
6107 FD_SET(gpm_fd, &efds);
6108 if (maxfd < gpm_fd)
6109 maxfd = gpm_fd;
6110 }
6111# endif
6112# ifdef USE_XSMP
6113 if (xsmp_icefd != -1)
6114 {
6115 FD_SET(xsmp_icefd, &rfds);
6116 FD_SET(xsmp_icefd, &efds);
6117 if (maxfd < xsmp_icefd)
6118 maxfd = xsmp_icefd;
6119 }
6120# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006121# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006122 maxfd = channel_select_setup(maxfd, &rfds, &wfds, &tv, &tvp);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006123# endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006124 if (interrupted != NULL)
6125 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006126
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006127 ret = select(maxfd + 1, &rfds, &wfds, &efds, tvp);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006128 result = ret > 0 && FD_ISSET(fd, &rfds);
6129 if (result)
6130 --ret;
Bram Moolenaarcda77642016-06-04 13:32:35 +02006131 else if (interrupted != NULL && ret > 0)
6132 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006133
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006134# ifdef EINTR
6135 if (ret == -1 && errno == EINTR)
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006136 {
6137 /* Check whether window has been resized, EINTR may be caused by
6138 * SIGWINCH. */
6139 if (do_resize)
6140 handle_resize();
6141
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006142 /* Interrupted by a signal, need to try again. We ignore msec
6143 * here, because we do want to check even after a timeout if
6144 * characters are available. Needed for reading output of an
6145 * external command after the process has finished. */
6146 goto select_eintr;
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006147 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006148# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00006149# ifdef __TANDEM
6150 if (ret == -1 && errno == ENOTSUP)
6151 {
6152 FD_ZERO(&rfds);
6153 FD_ZERO(&efds);
6154 ret = 0;
6155 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006156# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006157# ifdef FEAT_MZSCHEME
6158 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006159 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006160 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161# endif
6162
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163# ifdef FEAT_XCLIPBOARD
6164 if (ret > 0 && xterm_Shell != (Widget)0
6165 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
6166 {
6167 xterm_update(); /* Maybe we should hand out clipboard */
6168 /* continue looping when we only got the X event and the input
6169 * buffer is empty */
6170 if (--ret == 0 && !input_available())
6171 {
6172 /* Try again */
6173 finished = FALSE;
6174 }
6175 }
6176# endif
6177# ifdef FEAT_MOUSE_GPM
6178 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
6179 {
6180 if (FD_ISSET(gpm_fd, &efds))
6181 gpm_close();
6182 else if (FD_ISSET(gpm_fd, &rfds))
6183 *check_for_gpm = 1;
6184 }
6185# endif
6186# ifdef USE_XSMP
6187 if (ret > 0 && xsmp_icefd != -1)
6188 {
6189 if (FD_ISSET(xsmp_icefd, &efds))
6190 {
6191 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006192 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006193 xsmp_close();
6194 if (--ret == 0)
6195 finished = FALSE; /* keep going if event was only one */
6196 }
6197 else if (FD_ISSET(xsmp_icefd, &rfds))
6198 {
6199 busy = TRUE;
6200 xsmp_handle_requests();
6201 busy = FALSE;
6202 if (--ret == 0)
6203 finished = FALSE; /* keep going if event was only one */
6204 }
6205 }
6206# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006207#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006208 /* also call when ret == 0, we may be polling a keep-open channel */
6209 if (ret >= 0)
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006210 ret = channel_select_check(ret, &rfds, &wfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006211#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212
6213#endif /* HAVE_SELECT */
6214
6215#ifdef MAY_LOOP
6216 if (finished || msec == 0)
6217 break;
6218
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006219# ifdef FEAT_CLIENTSERVER
6220 if (server_waiting())
6221 break;
6222# endif
6223
Bram Moolenaar071d4272004-06-13 20:20:40 +00006224 /* We're going to loop around again, find out for how long */
6225 if (msec > 0)
6226 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006227# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006228 /* Compute remaining wait time. */
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006229 msec = start_msec - ELAPSED_FUNC(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230# else
6231 /* Guess we got interrupted halfway. */
6232 msec = msec / 2;
6233# endif
6234 if (msec <= 0)
6235 break; /* waited long enough */
6236 }
6237#endif
6238 }
6239
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006240 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241}
6242
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244/*
Bram Moolenaar02743632005-07-25 20:42:36 +00006245 * Expand a path into all matching files and/or directories. Handles "*",
6246 * "?", "[a-z]", "**", etc.
6247 * "path" has backslashes before chars that are not to be expanded.
6248 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249 */
6250 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006251mch_expandpath(
6252 garray_T *gap,
6253 char_u *path,
6254 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006255{
Bram Moolenaar02743632005-07-25 20:42:36 +00006256 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257}
6258#endif
6259
6260/*
6261 * mch_expand_wildcards() - this code does wild-card pattern matching using
6262 * the shell
6263 *
6264 * return OK for success, FAIL for error (you may lose some memory) and put
6265 * an error message in *file.
6266 *
6267 * num_pat is number of input patterns
6268 * pat is array of pointers to input patterns
6269 * num_file is pointer to number of matched file names
6270 * file is pointer to array of pointers to matched file names
6271 */
6272
6273#ifndef SEEK_SET
6274# define SEEK_SET 0
6275#endif
6276#ifndef SEEK_END
6277# define SEEK_END 2
6278#endif
6279
Bram Moolenaar5555acc2006-04-07 21:33:12 +00006280#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00006281
Bram Moolenaar071d4272004-06-13 20:20:40 +00006282 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006283mch_expand_wildcards(
6284 int num_pat,
6285 char_u **pat,
6286 int *num_file,
6287 char_u ***file,
6288 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006289{
6290 int i;
6291 size_t len;
Bram Moolenaar85325f82017-03-30 21:18:45 +02006292 long llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006293 char_u *p;
6294 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006295
Bram Moolenaarc7247912008-01-13 12:54:11 +00006296 /*
6297 * This is the non-OS/2 implementation (really Unix).
6298 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299 int j;
6300 char_u *tempname;
6301 char_u *command;
6302 FILE *fd;
6303 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006304#define STYLE_ECHO 0 /* use "echo", the default */
6305#define STYLE_GLOB 1 /* use "glob", for csh */
6306#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
6307#define STYLE_PRINT 3 /* use "print -N", for zsh */
6308#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
6309 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006310 int shell_style = STYLE_ECHO;
6311 int check_spaces;
6312 static int did_find_nul = FALSE;
6313 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006314 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006315 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006316
6317 *num_file = 0; /* default: no files found */
6318 *file = NULL;
6319
6320 /*
6321 * If there are no wildcards, just copy the names to allocated memory.
6322 * Saves a lot of time, because we don't have to start a new shell.
6323 */
6324 if (!have_wildcard(num_pat, pat))
6325 return save_patterns(num_pat, pat, num_file, file);
6326
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006327# ifdef HAVE_SANDBOX
6328 /* Don't allow any shell command in the sandbox. */
6329 if (sandbox != 0 && check_secure())
6330 return FAIL;
6331# endif
6332
Bram Moolenaar071d4272004-06-13 20:20:40 +00006333 /*
6334 * Don't allow the use of backticks in secure and restricted mode.
6335 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006336 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006337 for (i = 0; i < num_pat; ++i)
6338 if (vim_strchr(pat[i], '`') != NULL
6339 && (check_restricted() || check_secure()))
6340 return FAIL;
6341
6342 /*
6343 * get a name for the temp file
6344 */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02006345 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006346 {
6347 EMSG(_(e_notmp));
6348 return FAIL;
6349 }
6350
6351 /*
6352 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00006353 * file.
6354 * STYLE_BT: NL separated
6355 * If expanding `cmd` execute it directly.
6356 * STYLE_GLOB: NUL separated
6357 * If we use *csh, "glob" will work better than "echo".
6358 * STYLE_PRINT: NL or NUL separated
6359 * If we use *zsh, "print -N" will work better than "glob".
6360 * STYLE_VIMGLOB: NL separated
6361 * If we use *sh*, we define "vimglob()".
6362 * STYLE_ECHO: space separated.
6363 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364 */
6365 if (num_pat == 1 && *pat[0] == '`'
6366 && (len = STRLEN(pat[0])) > 2
6367 && *(pat[0] + len - 1) == '`')
6368 shell_style = STYLE_BT;
6369 else if ((len = STRLEN(p_sh)) >= 3)
6370 {
6371 if (STRCMP(p_sh + len - 3, "csh") == 0)
6372 shell_style = STYLE_GLOB;
6373 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
6374 shell_style = STYLE_PRINT;
6375 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006376 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
6377 "sh") != NULL)
6378 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379
Bram Moolenaarc7247912008-01-13 12:54:11 +00006380 /* Compute the length of the command. We need 2 extra bytes: for the
6381 * optional '&' and for the NUL.
6382 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006383 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006384 if (shell_style == STYLE_VIMGLOB)
6385 len += STRLEN(sh_vimglob_func);
6386
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006387 for (i = 0; i < num_pat; ++i)
6388 {
6389 /* Count the length of the patterns in the same way as they are put in
6390 * "command" below. */
6391#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006393#else
6394 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006395 for (j = 0; pat[i][j] != NUL; ++j)
6396 {
6397 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
6398 ++len; /* may add a backslash */
6399 ++len;
6400 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006401#endif
6402 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403 command = alloc(len);
6404 if (command == NULL)
6405 {
6406 /* out of memory */
6407 vim_free(tempname);
6408 return FAIL;
6409 }
6410
6411 /*
6412 * Build the shell command:
6413 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
6414 * recognizes this).
6415 * - Add the shell command to print the expanded names.
6416 * - Add the temp file name.
6417 * - Add the file name patterns.
6418 */
6419 if (shell_style == STYLE_BT)
6420 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00006421 /* change `command; command& ` to (command; command ) */
6422 STRCPY(command, "(");
6423 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006425 *p-- = ')'; /* remove last backtick */
Bram Moolenaar1c465442017-03-12 20:10:05 +01006426 while (p > command && VIM_ISWHITE(*p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006427 --p;
6428 if (*p == '&') /* remove trailing '&' */
6429 {
6430 ampersent = TRUE;
6431 *p = ' ';
6432 }
6433 STRCAT(command, ">");
6434 }
6435 else
6436 {
6437 if (flags & EW_NOTFOUND)
6438 STRCPY(command, "set nonomatch; ");
6439 else
6440 STRCPY(command, "unset nonomatch; ");
6441 if (shell_style == STYLE_GLOB)
6442 STRCAT(command, "glob >");
6443 else if (shell_style == STYLE_PRINT)
6444 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00006445 else if (shell_style == STYLE_VIMGLOB)
6446 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447 else
6448 STRCAT(command, "echo >");
6449 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006450
Bram Moolenaar071d4272004-06-13 20:20:40 +00006451 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00006452
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 if (shell_style != STYLE_BT)
6454 for (i = 0; i < num_pat; ++i)
6455 {
6456 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00006457 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006458 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459#ifdef USE_SYSTEM
6460 STRCAT(command, " \"");
6461 STRCAT(command, pat[i]);
6462 STRCAT(command, "\"");
6463#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00006464 int intick = FALSE;
6465
Bram Moolenaar071d4272004-06-13 20:20:40 +00006466 p = command + STRLEN(command);
6467 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00006468 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00006469 {
6470 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00006471 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006472 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
6473 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006474 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00006475 * backslash inside backticks, before a special character
6476 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006477 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00006478 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
6479 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006480 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006481 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006482 }
Bram Moolenaare4df1642014-08-29 12:58:44 +02006483 else if (!intick
6484 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$')
6485 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00006486 /* Put a backslash before a special character, but not
Bram Moolenaare4df1642014-08-29 12:58:44 +02006487 * when inside ``. And not for $var when EW_KEEPDOLLAR is
6488 * set. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006489 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006490
6491 /* Copy one character. */
6492 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00006493 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006494 *p = NUL;
6495#endif
6496 }
6497 if (flags & EW_SILENT)
6498 show_shell_mess = FALSE;
6499 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00006500 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006501
6502 /*
6503 * Using zsh -G: If a pattern has no matches, it is just deleted from
6504 * the argument list, otherwise zsh gives an error message and doesn't
6505 * expand any other pattern.
6506 */
6507 if (shell_style == STYLE_PRINT)
6508 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
6509
6510 /*
6511 * If we use -f then shell variables set in .cshrc won't get expanded.
6512 * vi can do it, so we will too, but it is only necessary if there is a "$"
6513 * in one of the patterns, otherwise we can still use the fast option.
6514 */
6515 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
6516 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
6517
6518 /*
6519 * execute the shell command
6520 */
6521 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6522
6523 /* When running in the background, give it some time to create the temp
6524 * file, but don't wait for it to finish. */
6525 if (ampersent)
6526 mch_delay(10L, TRUE);
6527
6528 extra_shell_arg = NULL; /* cleanup */
6529 show_shell_mess = TRUE;
6530 vim_free(command);
6531
Bram Moolenaarc7247912008-01-13 12:54:11 +00006532 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006533 {
6534 mch_remove(tempname);
6535 vim_free(tempname);
6536 /*
6537 * With interactive completion, the error message is not printed.
6538 * However with USE_SYSTEM, I don't know how to turn off error messages
6539 * from the shell, so screen may still get messed up -- webb.
6540 */
6541#ifndef USE_SYSTEM
6542 if (!(flags & EW_SILENT))
6543#endif
6544 {
6545 redraw_later_clear(); /* probably messed up screen */
6546 msg_putchar('\n'); /* clear bottom line quickly */
6547 cmdline_row = Rows - 1; /* continue on last line */
6548#ifdef USE_SYSTEM
6549 if (!(flags & EW_SILENT))
6550#endif
6551 {
6552 MSG(_(e_wildexpand));
6553 msg_start(); /* don't overwrite this message */
6554 }
6555 }
6556 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
6557 * EW_NOTFOUND is given */
6558 if (shell_style == STYLE_BT)
6559 return FAIL;
6560 goto notfound;
6561 }
6562
6563 /*
6564 * read the names from the file into memory
6565 */
6566 fd = fopen((char *)tempname, READBIN);
6567 if (fd == NULL)
6568 {
6569 /* Something went wrong, perhaps a file name with a special char. */
6570 if (!(flags & EW_SILENT))
6571 {
6572 MSG(_(e_wildexpand));
6573 msg_start(); /* don't overwrite this message */
6574 }
6575 vim_free(tempname);
6576 goto notfound;
6577 }
6578 fseek(fd, 0L, SEEK_END);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006579 llen = ftell(fd); /* get size of temp file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006580 fseek(fd, 0L, SEEK_SET);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006581 if (llen < 0)
6582 /* just in case ftell() would fail */
6583 buffer = NULL;
6584 else
6585 buffer = alloc(llen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006586 if (buffer == NULL)
6587 {
6588 /* out of memory */
6589 mch_remove(tempname);
6590 vim_free(tempname);
6591 fclose(fd);
6592 return FAIL;
6593 }
Bram Moolenaar85325f82017-03-30 21:18:45 +02006594 len = llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006595 i = fread((char *)buffer, 1, len, fd);
6596 fclose(fd);
6597 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00006598 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006599 {
6600 /* unexpected read error */
6601 EMSG2(_(e_notread), tempname);
6602 vim_free(tempname);
6603 vim_free(buffer);
6604 return FAIL;
6605 }
6606 vim_free(tempname);
6607
Bram Moolenaarc7247912008-01-13 12:54:11 +00006608# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
6610 p = buffer;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02006611 for (i = 0; i < (int)len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006612 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
6613 *p++ = buffer[i];
6614 len = p - buffer;
6615# endif
6616
6617
6618 /* file names are separated with Space */
6619 if (shell_style == STYLE_ECHO)
6620 {
6621 buffer[len] = '\n'; /* make sure the buffer ends in NL */
6622 p = buffer;
6623 for (i = 0; *p != '\n'; ++i) /* count number of entries */
6624 {
6625 while (*p != ' ' && *p != '\n')
6626 ++p;
6627 p = skipwhite(p); /* skip to next entry */
6628 }
6629 }
6630 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006631 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632 {
6633 buffer[len] = NUL; /* make sure the buffer ends in NUL */
6634 p = buffer;
6635 for (i = 0; *p != NUL; ++i) /* count number of entries */
6636 {
6637 while (*p != '\n' && *p != NUL)
6638 ++p;
6639 if (*p != NUL)
6640 ++p;
6641 p = skipwhite(p); /* skip leading white space */
6642 }
6643 }
6644 /* file names are separated with NUL */
6645 else
6646 {
6647 /*
6648 * Some versions of zsh use spaces instead of NULs to separate
6649 * results. Only do this when there is no NUL before the end of the
6650 * buffer, otherwise we would never be able to use file names with
6651 * embedded spaces when zsh does use NULs.
6652 * When we found a NUL once, we know zsh is OK, set did_find_nul and
6653 * don't check for spaces again.
6654 */
6655 check_spaces = FALSE;
6656 if (shell_style == STYLE_PRINT && !did_find_nul)
6657 {
6658 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02006659 buffer[len] = NUL;
Bram Moolenaarb011af92013-12-11 13:21:51 +01006660 if (len && (int)STRLEN(buffer) < (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661 did_find_nul = TRUE;
6662 else
6663 check_spaces = TRUE;
6664 }
6665
6666 /*
6667 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
6668 * already is one, for STYLE_GLOB it needs to be added.
6669 */
6670 if (len && buffer[len - 1] == NUL)
6671 --len;
6672 else
6673 buffer[len] = NUL;
6674 i = 0;
6675 for (p = buffer; p < buffer + len; ++p)
6676 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
6677 {
6678 ++i;
6679 *p = NUL;
6680 }
6681 if (len)
6682 ++i; /* count last entry */
6683 }
6684 if (i == 0)
6685 {
6686 /*
6687 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
6688 * /bin/sh will happily expand it to nothing rather than returning an
6689 * error; and hey, it's good to check anyway -- webb.
6690 */
6691 vim_free(buffer);
6692 goto notfound;
6693 }
6694 *num_file = i;
6695 *file = (char_u **)alloc(sizeof(char_u *) * i);
6696 if (*file == NULL)
6697 {
6698 /* out of memory */
6699 vim_free(buffer);
6700 return FAIL;
6701 }
6702
6703 /*
6704 * Isolate the individual file names.
6705 */
6706 p = buffer;
6707 for (i = 0; i < *num_file; ++i)
6708 {
6709 (*file)[i] = p;
6710 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006711 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
6712 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006713 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00006714 while (!(shell_style == STYLE_ECHO && *p == ' ')
6715 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 ++p;
6717 if (p == buffer + len) /* last entry */
6718 *p = NUL;
6719 else
6720 {
6721 *p++ = NUL;
6722 p = skipwhite(p); /* skip to next entry */
6723 }
6724 }
6725 else /* NUL separates */
6726 {
6727 while (*p && p < buffer + len) /* skip entry */
6728 ++p;
6729 ++p; /* skip NUL */
6730 }
6731 }
6732
6733 /*
6734 * Move the file names to allocated memory.
6735 */
6736 for (j = 0, i = 0; i < *num_file; ++i)
6737 {
6738 /* Require the files to exist. Helps when using /bin/sh */
6739 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6740 continue;
6741
6742 /* check if this entry should be included */
6743 dir = (mch_isdir((*file)[i]));
6744 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6745 continue;
6746
Bram Moolenaara2031822006-03-07 22:29:51 +00006747 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006748 if (!dir && (flags & EW_EXEC)
6749 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006750 continue;
6751
Bram Moolenaar071d4272004-06-13 20:20:40 +00006752 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
6753 if (p)
6754 {
6755 STRCPY(p, (*file)[i]);
6756 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00006757 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758 (*file)[j++] = p;
6759 }
6760 }
6761 vim_free(buffer);
6762 *num_file = j;
6763
6764 if (*num_file == 0) /* rejected all entries */
6765 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01006766 VIM_CLEAR(*file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006767 goto notfound;
6768 }
6769
6770 return OK;
6771
6772notfound:
6773 if (flags & EW_NOTFOUND)
6774 return save_patterns(num_pat, pat, num_file, file);
6775 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006776}
6777
6778#endif /* VMS */
6779
Bram Moolenaar071d4272004-06-13 20:20:40 +00006780 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006781save_patterns(
6782 int num_pat,
6783 char_u **pat,
6784 int *num_file,
6785 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786{
6787 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006788 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006789
6790 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
6791 if (*file == NULL)
6792 return FAIL;
6793 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00006794 {
6795 s = vim_strsave(pat[i]);
6796 if (s != NULL)
6797 /* Be compatible with expand_filename(): halve the number of
6798 * backslashes. */
6799 backslash_halve(s);
6800 (*file)[i] = s;
6801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802 *num_file = num_pat;
6803 return OK;
6804}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805
Bram Moolenaar071d4272004-06-13 20:20:40 +00006806/*
6807 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
6808 * expand.
6809 */
6810 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006811mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006812{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006813 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006814 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815 if (*p == '\\' && p[1] != NUL)
6816 ++p;
6817 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818 if (vim_strchr((char_u *)
6819#ifdef VMS
6820 "*?%"
6821#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006822 "*?[{'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006823#endif
6824 , *p) != NULL)
6825 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826 }
6827 return FALSE;
6828}
6829
6830/*
6831 * Return TRUE if the string "p" contains a wildcard.
6832 * Don't recognize '~' at the end as a wildcard.
6833 */
6834 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006835mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006837 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839 if (*p == '\\' && p[1] != NUL)
6840 ++p;
6841 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842 if (vim_strchr((char_u *)
6843#ifdef VMS
6844 "*?%$"
6845#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006846 "*?[{`'$"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006847#endif
6848 , *p) != NULL
6849 || (*p == '~' && p[1] != NUL))
6850 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006851 }
6852 return FALSE;
6853}
6854
Bram Moolenaar071d4272004-06-13 20:20:40 +00006855 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006856have_wildcard(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006857{
6858 int i;
6859
6860 for (i = 0; i < num; i++)
6861 if (mch_has_wildcard(file[i]))
6862 return 1;
6863 return 0;
6864}
6865
6866 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006867have_dollars(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006868{
6869 int i;
6870
6871 for (i = 0; i < num; i++)
6872 if (vim_strchr(file[i], '$') != NULL)
6873 return TRUE;
6874 return FALSE;
6875}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006877#if !defined(HAVE_RENAME) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878/*
6879 * Scaled-down version of rename(), which is missing in Xenix.
6880 * This version can only move regular files and will fail if the
6881 * destination exists.
6882 */
6883 int
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006884mch_rename(const char *src, const char *dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885{
6886 struct stat st;
6887
6888 if (stat(dest, &st) >= 0) /* fail if destination exists */
6889 return -1;
6890 if (link(src, dest) != 0) /* link file to new name */
6891 return -1;
6892 if (mch_remove(src) == 0) /* delete link to old name */
6893 return 0;
6894 return -1;
6895}
6896#endif /* !HAVE_RENAME */
6897
6898#ifdef FEAT_MOUSE_GPM
6899/*
6900 * Initializes connection with gpm (if it isn't already opened)
6901 * Return 1 if succeeded (or connection already opened), 0 if failed
6902 */
6903 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006904gpm_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905{
6906 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
6907
6908 if (!gpm_flag)
6909 {
6910 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
6911 gpm_connect.defaultMask = ~GPM_HARD;
6912 /* Default handling for mouse move*/
6913 gpm_connect.minMod = 0; /* Handle any modifier keys */
6914 gpm_connect.maxMod = 0xffff;
6915 if (Gpm_Open(&gpm_connect, 0) > 0)
6916 {
6917 /* gpm library tries to handling TSTP causes
6918 * problems. Anyways, we close connection to Gpm whenever
6919 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006920 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00006921 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006922# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006923 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006924# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006925 return 1; /* succeed */
6926 }
6927 if (gpm_fd == -2)
6928 Gpm_Close(); /* We don't want to talk to xterm via gpm */
6929 return 0;
6930 }
6931 return 1; /* already open */
6932}
6933
6934/*
6935 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936 */
6937 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006938gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939{
6940 if (gpm_flag && gpm_fd >= 0) /* if Open */
6941 Gpm_Close();
6942}
6943
6944/* Reads gpm event and adds special keys to input buf. Returns length of
6945 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02006946 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00006947 */
6948 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006949mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950{
6951 int button;
6952 static Gpm_Event gpm_event;
6953 char_u string[6];
6954 int_u vim_modifiers;
6955 int row,col;
6956 unsigned char buttons_mask;
6957 unsigned char gpm_modifiers;
6958 static unsigned char old_buttons = 0;
6959
6960 Gpm_GetEvent(&gpm_event);
6961
6962#ifdef FEAT_GUI
6963 /* Don't put events in the input queue now. */
6964 if (hold_gui_events)
6965 return 0;
6966#endif
6967
6968 row = gpm_event.y - 1;
6969 col = gpm_event.x - 1;
6970
6971 string[0] = ESC; /* Our termcode */
6972 string[1] = 'M';
6973 string[2] = 'G';
6974 switch (GPM_BARE_EVENTS(gpm_event.type))
6975 {
6976 case GPM_DRAG:
6977 string[3] = MOUSE_DRAG;
6978 break;
6979 case GPM_DOWN:
6980 buttons_mask = gpm_event.buttons & ~old_buttons;
6981 old_buttons = gpm_event.buttons;
6982 switch (buttons_mask)
6983 {
6984 case GPM_B_LEFT:
6985 button = MOUSE_LEFT;
6986 break;
6987 case GPM_B_MIDDLE:
6988 button = MOUSE_MIDDLE;
6989 break;
6990 case GPM_B_RIGHT:
6991 button = MOUSE_RIGHT;
6992 break;
6993 default:
6994 return 0;
6995 /*Don't know what to do. Can more than one button be
6996 * reported in one event? */
6997 }
6998 string[3] = (char_u)(button | 0x20);
6999 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
7000 break;
7001 case GPM_UP:
7002 string[3] = MOUSE_RELEASE;
7003 old_buttons &= ~gpm_event.buttons;
7004 break;
7005 default:
7006 return 0;
7007 }
7008 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
7009 gpm_modifiers = gpm_event.modifiers;
7010 vim_modifiers = 0x0;
7011 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
7012 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
7013 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
7014 */
7015 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
7016 vim_modifiers |= MOUSE_SHIFT;
7017
7018 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
7019 vim_modifiers |= MOUSE_CTRL;
7020 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
7021 vim_modifiers |= MOUSE_ALT;
7022 string[3] |= vim_modifiers;
7023 string[4] = (char_u)(col + ' ' + 1);
7024 string[5] = (char_u)(row + ' ' + 1);
7025 add_to_input_buf(string, 6);
7026 return 6;
7027}
7028#endif /* FEAT_MOUSE_GPM */
7029
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007030#ifdef FEAT_SYSMOUSE
7031/*
7032 * Initialize connection with sysmouse.
7033 * Let virtual console inform us with SIGUSR2 for pending sysmouse
7034 * output, any sysmouse output than will be processed via sig_sysmouse().
7035 * Return OK if succeeded, FAIL if failed.
7036 */
7037 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007038sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007039{
7040 struct mouse_info mouse;
7041
7042 mouse.operation = MOUSE_MODE;
7043 mouse.u.mode.mode = 0;
7044 mouse.u.mode.signal = SIGUSR2;
7045 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
7046 {
7047 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
7048 mouse.operation = MOUSE_SHOW;
7049 ioctl(1, CONS_MOUSECTL, &mouse);
7050 return OK;
7051 }
7052 return FAIL;
7053}
7054
7055/*
7056 * Stop processing SIGUSR2 signals, and also make sure that
7057 * virtual console do not send us any sysmouse related signal.
7058 */
7059 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007060sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007061{
7062 struct mouse_info mouse;
7063
7064 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
7065 mouse.operation = MOUSE_MODE;
7066 mouse.u.mode.mode = 0;
7067 mouse.u.mode.signal = 0;
7068 ioctl(1, CONS_MOUSECTL, &mouse);
7069}
7070
7071/*
7072 * Gets info from sysmouse and adds special keys to input buf.
7073 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007074 static RETSIGTYPE
7075sig_sysmouse SIGDEFARG(sigarg)
7076{
7077 struct mouse_info mouse;
7078 struct video_info video;
7079 char_u string[6];
7080 int row, col;
7081 int button;
7082 int buttons;
7083 static int oldbuttons = 0;
7084
7085#ifdef FEAT_GUI
7086 /* Don't put events in the input queue now. */
7087 if (hold_gui_events)
7088 return;
7089#endif
7090
7091 mouse.operation = MOUSE_GETINFO;
7092 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
7093 && ioctl(1, FBIO_MODEINFO, &video) != -1
7094 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
7095 && video.vi_cheight > 0 && video.vi_cwidth > 0)
7096 {
7097 row = mouse.u.data.y / video.vi_cheight;
7098 col = mouse.u.data.x / video.vi_cwidth;
7099 buttons = mouse.u.data.buttons;
7100 string[0] = ESC; /* Our termcode */
7101 string[1] = 'M';
7102 string[2] = 'S';
7103 if (oldbuttons == buttons && buttons != 0)
7104 {
7105 button = MOUSE_DRAG;
7106 }
7107 else
7108 {
7109 switch (buttons)
7110 {
7111 case 0:
7112 button = MOUSE_RELEASE;
7113 break;
7114 case 1:
7115 button = MOUSE_LEFT;
7116 break;
7117 case 2:
7118 button = MOUSE_MIDDLE;
7119 break;
7120 case 4:
7121 button = MOUSE_RIGHT;
7122 break;
7123 default:
7124 return;
7125 }
7126 oldbuttons = buttons;
7127 }
7128 string[3] = (char_u)(button);
7129 string[4] = (char_u)(col + ' ' + 1);
7130 string[5] = (char_u)(row + ' ' + 1);
7131 add_to_input_buf(string, 6);
7132 }
7133 return;
7134}
7135#endif /* FEAT_SYSMOUSE */
7136
Bram Moolenaar071d4272004-06-13 20:20:40 +00007137#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01007138typedef char_u * (*STRPROCSTR)(char_u *);
7139typedef char_u * (*INTPROCSTR)(int);
7140typedef int (*STRPROCINT)(char_u *);
7141typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142
7143/*
7144 * Call a DLL routine which takes either a string or int param
7145 * and returns an allocated string.
7146 */
7147 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007148mch_libcall(
7149 char_u *libname,
7150 char_u *funcname,
7151 char_u *argstring, /* NULL when using a argint */
7152 int argint,
7153 char_u **string_result,/* NULL when using number_result */
7154 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007155{
7156# if defined(USE_DLOPEN)
7157 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007158 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159# else
7160 shl_t hinstLib;
7161# endif
7162 STRPROCSTR ProcAdd;
7163 INTPROCSTR ProcAddI;
7164 char_u *retval_str = NULL;
7165 int retval_int = 0;
7166 int success = FALSE;
7167
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007168 /*
7169 * Get a handle to the DLL module.
7170 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007171# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007172 /* First clear any error, it's not cleared by the dlopen() call. */
7173 (void)dlerror();
7174
Bram Moolenaar071d4272004-06-13 20:20:40 +00007175 hinstLib = dlopen((char *)libname, RTLD_LAZY
7176# ifdef RTLD_LOCAL
7177 | RTLD_LOCAL
7178# endif
7179 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007180 if (hinstLib == NULL)
7181 {
7182 /* "dlerr" must be used before dlclose() */
7183 dlerr = (char *)dlerror();
7184 if (dlerr != NULL)
7185 EMSG2(_("dlerror = \"%s\""), dlerr);
7186 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007187# else
7188 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
7189# endif
7190
7191 /* If the handle is valid, try to get the function address. */
7192 if (hinstLib != NULL)
7193 {
7194# ifdef HAVE_SETJMP_H
7195 /*
7196 * Catch a crash when calling the library function. For example when
7197 * using a number where a string pointer is expected.
7198 */
7199 mch_startjmp();
7200 if (SETJMP(lc_jump_env) != 0)
7201 {
7202 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007203# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007204 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007205# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007206 mch_didjmp();
7207 }
7208 else
7209# endif
7210 {
7211 retval_str = NULL;
7212 retval_int = 0;
7213
7214 if (argstring != NULL)
7215 {
7216# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007217 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007218 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007219# else
7220 if (shl_findsym(&hinstLib, (const char *)funcname,
7221 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
7222 ProcAdd = NULL;
7223# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007224 if ((success = (ProcAdd != NULL
7225# if defined(USE_DLOPEN)
7226 && dlerr == NULL
7227# endif
7228 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007229 {
7230 if (string_result == NULL)
7231 retval_int = ((STRPROCINT)ProcAdd)(argstring);
7232 else
7233 retval_str = (ProcAdd)(argstring);
7234 }
7235 }
7236 else
7237 {
7238# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007239 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007240 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007241# else
7242 if (shl_findsym(&hinstLib, (const char *)funcname,
7243 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
7244 ProcAddI = NULL;
7245# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007246 if ((success = (ProcAddI != NULL
7247# if defined(USE_DLOPEN)
7248 && dlerr == NULL
7249# endif
7250 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007251 {
7252 if (string_result == NULL)
7253 retval_int = ((INTPROCINT)ProcAddI)(argint);
7254 else
7255 retval_str = (ProcAddI)(argint);
7256 }
7257 }
7258
7259 /* Save the string before we free the library. */
7260 /* Assume that a "1" or "-1" result is an illegal pointer. */
7261 if (string_result == NULL)
7262 *number_result = retval_int;
7263 else if (retval_str != NULL
7264 && retval_str != (char_u *)1
7265 && retval_str != (char_u *)-1)
7266 *string_result = vim_strsave(retval_str);
7267 }
7268
7269# ifdef HAVE_SETJMP_H
7270 mch_endjmp();
7271# ifdef SIGHASARG
7272 if (lc_signal != 0)
7273 {
7274 int i;
7275
7276 /* try to find the name of this signal */
7277 for (i = 0; signal_info[i].sig != -1; i++)
7278 if (lc_signal == signal_info[i].sig)
7279 break;
7280 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
7281 }
7282# endif
7283# endif
7284
Bram Moolenaar071d4272004-06-13 20:20:40 +00007285# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007286 /* "dlerr" must be used before dlclose() */
7287 if (dlerr != NULL)
7288 EMSG2(_("dlerror = \"%s\""), dlerr);
7289
7290 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007291 (void)dlclose(hinstLib);
7292# else
7293 (void)shl_unload(hinstLib);
7294# endif
7295 }
7296
7297 if (!success)
7298 {
7299 EMSG2(_(e_libcall), funcname);
7300 return FAIL;
7301 }
7302
7303 return OK;
7304}
7305#endif
7306
7307#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
7308static int xterm_trace = -1; /* default: disabled */
7309static int xterm_button;
7310
7311/*
7312 * Setup a dummy window for X selections in a terminal.
7313 */
7314 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007315setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007316{
7317 int z = 0;
7318 char *strp = "";
7319 Widget AppShell;
7320
7321 if (!x_connect_to_server())
7322 return;
7323
7324 open_app_context();
7325 if (app_context != NULL && xterm_Shell == (Widget)0)
7326 {
7327 int (*oldhandler)();
7328#if defined(HAVE_SETJMP_H)
7329 int (*oldIOhandler)();
7330#endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007331# ifdef ELAPSED_FUNC
7332 ELAPSED_TYPE start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007333
7334 if (p_verbose > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007335 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336# endif
7337
7338 /* Ignore X errors while opening the display */
7339 oldhandler = XSetErrorHandler(x_error_check);
7340
7341#if defined(HAVE_SETJMP_H)
7342 /* Ignore X IO errors while opening the display */
7343 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7344 mch_startjmp();
7345 if (SETJMP(lc_jump_env) != 0)
7346 {
7347 mch_didjmp();
7348 xterm_dpy = NULL;
7349 }
7350 else
7351#endif
7352 {
7353 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7354 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
7355#if defined(HAVE_SETJMP_H)
7356 mch_endjmp();
7357#endif
7358 }
7359
7360#if defined(HAVE_SETJMP_H)
7361 /* Now handle X IO errors normally. */
7362 (void)XSetIOErrorHandler(oldIOhandler);
7363#endif
7364 /* Now handle X errors normally. */
7365 (void)XSetErrorHandler(oldhandler);
7366
7367 if (xterm_dpy == NULL)
7368 {
7369 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007370 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007371 return;
7372 }
7373
7374 /* Catch terminating error of the X server connection. */
7375 (void)XSetIOErrorHandler(x_IOerror_handler);
7376
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007377# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00007378 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007379 {
7380 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007381 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007382 verbose_leave();
7383 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007384# endif
7385
7386 /* Create a Shell to make converters work. */
7387 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7388 applicationShellWidgetClass, xterm_dpy,
7389 NULL);
7390 if (AppShell == (Widget)0)
7391 return;
7392 xterm_Shell = XtVaCreatePopupShell("VIM",
7393 topLevelShellWidgetClass, AppShell,
7394 XtNmappedWhenManaged, 0,
7395 XtNwidth, 1,
7396 XtNheight, 1,
7397 NULL);
7398 if (xterm_Shell == (Widget)0)
7399 return;
7400
7401 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007402 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007403 if (x11_display == NULL)
7404 x11_display = xterm_dpy;
7405
7406 XtRealizeWidget(xterm_Shell);
7407 XSync(xterm_dpy, False);
7408 xterm_update();
7409 }
7410 if (xterm_Shell != (Widget)0)
7411 {
7412 clip_init(TRUE);
7413 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7414 x11_window = (Window)atol(strp);
7415 /* Check if $WINDOWID is valid. */
7416 if (test_x11_window(xterm_dpy) == FAIL)
7417 x11_window = 0;
7418 if (x11_window != 0)
7419 xterm_trace = 0;
7420 }
7421}
7422
7423 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007424start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007425{
7426 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7427 return;
7428 xterm_trace = 1;
7429 xterm_button = button;
7430 do_xterm_trace();
7431}
7432
7433
7434 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007435stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007436{
7437 if (xterm_trace < 0)
7438 return;
7439 xterm_trace = 0;
7440}
7441
7442/*
7443 * Query the xterm pointer and generate mouse termcodes if necessary
7444 * return TRUE if dragging is active, else FALSE
7445 */
7446 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007447do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007448{
7449 Window root, child;
7450 int root_x, root_y;
7451 int win_x, win_y;
7452 int row, col;
7453 int_u mask_return;
7454 char_u buf[50];
7455 char_u *strp;
7456 long got_hints;
7457 static char_u *mouse_code;
7458 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7459 static int prev_row = 0, prev_col = 0;
7460 static XSizeHints xterm_hints;
7461
7462 if (xterm_trace <= 0)
7463 return FALSE;
7464
7465 if (xterm_trace == 1)
7466 {
7467 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007468 * have changed recently. */
7469 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7470 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007471 || xterm_hints.width_inc <= 1
7472 || xterm_hints.height_inc <= 1)
7473 {
7474 xterm_trace = -1; /* Not enough data -- disable tracing */
7475 return FALSE;
7476 }
7477
7478 /* Rely on the same mouse code for the duration of this */
7479 mouse_code = find_termcode(mouse_name);
7480 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007481 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007482 xterm_trace = 2;
7483
7484 /* Find the offset of the chars, there might be a scrollbar on the
7485 * left of the window and/or a menu on the top (eterm etc.) */
7486 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7487 &win_x, &win_y, &mask_return);
7488 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7489 - (xterm_hints.height_inc / 2);
7490 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7491 xterm_hints.y = 2;
7492 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7493 - (xterm_hints.width_inc / 2);
7494 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7495 xterm_hints.x = 2;
7496 return TRUE;
7497 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007498 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007499 {
7500 xterm_trace = 0;
7501 return FALSE;
7502 }
7503
7504 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7505 &win_x, &win_y, &mask_return);
7506
7507 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7508 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7509 if (row == prev_row && col == prev_col)
7510 return TRUE;
7511
7512 STRCPY(buf, mouse_code);
7513 strp = buf + STRLEN(buf);
7514 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7515 *strp++ = (char_u)(col + ' ' + 1);
7516 *strp++ = (char_u)(row + ' ' + 1);
7517 *strp = 0;
7518 add_to_input_buf(buf, STRLEN(buf));
7519
7520 prev_row = row;
7521 prev_col = col;
7522 return TRUE;
7523}
7524
7525# if defined(FEAT_GUI) || defined(PROTO)
7526/*
7527 * Destroy the display, window and app_context. Required for GTK.
7528 */
7529 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007530clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007531{
7532 if (xterm_Shell != (Widget)0)
7533 {
7534 XtDestroyWidget(xterm_Shell);
7535 xterm_Shell = (Widget)0;
7536 }
7537 if (xterm_dpy != NULL)
7538 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007539# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007540 /* Lesstif and Solaris crash here, lose some memory */
7541 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007542# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007543 if (x11_display == xterm_dpy)
7544 x11_display = NULL;
7545 xterm_dpy = NULL;
7546 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007547# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007548 if (app_context != (XtAppContext)NULL)
7549 {
7550 /* Lesstif and Solaris crash here, lose some memory */
7551 XtDestroyApplicationContext(app_context);
7552 app_context = (XtAppContext)NULL;
7553 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007554# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007555}
7556# endif
7557
7558/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007559 * Catch up with GUI or X events.
7560 */
7561 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007562clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007563{
7564# ifdef FEAT_GUI
7565 if (gui.in_use)
7566 gui_mch_update();
7567 else
7568# endif
7569 if (xterm_Shell != (Widget)0)
7570 xterm_update();
7571}
7572
7573/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007574 * Catch up with any queued X events. This may put keyboard input into the
7575 * input buffer, call resize call-backs, trigger timers etc. If there is
7576 * nothing in the X event queue (& no timers pending), then we return
7577 * immediately.
7578 */
7579 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007580xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007581{
7582 XEvent event;
7583
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007584 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007585 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007586 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007587
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007588 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007589 break;
7590
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007591 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007592 {
7593 /* There is an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007594 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007595#ifdef FEAT_CLIENTSERVER
7596 {
7597 XPropertyEvent *e = (XPropertyEvent *)&event;
7598
7599 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007600 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007601 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007602 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007603#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007604 XtDispatchEvent(&event);
7605 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007606 else
7607 {
7608 /* There is something else than an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007609 XtAppProcessEvent(app_context, mask);
7610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007611 }
7612}
7613
7614 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007615clip_xterm_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007616{
7617 if (xterm_Shell != (Widget)0)
7618 return clip_x11_own_selection(xterm_Shell, cbd);
7619 return FAIL;
7620}
7621
7622 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007623clip_xterm_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007624{
7625 if (xterm_Shell != (Widget)0)
7626 clip_x11_lose_selection(xterm_Shell, cbd);
7627}
7628
7629 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007630clip_xterm_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007631{
7632 if (xterm_Shell != (Widget)0)
7633 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7634}
7635
7636 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007637clip_xterm_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007638{
7639 clip_x11_set_selection(cbd);
7640}
7641#endif
7642
7643
7644#if defined(USE_XSMP) || defined(PROTO)
7645/*
7646 * Code for X Session Management Protocol.
7647 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007648static void xsmp_handle_save_yourself(SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast);
7649static void xsmp_die(SmcConn smc_conn, SmPointer client_data);
7650static void xsmp_save_complete(SmcConn smc_conn, SmPointer client_data);
7651static void xsmp_shutdown_cancelled(SmcConn smc_conn, SmPointer client_data);
7652static void xsmp_ice_connection(IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007653
7654
7655# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007656static void xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007657
7658/*
7659 * This is our chance to ask the user if they want to save,
7660 * or abort the logout
7661 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007662 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007663xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007664{
7665 cmdmod_T save_cmdmod;
7666 int cancel_shutdown = False;
7667
7668 save_cmdmod = cmdmod;
7669 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007670 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007671 /* Mustn't logout */
7672 cancel_shutdown = True;
7673 cmdmod = save_cmdmod;
7674 setcursor(); /* position cursor */
7675 out_flush();
7676
7677 /* Done interaction */
7678 SmcInteractDone(smc_conn, cancel_shutdown);
7679
7680 /* Finish off
7681 * Only end save-yourself here if we're not cancelling shutdown;
7682 * we'll get a cancelled callback later in which we'll end it.
7683 * Hopefully get around glitchy SMs (like GNOME-1)
7684 */
7685 if (!cancel_shutdown)
7686 {
7687 xsmp.save_yourself = False;
7688 SmcSaveYourselfDone(smc_conn, True);
7689 }
7690}
7691# endif
7692
7693/*
7694 * Callback that starts save-yourself.
7695 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007696 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007697xsmp_handle_save_yourself(
7698 SmcConn smc_conn,
7699 SmPointer client_data UNUSED,
7700 int save_type UNUSED,
7701 Bool shutdown,
7702 int interact_style UNUSED,
7703 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007704{
7705 /* Handle already being in saveyourself */
7706 if (xsmp.save_yourself)
7707 SmcSaveYourselfDone(smc_conn, True);
7708 xsmp.save_yourself = True;
7709 xsmp.shutdown = shutdown;
7710
7711 /* First up, preserve all files */
7712 out_flush();
7713 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
7714
7715 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007716 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007717
7718# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
7719 /* Now see if we can ask about unsaved files */
7720 if (shutdown && !fast && gui.in_use)
7721 /* Need to interact with user, but need SM's permission */
7722 SmcInteractRequest(smc_conn, SmDialogError,
7723 xsmp_handle_interaction, client_data);
7724 else
7725# endif
7726 {
7727 /* Can stop the cycle here */
7728 SmcSaveYourselfDone(smc_conn, True);
7729 xsmp.save_yourself = False;
7730 }
7731}
7732
7733
7734/*
7735 * Callback to warn us of imminent death.
7736 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007737 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007738xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007739{
7740 xsmp_close();
7741
7742 /* quit quickly leaving swapfiles for modified buffers behind */
7743 getout_preserve_modified(0);
7744}
7745
7746
7747/*
7748 * Callback to tell us that save-yourself has completed.
7749 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007750 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007751xsmp_save_complete(
7752 SmcConn smc_conn UNUSED,
7753 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007754{
7755 xsmp.save_yourself = False;
7756}
7757
7758
7759/*
7760 * Callback to tell us that an instigated shutdown was cancelled
7761 * (maybe even by us)
7762 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007763 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007764xsmp_shutdown_cancelled(
7765 SmcConn smc_conn,
7766 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007767{
7768 if (xsmp.save_yourself)
7769 SmcSaveYourselfDone(smc_conn, True);
7770 xsmp.save_yourself = False;
7771 xsmp.shutdown = False;
7772}
7773
7774
7775/*
7776 * Callback to tell us that a new ICE connection has been established.
7777 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007778 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007779xsmp_ice_connection(
7780 IceConn iceConn,
7781 IcePointer clientData UNUSED,
7782 Bool opening,
7783 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007784{
7785 /* Intercept creation of ICE connection fd */
7786 if (opening)
7787 {
7788 xsmp_icefd = IceConnectionNumber(iceConn);
7789 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7790 }
7791}
7792
7793
7794/* Handle any ICE processing that's required; return FAIL if SM lost */
7795 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007796xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007797{
7798 Bool rep;
7799
7800 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7801 == IceProcessMessagesIOError)
7802 {
7803 /* Lost ICE */
7804 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007805 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007806 xsmp_close();
7807 return FAIL;
7808 }
7809 else
7810 return OK;
7811}
7812
7813static int dummy;
7814
7815/* Set up X Session Management Protocol */
7816 void
7817xsmp_init(void)
7818{
7819 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007820 SmcCallbacks smcallbacks;
7821#if 0
7822 SmPropValue smname;
7823 SmProp smnameprop;
7824 SmProp *smprops[1];
7825#endif
7826
7827 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007828 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007829
7830 xsmp.save_yourself = xsmp.shutdown = False;
7831
7832 /* Set up SM callbacks - must have all, even if they're not used */
7833 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7834 smcallbacks.save_yourself.client_data = NULL;
7835 smcallbacks.die.callback = xsmp_die;
7836 smcallbacks.die.client_data = NULL;
7837 smcallbacks.save_complete.callback = xsmp_save_complete;
7838 smcallbacks.save_complete.client_data = NULL;
7839 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
7840 smcallbacks.shutdown_cancelled.client_data = NULL;
7841
7842 /* Set up a watch on ICE connection creations. The "dummy" argument is
7843 * apparently required for FreeBSD (we get a BUS error when using NULL). */
7844 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
7845 {
7846 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007847 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007848 return;
7849 }
7850
7851 /* Create an SM connection */
7852 xsmp.smcconn = SmcOpenConnection(
7853 NULL,
7854 NULL,
7855 SmProtoMajor,
7856 SmProtoMinor,
7857 SmcSaveYourselfProcMask | SmcDieProcMask
7858 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
7859 &smcallbacks,
7860 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00007861 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007862 sizeof(errorstring),
7863 errorstring);
7864 if (xsmp.smcconn == NULL)
7865 {
7866 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00007867
Bram Moolenaar071d4272004-06-13 20:20:40 +00007868 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007869 {
7870 vim_snprintf(errorreport, sizeof(errorreport),
7871 _("XSMP SmcOpenConnection failed: %s"), errorstring);
7872 verb_msg((char_u *)errorreport);
7873 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007874 return;
7875 }
7876 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
7877
7878#if 0
7879 /* ID ourselves */
7880 smname.value = "vim";
7881 smname.length = 3;
7882 smnameprop.name = "SmProgram";
7883 smnameprop.type = "SmARRAY8";
7884 smnameprop.num_vals = 1;
7885 smnameprop.vals = &smname;
7886
7887 smprops[0] = &smnameprop;
7888 SmcSetProperties(xsmp.smcconn, 1, smprops);
7889#endif
7890}
7891
7892
7893/* Shut down XSMP comms. */
7894 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007895xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007896{
7897 if (xsmp_icefd != -1)
7898 {
7899 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00007900 if (xsmp.clientid != NULL)
7901 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00007902 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007903 xsmp_icefd = -1;
7904 }
7905}
7906#endif /* USE_XSMP */
7907
7908
7909#ifdef EBCDIC
7910/* Translate character to its CTRL- value */
7911char CtrlTable[] =
7912{
7913/* 00 - 5E */
7914 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7915 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7916 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7917 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7918 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7919 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7920/* ^ */ 0x1E,
7921/* - */ 0x1F,
7922/* 61 - 6C */
7923 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7924/* _ */ 0x1F,
7925/* 6E - 80 */
7926 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7927/* a */ 0x01,
7928/* b */ 0x02,
7929/* c */ 0x03,
7930/* d */ 0x37,
7931/* e */ 0x2D,
7932/* f */ 0x2E,
7933/* g */ 0x2F,
7934/* h */ 0x16,
7935/* i */ 0x05,
7936/* 8A - 90 */
7937 0, 0, 0, 0, 0, 0, 0,
7938/* j */ 0x15,
7939/* k */ 0x0B,
7940/* l */ 0x0C,
7941/* m */ 0x0D,
7942/* n */ 0x0E,
7943/* o */ 0x0F,
7944/* p */ 0x10,
7945/* q */ 0x11,
7946/* r */ 0x12,
7947/* 9A - A1 */
7948 0, 0, 0, 0, 0, 0, 0, 0,
7949/* s */ 0x13,
7950/* t */ 0x3C,
7951/* u */ 0x3D,
7952/* v */ 0x32,
7953/* w */ 0x26,
7954/* x */ 0x18,
7955/* y */ 0x19,
7956/* z */ 0x3F,
7957/* AA - AC */
7958 0, 0, 0,
7959/* [ */ 0x27,
7960/* AE - BC */
7961 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7962/* ] */ 0x1D,
7963/* BE - C0 */ 0, 0, 0,
7964/* A */ 0x01,
7965/* B */ 0x02,
7966/* C */ 0x03,
7967/* D */ 0x37,
7968/* E */ 0x2D,
7969/* F */ 0x2E,
7970/* G */ 0x2F,
7971/* H */ 0x16,
7972/* I */ 0x05,
7973/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
7974/* J */ 0x15,
7975/* K */ 0x0B,
7976/* L */ 0x0C,
7977/* M */ 0x0D,
7978/* N */ 0x0E,
7979/* O */ 0x0F,
7980/* P */ 0x10,
7981/* Q */ 0x11,
7982/* R */ 0x12,
7983/* DA - DF */ 0, 0, 0, 0, 0, 0,
7984/* \ */ 0x1C,
7985/* E1 */ 0,
7986/* S */ 0x13,
7987/* T */ 0x3C,
7988/* U */ 0x3D,
7989/* V */ 0x32,
7990/* W */ 0x26,
7991/* X */ 0x18,
7992/* Y */ 0x19,
7993/* Z */ 0x3F,
7994/* EA - FF*/ 0, 0, 0, 0, 0, 0,
7995 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7996};
7997
7998char MetaCharTable[]=
7999{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8000 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
8001 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
8002 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
8003 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
8004};
8005
8006
8007/* TODO: Use characters NOT numbers!!! */
8008char CtrlCharTable[]=
8009{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8010 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
8011 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
8012 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
8013 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
8014};
8015
8016
8017#endif