blob: b34c31645bb06718ea8327743fb22e0ab4085050 [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/*
374 * Write s[len] to the screen.
375 */
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 Moolenaar59716a22017-03-01 20:32:44 +0100478#ifdef FEAT_BEVAL
479 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
Bram Moolenaar39766a72013-11-03 00:41:00 +0100859#if defined(HAVE_AVAILABILITYMACROS_H)
Bram Moolenaar4cc95d12013-11-02 21:49:32 +0100860# include <AvailabilityMacros.h>
861#endif
862
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863#ifndef SIGSTKSZ
864# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
865#endif
866
867# ifdef HAVE_SIGALTSTACK
868static stack_t sigstk; /* for sigaltstack() */
869# else
870static struct sigstack sigstk; /* for sigstack() */
871# endif
872
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100873static void init_signal_stack(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874static char *signal_stack;
875
876 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100877init_signal_stack(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878{
879 if (signal_stack != NULL)
880 {
881# ifdef HAVE_SIGALTSTACK
Bram Moolenaar1a3d0862007-08-30 09:47:38 +0000882# if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
883 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
885 * "struct sigaltstack" needs to be declared. */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100886 extern int sigaltstack(const struct sigaltstack *ss, struct sigaltstack *oss);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000887# endif
888
889# ifdef HAVE_SS_BASE
890 sigstk.ss_base = signal_stack;
891# else
892 sigstk.ss_sp = signal_stack;
893# endif
894 sigstk.ss_size = SIGSTKSZ;
895 sigstk.ss_flags = 0;
896 (void)sigaltstack(&sigstk, NULL);
897# else
898 sigstk.ss_sp = signal_stack;
899 if (stack_grows_downwards)
900 sigstk.ss_sp += SIGSTKSZ - 1;
901 sigstk.ss_onstack = 0;
902 (void)sigstack(&sigstk, NULL);
903# endif
904 }
905}
906#endif
907
908/*
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000909 * We need correct prototypes for a signal function, otherwise mean compilers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910 * will barf when the second argument to signal() is ``wrong''.
911 * Let me try it with a few tricky defines from my own osdef.h (jw).
912 */
913#if defined(SIGWINCH)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 static RETSIGTYPE
915sig_winch SIGDEFARG(sigarg)
916{
917 /* this is not required on all systems, but it doesn't hurt anybody */
918 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
919 do_resize = TRUE;
920 SIGRETURN;
921}
922#endif
923
924#if defined(SIGINT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 static RETSIGTYPE
926catch_sigint SIGDEFARG(sigarg)
927{
928 /* this is not required on all systems, but it doesn't hurt anybody */
929 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
930 got_int = TRUE;
931 SIGRETURN;
932}
933#endif
934
935#if defined(SIGPWR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000936 static RETSIGTYPE
937catch_sigpwr SIGDEFARG(sigarg)
938{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000939 /* this is not required on all systems, but it doesn't hurt anybody */
940 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 /*
942 * I'm not sure we get the SIGPWR signal when the system is really going
943 * down or when the batteries are almost empty. Just preserve the swap
944 * files and don't exit, that can't do any harm.
945 */
946 ml_sync_all(FALSE, FALSE);
947 SIGRETURN;
948}
949#endif
950
951#ifdef SET_SIG_ALARM
952/*
953 * signal function for alarm().
954 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 static RETSIGTYPE
956sig_alarm SIGDEFARG(sigarg)
957{
958 /* doesn't do anything, just to break a system call */
959 sig_alarm_called = TRUE;
960 SIGRETURN;
961}
962#endif
963
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000964#if (defined(HAVE_SETJMP_H) \
965 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
966 || defined(FEAT_LIBCALL))) \
967 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968/*
969 * A simplistic version of setjmp() that only allows one level of using.
970 * Don't call twice before calling mch_endjmp()!.
971 * Usage:
972 * mch_startjmp();
973 * if (SETJMP(lc_jump_env) != 0)
974 * {
975 * mch_didjmp();
976 * EMSG("crash!");
977 * }
978 * else
979 * {
980 * do_the_work;
981 * mch_endjmp();
982 * }
983 * Note: Can't move SETJMP() here, because a function calling setjmp() must
984 * not return before the saved environment is used.
985 * Returns OK for normal return, FAIL when the protected code caused a
986 * problem and LONGJMP() was used.
987 */
988 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100989mch_startjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000990{
991#ifdef SIGHASARG
992 lc_signal = 0;
993#endif
994 lc_active = TRUE;
995}
996
997 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100998mch_endjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999{
1000 lc_active = FALSE;
1001}
1002
1003 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001004mch_didjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001005{
1006# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
1007 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
1008 * otherwise catching the signal only works once. */
1009 init_signal_stack();
1010# endif
1011}
1012#endif
1013
1014/*
1015 * This function handles deadly signals.
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001016 * It tries to preserve any swap files and exit properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 * (partly from Elvis).
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001018 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in
1019 * a deadlock.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 */
1021 static RETSIGTYPE
1022deathtrap SIGDEFARG(sigarg)
1023{
1024 static int entered = 0; /* count the number of times we got here.
1025 Note: when memory has been corrupted
1026 this may get an arbitrary value! */
1027#ifdef SIGHASARG
1028 int i;
1029#endif
1030
1031#if defined(HAVE_SETJMP_H)
1032 /*
1033 * Catch a crash in protected code.
1034 * Restores the environment saved in lc_jump_env, which looks like
1035 * SETJMP() returns 1.
1036 */
1037 if (lc_active)
1038 {
1039# if defined(SIGHASARG)
1040 lc_signal = sigarg;
1041# endif
1042 lc_active = FALSE; /* don't jump again */
1043 LONGJMP(lc_jump_env, 1);
1044 /* NOTREACHED */
1045 }
1046#endif
1047
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001048#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +00001049# ifdef SIGQUIT
1050 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
1051 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
1052 * pressing CTRL-\, but we don't want Vim to exit then. */
1053 if (in_mch_delay && sigarg == SIGQUIT)
1054 SIGRETURN;
1055# endif
1056
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001057 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
1058 * here. This avoids that a non-reentrant function is interrupted, e.g.,
1059 * free(). Calling free() again may then cause a crash. */
1060 if (entered == 0
1061 && (0
1062# ifdef SIGHUP
1063 || sigarg == SIGHUP
1064# endif
1065# ifdef SIGQUIT
1066 || sigarg == SIGQUIT
1067# endif
1068# ifdef SIGTERM
1069 || sigarg == SIGTERM
1070# endif
1071# ifdef SIGPWR
1072 || sigarg == SIGPWR
1073# endif
1074# ifdef SIGUSR1
1075 || sigarg == SIGUSR1
1076# endif
1077# ifdef SIGUSR2
1078 || sigarg == SIGUSR2
1079# endif
1080 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001081 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001082 SIGRETURN;
1083#endif
1084
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 /* Remember how often we have been called. */
1086 ++entered;
1087
Bram Moolenaare429e702016-06-10 19:49:14 +02001088#ifdef FEAT_AUTOCMD
1089 /* Executing autocommands is likely to use more stack space than we have
1090 * available in the signal stack. */
1091 block_autocmds();
1092#endif
1093
Bram Moolenaar071d4272004-06-13 20:20:40 +00001094#ifdef FEAT_EVAL
1095 /* Set the v:dying variable. */
1096 set_vim_var_nr(VV_DYING, (long)entered);
1097#endif
1098
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001099#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 /* Since we are now using the signal stack, need to reset the stack
1101 * limit. Otherwise using a regexp will fail. */
1102 get_stack_limit();
1103#endif
1104
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001105#if 0
1106 /* This is for opening gdb the moment Vim crashes.
1107 * You need to manually adjust the file name and Vim executable name.
1108 * Suggested by SungHyun Nam. */
1109 {
1110# define VI_GDB_FILE "/tmp/vimgdb"
1111# define VIM_NAME "/usr/bin/vim"
1112 FILE *fp = fopen(VI_GDB_FILE, "w");
1113 if (fp)
1114 {
1115 fprintf(fp,
1116 "file %s\n"
1117 "attach %d\n"
1118 "set height 1000\n"
1119 "bt full\n"
1120 , VIM_NAME, getpid());
1121 fclose(fp);
1122 system("xterm -e gdb -x "VI_GDB_FILE);
1123 unlink(VI_GDB_FILE);
1124 }
1125 }
1126#endif
1127
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128#ifdef SIGHASARG
1129 /* try to find the name of this signal */
1130 for (i = 0; signal_info[i].sig != -1; i++)
1131 if (sigarg == signal_info[i].sig)
1132 break;
1133 deadly_signal = sigarg;
1134#endif
1135
1136 full_screen = FALSE; /* don't write message to the GUI, it might be
1137 * part of the problem... */
1138 /*
1139 * If something goes wrong after entering here, we may get here again.
1140 * When this happens, give a message and try to exit nicely (resetting the
1141 * terminal mode, etc.)
1142 * When this happens twice, just exit, don't even try to give a message,
1143 * stack may be corrupt or something weird.
1144 * When this still happens again (or memory was corrupted in such a way
1145 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1146 */
1147 if (entered >= 3)
1148 {
1149 reset_signals(); /* don't catch any signals anymore */
1150 may_core_dump();
1151 if (entered >= 4)
1152 _exit(8);
1153 exit(7);
1154 }
1155 if (entered == 2)
1156 {
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001157 /* No translation, it may call malloc(). */
1158 OUT_STR("Vim: Double signal, exiting\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 out_flush();
1160 getout(1);
1161 }
1162
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001163 /* No translation, it may call malloc(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164#ifdef SIGHASARG
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001165 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001166 signal_info[i].name);
1167#else
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001168 sprintf((char *)IObuff, "Vim: Caught deadly signal\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169#endif
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001170
1171 /* Preserve files and exit. This sets the really_exiting flag to prevent
1172 * calling free(). */
1173 preserve_exit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174
Bram Moolenaare429e702016-06-10 19:49:14 +02001175 /* NOTREACHED */
1176
Bram Moolenaar009b2592004-10-24 19:18:58 +00001177#ifdef NBDEBUG
1178 reset_signals();
1179 may_core_dump();
1180 abort();
1181#endif
1182
Bram Moolenaar071d4272004-06-13 20:20:40 +00001183 SIGRETURN;
1184}
1185
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001186#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187/*
1188 * On Solaris with multi-threading, suspending might not work immediately.
1189 * Catch the SIGCONT signal, which will be used as an indication whether the
1190 * suspending has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001191 *
1192 * On Linux, signal is not always handled immediately either.
1193 * See https://bugs.launchpad.net/bugs/291373
1194 *
Bram Moolenaarb292a2a2011-02-09 18:47:40 +01001195 * volatile because it is used in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001197static volatile int sigcont_received;
Bram Moolenaard99df422016-01-29 23:20:40 +01001198static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199
1200/*
1201 * signal handler for SIGCONT
1202 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 static RETSIGTYPE
1204sigcont_handler SIGDEFARG(sigarg)
1205{
1206 sigcont_received = TRUE;
1207 SIGRETURN;
1208}
1209#endif
1210
Bram Moolenaar62b42182010-09-21 22:09:37 +02001211# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001212static void loose_clipboard(void);
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001213# ifdef USE_SYSTEM
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001214static void save_clipboard(void);
1215static void restore_clipboard(void);
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001216
1217static void *clip_star_save = NULL;
1218static void *clip_plus_save = NULL;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001219# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001220
1221/*
1222 * Called when Vim is going to sleep or execute a shell command.
1223 * We can't respond to requests for the X selections. Lose them, otherwise
1224 * other applications will hang. But first copy the text to cut buffer 0.
1225 */
1226 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001227loose_clipboard(void)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001228{
1229 if (clip_star.owned || clip_plus.owned)
1230 {
1231 x11_export_final_selection();
1232 if (clip_star.owned)
1233 clip_lose_selection(&clip_star);
1234 if (clip_plus.owned)
1235 clip_lose_selection(&clip_plus);
1236 if (x11_display != NULL)
1237 XFlush(x11_display);
1238 }
1239}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001240
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001241# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001242/*
1243 * Save clipboard text to restore later.
1244 */
1245 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001246save_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001247{
1248 if (clip_star.owned)
1249 clip_star_save = get_register('*', TRUE);
1250 if (clip_plus.owned)
1251 clip_plus_save = get_register('+', TRUE);
1252}
1253
1254/*
1255 * Restore clipboard text if no one own the X selection.
1256 */
1257 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001258restore_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001259{
1260 if (clip_star_save != NULL)
1261 {
1262 if (!clip_gen_owner_exists(&clip_star))
1263 put_register('*', clip_star_save);
1264 else
1265 free_register(clip_star_save);
1266 clip_star_save = NULL;
1267 }
1268 if (clip_plus_save != NULL)
1269 {
1270 if (!clip_gen_owner_exists(&clip_plus))
1271 put_register('+', clip_plus_save);
1272 else
1273 free_register(clip_plus_save);
1274 clip_plus_save = NULL;
1275 }
1276}
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001277# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001278#endif
1279
Bram Moolenaar071d4272004-06-13 20:20:40 +00001280/*
1281 * If the machine has job control, use it to suspend the program,
1282 * otherwise fake it by starting a new shell.
1283 */
1284 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001285mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286{
1287 /* BeOS does have SIGTSTP, but it doesn't work. */
1288#if defined(SIGTSTP) && !defined(__BEOS__)
1289 out_flush(); /* needed to make cursor visible on some systems */
1290 settmode(TMODE_COOK);
1291 out_flush(); /* needed to disable mouse on some systems */
1292
1293# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001294 loose_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295# endif
1296
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001297# if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 sigcont_received = FALSE;
1299# endif
1300 kill(0, SIGTSTP); /* send ourselves a STOP signal */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001301# if defined(_REENTRANT) && defined(SIGCONT)
1302 /*
1303 * Wait for the SIGCONT signal to be handled. It generally happens
1304 * immediately, but somehow not all the time. Do not call pause()
1305 * because there would be race condition which would hang Vim if
1306 * signal happened in between the test of sigcont_received and the
1307 * call to pause(). If signal is not yet received, call sleep(0)
1308 * to just yield CPU. Signal should then be received. If somehow
1309 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1310 * further if signal is not received after 1+2+3+4 ms (not expected
1311 * to happen).
1312 */
1313 {
Bram Moolenaar262735e2009-07-14 10:20:22 +00001314 long wait_time;
1315 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001316 /* Loop is not entered most of the time */
Bram Moolenaar262735e2009-07-14 10:20:22 +00001317 mch_delay(wait_time, FALSE);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001318 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319# endif
1320
1321# ifdef FEAT_TITLE
1322 /*
1323 * Set oldtitle to NULL, so the current title is obtained again.
1324 */
1325 vim_free(oldtitle);
1326 oldtitle = NULL;
1327# endif
1328 settmode(TMODE_RAW);
1329 need_check_timestamps = TRUE;
1330 did_check_timestamps = FALSE;
1331#else
1332 suspend_shell();
1333#endif
1334}
1335
1336 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001337mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001338{
1339 Columns = 80;
1340 Rows = 24;
1341
1342 out_flush();
1343 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001344
Bram Moolenaar56718732006-03-15 22:53:57 +00001345#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001346 mac_conv_init();
1347#endif
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001348#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
1349 win_clip_init();
1350#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351}
1352
1353 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001354set_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001355{
1356#if defined(SIGWINCH)
1357 /*
1358 * WINDOW CHANGE signal is handled with sig_winch().
1359 */
1360 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1361#endif
1362
1363 /*
1364 * We want the STOP signal to work, to make mch_suspend() work.
1365 * For "rvim" the STOP signal is ignored.
1366 */
1367#ifdef SIGTSTP
1368 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1369#endif
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001370#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 signal(SIGCONT, sigcont_handler);
1372#endif
1373
1374 /*
1375 * We want to ignore breaking of PIPEs.
1376 */
1377#ifdef SIGPIPE
1378 signal(SIGPIPE, SIG_IGN);
1379#endif
1380
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001382 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383#endif
1384
1385 /*
1386 * Ignore alarm signals (Perl's alarm() generates it).
1387 */
1388#ifdef SIGALRM
1389 signal(SIGALRM, SIG_IGN);
1390#endif
1391
1392 /*
1393 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1394 * work will be lost.
1395 */
1396#ifdef SIGPWR
1397 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1398#endif
1399
1400 /*
1401 * Arrange for other signals to gracefully shutdown Vim.
1402 */
1403 catch_signals(deathtrap, SIG_ERR);
1404
1405#if defined(FEAT_GUI) && defined(SIGHUP)
1406 /*
1407 * When the GUI is running, ignore the hangup signal.
1408 */
1409 if (gui.in_use)
1410 signal(SIGHUP, SIG_IGN);
1411#endif
1412}
1413
Bram Moolenaardf177f62005-02-22 08:39:57 +00001414#if defined(SIGINT) || defined(PROTO)
1415/*
1416 * Catch CTRL-C (only works while in Cooked mode).
1417 */
1418 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001419catch_int_signal(void)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001420{
1421 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1422}
1423#endif
1424
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001426reset_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001427{
1428 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001429#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 /* SIGCONT isn't in the list, because its default action is ignore */
1431 signal(SIGCONT, SIG_DFL);
1432#endif
1433}
1434
1435 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001436catch_signals(
1437 RETSIGTYPE (*func_deadly)(),
1438 RETSIGTYPE (*func_other)())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439{
1440 int i;
1441
1442 for (i = 0; signal_info[i].sig != -1; i++)
1443 if (signal_info[i].deadly)
1444 {
1445#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1446 struct sigaction sa;
1447
1448 /* Setup to use the alternate stack for the signal function. */
1449 sa.sa_handler = func_deadly;
1450 sigemptyset(&sa.sa_mask);
1451# if defined(__linux__) && defined(_REENTRANT)
1452 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1453 * thread handling in combination with using the alternate stack:
1454 * pthread library functions try to use the stack pointer to
1455 * identify the current thread, causing a SEGV signal, which
1456 * recursively calls deathtrap() and hangs. */
1457 sa.sa_flags = 0;
1458# else
1459 sa.sa_flags = SA_ONSTACK;
1460# endif
1461 sigaction(signal_info[i].sig, &sa, NULL);
1462#else
1463# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1464 struct sigvec sv;
1465
1466 /* Setup to use the alternate stack for the signal function. */
1467 sv.sv_handler = func_deadly;
1468 sv.sv_mask = 0;
1469 sv.sv_flags = SV_ONSTACK;
1470 sigvec(signal_info[i].sig, &sv, NULL);
1471# else
1472 signal(signal_info[i].sig, func_deadly);
1473# endif
1474#endif
1475 }
1476 else if (func_other != SIG_ERR)
1477 signal(signal_info[i].sig, func_other);
1478}
1479
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02001480#ifdef HAVE_SIGPROCMASK
1481 static void
1482block_signals(sigset_t *set)
1483{
1484 sigset_t newset;
1485 int i;
1486
1487 sigemptyset(&newset);
1488
1489 for (i = 0; signal_info[i].sig != -1; i++)
1490 sigaddset(&newset, signal_info[i].sig);
1491
1492# if defined(_REENTRANT) && defined(SIGCONT)
1493 /* SIGCONT isn't in the list, because its default action is ignore */
1494 sigaddset(&newset, SIGCONT);
1495# endif
1496
1497 sigprocmask(SIG_BLOCK, &newset, set);
1498}
1499
1500 static void
1501unblock_signals(sigset_t *set)
1502{
1503 sigprocmask(SIG_SETMASK, set, NULL);
1504}
1505#endif
1506
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001508 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001509 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1510 * return TRUE
1511 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1512 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
Bram Moolenaar67c53842010-05-22 18:28:27 +02001513 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001514 * Returns TRUE when Vim should exit.
1515 */
1516 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001517vim_handle_signal(int sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001518{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001519 static int got_signal = 0;
1520 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001521
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001522 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001523 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001524 case SIGNAL_BLOCK: blocked = TRUE;
1525 break;
1526
1527 case SIGNAL_UNBLOCK: blocked = FALSE;
1528 if (got_signal != 0)
1529 {
1530 kill(getpid(), got_signal);
1531 got_signal = 0;
1532 }
1533 break;
1534
1535 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001536 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001537 got_signal = sig;
1538#ifdef SIGPWR
1539 if (sig != SIGPWR)
1540#endif
1541 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001542 break;
1543 }
1544 return FALSE;
1545}
1546
1547/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001548 * Check_win checks whether we have an interactive stdout.
1549 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001551mch_check_win(int argc UNUSED, char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 if (isatty(1))
1554 return OK;
1555 return FAIL;
1556}
1557
1558/*
1559 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1560 */
1561 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001562mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563{
1564 if (isatty(read_cmd_fd))
1565 return TRUE;
1566 return FALSE;
1567}
1568
1569#ifdef FEAT_X11
1570
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001571# if defined(ELAPSED_TIMEVAL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1573
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574/*
1575 * Give a message about the elapsed time for opening the X window.
1576 */
1577 static void
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001578xopen_message(long elapsed_msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579{
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001580 smsg((char_u *)_("Opening the X display took %ld msec"), elapsed_msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581}
1582# endif
1583#endif
1584
1585#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1586/*
1587 * A few functions shared by X11 title and clipboard code.
1588 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001589static int x_error_handler(Display *dpy, XErrorEvent *error_event);
1590static int x_error_check(Display *dpy, XErrorEvent *error_event);
1591static int x_connect_to_server(void);
1592static int test_x11_window(Display *dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593
1594static int got_x_error = FALSE;
1595
1596/*
1597 * X Error handler, otherwise X just exits! (very rude) -- webb
1598 */
1599 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001600x_error_handler(Display *dpy, XErrorEvent *error_event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001602 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 STRCAT(IObuff, _("\nVim: Got X error\n"));
1604
1605 /* We cannot print a message and continue, because no X calls are allowed
1606 * here (causes my system to hang). Silently continuing might be an
1607 * alternative... */
1608 preserve_exit(); /* preserve files and exit */
1609
1610 return 0; /* NOTREACHED */
1611}
1612
1613/*
1614 * Another X Error handler, just used to check for errors.
1615 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001617x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618{
1619 got_x_error = TRUE;
1620 return 0;
1621}
1622
1623#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1624# if defined(HAVE_SETJMP_H)
1625/*
1626 * An X IO Error handler, used to catch error while opening the display.
1627 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001628static int x_IOerror_check(Display *dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001631x_IOerror_check(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632{
1633 /* This function should not return, it causes exit(). Longjump instead. */
1634 LONGJMP(lc_jump_env, 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02001635# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001636 return 0; /* avoid the compiler complains about missing return value */
1637# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001638}
1639# endif
1640
1641/*
1642 * An X IO Error handler, used to catch terminal errors.
1643 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001644static int x_IOerror_handler(Display *dpy);
1645static void may_restore_clipboard(void);
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001646static int xterm_dpy_was_reset = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001647
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001649x_IOerror_handler(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650{
1651 xterm_dpy = NULL;
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001652 xterm_dpy_was_reset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001653 x11_window = 0;
1654 x11_display = NULL;
1655 xterm_Shell = (Widget)0;
1656
1657 /* This function should not return, it causes exit(). Longjump instead. */
1658 LONGJMP(x_jump_env, 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02001659# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001660 return 0; /* avoid the compiler complains about missing return value */
1661# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662}
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001663
1664/*
1665 * If the X11 connection was lost try to restore it.
1666 * Helps when the X11 server was stopped and restarted while Vim was inactive
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01001667 * (e.g. through tmux).
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001668 */
1669 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001670may_restore_clipboard(void)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001671{
1672 if (xterm_dpy_was_reset)
1673 {
1674 xterm_dpy_was_reset = FALSE;
Bram Moolenaar527a6782014-12-17 17:59:31 +01001675
1676# ifndef LESSTIF_VERSION
1677 /* This has been reported to avoid Vim getting stuck. */
1678 if (app_context != (XtAppContext)NULL)
1679 {
1680 XtDestroyApplicationContext(app_context);
1681 app_context = (XtAppContext)NULL;
1682 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
1683 }
1684# endif
1685
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001686 setup_term_clip();
1687 get_x11_title(FALSE);
1688 }
1689}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690#endif
1691
1692/*
1693 * Return TRUE when connection to the X server is desired.
1694 */
1695 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001696x_connect_to_server(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698#if defined(FEAT_CLIENTSERVER)
1699 if (x_force_connect)
1700 return TRUE;
1701#endif
1702 if (x_no_connect)
1703 return FALSE;
1704
1705 /* Check for a match with "exclude:" from 'clipboard'. */
1706 if (clip_exclude_prog != NULL)
1707 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01001708 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001709 return FALSE;
1710 }
1711 return TRUE;
1712}
1713
1714/*
1715 * Test if "dpy" and x11_window are valid by getting the window title.
1716 * I don't actually want it yet, so there may be a simpler call to use, but
1717 * this will cause the error handler x_error_check() to be called if anything
1718 * is wrong, such as the window pointer being invalid (as can happen when the
1719 * user changes his DISPLAY, but not his WINDOWID) -- webb
1720 */
1721 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001722test_x11_window(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723{
1724 int (*old_handler)();
1725 XTextProperty text_prop;
1726
1727 old_handler = XSetErrorHandler(x_error_check);
1728 got_x_error = FALSE;
1729 if (XGetWMName(dpy, x11_window, &text_prop))
1730 XFree((void *)text_prop.value);
1731 XSync(dpy, False);
1732 (void)XSetErrorHandler(old_handler);
1733
1734 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001735 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001736
1737 return (got_x_error ? FAIL : OK);
1738}
1739#endif
1740
1741#ifdef FEAT_TITLE
1742
1743#ifdef FEAT_X11
1744
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001745static int get_x11_thing(int get_title, int test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746
1747/*
1748 * try to get x11 window and display
1749 *
1750 * return FAIL for failure, OK otherwise
1751 */
1752 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001753get_x11_windis(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001754{
1755 char *winid;
1756 static int result = -1;
1757#define XD_NONE 0 /* x11_display not set here */
1758#define XD_HERE 1 /* x11_display opened here */
1759#define XD_GUI 2 /* x11_display used from gui.dpy */
1760#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1761 static int x11_display_from = XD_NONE;
1762 static int did_set_error_handler = FALSE;
1763
1764 if (!did_set_error_handler)
1765 {
1766 /* X just exits if it finds an error otherwise! */
1767 (void)XSetErrorHandler(x_error_handler);
1768 did_set_error_handler = TRUE;
1769 }
1770
Bram Moolenaar9372a112005-12-06 19:59:18 +00001771#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 if (gui.in_use)
1773 {
1774 /*
1775 * If the X11 display was opened here before, for the window where Vim
1776 * was started, close that one now to avoid a memory leak.
1777 */
1778 if (x11_display_from == XD_HERE && x11_display != NULL)
1779 {
1780 XCloseDisplay(x11_display);
1781 x11_display_from = XD_NONE;
1782 }
1783 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1784 {
1785 x11_display_from = XD_GUI;
1786 return OK;
1787 }
1788 x11_display = NULL;
1789 return FAIL;
1790 }
1791 else if (x11_display_from == XD_GUI)
1792 {
1793 /* GUI must have stopped somehow, clear x11_display */
1794 x11_window = 0;
1795 x11_display = NULL;
1796 x11_display_from = XD_NONE;
1797 }
1798#endif
1799
1800 /* When started with the "-X" argument, don't try connecting. */
1801 if (!x_connect_to_server())
1802 return FAIL;
1803
1804 /*
1805 * If WINDOWID not set, should try another method to find out
1806 * what the current window number is. The only code I know for
1807 * this is very complicated.
1808 * We assume that zero is invalid for WINDOWID.
1809 */
1810 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1811 x11_window = (Window)atol(winid);
1812
1813#ifdef FEAT_XCLIPBOARD
1814 if (xterm_dpy != NULL && x11_window != 0)
1815 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001816 /* We may have checked it already, but Gnome terminal can move us to
1817 * another window, so we need to check every time. */
1818 if (x11_display_from != XD_XTERM)
1819 {
1820 /*
1821 * If the X11 display was opened here before, for the window where
1822 * Vim was started, close that one now to avoid a memory leak.
1823 */
1824 if (x11_display_from == XD_HERE && x11_display != NULL)
1825 XCloseDisplay(x11_display);
1826 x11_display = xterm_dpy;
1827 x11_display_from = XD_XTERM;
1828 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 if (test_x11_window(x11_display) == FAIL)
1830 {
1831 /* probably bad $WINDOWID */
1832 x11_window = 0;
1833 x11_display = NULL;
1834 x11_display_from = XD_NONE;
1835 return FAIL;
1836 }
1837 return OK;
1838 }
1839#endif
1840
1841 if (x11_window == 0 || x11_display == NULL)
1842 result = -1;
1843
1844 if (result != -1) /* Have already been here and set this */
1845 return result; /* Don't do all these X calls again */
1846
1847 if (x11_window != 0 && x11_display == NULL)
1848 {
1849#ifdef SET_SIG_ALARM
1850 RETSIGTYPE (*sig_save)();
1851#endif
1852#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1853 struct timeval start_tv;
1854
1855 if (p_verbose > 0)
1856 gettimeofday(&start_tv, NULL);
1857#endif
1858
1859#ifdef SET_SIG_ALARM
1860 /*
1861 * Opening the Display may hang if the DISPLAY setting is wrong, or
1862 * the network connection is bad. Set an alarm timer to get out.
1863 */
1864 sig_alarm_called = FALSE;
1865 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1866 (RETSIGTYPE (*)())sig_alarm);
1867 alarm(2);
1868#endif
1869 x11_display = XOpenDisplay(NULL);
1870
1871#ifdef SET_SIG_ALARM
1872 alarm(0);
1873 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1874 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001875 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001876#endif
1877 if (x11_display != NULL)
1878 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001879# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001881 {
1882 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001883 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001884 verbose_leave();
1885 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886# endif
1887 if (test_x11_window(x11_display) == FAIL)
1888 {
1889 /* Maybe window id is bad */
1890 x11_window = 0;
1891 XCloseDisplay(x11_display);
1892 x11_display = NULL;
1893 }
1894 else
1895 x11_display_from = XD_HERE;
1896 }
1897 }
1898 if (x11_window == 0 || x11_display == NULL)
1899 return (result = FAIL);
Bram Moolenaar727c8762010-10-20 19:17:48 +02001900
1901# ifdef FEAT_EVAL
1902 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
1903# endif
1904
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 return (result = OK);
1906}
1907
1908/*
1909 * Determine original x11 Window Title
1910 */
1911 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001912get_x11_title(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001913{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001914 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915}
1916
1917/*
1918 * Determine original x11 Window icon
1919 */
1920 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001921get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922{
1923 int retval = FALSE;
1924
1925 retval = get_x11_thing(FALSE, test_only);
1926
1927 /* could not get old icon, use terminal name */
1928 if (oldicon == NULL && !test_only)
1929 {
1930 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001931 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001933 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001934 }
1935
1936 return retval;
1937}
1938
1939 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001940get_x11_thing(
1941 int get_title, /* get title string */
1942 int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943{
1944 XTextProperty text_prop;
1945 int retval = FALSE;
1946 Status status;
1947
1948 if (get_x11_windis() == OK)
1949 {
1950 /* Get window/icon name if any */
1951 if (get_title)
1952 status = XGetWMName(x11_display, x11_window, &text_prop);
1953 else
1954 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1955
1956 /*
1957 * If terminal is xterm, then x11_window may be a child window of the
1958 * outer xterm window that actually contains the window/icon name, so
1959 * keep traversing up the tree until a window with a title/icon is
1960 * found.
1961 */
1962 /* Previously this was only done for xterm and alikes. I don't see a
1963 * reason why it would fail for other terminal emulators.
1964 * if (term_is_xterm) */
1965 {
1966 Window root;
1967 Window parent;
1968 Window win = x11_window;
1969 Window *children;
1970 unsigned int num_children;
1971
1972 while (!status || text_prop.value == NULL)
1973 {
1974 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1975 &num_children))
1976 break;
1977 if (children)
1978 XFree((void *)children);
1979 if (parent == root || parent == 0)
1980 break;
1981
1982 win = parent;
1983 if (get_title)
1984 status = XGetWMName(x11_display, win, &text_prop);
1985 else
1986 status = XGetWMIconName(x11_display, win, &text_prop);
1987 }
1988 }
1989 if (status && text_prop.value != NULL)
1990 {
1991 retval = TRUE;
1992 if (!test_only)
1993 {
Bram Moolenaarf82bac32010-07-25 22:30:20 +02001994#if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE)
1995 if (text_prop.encoding == XA_STRING
1996# ifdef FEAT_MBYTE
1997 && !has_mbyte
1998# endif
1999 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 {
2001#endif
2002 if (get_title)
2003 oldtitle = vim_strsave((char_u *)text_prop.value);
2004 else
2005 oldicon = vim_strsave((char_u *)text_prop.value);
Bram Moolenaarf82bac32010-07-25 22:30:20 +02002006#if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 }
2008 else
2009 {
2010 char **cl;
2011 Status transform_status;
2012 int n = 0;
2013
2014 transform_status = XmbTextPropertyToTextList(x11_display,
2015 &text_prop,
2016 &cl, &n);
2017 if (transform_status >= Success && n > 0 && cl[0])
2018 {
2019 if (get_title)
2020 oldtitle = vim_strsave((char_u *) cl[0]);
2021 else
2022 oldicon = vim_strsave((char_u *) cl[0]);
2023 XFreeStringList(cl);
2024 }
2025 else
2026 {
2027 if (get_title)
2028 oldtitle = vim_strsave((char_u *)text_prop.value);
2029 else
2030 oldicon = vim_strsave((char_u *)text_prop.value);
2031 }
2032 }
2033#endif
2034 }
2035 XFree((void *)text_prop.value);
2036 }
2037 }
2038 return retval;
2039}
2040
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002041/* Xutf8 functions are not avaialble on older systems. Note that on some
2042 * systems X_HAVE_UTF8_STRING may be defined in a header file but
2043 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for
2044 * that and defines HAVE_XUTF8SETWMPROPERTIES. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002046# if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047# define USE_UTF8_STRING
2048# endif
2049#endif
2050
2051/*
2052 * Set x11 Window Title
2053 *
2054 * get_x11_windis() must be called before this and have returned OK
2055 */
2056 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002057set_x11_title(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058{
2059 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
2060 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
2061 * supported everywhere and STRING doesn't work for multi-byte titles.
2062 */
2063#ifdef USE_UTF8_STRING
2064 if (enc_utf8)
2065 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
2066 NULL, NULL, 0, NULL, NULL, NULL);
2067 else
2068#endif
2069 {
2070#if XtSpecificationRelease >= 4
2071# ifdef FEAT_XFONTSET
2072 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
2073 NULL, NULL, 0, NULL, NULL, NULL);
2074# else
2075 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002076 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077
2078 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002079 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 XSetWMProperties(x11_display, x11_window, &text_prop,
2081 NULL, NULL, 0, NULL, NULL, NULL);
2082# endif
2083#else
2084 XStoreName(x11_display, x11_window, (char *)title);
2085#endif
2086 }
2087 XFlush(x11_display);
2088}
2089
2090/*
2091 * Set x11 Window icon
2092 *
2093 * get_x11_windis() must be called before this and have returned OK
2094 */
2095 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002096set_x11_icon(char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097{
2098 /* See above for comments about using X*SetWMProperties(). */
2099#ifdef USE_UTF8_STRING
2100 if (enc_utf8)
2101 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2102 NULL, 0, NULL, NULL, NULL);
2103 else
2104#endif
2105 {
2106#if XtSpecificationRelease >= 4
2107# ifdef FEAT_XFONTSET
2108 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2109 NULL, 0, NULL, NULL, NULL);
2110# else
2111 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002112 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002114 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
2116 NULL, 0, NULL, NULL, NULL);
2117# endif
2118#else
2119 XSetIconName(x11_display, x11_window, (char *)icon);
2120#endif
2121 }
2122 XFlush(x11_display);
2123}
2124
2125#else /* FEAT_X11 */
2126
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002128get_x11_title(int test_only UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129{
2130 return FALSE;
2131}
2132
2133 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002134get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135{
2136 if (!test_only)
2137 {
2138 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002139 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002140 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002141 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002142 }
2143 return FALSE;
2144}
2145
2146#endif /* FEAT_X11 */
2147
2148 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002149mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150{
2151 return get_x11_title(TRUE);
2152}
2153
2154 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002155mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156{
2157 return get_x11_icon(TRUE);
2158}
2159
2160/*
2161 * Set the window title and icon.
2162 */
2163 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002164mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165{
2166 int type = 0;
2167 static int recursive = 0;
2168
2169 if (T_NAME == NULL) /* no terminal name (yet) */
2170 return;
2171 if (title == NULL && icon == NULL) /* nothing to do */
2172 return;
2173
2174 /* When one of the X11 functions causes a deadly signal, we get here again
2175 * recursively. Avoid hanging then (something is probably locked). */
2176 if (recursive)
2177 return;
2178 ++recursive;
2179
2180 /*
2181 * if the window ID and the display is known, we may use X11 calls
2182 */
2183#ifdef FEAT_X11
2184 if (get_x11_windis() == OK)
2185 type = 1;
2186#else
2187# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
2188 if (gui.in_use)
2189 type = 1;
2190# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191#endif
2192
2193 /*
Bram Moolenaarf82bac32010-07-25 22:30:20 +02002194 * Note: if "t_ts" is set, title is set with escape sequence rather
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 * than x11 calls, because the x11 calls don't always work
2196 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 if ((type || *T_TS != NUL) && title != NULL)
2198 {
2199 if (oldtitle == NULL
2200#ifdef FEAT_GUI
2201 && !gui.in_use
2202#endif
2203 ) /* first call but not in GUI, save title */
2204 (void)get_x11_title(FALSE);
2205
2206 if (*T_TS != NUL) /* it's OK if t_fs is empty */
2207 term_settitle(title);
2208#ifdef FEAT_X11
2209 else
2210# ifdef FEAT_GUI_GTK
2211 if (!gui.in_use) /* don't do this if GTK+ is running */
2212# endif
2213 set_x11_title(title); /* x11 */
2214#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002215#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2217 else
2218 gui_mch_settitle(title, icon);
2219#endif
2220 did_set_title = TRUE;
2221 }
2222
2223 if ((type || *T_CIS != NUL) && icon != NULL)
2224 {
2225 if (oldicon == NULL
2226#ifdef FEAT_GUI
2227 && !gui.in_use
2228#endif
2229 ) /* first call, save icon */
2230 get_x11_icon(FALSE);
2231
2232 if (*T_CIS != NUL)
2233 {
2234 out_str(T_CIS); /* set icon start */
2235 out_str_nf(icon);
2236 out_str(T_CIE); /* set icon end */
2237 out_flush();
2238 }
2239#ifdef FEAT_X11
2240 else
2241# ifdef FEAT_GUI_GTK
2242 if (!gui.in_use) /* don't do this if GTK+ is running */
2243# endif
2244 set_x11_icon(icon); /* x11 */
2245#endif
2246 did_set_icon = TRUE;
2247 }
2248 --recursive;
2249}
2250
2251/*
2252 * Restore the window/icon title.
2253 * "which" is one of:
2254 * 1 only restore title
2255 * 2 only restore icon
2256 * 3 restore title and icon
2257 */
2258 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002259mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002260{
2261 /* only restore the title or icon when it has been set */
2262 mch_settitle(((which & 1) && did_set_title) ?
2263 (oldtitle ? oldtitle : p_titleold) : NULL,
2264 ((which & 2) && did_set_icon) ? oldicon : NULL);
2265}
2266
2267#endif /* FEAT_TITLE */
2268
2269/*
2270 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002271 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 */
2273 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002274vim_is_xterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275{
2276 if (name == NULL)
2277 return FALSE;
2278 return (STRNICMP(name, "xterm", 5) == 0
2279 || STRNICMP(name, "nxterm", 6) == 0
2280 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002281 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 || STRNICMP(name, "rxvt", 4) == 0
Bram Moolenaar995e4af2017-09-01 20:24:03 +02002283 || STRNICMP(name, "screen.xterm", 12) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002284 || STRCMP(name, "builtin_xterm") == 0);
2285}
2286
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002287#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2288/*
2289 * Return TRUE if "name" appears to be that of a terminal
2290 * known to support the xterm-style mouse protocol.
2291 * Relies on term_is_xterm having been set to its correct value.
2292 */
2293 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002294use_xterm_like_mouse(char_u *name)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002295{
2296 return (name != NULL
Bram Moolenaare56132b2016-08-14 18:23:21 +02002297 && (term_is_xterm
2298 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002299 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaare56132b2016-08-14 18:23:21 +02002300 || STRICMP(name, "st") == 0
2301 || STRNICMP(name, "st-", 3) == 0
2302 || STRNICMP(name, "stterm", 6) == 0));
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002303}
2304#endif
2305
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2307/*
2308 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2309 * Return 1 for "xterm".
2310 * Return 2 for "xterm2".
Bram Moolenaarc8427482011-10-20 21:09:35 +02002311 * Return 3 for "urxvt".
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002312 * Return 4 for "sgr".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 */
2314 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002315use_xterm_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316{
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002317 if (ttym_flags == TTYM_SGR)
2318 return 4;
Bram Moolenaarc8427482011-10-20 21:09:35 +02002319 if (ttym_flags == TTYM_URXVT)
2320 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 if (ttym_flags == TTYM_XTERM2)
2322 return 2;
2323 if (ttym_flags == TTYM_XTERM)
2324 return 1;
2325 return 0;
2326}
2327#endif
2328
2329 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002330vim_is_iris(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331{
2332 if (name == NULL)
2333 return FALSE;
2334 return (STRNICMP(name, "iris-ansi", 9) == 0
2335 || STRCMP(name, "builtin_iris-ansi") == 0);
2336}
2337
2338 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002339vim_is_vt300(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002340{
2341 if (name == NULL)
2342 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002343 /* catch VT100 - VT5xx */
2344 return ((STRNICMP(name, "vt", 2) == 0
2345 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346 || STRCMP(name, "builtin_vt320") == 0);
2347}
2348
2349/*
2350 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2351 * This should include all windowed terminal emulators.
2352 */
2353 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002354vim_is_fastterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355{
2356 if (name == NULL)
2357 return FALSE;
2358 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2359 return TRUE;
2360 return ( STRNICMP(name, "hpterm", 6) == 0
2361 || STRNICMP(name, "sun-cmd", 7) == 0
2362 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002363 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 || STRNICMP(name, "dtterm", 6) == 0);
2365}
2366
2367/*
2368 * Insert user name in s[len].
2369 * Return OK if a name found.
2370 */
2371 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002372mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373{
2374#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002375 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 return OK;
2377#else
2378 return mch_get_uname(getuid(), s, len);
2379#endif
2380}
2381
2382/*
2383 * Insert user name for "uid" in s[len].
2384 * Return OK if a name found.
2385 */
2386 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002387mch_get_uname(uid_t uid, char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388{
2389#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2390 struct passwd *pw;
2391
2392 if ((pw = getpwuid(uid)) != NULL
2393 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2394 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002395 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 return OK;
2397 }
2398#endif
2399 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2400 return FAIL; /* a number is not a name */
2401}
2402
2403/*
2404 * Insert host name is s[len].
2405 */
2406
2407#ifdef HAVE_SYS_UTSNAME_H
2408 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002409mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410{
2411 struct utsname vutsname;
2412
2413 if (uname(&vutsname) < 0)
2414 *s = NUL;
2415 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002416 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417}
2418#else /* HAVE_SYS_UTSNAME_H */
2419
2420# ifdef HAVE_SYS_SYSTEMINFO_H
2421# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2422# endif
2423
2424 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002425mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002426{
2427# ifdef VAXC
2428 vaxc$gethostname((char *)s, len);
2429# else
2430 gethostname((char *)s, len);
2431# endif
2432 s[len - 1] = NUL; /* make sure it's terminated */
2433}
2434#endif /* HAVE_SYS_UTSNAME_H */
2435
2436/*
2437 * return process ID
2438 */
2439 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002440mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441{
2442 return (long)getpid();
2443}
2444
2445#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002446static char *strerror(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447
2448 static char *
Bram Moolenaar05540972016-01-30 20:31:25 +01002449strerror(int err)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450{
2451 extern int sys_nerr;
2452 extern char *sys_errlist[];
2453 static char er[20];
2454
2455 if (err > 0 && err < sys_nerr)
2456 return (sys_errlist[err]);
2457 sprintf(er, "Error %d", err);
2458 return er;
2459}
2460#endif
2461
2462/*
2463 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2464 * Return OK for success, FAIL for failure.
2465 */
2466 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002467mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468{
2469#if defined(USE_GETCWD)
2470 if (getcwd((char *)buf, len) == NULL)
2471 {
2472 STRCPY(buf, strerror(errno));
2473 return FAIL;
2474 }
2475 return OK;
2476#else
2477 return (getwd((char *)buf) != NULL ? OK : FAIL);
2478#endif
2479}
2480
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002482 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 *
2484 * return FAIL for failure, OK for success
2485 */
2486 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002487mch_FullName(
2488 char_u *fname,
2489 char_u *buf,
2490 int len,
2491 int force) /* also expand when already absolute path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002492{
2493 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002494#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 int fd = -1;
2496 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002497#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002498 char_u olddir[MAXPATHL];
2499 char_u *p;
2500 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002501#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002502 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2503 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002504#endif
2505
Bram Moolenaar38323e42007-03-06 19:22:53 +00002506#ifdef VMS
2507 fname = vms_fixfilename(fname);
2508#endif
2509
Bram Moolenaara2442432007-04-26 14:26:37 +00002510#ifdef __CYGWIN__
2511 /*
2512 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2513 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002514# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaar06b07342015-12-31 22:26:28 +01002515 /* Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in
2516 * a forward slash. */
2517 cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE,
2518 fname, posix_fname, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002519# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002520 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002521# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002522 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002523#endif
2524
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002525 /* Expand it if forced or not an absolute path.
2526 * Do not do it for "/file", the result is always "/". */
2527 if ((force || !mch_isFullName(fname))
2528 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529 {
2530 /*
2531 * If the file name has a path, change to that directory for a moment,
2532 * and then do the getwd() (and get back to where we were).
2533 * This will get the correct path name with "../" things.
2534 */
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002535 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002537#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 /*
2539 * Use fchdir() if possible, it's said to be faster and more
2540 * reliable. But on SunOS 4 it might not work. Check this by
2541 * doing a fchdir() right now.
2542 */
2543 if (!dont_fchdir)
2544 {
2545 fd = open(".", O_RDONLY | O_EXTRA, 0);
2546 if (fd >= 0 && fchdir(fd) < 0)
2547 {
2548 close(fd);
2549 fd = -1;
2550 dont_fchdir = TRUE; /* don't try again */
2551 }
2552 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002553#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554
2555 /* Only change directory when we are sure we can return to where
2556 * we are now. After doing "su" chdir(".") might not work. */
2557 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002558#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002560#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 (mch_dirname(olddir, MAXPATHL) == FAIL
2562 || mch_chdir((char *)olddir) != 0))
2563 {
2564 p = NULL; /* can't get current dir: don't chdir */
2565 retval = FAIL;
2566 }
2567 else
2568 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 /* The directory is copied into buf[], to be able to remove
2570 * the file name without changing it (could be a string in
2571 * read-only memory) */
2572 if (p - fname >= len)
2573 retval = FAIL;
2574 else
2575 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002576 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 if (mch_chdir((char *)buf))
2578 retval = FAIL;
2579 else
2580 fname = p + 1;
2581 *buf = NUL;
2582 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 }
2584 }
2585 if (mch_dirname(buf, len) == FAIL)
2586 {
2587 retval = FAIL;
2588 *buf = NUL;
2589 }
2590 if (p != NULL)
2591 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002592#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 if (fd >= 0)
2594 {
Bram Moolenaar25724922009-07-14 15:38:41 +00002595 if (p_verbose >= 5)
2596 {
2597 verbose_enter();
2598 MSG("fchdir() to previous dir");
2599 verbose_leave();
2600 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 l = fchdir(fd);
2602 close(fd);
2603 }
2604 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002605#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606 l = mch_chdir((char *)olddir);
2607 if (l != 0)
2608 EMSG(_(e_prev_dir));
2609 }
2610
2611 l = STRLEN(buf);
Bram Moolenaardac75692012-10-14 04:35:45 +02002612 if (l >= len - 1)
2613 retval = FAIL; /* no space for trailing "/" */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002614#ifndef VMS
Bram Moolenaardac75692012-10-14 04:35:45 +02002615 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 && STRCMP(fname, ".") != 0)
Bram Moolenaardac75692012-10-14 04:35:45 +02002617 STRCAT(buf, "/");
Bram Moolenaar38323e42007-03-06 19:22:53 +00002618#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002620
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621 /* Catch file names which are too long. */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002622 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 return FAIL;
2624
2625 /* Do not append ".", "/dir/." is equal to "/dir". */
2626 if (STRCMP(fname, ".") != 0)
2627 STRCAT(buf, fname);
2628
2629 return OK;
2630}
2631
2632/*
2633 * Return TRUE if "fname" does not depend on the current directory.
2634 */
2635 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002636mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002638#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639 return ( fname[0] == '/' || fname[0] == '.' ||
2640 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2641 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2642 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002643#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002644 return (*fname == '/' || *fname == '~');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645#endif
2646}
2647
Bram Moolenaar24552be2005-12-10 20:17:30 +00002648#if defined(USE_FNAME_CASE) || defined(PROTO)
2649/*
2650 * Set the case of the file name, if it already exists. This will cause the
2651 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002652 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002653 */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002654 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002655fname_case(
2656 char_u *name,
2657 int len UNUSED) /* buffer size, only used when name gets longer */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002658{
2659 struct stat st;
2660 char_u *slash, *tail;
2661 DIR *dirp;
2662 struct dirent *dp;
2663
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002664 if (mch_lstat((char *)name, &st) >= 0)
Bram Moolenaar24552be2005-12-10 20:17:30 +00002665 {
2666 /* Open the directory where the file is located. */
2667 slash = vim_strrchr(name, '/');
2668 if (slash == NULL)
2669 {
2670 dirp = opendir(".");
2671 tail = name;
2672 }
2673 else
2674 {
2675 *slash = NUL;
2676 dirp = opendir((char *)name);
2677 *slash = '/';
2678 tail = slash + 1;
2679 }
2680
2681 if (dirp != NULL)
2682 {
2683 while ((dp = readdir(dirp)) != NULL)
2684 {
2685 /* Only accept names that differ in case and are the same byte
2686 * length. TODO: accept different length name. */
2687 if (STRICMP(tail, dp->d_name) == 0
2688 && STRLEN(tail) == STRLEN(dp->d_name))
2689 {
2690 char_u newname[MAXPATHL + 1];
2691 struct stat st2;
2692
2693 /* Verify the inode is equal. */
2694 vim_strncpy(newname, name, MAXPATHL);
2695 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2696 MAXPATHL - (tail - name));
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002697 if (mch_lstat((char *)newname, &st2) >= 0
Bram Moolenaar24552be2005-12-10 20:17:30 +00002698 && st.st_ino == st2.st_ino
2699 && st.st_dev == st2.st_dev)
2700 {
2701 STRCPY(tail, dp->d_name);
2702 break;
2703 }
2704 }
2705 }
2706
2707 closedir(dirp);
2708 }
2709 }
2710}
2711#endif
2712
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713/*
2714 * Get file permissions for 'name'.
2715 * Returns -1 when it doesn't exist.
2716 */
2717 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002718mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719{
2720 struct stat statb;
2721
2722 /* Keep the #ifdef outside of stat(), it may be a macro. */
2723#ifdef VMS
2724 if (stat((char *)vms_fixfilename(name), &statb))
2725#else
2726 if (stat((char *)name, &statb))
2727#endif
2728 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002729#ifdef __INTERIX
2730 /* The top bit makes the value negative, which means the file doesn't
2731 * exist. Remove the bit, we don't use it. */
2732 return statb.st_mode & ~S_ADDACE;
2733#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002734 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002735#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002736}
2737
2738/*
2739 * set file permission for 'name' to 'perm'
2740 *
2741 * return FAIL for failure, OK otherwise
2742 */
2743 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002744mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002745{
2746 return (chmod((char *)
2747#ifdef VMS
2748 vms_fixfilename(name),
2749#else
2750 name,
2751#endif
2752 (mode_t)perm) == 0 ? OK : FAIL);
2753}
2754
2755#if defined(HAVE_ACL) || defined(PROTO)
2756# ifdef HAVE_SYS_ACL_H
2757# include <sys/acl.h>
2758# endif
2759# ifdef HAVE_SYS_ACCESS_H
2760# include <sys/access.h>
2761# endif
2762
2763# ifdef HAVE_SOLARIS_ACL
2764typedef struct vim_acl_solaris_T {
2765 int acl_cnt;
2766 aclent_t *acl_entry;
2767} vim_acl_solaris_T;
2768# endif
2769
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002770#if defined(HAVE_SELINUX) || defined(PROTO)
2771/*
2772 * Copy security info from "from_file" to "to_file".
2773 */
2774 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002775mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002776{
2777 if (from_file == NULL)
2778 return;
2779
2780 if (selinux_enabled == -1)
2781 selinux_enabled = is_selinux_enabled();
2782
2783 if (selinux_enabled > 0)
2784 {
2785 security_context_t from_context = NULL;
2786 security_context_t to_context = NULL;
2787
2788 if (getfilecon((char *)from_file, &from_context) < 0)
2789 {
2790 /* If the filesystem doesn't support extended attributes,
2791 the original had no special security context and the
2792 target cannot have one either. */
2793 if (errno == EOPNOTSUPP)
2794 return;
2795
2796 MSG_PUTS(_("\nCould not get security context for "));
2797 msg_outtrans(from_file);
2798 msg_putchar('\n');
2799 return;
2800 }
2801 if (getfilecon((char *)to_file, &to_context) < 0)
2802 {
2803 MSG_PUTS(_("\nCould not get security context for "));
2804 msg_outtrans(to_file);
2805 msg_putchar('\n');
2806 freecon (from_context);
2807 return ;
2808 }
2809 if (strcmp(from_context, to_context) != 0)
2810 {
2811 if (setfilecon((char *)to_file, from_context) < 0)
2812 {
2813 MSG_PUTS(_("\nCould not set security context for "));
2814 msg_outtrans(to_file);
2815 msg_putchar('\n');
2816 }
2817 }
2818 freecon(to_context);
2819 freecon(from_context);
2820 }
2821}
2822#endif /* HAVE_SELINUX */
2823
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002824#if defined(HAVE_SMACK) && !defined(PROTO)
2825/*
2826 * Copy security info from "from_file" to "to_file".
2827 */
2828 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002829mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002830{
Bram Moolenaar62f167f2014-04-23 12:52:40 +02002831 static const char * const smack_copied_attributes[] =
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002832 {
2833 XATTR_NAME_SMACK,
2834 XATTR_NAME_SMACKEXEC,
2835 XATTR_NAME_SMACKMMAP
2836 };
2837
2838 char buffer[SMACK_LABEL_LEN];
2839 const char *name;
2840 int index;
2841 int ret;
2842 ssize_t size;
2843
2844 if (from_file == NULL)
2845 return;
2846
2847 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes)
2848 / sizeof(smack_copied_attributes)[0]) ; index++)
2849 {
2850 /* get the name of the attribute to copy */
2851 name = smack_copied_attributes[index];
2852
2853 /* get the value of the attribute in buffer */
2854 size = getxattr((char*)from_file, name, buffer, sizeof(buffer));
2855 if (size >= 0)
2856 {
2857 /* copy the attribute value of buffer */
2858 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0);
2859 if (ret < 0)
2860 {
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002861 vim_snprintf((char *)IObuff, IOSIZE,
2862 _("Could not set security context %s for %s"),
2863 name, to_file);
2864 msg_outtrans(IObuff);
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002865 msg_putchar('\n');
2866 }
2867 }
2868 else
2869 {
2870 /* what reason of not having the attribute value? */
2871 switch (errno)
2872 {
2873 case ENOTSUP:
2874 /* extended attributes aren't supported or enabled */
2875 /* should a message be echoed? not sure... */
2876 return; /* leave because it isn't usefull to continue */
2877
2878 case ERANGE:
2879 default:
2880 /* no enough size OR unexpected error */
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002881 vim_snprintf((char *)IObuff, IOSIZE,
2882 _("Could not get security context %s for %s. Removing it!"),
2883 name, from_file);
2884 msg_puts(IObuff);
2885 msg_putchar('\n');
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002886 /* FALLTHROUGH to remove the attribute */
2887
2888 case ENODATA:
2889 /* no attribute of this name */
2890 ret = removexattr((char*)to_file, name);
Bram Moolenaar57a728d2014-04-02 23:09:26 +02002891 /* Silently ignore errors, apparently this happens when
2892 * smack is not actually being used. */
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002893 break;
2894 }
2895 }
2896 }
2897}
2898#endif /* HAVE_SMACK */
2899
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900/*
2901 * Return a pointer to the ACL of file "fname" in allocated memory.
2902 * Return NULL if the ACL is not available for whatever reason.
2903 */
2904 vim_acl_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002905mch_get_acl(char_u *fname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906{
2907 vim_acl_T ret = NULL;
2908#ifdef HAVE_POSIX_ACL
2909 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2910#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002911#ifdef HAVE_SOLARIS_ZFS_ACL
2912 acl_t *aclent;
2913
2914 if (acl_get((char *)fname, 0, &aclent) < 0)
2915 return NULL;
2916 ret = (vim_acl_T)aclent;
2917#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918#ifdef HAVE_SOLARIS_ACL
2919 vim_acl_solaris_T *aclent;
2920
2921 aclent = malloc(sizeof(vim_acl_solaris_T));
2922 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2923 {
2924 free(aclent);
2925 return NULL;
2926 }
2927 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2928 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2929 {
2930 free(aclent->acl_entry);
2931 free(aclent);
2932 return NULL;
2933 }
2934 ret = (vim_acl_T)aclent;
2935#else
2936#if defined(HAVE_AIX_ACL)
2937 int aclsize;
2938 struct acl *aclent;
2939
2940 aclsize = sizeof(struct acl);
2941 aclent = malloc(aclsize);
2942 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2943 {
2944 if (errno == ENOSPC)
2945 {
2946 aclsize = aclent->acl_len;
2947 aclent = realloc(aclent, aclsize);
2948 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2949 {
2950 free(aclent);
2951 return NULL;
2952 }
2953 }
2954 else
2955 {
2956 free(aclent);
2957 return NULL;
2958 }
2959 }
2960 ret = (vim_acl_T)aclent;
2961#endif /* HAVE_AIX_ACL */
2962#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002963#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964#endif /* HAVE_POSIX_ACL */
2965 return ret;
2966}
2967
2968/*
2969 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2970 */
2971 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002972mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973{
2974 if (aclent == NULL)
2975 return;
2976#ifdef HAVE_POSIX_ACL
2977 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2978#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002979#ifdef HAVE_SOLARIS_ZFS_ACL
2980 acl_set((char *)fname, (acl_t *)aclent);
2981#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982#ifdef HAVE_SOLARIS_ACL
2983 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2984 ((vim_acl_solaris_T *)aclent)->acl_entry);
2985#else
2986#ifdef HAVE_AIX_ACL
2987 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2988#endif /* HAVE_AIX_ACL */
2989#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002990#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991#endif /* HAVE_POSIX_ACL */
2992}
2993
2994 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002995mch_free_acl(vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996{
2997 if (aclent == NULL)
2998 return;
2999#ifdef HAVE_POSIX_ACL
3000 acl_free((acl_t)aclent);
3001#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01003002#ifdef HAVE_SOLARIS_ZFS_ACL
3003 acl_free((acl_t *)aclent);
3004#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005#ifdef HAVE_SOLARIS_ACL
3006 free(((vim_acl_solaris_T *)aclent)->acl_entry);
3007 free(aclent);
3008#else
3009#ifdef HAVE_AIX_ACL
3010 free(aclent);
3011#endif /* HAVE_AIX_ACL */
3012#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01003013#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014#endif /* HAVE_POSIX_ACL */
3015}
3016#endif
3017
3018/*
3019 * Set hidden flag for "name".
3020 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003022mch_hide(char_u *name UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023{
3024 /* can't hide a file */
3025}
3026
3027/*
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003028 * return TRUE if "name" is a directory or a symlink to a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 * return FALSE if "name" is not a directory
3030 * return FALSE for error
3031 */
3032 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003033mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034{
3035 struct stat statb;
3036
3037 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3038 return FALSE;
3039 if (stat((char *)name, &statb))
3040 return FALSE;
3041#ifdef _POSIX_SOURCE
3042 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
3043#else
3044 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
3045#endif
3046}
3047
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003048/*
3049 * return TRUE if "name" is a directory, NOT a symlink to a directory
3050 * return FALSE if "name" is not a directory
3051 * return FALSE for error
3052 */
3053 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003054mch_isrealdir(char_u *name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003055{
3056 struct stat statb;
3057
3058 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3059 return FALSE;
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01003060 if (mch_lstat((char *)name, &statb))
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003061 return FALSE;
3062#ifdef _POSIX_SOURCE
3063 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
3064#else
3065 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
3066#endif
3067}
3068
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003069static int executable_file(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070
3071/*
3072 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
3073 */
3074 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003075executable_file(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076{
3077 struct stat st;
3078
3079 if (stat((char *)name, &st))
3080 return 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003081#ifdef VMS
3082 /* Like on Unix system file can have executable rights but not necessarily
3083 * be an executable, but on Unix is not a default for an ordianry file to
3084 * have an executable flag - on VMS it is in most cases.
3085 * Therefore, this check does not have any sense - let keep us to the
3086 * conventions instead:
3087 * *.COM and *.EXE files are the executables - the rest are not. This is
3088 * not ideal but better then it was.
3089 */
3090 int vms_executable = 0;
3091 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0)
3092 {
3093 if (strstr(vms_tolower((char*)name),".exe") != NULL
3094 || strstr(vms_tolower((char*)name),".com")!= NULL)
3095 vms_executable = 1;
3096 }
3097 return vms_executable;
3098#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003100#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101}
3102
3103/*
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01003104 * Return TRUE if "name" can be found in $PATH and executed, FALSE if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +01003105 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 * Return -1 if unknown.
3107 */
3108 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003109mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110{
3111 char_u *buf;
3112 char_u *p, *e;
3113 int retval;
3114
Bram Moolenaarb5971142015-03-21 17:32:19 +01003115 /* When "use_path" is false and if it's an absolute or relative path don't
3116 * need to use $PATH. */
3117 if (!use_path || mch_isFullName(name) || (name[0] == '.'
3118 && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))))
Bram Moolenaar206f0112014-03-12 16:51:55 +01003119 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01003120 /* There must be a path separator, files in the current directory
3121 * can't be executed. */
3122 if (gettail(name) != name && executable_file(name))
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003123 {
3124 if (path != NULL)
3125 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003126 if (name[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003127 *path = FullName_save(name, TRUE);
3128 else
3129 *path = vim_strsave(name);
3130 }
3131 return TRUE;
3132 }
3133 return FALSE;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003134 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135
3136 p = (char_u *)getenv("PATH");
3137 if (p == NULL || *p == NUL)
3138 return -1;
3139 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
3140 if (buf == NULL)
3141 return -1;
3142
3143 /*
3144 * Walk through all entries in $PATH to check if "name" exists there and
3145 * is an executable file.
3146 */
3147 for (;;)
3148 {
3149 e = (char_u *)strchr((char *)p, ':');
3150 if (e == NULL)
3151 e = p + STRLEN(p);
3152 if (e - p <= 1) /* empty entry means current dir */
3153 STRCPY(buf, "./");
3154 else
3155 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003156 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 add_pathsep(buf);
3158 }
3159 STRCAT(buf, name);
3160 retval = executable_file(buf);
3161 if (retval == 1)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003162 {
3163 if (path != NULL)
3164 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003165 if (buf[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003166 *path = FullName_save(buf, TRUE);
3167 else
3168 *path = vim_strsave(buf);
3169 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 break;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172
3173 if (*e != ':')
3174 break;
3175 p = e + 1;
3176 }
3177
3178 vim_free(buf);
3179 return retval;
3180}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181
3182/*
3183 * Check what "name" is:
3184 * NODE_NORMAL: file or directory (or doesn't exist)
3185 * NODE_WRITABLE: writable device, socket, fifo, etc.
3186 * NODE_OTHER: non-writable things
3187 */
3188 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003189mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190{
3191 struct stat st;
3192
3193 if (stat((char *)name, &st))
3194 return NODE_NORMAL;
3195 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
3196 return NODE_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
3198 return NODE_OTHER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 /* Everything else is writable? */
3200 return NODE_WRITABLE;
3201}
3202
3203 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003204mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205{
3206#ifdef HAVE_CHECK_STACK_GROWTH
3207 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 check_stack_growth((char *)&i);
3210
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003211# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 get_stack_limit();
3213# endif
3214
3215#endif
3216
3217 /*
3218 * Setup an alternative stack for signals. Helps to catch signals when
3219 * running out of stack space.
3220 * Use of sigaltstack() is preferred, it's more portable.
3221 * Ignore any errors.
3222 */
3223#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00003224 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 init_signal_stack();
3226#endif
3227}
3228
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003229#if defined(EXITFREE) || defined(PROTO)
3230 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003231mch_free_mem(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003232{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003233# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
3234 if (clip_star.owned)
3235 clip_lose_selection(&clip_star);
3236 if (clip_plus.owned)
3237 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003238# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00003239# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003240 if (xterm_Shell != (Widget)0)
3241 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00003242# ifndef LESSTIF_VERSION
3243 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003244 if (xterm_dpy != NULL)
3245 XtCloseDisplay(xterm_dpy);
3246 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00003247 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003248 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00003249# ifdef FEAT_X11
3250 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
3251# endif
3252 }
3253# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003254# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003255# if defined(FEAT_X11)
Bram Moolenaare8208012008-06-20 09:59:25 +00003256 if (x11_display != NULL
3257# ifdef FEAT_XCLIPBOARD
3258 && x11_display != xterm_dpy
3259# endif
3260 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003261 XCloseDisplay(x11_display);
3262# endif
3263# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
3264 vim_free(signal_stack);
3265 signal_stack = NULL;
3266# endif
3267# ifdef FEAT_TITLE
3268 vim_free(oldtitle);
3269 vim_free(oldicon);
3270# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003271}
3272#endif
3273
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003274static void exit_scroll(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275
3276/*
3277 * Output a newline when exiting.
3278 * Make sure the newline goes to the same stream as the text.
3279 */
3280 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003281exit_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003283 if (silent_mode)
3284 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 if (newline_on_exit || msg_didout)
3286 {
3287 if (msg_use_printf())
3288 {
3289 if (info_message)
3290 mch_msg("\n");
3291 else
3292 mch_errmsg("\r\n");
3293 }
3294 else
3295 out_char('\n');
3296 }
3297 else
3298 {
3299 restore_cterm_colors(); /* get original colors back */
3300 msg_clr_eos_force(); /* clear the rest of the display */
3301 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3302 }
3303}
3304
3305 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003306mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307{
3308 exiting = TRUE;
3309
3310#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3311 x11_export_final_selection();
3312#endif
3313
3314#ifdef FEAT_GUI
3315 if (!gui.in_use)
3316#endif
3317 {
3318 settmode(TMODE_COOK);
3319#ifdef FEAT_TITLE
3320 mch_restore_title(3); /* restore xterm title and icon name */
3321#endif
3322 /*
3323 * When t_ti is not empty but it doesn't cause swapping terminal
3324 * pages, need to output a newline when msg_didout is set. But when
3325 * t_ti does swap pages it should not go to the shell page. Do this
3326 * before stoptermcap().
3327 */
3328 if (swapping_screen() && !newline_on_exit)
3329 exit_scroll();
3330
3331 /* Stop termcap: May need to check for T_CRV response, which
3332 * requires RAW mode. */
3333 stoptermcap();
3334
3335 /*
3336 * A newline is only required after a message in the alternate screen.
3337 * This is set to TRUE by wait_return().
3338 */
3339 if (!swapping_screen() || newline_on_exit)
3340 exit_scroll();
3341
3342 /* Cursor may have been switched off without calling starttermcap()
3343 * when doing "vim -u vimrc" and vimrc contains ":q". */
3344 if (full_screen)
3345 cursor_on();
3346 }
3347 out_flush();
3348 ml_close_all(TRUE); /* remove all memfiles */
3349 may_core_dump();
3350#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 gui_exit(r);
3353#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003354
Bram Moolenaar56718732006-03-15 22:53:57 +00003355#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003356 mac_conv_cleanup();
3357#endif
3358
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359#ifdef __QNX__
3360 /* A core dump won't be created if the signal handler
3361 * doesn't return, so we can't call exit() */
3362 if (deadly_signal != 0)
3363 return;
3364#endif
3365
Bram Moolenaar009b2592004-10-24 19:18:58 +00003366#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003367 netbeans_send_disconnect();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003368#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003369
3370#ifdef EXITFREE
3371 free_all_mem();
3372#endif
3373
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 exit(r);
3375}
3376
3377 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003378may_core_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379{
3380 if (deadly_signal != 0)
3381 {
3382 signal(deadly_signal, SIG_DFL);
3383 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3384 }
3385}
3386
3387#ifndef VMS
3388
3389 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003390mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391{
3392 static int first = TRUE;
3393
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003394#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395# ifdef HAVE_TERMIOS_H
3396 static struct termios told;
3397 struct termios tnew;
3398# else
3399 static struct termio told;
3400 struct termio tnew;
3401# endif
3402
3403 if (first)
3404 {
3405 first = FALSE;
3406# if defined(HAVE_TERMIOS_H)
3407 tcgetattr(read_cmd_fd, &told);
3408# else
3409 ioctl(read_cmd_fd, TCGETA, &told);
3410# endif
3411 }
3412
3413 tnew = told;
3414 if (tmode == TMODE_RAW)
3415 {
3416 /*
3417 * ~ICRNL enables typing ^V^M
3418 */
3419 tnew.c_iflag &= ~ICRNL;
3420 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3421# if defined(IEXTEN) && !defined(__MINT__)
3422 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3423 /* but it breaks function keys on MINT */
3424# endif
3425 );
3426# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3427 tnew.c_oflag &= ~ONLCR;
3428# endif
3429 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3430 tnew.c_cc[VTIME] = 0; /* don't wait */
3431 }
3432 else if (tmode == TMODE_SLEEP)
Bram Moolenaar40de4562016-07-01 15:03:46 +02003433 {
3434 /* Also reset ICANON here, otherwise on Solaris select() won't see
3435 * typeahead characters. */
3436 tnew.c_lflag &= ~(ICANON | ECHO);
3437 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3438 tnew.c_cc[VTIME] = 0; /* don't wait */
3439 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440
3441# if defined(HAVE_TERMIOS_H)
3442 {
3443 int n = 10;
3444
3445 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3446 * few times. */
3447 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3448 && errno == EINTR && n > 0)
3449 --n;
3450 }
3451# else
3452 ioctl(read_cmd_fd, TCSETA, &tnew);
3453# endif
3454
3455#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 /*
3457 * for "old" tty systems
3458 */
3459# ifndef TIOCSETN
3460# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3461# endif
3462 static struct sgttyb ttybold;
3463 struct sgttyb ttybnew;
3464
3465 if (first)
3466 {
3467 first = FALSE;
3468 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3469 }
3470
3471 ttybnew = ttybold;
3472 if (tmode == TMODE_RAW)
3473 {
3474 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3475 ttybnew.sg_flags |= RAW;
3476 }
3477 else if (tmode == TMODE_SLEEP)
3478 ttybnew.sg_flags &= ~(ECHO);
3479 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3480#endif
3481 curr_tmode = tmode;
3482}
3483
3484/*
3485 * Try to get the code for "t_kb" from the stty setting
3486 *
3487 * Even if termcap claims a backspace key, the user's setting *should*
3488 * prevail. stty knows more about reality than termcap does, and if
3489 * somebody's usual erase key is DEL (which, for most BSD users, it will
3490 * be), they're going to get really annoyed if their erase key starts
3491 * doing forward deletes for no reason. (Eric Fischer)
3492 */
3493 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003494get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495{
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003496 ttyinfo_T info;
3497 char_u buf[2];
3498 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003500 if (get_tty_info(read_cmd_fd, &info) == OK)
3501 {
3502 intr_char = info.interrupt;
3503 buf[0] = info.backspace;
3504 buf[1] = NUL;
3505 add_termcode((char_u *)"kb", buf, FALSE);
3506
3507 /* If <BS> and <DEL> are now the same, redefine <DEL>. */
3508 p = find_termcode((char_u *)"kD");
3509 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3510 do_fixdel(NULL);
3511 }
3512}
3513
3514/*
3515 * Obtain the characters that Backspace and Enter produce on "fd".
3516 * Returns OK or FAIL.
3517 */
3518 int
3519get_tty_info(int fd, ttyinfo_T *info)
3520{
3521#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522# ifdef HAVE_TERMIOS_H
3523 struct termios keys;
3524# else
3525 struct termio keys;
3526# endif
3527
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003528 if (
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529# if defined(HAVE_TERMIOS_H)
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003530 tcgetattr(fd, &keys) != -1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531# else
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003532 ioctl(fd, TCGETA, &keys) != -1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533# endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003534 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003536 info->backspace = keys.c_cc[VERASE];
3537 info->interrupt = keys.c_cc[VINTR];
3538 if (keys.c_iflag & ICRNL)
3539 info->enter = NL;
3540 else
3541 info->enter = CAR;
3542 if (keys.c_oflag & ONLCR)
3543 info->nl_does_cr = TRUE;
3544 else
3545 info->nl_does_cr = FALSE;
3546 return OK;
3547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548#else
3549 /* for "old" tty systems */
3550 struct sgttyb keys;
3551
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003552 if (ioctl(fd, TIOCGETP, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003554 info->backspace = keys.sg_erase;
3555 info->interrupt = keys.sg_kill;
3556 info->enter = CAR;
3557 info->nl_does_cr = TRUE;
3558 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560#endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003561 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562}
3563
3564#endif /* VMS */
3565
3566#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3567/*
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{
3573 static int ison = FALSE;
3574 int xterm_mouse_vers;
3575
3576 if (on == ison) /* return quickly if nothing to do */
3577 return;
3578
3579 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003580
3581# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003582 if (ttym_flags == TTYM_URXVT)
3583 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003584 out_str_nf((char_u *)
3585 (on
3586 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3587 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
3588 ison = on;
3589 }
3590# endif
3591
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003592# ifdef FEAT_MOUSE_SGR
3593 if (ttym_flags == TTYM_SGR)
3594 {
3595 out_str_nf((char_u *)
3596 (on
3597 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3598 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
3599 ison = on;
3600 }
3601# endif
3602
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603 if (xterm_mouse_vers > 0)
3604 {
3605 if (on) /* enable mouse events, use mouse tracking if available */
3606 out_str_nf((char_u *)
3607 (xterm_mouse_vers > 1
3608 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3609 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3610 else /* disable mouse events, could probably always send the same */
3611 out_str_nf((char_u *)
3612 (xterm_mouse_vers > 1
3613 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3614 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3615 ison = on;
3616 }
3617
3618# ifdef FEAT_MOUSE_DEC
3619 else if (ttym_flags == TTYM_DEC)
3620 {
3621 if (on) /* enable mouse events */
3622 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3623 else /* disable mouse events */
3624 out_str_nf((char_u *)"\033['z");
3625 ison = on;
3626 }
3627# endif
3628
3629# ifdef FEAT_MOUSE_GPM
3630 else
3631 {
3632 if (on)
3633 {
3634 if (gpm_open())
3635 ison = TRUE;
3636 }
3637 else
3638 {
3639 gpm_close();
3640 ison = FALSE;
3641 }
3642 }
3643# endif
3644
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003645# ifdef FEAT_SYSMOUSE
3646 else
3647 {
3648 if (on)
3649 {
3650 if (sysmouse_open() == OK)
3651 ison = TRUE;
3652 }
3653 else
3654 {
3655 sysmouse_close();
3656 ison = FALSE;
3657 }
3658 }
3659# endif
3660
Bram Moolenaar071d4272004-06-13 20:20:40 +00003661# ifdef FEAT_MOUSE_JSB
3662 else
3663 {
3664 if (on)
3665 {
3666 /* D - Enable Mouse up/down messages
3667 * L - Enable Left Button Reporting
3668 * M - Enable Middle Button Reporting
3669 * R - Enable Right Button Reporting
3670 * K - Enable SHIFT and CTRL key Reporting
3671 * + - Enable Advanced messaging of mouse moves and up/down messages
3672 * Q - Quiet No Ack
3673 * # - Numeric value of mouse pointer required
3674 * 0 = Multiview 2000 cursor, used as standard
3675 * 1 = Windows Arrow
3676 * 2 = Windows I Beam
3677 * 3 = Windows Hour Glass
3678 * 4 = Windows Cross Hair
3679 * 5 = Windows UP Arrow
3680 */
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003681# ifdef JSBTERM_MOUSE_NONADVANCED
3682 /* Disables full feedback of pointer movements */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3684 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003685# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3687 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003688# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 ison = TRUE;
3690 }
3691 else
3692 {
3693 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3694 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3695 ison = FALSE;
3696 }
3697 }
3698# endif
3699# ifdef FEAT_MOUSE_PTERM
3700 else
3701 {
3702 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3703 if (on)
3704 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3705 else
3706 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3707 ison = on;
3708 }
3709# endif
3710}
3711
3712/*
3713 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3714 */
3715 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003716check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717{
3718# ifdef FEAT_MOUSE_XTERM
3719 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003720# ifdef FEAT_MOUSE_URXVT
3721 && use_xterm_mouse() != 3
3722# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723# ifdef FEAT_GUI
3724 && !gui.in_use
3725# endif
3726 )
3727 {
3728 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003729 ? IF_EB("\233M", CSI_STR "M")
3730 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 if (*p_mouse != NUL)
3732 {
3733 /* force mouse off and maybe on to send possibly new mouse
3734 * activation sequence to the xterm, with(out) drag tracing. */
3735 mch_setmouse(FALSE);
3736 setmouse();
3737 }
3738 }
3739 else
3740 del_mouse_termcode(KS_MOUSE);
3741# endif
3742
3743# ifdef FEAT_MOUSE_GPM
3744 if (!use_xterm_mouse()
3745# ifdef FEAT_GUI
3746 && !gui.in_use
3747# endif
3748 )
3749 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3750# endif
3751
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003752# ifdef FEAT_SYSMOUSE
3753 if (!use_xterm_mouse()
3754# ifdef FEAT_GUI
3755 && !gui.in_use
3756# endif
3757 )
3758 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3759# endif
3760
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761# ifdef FEAT_MOUSE_JSB
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003762 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 if (!use_xterm_mouse()
3764# ifdef FEAT_GUI
3765 && !gui.in_use
3766# endif
3767 )
3768 set_mouse_termcode(KS_JSBTERM_MOUSE,
3769 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3770 else
3771 del_mouse_termcode(KS_JSBTERM_MOUSE);
3772# endif
3773
3774# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003775 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 * define it in the GUI or when using an xterm. */
3777 if (!use_xterm_mouse()
3778# ifdef FEAT_GUI
3779 && !gui.in_use
3780# endif
3781 )
3782 set_mouse_termcode(KS_NETTERM_MOUSE,
3783 (char_u *)IF_EB("\033}", ESC_STR "}"));
3784 else
3785 del_mouse_termcode(KS_NETTERM_MOUSE);
3786# endif
3787
3788# ifdef FEAT_MOUSE_DEC
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003789 /* Conflicts with xterm mouse: "\033[" and "\033[M" */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003790 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791# ifdef FEAT_GUI
3792 && !gui.in_use
3793# endif
3794 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003795 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3796 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797 else
3798 del_mouse_termcode(KS_DEC_MOUSE);
3799# endif
3800# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003801 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003802 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803# ifdef FEAT_GUI
3804 && !gui.in_use
3805# endif
3806 )
3807 set_mouse_termcode(KS_PTERM_MOUSE,
3808 (char_u *) IF_EB("\033[", ESC_STR "["));
3809 else
3810 del_mouse_termcode(KS_PTERM_MOUSE);
3811# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003812# ifdef FEAT_MOUSE_URXVT
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003813 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003814# ifdef FEAT_GUI
3815 && !gui.in_use
3816# endif
3817 )
3818 {
3819 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003820 ? IF_EB("\233*M", CSI_STR "*M")
3821 : IF_EB("\033[*M", ESC_STR "[*M")));
Bram Moolenaarc8427482011-10-20 21:09:35 +02003822
3823 if (*p_mouse != NUL)
3824 {
3825 mch_setmouse(FALSE);
3826 setmouse();
3827 }
3828 }
3829 else
3830 del_mouse_termcode(KS_URXVT_MOUSE);
3831# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003832# ifdef FEAT_MOUSE_SGR
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003833 if (use_xterm_mouse() == 4
3834# ifdef FEAT_GUI
3835 && !gui.in_use
3836# endif
3837 )
3838 {
3839 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003840 ? IF_EB("\233<*M", CSI_STR "<*M")
3841 : IF_EB("\033[<*M", ESC_STR "[<*M")));
3842
3843 set_mouse_termcode(KS_SGR_MOUSE_RELEASE, (char_u *)(term_is_8bit(T_NAME)
3844 ? IF_EB("\233<*m", CSI_STR "<*m")
3845 : IF_EB("\033[<*m", ESC_STR "[<*m")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003846
3847 if (*p_mouse != NUL)
3848 {
3849 mch_setmouse(FALSE);
3850 setmouse();
3851 }
3852 }
3853 else
Bram Moolenaara529ce02017-06-22 22:37:57 +02003854 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003855 del_mouse_termcode(KS_SGR_MOUSE);
Bram Moolenaara529ce02017-06-22 22:37:57 +02003856 del_mouse_termcode(KS_SGR_MOUSE_RELEASE);
3857 }
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003858# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859}
3860#endif
3861
3862/*
3863 * set screen mode, always fails.
3864 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003866mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867{
3868 EMSG(_(e_screenmode));
3869 return FAIL;
3870}
3871
3872#ifndef VMS
3873
3874/*
3875 * Try to get the current window size:
3876 * 1. with an ioctl(), most accurate method
3877 * 2. from the environment variables LINES and COLUMNS
3878 * 3. from the termcap
3879 * 4. keep using the old values
3880 * Return OK when size could be determined, FAIL otherwise.
3881 */
3882 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003883mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884{
3885 long rows = 0;
3886 long columns = 0;
3887 char_u *p;
3888
3889 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 * 1. try using an ioctl. It is the most accurate method.
3891 *
3892 * Try using TIOCGWINSZ first, some systems that have it also define
3893 * TIOCGSIZE but don't have a struct ttysize.
3894 */
3895# ifdef TIOCGWINSZ
3896 {
3897 struct winsize ws;
3898 int fd = 1;
3899
3900 /* When stdout is not a tty, use stdin for the ioctl(). */
3901 if (!isatty(fd) && isatty(read_cmd_fd))
3902 fd = read_cmd_fd;
3903 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3904 {
3905 columns = ws.ws_col;
3906 rows = ws.ws_row;
3907 }
3908 }
3909# else /* TIOCGWINSZ */
3910# ifdef TIOCGSIZE
3911 {
3912 struct ttysize ts;
3913 int fd = 1;
3914
3915 /* When stdout is not a tty, use stdin for the ioctl(). */
3916 if (!isatty(fd) && isatty(read_cmd_fd))
3917 fd = read_cmd_fd;
3918 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3919 {
3920 columns = ts.ts_cols;
3921 rows = ts.ts_lines;
3922 }
3923 }
3924# endif /* TIOCGSIZE */
3925# endif /* TIOCGWINSZ */
3926
3927 /*
3928 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003929 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3930 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003932 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 {
3934 if ((p = (char_u *)getenv("LINES")))
3935 rows = atoi((char *)p);
3936 if ((p = (char_u *)getenv("COLUMNS")))
3937 columns = atoi((char *)p);
3938 }
3939
3940#ifdef HAVE_TGETENT
3941 /*
3942 * 3. try reading "co" and "li" entries from termcap
3943 */
3944 if (columns == 0 || rows == 0)
3945 getlinecol(&columns, &rows);
3946#endif
3947
3948 /*
3949 * 4. If everything fails, use the old values
3950 */
3951 if (columns <= 0 || rows <= 0)
3952 return FAIL;
3953
3954 Rows = rows;
3955 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02003956 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003957 return OK;
3958}
3959
Bram Moolenaarb13501f2017-07-22 22:32:56 +02003960#if defined(FEAT_TERMINAL) || defined(PROTO)
3961/*
3962 * Report the windows size "rows" and "cols" to tty "fd".
3963 */
3964 int
3965mch_report_winsize(int fd, int rows, int cols)
3966{
3967# ifdef TIOCSWINSZ
3968 struct winsize ws;
3969
3970 ws.ws_col = cols;
3971 ws.ws_row = rows;
3972 ws.ws_xpixel = cols * 5;
3973 ws.ws_ypixel = rows * 10;
3974 if (ioctl(fd, TIOCSWINSZ, &ws) == 0)
3975 {
3976 ch_log(NULL, "ioctl(TIOCSWINSZ) success");
3977 return OK;
3978 }
3979 ch_log(NULL, "ioctl(TIOCSWINSZ) failed");
3980# else
3981# ifdef TIOCSSIZE
3982 struct ttysize ts;
3983
3984 ts.ts_cols = cols;
3985 ts.ts_lines = rows;
3986 if (ioctl(fd, TIOCSSIZE, &ws) == 0)
3987 {
3988 ch_log(NULL, "ioctl(TIOCSSIZE) success");
3989 return OK;
3990 }
3991 ch_log(NULL, "ioctl(TIOCSSIZE) failed");
3992# endif
3993# endif
3994 return FAIL;
3995}
3996#endif
3997
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998/*
3999 * Try to set the window size to Rows and Columns.
4000 */
4001 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004002mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003{
4004 if (*T_CWS)
4005 {
4006 /*
4007 * NOTE: if you get an error here that term_set_winsize() is
4008 * undefined, check the output of configure. It could probably not
4009 * find a ncurses, termcap or termlib library.
4010 */
4011 term_set_winsize((int)Rows, (int)Columns);
4012 out_flush();
4013 screen_start(); /* don't know where cursor is now */
4014 }
4015}
4016
4017#endif /* VMS */
4018
4019/*
4020 * Rows and/or Columns has changed.
4021 */
4022 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004023mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024{
4025 /* Nothing to do. */
4026}
4027
Bram Moolenaar205b8862011-09-07 15:04:31 +02004028/*
4029 * Wait for process "child" to end.
4030 * Return "child" if it exited properly, <= 0 on error.
4031 */
4032 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01004033wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02004034{
4035 pid_t wait_pid = 0;
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004036 long delay_msec = 1;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004037
4038 while (wait_pid != child)
4039 {
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004040 /* When compiled with Python threads are probably used, in which case
4041 * wait() sometimes hangs for no obvious reason. Use waitpid()
4042 * instead and loop (like the GUI). Also needed for other interfaces,
4043 * they might call system(). */
4044# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004045 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004046# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02004047 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004048# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02004049 if (wait_pid == 0)
4050 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004051 /* Wait for 1 to 10 msec before trying again. */
4052 mch_delay(delay_msec, TRUE);
4053 if (++delay_msec > 10)
4054 delay_msec = 10;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004055 continue;
4056 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004057 if (wait_pid <= 0
4058# ifdef ECHILD
4059 && errno == ECHILD
4060# endif
4061 )
4062 break;
4063 }
4064 return wait_pid;
4065}
4066
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004067#if defined(FEAT_JOB_CHANNEL) || !defined(USE_SYSTEM) || defined(PROTO)
Bram Moolenaar72801402016-02-09 11:37:50 +01004068/*
4069 * Parse "cmd" and put the white-separated parts in "argv".
4070 * "argv" is an allocated array with "argc" entries.
4071 * Returns FAIL when out of memory.
4072 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01004073 int
4074mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
4075{
4076 int i;
4077 char_u *p;
4078 int inquote;
4079
4080 /*
4081 * Do this loop twice:
4082 * 1: find number of arguments
4083 * 2: separate them and build argv[]
4084 */
4085 for (i = 0; i < 2; ++i)
4086 {
Bram Moolenaar6231cb82016-04-26 19:42:42 +02004087 p = skipwhite(cmd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01004088 inquote = FALSE;
4089 *argc = 0;
4090 for (;;)
4091 {
4092 if (i == 1)
4093 (*argv)[*argc] = (char *)p;
4094 ++*argc;
4095 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB)))
4096 {
4097 if (*p == '"')
4098 inquote = !inquote;
4099 ++p;
4100 }
4101 if (*p == NUL)
4102 break;
4103 if (i == 1)
4104 *p++ = NUL;
4105 p = skipwhite(p);
4106 }
4107 if (*argv == NULL)
4108 {
4109 if (use_shcf)
4110 {
4111 /* Account for possible multiple args in p_shcf. */
4112 p = p_shcf;
4113 for (;;)
4114 {
4115 p = skiptowhite(p);
4116 if (*p == NUL)
4117 break;
4118 ++*argc;
4119 p = skipwhite(p);
4120 }
4121 }
4122
4123 *argv = (char **)alloc((unsigned)((*argc + 4) * sizeof(char *)));
4124 if (*argv == NULL) /* out of memory */
4125 return FAIL;
4126 }
4127 }
4128 return OK;
4129}
4130#endif
4131
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004132#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar7da34602017-08-01 17:14:21 +02004133/*
4134 * Set the environment for a child process.
4135 */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004136 static void
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004137set_child_environment(long rows, long columns, char *term)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004138{
4139# ifdef HAVE_SETENV
4140 char envbuf[50];
4141# else
Bram Moolenaar5f7e7bd2017-07-22 14:08:43 +02004142 static char envbuf_Term[30];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004143 static char envbuf_Rows[20];
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004144 static char envbuf_Lines[20];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004145 static char envbuf_Columns[20];
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004146 static char envbuf_Colors[20];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004147# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004148 static char envbuf_Servername[60];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004149# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004150# endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004151 long colors =
4152# ifdef FEAT_GUI
4153 gui.in_use ? 256*256*256 :
4154# endif
4155 t_colors;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004156
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004157# ifdef HAVE_SETENV
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004158 setenv("TERM", term, 1);
4159 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004160 setenv("ROWS", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004161 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004162 setenv("LINES", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004163 sprintf((char *)envbuf, "%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004164 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004165 sprintf((char *)envbuf, "%ld", colors);
4166 setenv("COLORS", (char *)envbuf, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004167# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004168 setenv("VIM_SERVERNAME", serverName == NULL ? "" : (char *)serverName, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004169# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004170# else
4171 /*
4172 * Putenv does not copy the string, it has to remain valid.
4173 * Use a static array to avoid losing allocated memory.
Bram Moolenaar7da34602017-08-01 17:14:21 +02004174 * This won't work well when running multiple children...
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004175 */
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004176 vim_snprintf(envbuf_Term, sizeof(envbuf_Term), "TERM=%s", term);
4177 putenv(envbuf_Term);
4178 vim_snprintf(envbuf_Rows, sizeof(envbuf_Rows), "ROWS=%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004179 putenv(envbuf_Rows);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004180 vim_snprintf(envbuf_Lines, sizeof(envbuf_Lines), "LINES=%ld", rows);
4181 putenv(envbuf_Lines);
4182 vim_snprintf(envbuf_Columns, sizeof(envbuf_Columns),
4183 "COLUMNS=%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004184 putenv(envbuf_Columns);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004185 vim_snprintf(envbuf_Colors, sizeof(envbuf_Colors), "COLORS=%ld", colors);
4186 putenv(envbuf_Colors);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004187# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004188 vim_snprintf(envbuf_Servername, sizeof(envbuf_Servername),
4189 "VIM_SERVERNAME=%s", serverName == NULL ? "" : (char *)serverName);
4190 putenv(envbuf_Servername);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004191# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004192# endif
4193}
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004194
4195 static void
4196set_default_child_environment(void)
4197{
4198 set_child_environment(Rows, Columns, "dumb");
4199}
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004200#endif
4201
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004202#if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004203/*
4204 * Open a PTY, with FD for the master and slave side.
4205 * When failing "pty_master_fd" and "pty_slave_fd" are -1.
4206 * When successful both file descriptors are stored.
4207 */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004208 static void
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02004209open_pty(int *pty_master_fd, int *pty_slave_fd, char_u **namep)
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004210{
4211 char *tty_name;
4212
4213 *pty_master_fd = OpenPTY(&tty_name); /* open pty */
4214 if (*pty_master_fd >= 0)
4215 {
4216 /* Leaving out O_NOCTTY may lead to waitpid() always returning
4217 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4218 * adding O_NOCTTY always works when defined. */
4219#ifdef O_NOCTTY
4220 *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4221#else
4222 *pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4223#endif
4224 if (*pty_slave_fd < 0)
4225 {
4226 close(*pty_master_fd);
4227 *pty_master_fd = -1;
4228 }
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02004229 else if (namep != NULL)
4230 *namep = vim_strsave((char_u *)tty_name);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004231 }
4232}
4233#endif
4234
Bram Moolenaarfae42832017-08-01 22:24:26 +02004235/*
4236 * Send SIGINT to a child process if "c" is an interrupt character.
4237 */
4238 void
4239may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED)
4240{
4241# ifdef SIGINT
4242 if (c == Ctrl_C || c == intr_char)
4243 {
4244# ifdef HAVE_SETSID
4245 kill(-pid, SIGINT);
4246# else
4247 kill(0, SIGINT);
4248# endif
4249 if (wpid > 0)
4250 kill(wpid, SIGINT);
4251 }
4252# endif
4253}
4254
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004256mch_call_shell(
4257 char_u *cmd,
4258 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004259{
4260#ifdef VMS
4261 char *ifn = NULL;
4262 char *ofn = NULL;
4263#endif
4264 int tmode = cur_tmode;
4265#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
Bram Moolenaarb2b050a2016-07-16 21:52:46 +02004266 char_u *newcmd; /* only needed for unix */
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01004267 int x;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268
4269 out_flush();
4270
4271 if (options & SHELL_COOKED)
4272 settmode(TMODE_COOK); /* set to normal mode */
4273
Bram Moolenaar62b42182010-09-21 22:09:37 +02004274# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004275 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004276 loose_clipboard();
4277# endif
4278
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 if (cmd == NULL)
4280 x = system((char *)p_sh);
4281 else
4282 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004283# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 if (ofn = strchr((char *)cmd, '>'))
4285 *ofn++ = '\0';
4286 if (ifn = strchr((char *)cmd, '<'))
4287 {
4288 char *p;
4289
4290 *ifn++ = '\0';
4291 p = strchr(ifn,' '); /* chop off any trailing spaces */
4292 if (p)
4293 *p = '\0';
4294 }
4295 if (ofn)
4296 x = vms_sys((char *)cmd, ofn, ifn);
4297 else
4298 x = system((char *)cmd);
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004299# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 newcmd = lalloc(STRLEN(p_sh)
4301 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
4302 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
4303 if (newcmd == NULL)
4304 x = 0;
4305 else
4306 {
4307 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4308 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4309 (char *)p_shcf,
4310 (char *)cmd);
4311 x = system((char *)newcmd);
4312 vim_free(newcmd);
4313 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004314# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004315 }
4316# ifdef VMS
4317 x = vms_sys_status(x);
4318# endif
4319 if (emsg_silent)
4320 ;
4321 else if (x == 127)
4322 MSG_PUTS(_("\nCannot execute shell sh\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 else if (x && !(options & SHELL_SILENT))
4324 {
4325 MSG_PUTS(_("\nshell returned "));
4326 msg_outnum((long)x);
4327 msg_putchar('\n');
4328 }
4329
4330 if (tmode == TMODE_RAW)
4331 settmode(TMODE_RAW); /* set to raw mode */
4332# ifdef FEAT_TITLE
4333 resettitle();
4334# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004335# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4336 restore_clipboard();
4337# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 return x;
4339
4340#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
4341
Bram Moolenaardf177f62005-02-22 08:39:57 +00004342# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
4343 127, some shells use that already */
Bram Moolenaarb109bb42017-08-21 21:07:29 +02004344# define OPEN_NULL_FAILED 123 /* Exit code if /dev/null can't be opened */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345
Bram Moolenaar835dc632016-02-07 14:27:38 +01004346 char_u *newcmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004347 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004348 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 pid_t wait_pid = 0;
4350# ifdef HAVE_UNION_WAIT
4351 union wait status;
4352# else
4353 int status = -1;
4354# endif
4355 int retval = -1;
4356 char **argv = NULL;
4357 int argc;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004358 char_u *p_shcf_copy = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359 int i;
4360 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004362# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004363 int pty_slave_fd = -1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004364# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004365 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004366 int fd_fromshell[2];
4367 int pipe_error = FALSE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004368 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369
Bram Moolenaar62b42182010-09-21 22:09:37 +02004370 newcmd = vim_strsave(p_sh);
4371 if (newcmd == NULL) /* out of memory */
4372 goto error;
4373
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 out_flush();
4375 if (options & SHELL_COOKED)
4376 settmode(TMODE_COOK); /* set to normal mode */
4377
Bram Moolenaar835dc632016-02-07 14:27:38 +01004378 if (mch_parse_cmd(newcmd, TRUE, &argv, &argc) == FAIL)
4379 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004380
Bram Moolenaar071d4272004-06-13 20:20:40 +00004381 if (cmd != NULL)
4382 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004383 char_u *s;
4384
Bram Moolenaar071d4272004-06-13 20:20:40 +00004385 if (extra_shell_arg != NULL)
4386 argv[argc++] = (char *)extra_shell_arg;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004387
4388 /* Break 'shellcmdflag' into white separated parts. This doesn't
4389 * handle quoted strings, they are very unlikely to appear. */
4390 p_shcf_copy = alloc((unsigned)STRLEN(p_shcf) + 1);
4391 if (p_shcf_copy == NULL) /* out of memory */
4392 goto error;
4393 s = p_shcf_copy;
4394 p = p_shcf;
4395 while (*p != NUL)
4396 {
4397 argv[argc++] = (char *)s;
4398 while (*p && *p != ' ' && *p != TAB)
4399 *s++ = *p++;
4400 *s++ = NUL;
4401 p = skipwhite(p);
4402 }
4403
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404 argv[argc++] = (char *)cmd;
4405 }
4406 argv[argc] = NULL;
4407
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004409 * For the GUI, when writing the output into the buffer and when reading
4410 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4411 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004413 if ((options & (SHELL_READ|SHELL_WRITE))
4414# ifdef FEAT_GUI
4415 || (gui.in_use && show_shell_mess)
4416# endif
4417 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004419# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 /*
4421 * Try to open a master pty.
4422 * If this works, open the slave pty.
4423 * If the slave can't be opened, close the master pty.
4424 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004425 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02004426 open_pty(&pty_master_fd, &pty_slave_fd, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427 /*
4428 * If not opening a pty or it didn't work, try using pipes.
4429 */
4430 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004431# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004432 {
4433 pipe_error = (pipe(fd_toshell) < 0);
4434 if (!pipe_error) /* pipe create OK */
4435 {
4436 pipe_error = (pipe(fd_fromshell) < 0);
4437 if (pipe_error) /* pipe create failed */
4438 {
4439 close(fd_toshell[0]);
4440 close(fd_toshell[1]);
4441 }
4442 }
4443 if (pipe_error)
4444 {
4445 MSG_PUTS(_("\nCannot create pipes\n"));
4446 out_flush();
4447 }
4448 }
4449 }
4450
4451 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004453 SIGSET_DECL(curset)
4454
Bram Moolenaar071d4272004-06-13 20:20:40 +00004455# ifdef __BEOS__
4456 beos_cleanup_read_thread();
4457# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004458
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004459 BLOCK_SIGNALS(&curset);
4460 pid = fork(); /* maybe we should use vfork() */
4461 if (pid == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004463 UNBLOCK_SIGNALS(&curset);
4464
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004466 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004468 || (gui.in_use && show_shell_mess)
4469# endif
4470 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004472# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 if (pty_master_fd >= 0) /* close the pseudo tty */
4474 {
4475 close(pty_master_fd);
4476 close(pty_slave_fd);
4477 }
4478 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004479# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 {
4481 close(fd_toshell[0]);
4482 close(fd_toshell[1]);
4483 close(fd_fromshell[0]);
4484 close(fd_fromshell[1]);
4485 }
4486 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 }
4488 else if (pid == 0) /* child */
4489 {
4490 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004491 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492
4493 if (!show_shell_mess || (options & SHELL_EXPAND))
4494 {
4495 int fd;
4496
4497 /*
4498 * Don't want to show any message from the shell. Can't just
4499 * close stdout and stderr though, because some systems will
4500 * break if you try to write to them after that, so we must
4501 * use dup() to replace them with something else -- webb
4502 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4503 * waiting for input.
4504 */
4505 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4506 fclose(stdin);
4507 fclose(stdout);
4508 fclose(stderr);
4509
4510 /*
4511 * If any of these open()'s and dup()'s fail, we just continue
4512 * anyway. It's not fatal, and on most systems it will make
4513 * no difference at all. On a few it will cause the execvp()
4514 * to exit with a non-zero status even when the completion
4515 * could be done, which is nothing too serious. If the open()
4516 * or dup() failed we'd just do the same thing ourselves
4517 * anyway -- webb
4518 */
4519 if (fd >= 0)
4520 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004521 ignored = dup(fd); /* To replace stdin (fd 0) */
4522 ignored = dup(fd); /* To replace stdout (fd 1) */
4523 ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524
4525 /* Don't need this now that we've duplicated it */
4526 close(fd);
4527 }
4528 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004529 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004531 || gui.in_use
4532# endif
4533 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 {
4535
Bram Moolenaardf177f62005-02-22 08:39:57 +00004536# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004537 /* Create our own process group, so that the child and all its
4538 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004539 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004540 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004541 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004542 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004543# if defined(SIGHUP)
4544 /* When doing "!xterm&" and 'shell' is bash: the shell
4545 * will exit and send SIGHUP to all processes in its
4546 * group, killing the just started process. Ignore SIGHUP
4547 * to avoid that. (suggested by Simon Schubert)
4548 */
4549 signal(SIGHUP, SIG_IGN);
4550# endif
4551 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004552# endif
4553# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004554 if (pty_slave_fd >= 0)
4555 {
4556 /* push stream discipline modules */
4557 if (options & SHELL_COOKED)
4558 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004560 /* Try to become controlling tty (probably doesn't work,
4561 * unless run by root) */
4562 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004564 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004565# endif
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004566 set_default_child_environment();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567
Bram Moolenaara5792f52005-11-23 21:25:05 +00004568 /*
4569 * stderr is only redirected when using the GUI, so that a
4570 * program like gpg can still access the terminal to get a
4571 * passphrase using stderr.
4572 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004573# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 if (pty_master_fd >= 0)
4575 {
4576 close(pty_master_fd); /* close master side of pty */
4577
4578 /* set up stdin/stdout/stderr for the child */
4579 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004580 ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004582 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004583 if (gui.in_use)
4584 {
4585 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004586 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004587 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588
4589 close(pty_slave_fd); /* has been dupped, close it now */
4590 }
4591 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004592# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593 {
4594 /* set up stdin for the child */
4595 close(fd_toshell[1]);
4596 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004597 ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598 close(fd_toshell[0]);
4599
4600 /* set up stdout for the child */
4601 close(fd_fromshell[0]);
4602 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004603 ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604 close(fd_fromshell[1]);
4605
Bram Moolenaara5792f52005-11-23 21:25:05 +00004606# ifdef FEAT_GUI
4607 if (gui.in_use)
4608 {
4609 /* set up stderr for the child */
4610 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004611 ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004612 }
4613# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004614 }
4615 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004616
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 /*
4618 * There is no type cast for the argv, because the type may be
4619 * different on different machines. This may cause a warning
4620 * message with strict compilers, don't worry about it.
4621 * Call _exit() instead of exit() to avoid closing the connection
4622 * to the X server (esp. with GTK, which uses atexit()).
4623 */
4624 execvp(argv[0], argv);
4625 _exit(EXEC_FAILED); /* exec failed, return failure code */
4626 }
4627 else /* parent */
4628 {
4629 /*
4630 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004631 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 */
4633 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004634 catch_int_signal();
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004635 UNBLOCK_SIGNALS(&curset);
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01004636# ifdef FEAT_JOB_CHANNEL
4637 ++dont_check_job_ended;
4638# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004639 /*
4640 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004641 * This is also used to pipe stdin/stdout to/from the external
4642 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004644 if ((options & (SHELL_READ|SHELL_WRITE))
4645# ifdef FEAT_GUI
4646 || (gui.in_use && show_shell_mess)
4647# endif
4648 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004649 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004650# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004652# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004653 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004654# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4656 int ta_len = 0; /* valid bytes in ta_buf[] */
4657 int len;
4658 int p_more_save;
4659 int old_State;
4660 int c;
4661 int toshell_fd;
4662 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004663 garray_T ga;
4664 int noread_cnt;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004665# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4666 struct timeval start_tv;
4667# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668
Bram Moolenaardf177f62005-02-22 08:39:57 +00004669# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670 if (pty_master_fd >= 0)
4671 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 fromshell_fd = pty_master_fd;
4673 toshell_fd = dup(pty_master_fd);
4674 }
4675 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004676# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 {
4678 close(fd_toshell[0]);
4679 close(fd_fromshell[1]);
4680 toshell_fd = fd_toshell[1];
4681 fromshell_fd = fd_fromshell[0];
4682 }
4683
4684 /*
4685 * Write to the child if there are typed characters.
4686 * Read from the child if there are characters available.
4687 * Repeat the reading a few times if more characters are
4688 * available. Need to check for typed keys now and then, but
4689 * not too often (delays when no chars are available).
4690 * This loop is quit if no characters can be read from the pty
4691 * (WaitForChar detected special condition), or there are no
4692 * characters available and the child has exited.
4693 * Only check if the child has exited when there is no more
4694 * output. The child may exit before all the output has
4695 * been printed.
4696 *
4697 * Currently this busy loops!
4698 * This can probably dead-lock when the write blocks!
4699 */
4700 p_more_save = p_more;
4701 p_more = FALSE;
4702 old_State = State;
4703 State = EXTERNCMD; /* don't redraw at window resize */
4704
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004705 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004706 {
4707 /* Fork a process that will write the lines to the
4708 * external program. */
4709 if ((wpid = fork()) == -1)
4710 {
4711 MSG_PUTS(_("\nCannot fork\n"));
4712 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004713 else if (wpid == 0) /* child */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004714 {
4715 linenr_T lnum = curbuf->b_op_start.lnum;
4716 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004717 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004718 size_t l;
4719
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004720 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004721 for (;;)
4722 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004723 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004724 if (l == 0)
4725 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004726 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004727 /* NL -> NUL translation */
4728 len = write(toshell_fd, "", (size_t)1);
4729 else
4730 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004731 char_u *s = vim_strchr(lp + written, NL);
4732
Bram Moolenaar89d40322006-08-29 15:30:07 +00004733 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004734 s == NULL ? l
4735 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004736 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004737 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004738 {
4739 /* Finished a line, add a NL, unless this line
4740 * should not have one. */
4741 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004742 || (!curbuf->b_p_bin
4743 && curbuf->b_p_fixeol)
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004744 || (lnum != curbuf->b_no_eol_lnum
Bram Moolenaardf177f62005-02-22 08:39:57 +00004745 && (lnum !=
4746 curbuf->b_ml.ml_line_count
4747 || curbuf->b_p_eol)))
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004748 ignored = write(toshell_fd, "\n",
4749 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004750 ++lnum;
4751 if (lnum > curbuf->b_op_end.lnum)
4752 {
4753 /* finished all the lines, close pipe */
4754 close(toshell_fd);
4755 toshell_fd = -1;
4756 break;
4757 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004758 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004759 written = 0;
4760 }
4761 else if (len > 0)
4762 written += len;
4763 }
4764 _exit(0);
4765 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004766 else /* parent */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004767 {
4768 close(toshell_fd);
4769 toshell_fd = -1;
4770 }
4771 }
4772
4773 if (options & SHELL_READ)
4774 ga_init2(&ga, 1, BUFLEN);
4775
4776 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004777# ifdef ELAPSED_FUNC
4778 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004779# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 for (;;)
4781 {
4782 /*
4783 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004784 * if there are any.
4785 * Don't do this if we are expanding wild cards (would eat
4786 * typeahead).
4787 * Don't do this when filtering and terminal is in cooked
4788 * mode, the shell command will handle the I/O. Avoids
4789 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004790 * Don't get characters when the child has already
4791 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004792 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004793 * while (noread_cnt > 4), avoids that ":r !ls" eats
4794 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 */
4796 len = 0;
4797 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004798 && ((options &
4799 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4800 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004801# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004802 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004803# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004804 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004805 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004806 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004808 if (ta_len == 0)
4809 {
4810 /* Get extra characters when we don't have any.
4811 * Reset the counter and timer. */
4812 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004813# ifdef ELAPSED_FUNC
4814 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004815# endif
4816 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4817 }
4818 if (ta_len > 0 || len > 0)
4819 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 /*
4821 * For pipes:
4822 * Check for CTRL-C: send interrupt signal to child.
4823 * Check for CTRL-D: EOF, close pipe to child.
4824 */
4825 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4826 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004827 /*
4828 * Send SIGINT to the child's group or all
4829 * processes in our group.
4830 */
Bram Moolenaarfae42832017-08-01 22:24:26 +02004831 may_send_sigint(ta_buf[ta_len], pid, wpid);
4832
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 if (pty_master_fd < 0 && toshell_fd >= 0
4834 && ta_buf[ta_len] == Ctrl_D)
4835 {
4836 close(toshell_fd);
4837 toshell_fd = -1;
4838 }
4839 }
4840
4841 /* replace K_BS by <BS> and K_DEL by <DEL> */
4842 for (i = ta_len; i < ta_len + len; ++i)
4843 {
4844 if (ta_buf[i] == CSI && len - i > 2)
4845 {
4846 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4847 if (c == K_DEL || c == K_KDEL || c == K_BS)
4848 {
4849 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4850 (size_t)(len - i - 2));
4851 if (c == K_DEL || c == K_KDEL)
4852 ta_buf[i] = DEL;
4853 else
4854 ta_buf[i] = Ctrl_H;
4855 len -= 2;
4856 }
4857 }
4858 else if (ta_buf[i] == '\r')
4859 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004860# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 if (has_mbyte)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00004862 i += (*mb_ptr2len_len)(ta_buf + i,
4863 ta_len + len - i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004864# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 }
4866
4867 /*
4868 * For pipes: echo the typed characters.
4869 * For a pty this does not seem to work.
4870 */
4871 if (pty_master_fd < 0)
4872 {
4873 for (i = ta_len; i < ta_len + len; ++i)
4874 {
4875 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4876 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004877# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 else if (has_mbyte)
4879 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004880 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881
4882 msg_outtrans_len(ta_buf + i, l);
4883 i += l - 1;
4884 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004885# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 else
4887 msg_outtrans_len(ta_buf + i, 1);
4888 }
4889 windgoto(msg_row, msg_col);
4890 out_flush();
4891 }
4892
4893 ta_len += len;
4894
4895 /*
4896 * Write the characters to the child, unless EOF has
4897 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004898 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004899 * When writing buffer lines, drop the typed
4900 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004901 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004902 if (options & SHELL_WRITE)
4903 ta_len = 0;
4904 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 {
4906 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4907 if (len > 0)
4908 {
4909 ta_len -= len;
4910 mch_memmove(ta_buf, ta_buf + len, ta_len);
4911 }
4912 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004914 }
4915
Bram Moolenaardf177f62005-02-22 08:39:57 +00004916 if (got_int)
4917 {
4918 /* CTRL-C sends a signal to the child, we ignore it
4919 * ourselves */
4920# ifdef HAVE_SETSID
4921 kill(-pid, SIGINT);
4922# else
4923 kill(0, SIGINT);
4924# endif
4925 if (wpid > 0)
4926 kill(wpid, SIGINT);
4927 got_int = FALSE;
4928 }
4929
Bram Moolenaar071d4272004-06-13 20:20:40 +00004930 /*
4931 * Check if the child has any characters to be printed.
4932 * Read them and write them to our window. Repeat this as
4933 * long as there is something to do, avoid the 10ms wait
4934 * for mch_inchar(), or sending typeahead characters to
4935 * the external process.
4936 * TODO: This should handle escape sequences, compatible
4937 * to some terminal (vt52?).
4938 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004939 ++noread_cnt;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01004940 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004942 len = read_eintr(fromshell_fd, buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004943# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004945# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004947# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 );
4949 if (len <= 0) /* end of file or error */
4950 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004951
4952 noread_cnt = 0;
4953 if (options & SHELL_READ)
4954 {
4955 /* Do NUL -> NL translation, append NL separated
4956 * lines to the current buffer. */
4957 for (i = 0; i < len; ++i)
4958 {
4959 if (buffer[i] == NL)
4960 append_ga_line(&ga);
4961 else if (buffer[i] == NUL)
4962 ga_append(&ga, NL);
4963 else
4964 ga_append(&ga, buffer[i]);
4965 }
4966 }
4967# ifdef FEAT_MBYTE
4968 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969 {
4970 int l;
4971
Bram Moolenaardf177f62005-02-22 08:39:57 +00004972 len += buffer_off;
4973 buffer[len] = NUL;
4974
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 /* Check if the last character in buffer[] is
4976 * incomplete, keep these bytes for the next
4977 * round. */
4978 for (p = buffer; p < buffer + len; p += l)
4979 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02004980 l = MB_CPTR2LEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 if (l == 0)
4982 l = 1; /* NUL byte? */
4983 else if (MB_BYTE2LEN(*p) != l)
4984 break;
4985 }
4986 if (p == buffer) /* no complete character */
4987 {
4988 /* avoid getting stuck at an illegal byte */
4989 if (len >= 12)
4990 ++p;
4991 else
4992 {
4993 buffer_off = len;
4994 continue;
4995 }
4996 }
4997 c = *p;
4998 *p = NUL;
4999 msg_puts(buffer);
5000 if (p < buffer + len)
5001 {
5002 *p = c;
5003 buffer_off = (buffer + len) - p;
5004 mch_memmove(buffer, p, buffer_off);
5005 continue;
5006 }
5007 buffer_off = 0;
5008 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005009# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005010 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 {
5012 buffer[len] = NUL;
5013 msg_puts(buffer);
5014 }
5015
5016 windgoto(msg_row, msg_col);
5017 cursor_on();
5018 out_flush();
5019 if (got_int)
5020 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005021
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005022# ifdef ELAPSED_FUNC
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005023 if (wait_pid == 0)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005024 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005025 long msec = ELAPSED_FUNC(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005026
5027 /* Avoid that we keep looping here without
5028 * checking for a CTRL-C for a long time. Don't
5029 * break out too often to avoid losing typeahead. */
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005030 if (msec > 2000)
5031 {
5032 noread_cnt = 5;
5033 break;
5034 }
5035 }
5036# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037 }
5038
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005039 /* If we already detected the child has finished, continue
5040 * reading output for a short while. Some text may be
5041 * buffered. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005042 if (wait_pid == pid)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005043 {
5044 if (noread_cnt < 5)
5045 continue;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005046 break;
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005047 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005048
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 /*
5050 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00005051 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005053# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02005054 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005055# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005057# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5059 || (wait_pid == pid && WIFEXITED(status)))
5060 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005061 /* Don't break the loop yet, try reading more
5062 * characters from "fromshell_fd" first. When using
5063 * pipes there might still be something to read and
5064 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005067 else
5068 wait_pid = 0;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005069
Bram Moolenaar95a51352013-03-21 22:53:50 +01005070# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005071 /* Handle any X events, e.g. serving the clipboard. */
5072 clip_update();
5073# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 }
5075finished:
5076 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005077 if (options & SHELL_READ)
5078 {
5079 if (ga.ga_len > 0)
5080 {
5081 append_ga_line(&ga);
5082 /* remember that the NL was missing */
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005083 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005084 }
5085 else
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005086 curbuf->b_no_eol_lnum = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005087 ga_clear(&ga);
5088 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 /*
5091 * Give all typeahead that wasn't used back to ui_inchar().
5092 */
5093 if (ta_len)
5094 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 State = old_State;
5096 if (toshell_fd >= 0)
5097 close(toshell_fd);
5098 close(fromshell_fd);
5099 }
Bram Moolenaar95a51352013-03-21 22:53:50 +01005100# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005101 else
5102 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005103 long delay_msec = 1;
5104
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005105 /*
5106 * Similar to the loop above, but only handle X events, no
5107 * I/O.
5108 */
5109 for (;;)
5110 {
5111 if (got_int)
5112 {
5113 /* CTRL-C sends a signal to the child, we ignore it
5114 * ourselves */
5115# ifdef HAVE_SETSID
5116 kill(-pid, SIGINT);
5117# else
5118 kill(0, SIGINT);
5119# endif
5120 got_int = FALSE;
5121 }
5122# ifdef __NeXT__
5123 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
5124# else
5125 wait_pid = waitpid(pid, &status, WNOHANG);
5126# endif
5127 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5128 || (wait_pid == pid && WIFEXITED(status)))
5129 {
5130 wait_pid = pid;
5131 break;
5132 }
5133
5134 /* Handle any X events, e.g. serving the clipboard. */
5135 clip_update();
5136
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005137 /* Wait for 1 to 10 msec. 1 is faster but gives the child
5138 * less time. */
5139 mch_delay(delay_msec, TRUE);
5140 if (++delay_msec > 10)
5141 delay_msec = 10;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005142 }
5143 }
5144# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145
5146 /*
5147 * Wait until our child has exited.
5148 * Ignore wait() returning pids of other children and returning
5149 * because of some signal like SIGWINCH.
5150 * Don't wait if wait_pid was already set above, indicating the
5151 * child already exited.
5152 */
Bram Moolenaar205b8862011-09-07 15:04:31 +02005153 if (wait_pid != pid)
5154 wait_pid = wait4pid(pid, &status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155
Bram Moolenaar624891f2010-10-13 16:22:09 +02005156# ifdef FEAT_GUI
5157 /* Close slave side of pty. Only do this after the child has
5158 * exited, otherwise the child may hang when it tries to write on
5159 * the pty. */
5160 if (pty_master_fd >= 0)
5161 close(pty_slave_fd);
5162# endif
5163
Bram Moolenaardf177f62005-02-22 08:39:57 +00005164 /* Make sure the child that writes to the external program is
5165 * dead. */
5166 if (wpid > 0)
Bram Moolenaar205b8862011-09-07 15:04:31 +02005167 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005168 kill(wpid, SIGKILL);
Bram Moolenaar205b8862011-09-07 15:04:31 +02005169 wait4pid(wpid, NULL);
5170 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005171
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005172# ifdef FEAT_JOB_CHANNEL
5173 --dont_check_job_ended;
5174# endif
5175
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 /*
5177 * Set to raw mode right now, otherwise a CTRL-C after
5178 * catch_signals() will kill Vim.
5179 */
5180 if (tmode == TMODE_RAW)
5181 settmode(TMODE_RAW);
5182 did_settmode = TRUE;
5183 set_signals();
5184
5185 if (WIFEXITED(status))
5186 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00005187 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 retval = WEXITSTATUS(status);
Bram Moolenaar75676462013-01-30 14:55:42 +01005189 if (retval != 0 && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005190 {
5191 if (retval == EXEC_FAILED)
5192 {
5193 MSG_PUTS(_("\nCannot execute shell "));
5194 msg_outtrans(p_sh);
5195 msg_putchar('\n');
5196 }
5197 else if (!(options & SHELL_SILENT))
5198 {
5199 MSG_PUTS(_("\nshell returned "));
5200 msg_outnum((long)retval);
5201 msg_putchar('\n');
5202 }
5203 }
5204 }
5205 else
5206 MSG_PUTS(_("\nCommand terminated\n"));
5207 }
5208 }
5209 vim_free(argv);
Bram Moolenaarea35ef62011-08-04 22:59:28 +02005210 vim_free(p_shcf_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211
5212error:
5213 if (!did_settmode)
5214 if (tmode == TMODE_RAW)
5215 settmode(TMODE_RAW); /* set to raw mode */
5216# ifdef FEAT_TITLE
5217 resettitle();
5218# endif
5219 vim_free(newcmd);
5220
5221 return retval;
5222
5223#endif /* USE_SYSTEM */
5224}
5225
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005226#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005227 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005228mch_job_start(char **argv, job_T *job, jobopt_T *options)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005229{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005230 pid_t pid;
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02005231 int fd_in[2] = {-1, -1}; /* for stdin */
5232 int fd_out[2] = {-1, -1}; /* for stdout */
5233 int fd_err[2] = {-1, -1}; /* for stderr */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005234 int pty_master_fd = -1;
5235 int pty_slave_fd = -1;
Bram Moolenaar16eb4f82016-02-14 23:02:34 +01005236 channel_T *channel = NULL;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005237 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5238 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5239 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005240 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005241 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5242 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
Bram Moolenaarb2412082017-08-20 18:09:14 +02005243 int use_buffer_for_in = options->jo_io[PART_IN] == JIO_BUFFER;
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005244 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005245 SIGSET_DECL(curset)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005246
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005247 if (use_out_for_err && use_null_for_out)
5248 use_null_for_err = TRUE;
5249
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005250 /* default is to fail */
5251 job->jv_status = JOB_FAILED;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005252
Bram Moolenaarb2412082017-08-20 18:09:14 +02005253 if (options->jo_pty
5254 && (!(use_file_for_in || use_null_for_in)
5255 || !(use_file_for_in || use_null_for_out)
5256 || !(use_out_for_err || use_file_for_err || use_null_for_err)))
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02005257 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_name);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005258
Bram Moolenaar12dcf022016-02-15 23:09:04 +01005259 /* TODO: without the channel feature connect the child to /dev/null? */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005260 /* Open pipes for stdin, stdout, stderr. */
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005261 if (use_file_for_in)
5262 {
5263 char_u *fname = options->jo_io_name[PART_IN];
5264
5265 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0);
5266 if (fd_in[0] < 0)
5267 {
5268 EMSG2(_(e_notopen), fname);
5269 goto failed;
5270 }
5271 }
Bram Moolenaarb2412082017-08-20 18:09:14 +02005272 else
5273 /* When writing buffer lines to the input don't use the pty, so that
5274 * the pipe can be closed when all lines were written. */
5275 if (!use_null_for_in && (pty_master_fd < 0 || use_buffer_for_in)
5276 && pipe(fd_in) < 0)
5277 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005278
5279 if (use_file_for_out)
5280 {
5281 char_u *fname = options->jo_io_name[PART_OUT];
5282
5283 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
5284 if (fd_out[1] < 0)
5285 {
5286 EMSG2(_(e_notopen), fname);
5287 goto failed;
5288 }
5289 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005290 else if (!use_null_for_out && pty_master_fd < 0 && pipe(fd_out) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005291 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005292
5293 if (use_file_for_err)
5294 {
5295 char_u *fname = options->jo_io_name[PART_ERR];
5296
5297 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
5298 if (fd_err[1] < 0)
5299 {
5300 EMSG2(_(e_notopen), fname);
5301 goto failed;
5302 }
5303 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005304 else if (!use_out_for_err && !use_null_for_err
5305 && pty_master_fd < 0 && pipe(fd_err) < 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005306 goto failed;
5307
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005308 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5309 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005310 if (options->jo_set & JO_CHANNEL)
5311 {
5312 channel = options->jo_channel;
5313 if (channel != NULL)
5314 ++channel->ch_refcount;
5315 }
5316 else
5317 channel = add_channel();
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005318 if (channel == NULL)
5319 goto failed;
5320 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005321
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005322 BLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005323 pid = fork(); /* maybe we should use vfork() */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005324 if (pid == -1)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005325 {
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005326 /* failed to fork */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005327 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005328 goto failed;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005329 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005330 if (pid == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005331 {
Bram Moolenaar4694a172016-04-21 14:05:23 +02005332 int null_fd = -1;
5333 int stderr_works = TRUE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005334
Bram Moolenaar835dc632016-02-07 14:27:38 +01005335 /* child */
5336 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005337 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005338
5339# ifdef HAVE_SETSID
5340 /* Create our own process group, so that the child and all its
5341 * children can be kill()ed. Don't do this when using pipes,
5342 * because stdin is not a tty, we would lose /dev/tty. */
5343 (void)setsid();
5344# endif
5345
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005346# ifdef FEAT_TERMINAL
5347 if (options->jo_term_rows > 0)
5348 set_child_environment(
5349 (long)options->jo_term_rows,
5350 (long)options->jo_term_cols,
Bram Moolenaar93723a42017-07-28 15:55:32 +02005351 STRNCMP(T_NAME, "xterm", 5) == 0
5352 ? (char *)T_NAME : "xterm");
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005353 else
5354# endif
5355 set_default_child_environment();
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005356
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005357 if (options->jo_env != NULL)
5358 {
5359 dict_T *dict = options->jo_env;
5360 hashitem_T *hi;
5361 int todo = (int)dict->dv_hashtab.ht_used;
5362
5363 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
5364 if (!HASHITEM_EMPTY(hi))
5365 {
5366 typval_T *item = &dict_lookup(hi)->di_tv;
5367
5368 vim_setenv((char_u*)hi->hi_key, get_tv_string(item));
5369 --todo;
5370 }
5371 }
5372
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005373 if (use_null_for_in || use_null_for_out || use_null_for_err)
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005374 {
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005375 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005376 if (null_fd < 0)
5377 {
5378 perror("opening /dev/null failed");
5379 _exit(OPEN_NULL_FAILED);
5380 }
5381 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005382
Bram Moolenaar223896d2017-08-02 22:33:28 +02005383 if (pty_slave_fd >= 0)
5384 {
5385 /* push stream discipline modules */
5386 SetupSlavePTY(pty_slave_fd);
5387# ifdef TIOCSCTTY
5388 /* Try to become controlling tty (probably doesn't work,
5389 * unless run by root) */
5390 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
5391# endif
5392 }
5393
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005394 /* set up stdin for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005395 close(0);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005396 if (use_null_for_in && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005397 ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005398 else if (fd_in[0] < 0)
5399 ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005400 else
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005401 ignored = dup(fd_in[0]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005402
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005403 /* set up stderr for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005404 close(2);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005405 if (use_null_for_err && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005406 {
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005407 ignored = dup(null_fd);
Bram Moolenaar4694a172016-04-21 14:05:23 +02005408 stderr_works = FALSE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005409 }
5410 else if (use_out_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005411 ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005412 else if (fd_err[1] < 0)
5413 ignored = dup(pty_slave_fd);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005414 else
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005415 ignored = dup(fd_err[1]);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005416
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005417 /* set up stdout for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005418 close(1);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005419 if (use_null_for_out && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005420 ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005421 else if (fd_out[1] < 0)
5422 ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005423 else
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005424 ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005425
5426 if (fd_in[0] >= 0)
5427 close(fd_in[0]);
5428 if (fd_in[1] >= 0)
5429 close(fd_in[1]);
5430 if (fd_out[0] >= 0)
5431 close(fd_out[0]);
5432 if (fd_out[1] >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005433 close(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005434 if (fd_err[0] >= 0)
5435 close(fd_err[0]);
5436 if (fd_err[1] >= 0)
5437 close(fd_err[1]);
5438 if (pty_master_fd >= 0)
5439 {
Bram Moolenaar223896d2017-08-02 22:33:28 +02005440 close(pty_master_fd); /* not used in the child */
5441 close(pty_slave_fd); /* was duped above */
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005442 }
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005443
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005444 if (null_fd >= 0)
5445 close(null_fd);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005446
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005447 if (options->jo_cwd != NULL && mch_chdir((char *)options->jo_cwd) != 0)
5448 _exit(EXEC_FAILED);
5449
Bram Moolenaar835dc632016-02-07 14:27:38 +01005450 /* See above for type of argv. */
5451 execvp(argv[0], argv);
5452
Bram Moolenaar4694a172016-04-21 14:05:23 +02005453 if (stderr_works)
5454 perror("executing job failed");
Bram Moolenaarfae42832017-08-01 22:24:26 +02005455# ifdef EXITFREE
Bram Moolenaarcda77642016-06-04 13:32:35 +02005456 /* calling free_all_mem() here causes problems. Ignore valgrind
5457 * reporting possibly leaked memory. */
Bram Moolenaarfae42832017-08-01 22:24:26 +02005458# endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005459 _exit(EXEC_FAILED); /* exec failed, return failure code */
5460 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005461
5462 /* parent */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005463 UNBLOCK_SIGNALS(&curset);
5464
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005465 job->jv_pid = pid;
5466 job->jv_status = JOB_STARTED;
Bram Moolenaarde279892016-03-11 22:19:44 +01005467 job->jv_channel = channel; /* ch_refcount was set above */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005468
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005469 if (pty_master_fd >= 0)
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005470 close(pty_slave_fd); /* not used in the parent */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005471 /* close child stdin, stdout and stderr */
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005472 if (!use_file_for_in && fd_in[0] >= 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005473 close(fd_in[0]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005474 if (!use_file_for_out && fd_out[1] >= 0)
Bram Moolenaare98d1212016-03-08 15:37:41 +01005475 close(fd_out[1]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005476 if (!use_out_for_err && !use_file_for_err && fd_err[1] >= 0)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005477 close(fd_err[1]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005478 if (channel != NULL)
5479 {
5480 channel_set_pipes(channel,
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005481 use_file_for_in || use_null_for_in
5482 ? INVALID_FD : fd_in[1] < 0 ? pty_master_fd : fd_in[1],
5483 use_file_for_out || use_null_for_out
5484 ? INVALID_FD : fd_out[0] < 0 ? pty_master_fd : fd_out[0],
5485 use_out_for_err || use_file_for_err || use_null_for_err
5486 ? INVALID_FD : fd_err[0] < 0 ? pty_master_fd : fd_err[0]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005487 channel_set_job(channel, job, options);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005488 }
Bram Moolenaar979e8c52017-08-01 15:08:07 +02005489 else
5490 {
5491 if (fd_in[1] >= 0)
5492 close(fd_in[1]);
5493 if (fd_out[0] >= 0)
5494 close(fd_out[0]);
5495 if (fd_err[0] >= 0)
5496 close(fd_err[0]);
5497 if (pty_master_fd >= 0)
5498 close(pty_master_fd);
5499 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005500
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005501 /* success! */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005502 return;
5503
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005504failed:
Bram Moolenaarde279892016-03-11 22:19:44 +01005505 channel_unref(channel);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005506 if (fd_in[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005507 close(fd_in[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005508 if (fd_in[1] >= 0)
5509 close(fd_in[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005510 if (fd_out[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005511 close(fd_out[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005512 if (fd_out[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005513 close(fd_out[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005514 if (fd_err[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005515 close(fd_err[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005516 if (fd_err[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005517 close(fd_err[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005518 if (pty_master_fd >= 0)
5519 close(pty_master_fd);
5520 if (pty_slave_fd >= 0)
5521 close(pty_slave_fd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005522}
5523
5524 char *
5525mch_job_status(job_T *job)
5526{
5527# ifdef HAVE_UNION_WAIT
5528 union wait status;
5529# else
5530 int status = -1;
5531# endif
5532 pid_t wait_pid = 0;
5533
5534# ifdef __NeXT__
5535 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0);
5536# else
5537 wait_pid = waitpid(job->jv_pid, &status, WNOHANG);
5538# endif
5539 if (wait_pid == -1)
5540 {
5541 /* process must have exited */
Bram Moolenaar97792de2016-10-15 18:36:49 +02005542 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005543 }
5544 if (wait_pid == 0)
5545 return "run";
5546 if (WIFEXITED(status))
5547 {
5548 /* LINTED avoid "bitwise operation on signed value" */
5549 job->jv_exitval = WEXITSTATUS(status);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005550 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005551 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005552 if (WIFSIGNALED(status))
5553 {
5554 job->jv_exitval = -1;
Bram Moolenaar97792de2016-10-15 18:36:49 +02005555 goto return_dead;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005556 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01005557 return "run";
Bram Moolenaar97792de2016-10-15 18:36:49 +02005558
5559return_dead:
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005560 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005561 {
5562 ch_log(job->jv_channel, "Job ended");
5563 job->jv_status = JOB_ENDED;
5564 }
5565 return "dead";
5566}
5567
5568 job_T *
5569mch_detect_ended_job(job_T *job_list)
5570{
5571# ifdef HAVE_UNION_WAIT
5572 union wait status;
5573# else
5574 int status = -1;
5575# endif
5576 pid_t wait_pid = 0;
5577 job_T *job;
5578
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005579# ifndef USE_SYSTEM
5580 /* Do not do this when waiting for a shell command to finish, we would get
5581 * the exit value here (and discard it), the exit value obtained there
5582 * would then be wrong. */
5583 if (dont_check_job_ended > 0)
5584 return NULL;
5585# endif
5586
Bram Moolenaar97792de2016-10-15 18:36:49 +02005587# ifdef __NeXT__
5588 wait_pid = wait4(-1, &status, WNOHANG, (struct rusage *)0);
5589# else
5590 wait_pid = waitpid(-1, &status, WNOHANG);
5591# endif
5592 if (wait_pid <= 0)
5593 /* no process ended */
5594 return NULL;
5595 for (job = job_list; job != NULL; job = job->jv_next)
5596 {
5597 if (job->jv_pid == wait_pid)
5598 {
5599 if (WIFEXITED(status))
5600 /* LINTED avoid "bitwise operation on signed value" */
5601 job->jv_exitval = WEXITSTATUS(status);
5602 else if (WIFSIGNALED(status))
5603 job->jv_exitval = -1;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005604 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005605 {
5606 ch_log(job->jv_channel, "Job ended");
5607 job->jv_status = JOB_ENDED;
5608 }
5609 return job;
5610 }
5611 }
5612 return NULL;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005613}
5614
Bram Moolenaar3a117e12016-10-30 21:57:52 +01005615/*
5616 * Send a (deadly) signal to "job".
5617 * Return FAIL if "how" is not a valid name.
5618 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01005619 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005620mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005621{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005622 int sig = -1;
5623 pid_t job_pid;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005624
Bram Moolenaar923d9262016-02-25 20:56:01 +01005625 if (*how == NUL || STRCMP(how, "term") == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005626 sig = SIGTERM;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005627 else if (STRCMP(how, "hup") == 0)
5628 sig = SIGHUP;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005629 else if (STRCMP(how, "quit") == 0)
5630 sig = SIGQUIT;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005631 else if (STRCMP(how, "int") == 0)
5632 sig = SIGINT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005633 else if (STRCMP(how, "kill") == 0)
5634 sig = SIGKILL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02005635#ifdef SIGWINCH
5636 else if (STRCMP(how, "winch") == 0)
5637 sig = SIGWINCH;
5638#endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005639 else if (isdigit(*how))
5640 sig = atoi((char *)how);
5641 else
5642 return FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005643
Bram Moolenaar72801402016-02-09 11:37:50 +01005644 /* TODO: have an option to only kill the process, not the group? */
Bram Moolenaar76467df2016-02-12 19:30:26 +01005645 job_pid = job->jv_pid;
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01005646#ifdef HAVE_GETPGID
Bram Moolenaar76467df2016-02-12 19:30:26 +01005647 if (job_pid == getpgid(job_pid))
5648 job_pid = -job_pid;
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01005649#endif
Bram Moolenaar76467df2016-02-12 19:30:26 +01005650
Bram Moolenaar61a66052017-07-22 18:39:00 +02005651 /* Never kill ourselves! */
5652 if (job_pid != 0)
5653 kill(job_pid, sig);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005654
Bram Moolenaar835dc632016-02-07 14:27:38 +01005655 return OK;
5656}
Bram Moolenaar76467df2016-02-12 19:30:26 +01005657
5658/*
5659 * Clear the data related to "job".
5660 */
5661 void
5662mch_clear_job(job_T *job)
5663{
5664 /* call waitpid because child process may become zombie */
5665# ifdef __NeXT__
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005666 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005667# else
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005668 (void)waitpid(job->jv_pid, NULL, WNOHANG);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005669# endif
5670}
Bram Moolenaar835dc632016-02-07 14:27:38 +01005671#endif
5672
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005673#if defined(FEAT_TERMINAL) || defined(PROTO)
5674 int
5675mch_create_pty_channel(job_T *job, jobopt_T *options)
5676{
5677 int pty_master_fd = -1;
5678 int pty_slave_fd = -1;
5679 channel_T *channel;
5680
5681 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_name);
5682 close(pty_slave_fd);
5683
5684 channel = add_channel();
5685 if (channel == NULL)
5686 return FAIL;
5687 job->jv_channel = channel; /* ch_refcount was set by add_channel() */
5688 channel->ch_keep_open = TRUE;
5689
5690 channel_set_pipes(channel, pty_master_fd, pty_master_fd, pty_master_fd);
5691 channel_set_job(channel, job, options);
5692 return OK;
5693}
5694#endif
5695
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696/*
5697 * Check for CTRL-C typed by reading all available characters.
5698 * In cooked mode we should get SIGINT, no need to check.
5699 */
5700 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005701mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005703 if ((curr_tmode == TMODE_RAW || force)
5704 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 fill_input_buf(FALSE);
5706}
5707
5708/*
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005709 * Wait "msec" msec until a character is available from the mouse, keyboard,
5710 * from inbuf[].
5711 * "msec" == -1 will block forever.
5712 * Invokes timer callbacks when needed.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005713 * When "ignore_input" is TRUE even check for pending input when input is
5714 * already available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005715 * "interrupted" (if not NULL) is set to TRUE when no character is available
5716 * but something else needs to be done.
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005717 * Returns TRUE when a character is available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005718 * When a GUI is being used, this will never get called -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 */
5720 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005721WaitForChar(long msec, int *interrupted, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722{
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005723#ifdef FEAT_TIMERS
5724 long due_time;
5725 long remaining = msec;
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005726 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005727
5728 /* When waiting very briefly don't trigger timers. */
5729 if (msec >= 0 && msec < 10L)
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005730 return WaitForCharOrMouse(msec, NULL, ignore_input);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005731
5732 while (msec < 0 || remaining > 0)
5733 {
5734 /* Trigger timers and then get the time in msec until the next one is
5735 * due. Wait up to that time. */
5736 due_time = check_due_timer();
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005737 if (typebuf.tb_change_cnt != tb_change_cnt)
5738 {
5739 /* timer may have used feedkeys() */
5740 return FALSE;
5741 }
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005742 if (due_time <= 0 || (msec > 0 && due_time > remaining))
5743 due_time = remaining;
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005744 if (WaitForCharOrMouse(due_time, interrupted, ignore_input))
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005745 return TRUE;
Bram Moolenaarcda77642016-06-04 13:32:35 +02005746 if (interrupted != NULL && *interrupted)
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005747 /* Nothing available, but need to return so that side effects get
5748 * handled, such as handling a message on a channel. */
5749 return FALSE;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005750 if (msec > 0)
5751 remaining -= due_time;
5752 }
5753 return FALSE;
5754#else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005755 return WaitForCharOrMouse(msec, interrupted, ignore_input);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005756#endif
5757}
5758
5759/*
5760 * Wait "msec" msec until a character is available from the mouse or keyboard
5761 * or from inbuf[].
5762 * "msec" == -1 will block forever.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005763 * for "ignore_input" see WaitForCharOr().
Bram Moolenaarcda77642016-06-04 13:32:35 +02005764 * "interrupted" (if not NULL) is set to TRUE when no character is available
5765 * but something else needs to be done.
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005766 * When a GUI is being used, this will never get called -- webb
5767 */
5768 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005769WaitForCharOrMouse(long msec, int *interrupted, int ignore_input)
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005770{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771#ifdef FEAT_MOUSE_GPM
5772 int gpm_process_wanted;
5773#endif
5774#ifdef FEAT_XCLIPBOARD
5775 int rest;
5776#endif
5777 int avail;
5778
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005779 if (!ignore_input && input_available()) /* something in inbuf[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 return 1;
5781
5782#if defined(FEAT_MOUSE_DEC)
5783 /* May need to query the mouse position. */
5784 if (WantQueryMouse)
5785 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005786 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005787 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
5788 }
5789#endif
5790
5791 /*
5792 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
5793 * events. This is a bit complicated, because they might both be defined.
5794 */
5795#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
5796# ifdef FEAT_XCLIPBOARD
5797 rest = 0;
5798 if (do_xterm_trace())
5799 rest = msec;
5800# endif
5801 do
5802 {
5803# ifdef FEAT_XCLIPBOARD
5804 if (rest != 0)
5805 {
5806 msec = XT_TRACE_DELAY;
5807 if (rest >= 0 && rest < XT_TRACE_DELAY)
5808 msec = rest;
5809 if (rest >= 0)
5810 rest -= msec;
5811 }
5812# endif
5813# ifdef FEAT_MOUSE_GPM
5814 gpm_process_wanted = 0;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005815 avail = RealWaitForChar(read_cmd_fd, msec,
Bram Moolenaarcda77642016-06-04 13:32:35 +02005816 &gpm_process_wanted, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005817# else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005818 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005819# endif
5820 if (!avail)
5821 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005822 if (!ignore_input && input_available())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823 return 1;
5824# ifdef FEAT_XCLIPBOARD
5825 if (rest == 0 || !do_xterm_trace())
5826# endif
5827 break;
5828 }
5829 }
5830 while (FALSE
5831# ifdef FEAT_MOUSE_GPM
5832 || (gpm_process_wanted && mch_gpm_process() == 0)
5833# endif
5834# ifdef FEAT_XCLIPBOARD
5835 || (!avail && rest != 0)
5836# endif
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005837 )
5838 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005839
5840#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005841 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842#endif
5843 return avail;
5844}
5845
Bram Moolenaar4ffa0702013-12-11 17:12:37 +01005846#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005847/*
5848 * Wait "msec" msec until a character is available from file descriptor "fd".
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005849 * "msec" == 0 will check for characters once.
5850 * "msec" == -1 will block until a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851 * When a GUI is being used, this will not be used for input -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005852 * Or when a Linux GPM mouse event is waiting.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02005853 * Or when a clientserver message is on the queue.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005854 * "interrupted" (if not NULL) is set to TRUE when no character is available
5855 * but something else needs to be done.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005857#if defined(__BEOS__)
5858 int
5859#else
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005860 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005862RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005863{
5864 int ret;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005865 int result;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005866#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005867 static int busy = FALSE;
5868
5869 /* May retry getting characters after an event was handled. */
5870# define MAY_LOOP
5871
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005872# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00005873 /* Remember at what time we started, so that we know how much longer we
5874 * should wait after being interrupted. */
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005875 long start_msec = msec;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005876 ELAPSED_TYPE start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005878 if (msec > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005879 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880# endif
5881
5882 /* Handle being called recursively. This may happen for the session
5883 * manager stuff, it may save the file, which does a breakcheck. */
5884 if (busy)
5885 return 0;
5886#endif
5887
5888#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005889 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890#endif
5891 {
5892#ifdef MAY_LOOP
5893 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005894# ifdef FEAT_MZSCHEME
5895 int mzquantum_used = FALSE;
5896# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897#endif
5898#ifndef HAVE_SELECT
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005899 /* each channel may use in, out and err */
5900 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005901 int nfd;
5902# ifdef FEAT_XCLIPBOARD
5903 int xterm_idx = -1;
5904# endif
5905# ifdef FEAT_MOUSE_GPM
5906 int gpm_idx = -1;
5907# endif
5908# ifdef USE_XSMP
5909 int xsmp_idx = -1;
5910# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005911 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005913# ifdef FEAT_MZSCHEME
5914 mzvim_check_threads();
5915 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
5916 {
5917 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
5918 mzquantum_used = TRUE;
5919 }
5920# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921 fds[0].fd = fd;
5922 fds[0].events = POLLIN;
5923 nfd = 1;
5924
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01005926 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 if (xterm_Shell != (Widget)0)
5928 {
5929 xterm_idx = nfd;
5930 fds[nfd].fd = ConnectionNumber(xterm_dpy);
5931 fds[nfd].events = POLLIN;
5932 nfd++;
5933 }
5934# endif
5935# ifdef FEAT_MOUSE_GPM
5936 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
5937 {
5938 gpm_idx = nfd;
5939 fds[nfd].fd = gpm_fd;
5940 fds[nfd].events = POLLIN;
5941 nfd++;
5942 }
5943# endif
5944# ifdef USE_XSMP
5945 if (xsmp_icefd != -1)
5946 {
5947 xsmp_idx = nfd;
5948 fds[nfd].fd = xsmp_icefd;
5949 fds[nfd].events = POLLIN;
5950 nfd++;
5951 }
5952# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005953#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01005954 nfd = channel_poll_setup(nfd, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005955#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005956 if (interrupted != NULL)
5957 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005959 ret = poll(fds, nfd, towait);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005960
5961 result = ret > 0 && (fds[0].revents & POLLIN);
Bram Moolenaarcda77642016-06-04 13:32:35 +02005962 if (result == 0 && interrupted != NULL && ret > 0)
5963 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005964
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005965# ifdef FEAT_MZSCHEME
5966 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005967 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005968 finished = FALSE;
5969# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005970
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971# ifdef FEAT_XCLIPBOARD
5972 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
5973 {
5974 xterm_update(); /* Maybe we should hand out clipboard */
5975 if (--ret == 0 && !input_available())
5976 /* Try again */
5977 finished = FALSE;
5978 }
5979# endif
5980# ifdef FEAT_MOUSE_GPM
5981 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
5982 {
5983 *check_for_gpm = 1;
5984 }
5985# endif
5986# ifdef USE_XSMP
5987 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
5988 {
5989 if (fds[xsmp_idx].revents & POLLIN)
5990 {
5991 busy = TRUE;
5992 xsmp_handle_requests();
5993 busy = FALSE;
5994 }
5995 else if (fds[xsmp_idx].revents & POLLHUP)
5996 {
5997 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005998 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 xsmp_close();
6000 }
6001 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006002 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006003 }
6004# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006005#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01006006 if (ret > 0)
6007 ret = channel_poll_check(ret, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006008#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010#else /* HAVE_SELECT */
6011
6012 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006013 struct timeval *tvp;
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006014 fd_set rfds, wfds, efds;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006016 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006018# ifdef FEAT_MZSCHEME
6019 mzvim_check_threads();
6020 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6021 {
6022 towait = p_mzq; /* don't wait longer than 'mzquantum' */
6023 mzquantum_used = TRUE;
6024 }
6025# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006027 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006029 tv.tv_sec = towait / 1000;
6030 tv.tv_usec = (towait % 1000) * (1000000/1000);
6031 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006033 else
6034 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035
6036 /*
6037 * Select on ready for reading and exceptional condition (end of file).
6038 */
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006039select_eintr:
6040 FD_ZERO(&rfds);
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006041 FD_ZERO(&wfds);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042 FD_ZERO(&efds);
6043 FD_SET(fd, &rfds);
6044# if !defined(__QNX__) && !defined(__CYGWIN32__)
6045 /* For QNX select() always returns 1 if this is set. Why? */
6046 FD_SET(fd, &efds);
6047# endif
6048 maxfd = fd;
6049
Bram Moolenaar071d4272004-06-13 20:20:40 +00006050# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006051 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052 if (xterm_Shell != (Widget)0)
6053 {
6054 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
6055 if (maxfd < ConnectionNumber(xterm_dpy))
6056 maxfd = ConnectionNumber(xterm_dpy);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006057
6058 /* An event may have already been read but not handled. In
6059 * particulary, XFlush may cause this. */
6060 xterm_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061 }
6062# endif
6063# ifdef FEAT_MOUSE_GPM
6064 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6065 {
6066 FD_SET(gpm_fd, &rfds);
6067 FD_SET(gpm_fd, &efds);
6068 if (maxfd < gpm_fd)
6069 maxfd = gpm_fd;
6070 }
6071# endif
6072# ifdef USE_XSMP
6073 if (xsmp_icefd != -1)
6074 {
6075 FD_SET(xsmp_icefd, &rfds);
6076 FD_SET(xsmp_icefd, &efds);
6077 if (maxfd < xsmp_icefd)
6078 maxfd = xsmp_icefd;
6079 }
6080# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006081# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006082 maxfd = channel_select_setup(maxfd, &rfds, &wfds);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006083# endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006084 if (interrupted != NULL)
6085 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006086
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006087 ret = select(maxfd + 1, &rfds, &wfds, &efds, tvp);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006088 result = ret > 0 && FD_ISSET(fd, &rfds);
6089 if (result)
6090 --ret;
Bram Moolenaarcda77642016-06-04 13:32:35 +02006091 else if (interrupted != NULL && ret > 0)
6092 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006093
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006094# ifdef EINTR
6095 if (ret == -1 && errno == EINTR)
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006096 {
6097 /* Check whether window has been resized, EINTR may be caused by
6098 * SIGWINCH. */
6099 if (do_resize)
6100 handle_resize();
6101
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006102 /* Interrupted by a signal, need to try again. We ignore msec
6103 * here, because we do want to check even after a timeout if
6104 * characters are available. Needed for reading output of an
6105 * external command after the process has finished. */
6106 goto select_eintr;
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006107 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006108# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00006109# ifdef __TANDEM
6110 if (ret == -1 && errno == ENOTSUP)
6111 {
6112 FD_ZERO(&rfds);
6113 FD_ZERO(&efds);
6114 ret = 0;
6115 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006116# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006117# ifdef FEAT_MZSCHEME
6118 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006119 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006120 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121# endif
6122
Bram Moolenaar071d4272004-06-13 20:20:40 +00006123# ifdef FEAT_XCLIPBOARD
6124 if (ret > 0 && xterm_Shell != (Widget)0
6125 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
6126 {
6127 xterm_update(); /* Maybe we should hand out clipboard */
6128 /* continue looping when we only got the X event and the input
6129 * buffer is empty */
6130 if (--ret == 0 && !input_available())
6131 {
6132 /* Try again */
6133 finished = FALSE;
6134 }
6135 }
6136# endif
6137# ifdef FEAT_MOUSE_GPM
6138 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
6139 {
6140 if (FD_ISSET(gpm_fd, &efds))
6141 gpm_close();
6142 else if (FD_ISSET(gpm_fd, &rfds))
6143 *check_for_gpm = 1;
6144 }
6145# endif
6146# ifdef USE_XSMP
6147 if (ret > 0 && xsmp_icefd != -1)
6148 {
6149 if (FD_ISSET(xsmp_icefd, &efds))
6150 {
6151 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006152 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 xsmp_close();
6154 if (--ret == 0)
6155 finished = FALSE; /* keep going if event was only one */
6156 }
6157 else if (FD_ISSET(xsmp_icefd, &rfds))
6158 {
6159 busy = TRUE;
6160 xsmp_handle_requests();
6161 busy = FALSE;
6162 if (--ret == 0)
6163 finished = FALSE; /* keep going if event was only one */
6164 }
6165 }
6166# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006167#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01006168 if (ret > 0)
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006169 ret = channel_select_check(ret, &rfds, &wfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006170#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171
6172#endif /* HAVE_SELECT */
6173
6174#ifdef MAY_LOOP
6175 if (finished || msec == 0)
6176 break;
6177
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006178# ifdef FEAT_CLIENTSERVER
6179 if (server_waiting())
6180 break;
6181# endif
6182
Bram Moolenaar071d4272004-06-13 20:20:40 +00006183 /* We're going to loop around again, find out for how long */
6184 if (msec > 0)
6185 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006186# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006187 /* Compute remaining wait time. */
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006188 msec = start_msec - ELAPSED_FUNC(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189# else
6190 /* Guess we got interrupted halfway. */
6191 msec = msec / 2;
6192# endif
6193 if (msec <= 0)
6194 break; /* waited long enough */
6195 }
6196#endif
6197 }
6198
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006199 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200}
6201
Bram Moolenaar071d4272004-06-13 20:20:40 +00006202#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203/*
Bram Moolenaar02743632005-07-25 20:42:36 +00006204 * Expand a path into all matching files and/or directories. Handles "*",
6205 * "?", "[a-z]", "**", etc.
6206 * "path" has backslashes before chars that are not to be expanded.
6207 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208 */
6209 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006210mch_expandpath(
6211 garray_T *gap,
6212 char_u *path,
6213 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214{
Bram Moolenaar02743632005-07-25 20:42:36 +00006215 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216}
6217#endif
6218
6219/*
6220 * mch_expand_wildcards() - this code does wild-card pattern matching using
6221 * the shell
6222 *
6223 * return OK for success, FAIL for error (you may lose some memory) and put
6224 * an error message in *file.
6225 *
6226 * num_pat is number of input patterns
6227 * pat is array of pointers to input patterns
6228 * num_file is pointer to number of matched file names
6229 * file is pointer to array of pointers to matched file names
6230 */
6231
6232#ifndef SEEK_SET
6233# define SEEK_SET 0
6234#endif
6235#ifndef SEEK_END
6236# define SEEK_END 2
6237#endif
6238
Bram Moolenaar5555acc2006-04-07 21:33:12 +00006239#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00006240
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006242mch_expand_wildcards(
6243 int num_pat,
6244 char_u **pat,
6245 int *num_file,
6246 char_u ***file,
6247 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248{
6249 int i;
6250 size_t len;
Bram Moolenaar85325f82017-03-30 21:18:45 +02006251 long llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006252 char_u *p;
6253 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006254
Bram Moolenaarc7247912008-01-13 12:54:11 +00006255 /*
6256 * This is the non-OS/2 implementation (really Unix).
6257 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006258 int j;
6259 char_u *tempname;
6260 char_u *command;
6261 FILE *fd;
6262 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006263#define STYLE_ECHO 0 /* use "echo", the default */
6264#define STYLE_GLOB 1 /* use "glob", for csh */
6265#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
6266#define STYLE_PRINT 3 /* use "print -N", for zsh */
6267#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
6268 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269 int shell_style = STYLE_ECHO;
6270 int check_spaces;
6271 static int did_find_nul = FALSE;
6272 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006273 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006274 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006275
6276 *num_file = 0; /* default: no files found */
6277 *file = NULL;
6278
6279 /*
6280 * If there are no wildcards, just copy the names to allocated memory.
6281 * Saves a lot of time, because we don't have to start a new shell.
6282 */
6283 if (!have_wildcard(num_pat, pat))
6284 return save_patterns(num_pat, pat, num_file, file);
6285
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006286# ifdef HAVE_SANDBOX
6287 /* Don't allow any shell command in the sandbox. */
6288 if (sandbox != 0 && check_secure())
6289 return FAIL;
6290# endif
6291
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292 /*
6293 * Don't allow the use of backticks in secure and restricted mode.
6294 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006295 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006296 for (i = 0; i < num_pat; ++i)
6297 if (vim_strchr(pat[i], '`') != NULL
6298 && (check_restricted() || check_secure()))
6299 return FAIL;
6300
6301 /*
6302 * get a name for the temp file
6303 */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02006304 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006305 {
6306 EMSG(_(e_notmp));
6307 return FAIL;
6308 }
6309
6310 /*
6311 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00006312 * file.
6313 * STYLE_BT: NL separated
6314 * If expanding `cmd` execute it directly.
6315 * STYLE_GLOB: NUL separated
6316 * If we use *csh, "glob" will work better than "echo".
6317 * STYLE_PRINT: NL or NUL separated
6318 * If we use *zsh, "print -N" will work better than "glob".
6319 * STYLE_VIMGLOB: NL separated
6320 * If we use *sh*, we define "vimglob()".
6321 * STYLE_ECHO: space separated.
6322 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323 */
6324 if (num_pat == 1 && *pat[0] == '`'
6325 && (len = STRLEN(pat[0])) > 2
6326 && *(pat[0] + len - 1) == '`')
6327 shell_style = STYLE_BT;
6328 else if ((len = STRLEN(p_sh)) >= 3)
6329 {
6330 if (STRCMP(p_sh + len - 3, "csh") == 0)
6331 shell_style = STYLE_GLOB;
6332 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
6333 shell_style = STYLE_PRINT;
6334 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006335 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
6336 "sh") != NULL)
6337 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338
Bram Moolenaarc7247912008-01-13 12:54:11 +00006339 /* Compute the length of the command. We need 2 extra bytes: for the
6340 * optional '&' and for the NUL.
6341 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006343 if (shell_style == STYLE_VIMGLOB)
6344 len += STRLEN(sh_vimglob_func);
6345
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006346 for (i = 0; i < num_pat; ++i)
6347 {
6348 /* Count the length of the patterns in the same way as they are put in
6349 * "command" below. */
6350#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006352#else
6353 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006354 for (j = 0; pat[i][j] != NUL; ++j)
6355 {
6356 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
6357 ++len; /* may add a backslash */
6358 ++len;
6359 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006360#endif
6361 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 command = alloc(len);
6363 if (command == NULL)
6364 {
6365 /* out of memory */
6366 vim_free(tempname);
6367 return FAIL;
6368 }
6369
6370 /*
6371 * Build the shell command:
6372 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
6373 * recognizes this).
6374 * - Add the shell command to print the expanded names.
6375 * - Add the temp file name.
6376 * - Add the file name patterns.
6377 */
6378 if (shell_style == STYLE_BT)
6379 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00006380 /* change `command; command& ` to (command; command ) */
6381 STRCPY(command, "(");
6382 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006383 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006384 *p-- = ')'; /* remove last backtick */
Bram Moolenaar1c465442017-03-12 20:10:05 +01006385 while (p > command && VIM_ISWHITE(*p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386 --p;
6387 if (*p == '&') /* remove trailing '&' */
6388 {
6389 ampersent = TRUE;
6390 *p = ' ';
6391 }
6392 STRCAT(command, ">");
6393 }
6394 else
6395 {
6396 if (flags & EW_NOTFOUND)
6397 STRCPY(command, "set nonomatch; ");
6398 else
6399 STRCPY(command, "unset nonomatch; ");
6400 if (shell_style == STYLE_GLOB)
6401 STRCAT(command, "glob >");
6402 else if (shell_style == STYLE_PRINT)
6403 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00006404 else if (shell_style == STYLE_VIMGLOB)
6405 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 else
6407 STRCAT(command, "echo >");
6408 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006409
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00006411
Bram Moolenaar071d4272004-06-13 20:20:40 +00006412 if (shell_style != STYLE_BT)
6413 for (i = 0; i < num_pat; ++i)
6414 {
6415 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00006416 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006417 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418#ifdef USE_SYSTEM
6419 STRCAT(command, " \"");
6420 STRCAT(command, pat[i]);
6421 STRCAT(command, "\"");
6422#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00006423 int intick = FALSE;
6424
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425 p = command + STRLEN(command);
6426 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00006427 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00006428 {
6429 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00006430 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006431 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
6432 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006433 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00006434 * backslash inside backticks, before a special character
6435 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006436 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00006437 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
6438 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006439 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006440 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006441 }
Bram Moolenaare4df1642014-08-29 12:58:44 +02006442 else if (!intick
6443 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$')
6444 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00006445 /* Put a backslash before a special character, but not
Bram Moolenaare4df1642014-08-29 12:58:44 +02006446 * when inside ``. And not for $var when EW_KEEPDOLLAR is
6447 * set. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006448 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006449
6450 /* Copy one character. */
6451 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00006452 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 *p = NUL;
6454#endif
6455 }
6456 if (flags & EW_SILENT)
6457 show_shell_mess = FALSE;
6458 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00006459 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006460
6461 /*
6462 * Using zsh -G: If a pattern has no matches, it is just deleted from
6463 * the argument list, otherwise zsh gives an error message and doesn't
6464 * expand any other pattern.
6465 */
6466 if (shell_style == STYLE_PRINT)
6467 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
6468
6469 /*
6470 * If we use -f then shell variables set in .cshrc won't get expanded.
6471 * vi can do it, so we will too, but it is only necessary if there is a "$"
6472 * in one of the patterns, otherwise we can still use the fast option.
6473 */
6474 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
6475 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
6476
6477 /*
6478 * execute the shell command
6479 */
6480 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6481
6482 /* When running in the background, give it some time to create the temp
6483 * file, but don't wait for it to finish. */
6484 if (ampersent)
6485 mch_delay(10L, TRUE);
6486
6487 extra_shell_arg = NULL; /* cleanup */
6488 show_shell_mess = TRUE;
6489 vim_free(command);
6490
Bram Moolenaarc7247912008-01-13 12:54:11 +00006491 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006492 {
6493 mch_remove(tempname);
6494 vim_free(tempname);
6495 /*
6496 * With interactive completion, the error message is not printed.
6497 * However with USE_SYSTEM, I don't know how to turn off error messages
6498 * from the shell, so screen may still get messed up -- webb.
6499 */
6500#ifndef USE_SYSTEM
6501 if (!(flags & EW_SILENT))
6502#endif
6503 {
6504 redraw_later_clear(); /* probably messed up screen */
6505 msg_putchar('\n'); /* clear bottom line quickly */
6506 cmdline_row = Rows - 1; /* continue on last line */
6507#ifdef USE_SYSTEM
6508 if (!(flags & EW_SILENT))
6509#endif
6510 {
6511 MSG(_(e_wildexpand));
6512 msg_start(); /* don't overwrite this message */
6513 }
6514 }
6515 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
6516 * EW_NOTFOUND is given */
6517 if (shell_style == STYLE_BT)
6518 return FAIL;
6519 goto notfound;
6520 }
6521
6522 /*
6523 * read the names from the file into memory
6524 */
6525 fd = fopen((char *)tempname, READBIN);
6526 if (fd == NULL)
6527 {
6528 /* Something went wrong, perhaps a file name with a special char. */
6529 if (!(flags & EW_SILENT))
6530 {
6531 MSG(_(e_wildexpand));
6532 msg_start(); /* don't overwrite this message */
6533 }
6534 vim_free(tempname);
6535 goto notfound;
6536 }
6537 fseek(fd, 0L, SEEK_END);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006538 llen = ftell(fd); /* get size of temp file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539 fseek(fd, 0L, SEEK_SET);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006540 if (llen < 0)
6541 /* just in case ftell() would fail */
6542 buffer = NULL;
6543 else
6544 buffer = alloc(llen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006545 if (buffer == NULL)
6546 {
6547 /* out of memory */
6548 mch_remove(tempname);
6549 vim_free(tempname);
6550 fclose(fd);
6551 return FAIL;
6552 }
Bram Moolenaar85325f82017-03-30 21:18:45 +02006553 len = llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006554 i = fread((char *)buffer, 1, len, fd);
6555 fclose(fd);
6556 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00006557 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006558 {
6559 /* unexpected read error */
6560 EMSG2(_(e_notread), tempname);
6561 vim_free(tempname);
6562 vim_free(buffer);
6563 return FAIL;
6564 }
6565 vim_free(tempname);
6566
Bram Moolenaarc7247912008-01-13 12:54:11 +00006567# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006568 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
6569 p = buffer;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02006570 for (i = 0; i < (int)len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
6572 *p++ = buffer[i];
6573 len = p - buffer;
6574# endif
6575
6576
6577 /* file names are separated with Space */
6578 if (shell_style == STYLE_ECHO)
6579 {
6580 buffer[len] = '\n'; /* make sure the buffer ends in NL */
6581 p = buffer;
6582 for (i = 0; *p != '\n'; ++i) /* count number of entries */
6583 {
6584 while (*p != ' ' && *p != '\n')
6585 ++p;
6586 p = skipwhite(p); /* skip to next entry */
6587 }
6588 }
6589 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006590 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591 {
6592 buffer[len] = NUL; /* make sure the buffer ends in NUL */
6593 p = buffer;
6594 for (i = 0; *p != NUL; ++i) /* count number of entries */
6595 {
6596 while (*p != '\n' && *p != NUL)
6597 ++p;
6598 if (*p != NUL)
6599 ++p;
6600 p = skipwhite(p); /* skip leading white space */
6601 }
6602 }
6603 /* file names are separated with NUL */
6604 else
6605 {
6606 /*
6607 * Some versions of zsh use spaces instead of NULs to separate
6608 * results. Only do this when there is no NUL before the end of the
6609 * buffer, otherwise we would never be able to use file names with
6610 * embedded spaces when zsh does use NULs.
6611 * When we found a NUL once, we know zsh is OK, set did_find_nul and
6612 * don't check for spaces again.
6613 */
6614 check_spaces = FALSE;
6615 if (shell_style == STYLE_PRINT && !did_find_nul)
6616 {
6617 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02006618 buffer[len] = NUL;
Bram Moolenaarb011af92013-12-11 13:21:51 +01006619 if (len && (int)STRLEN(buffer) < (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006620 did_find_nul = TRUE;
6621 else
6622 check_spaces = TRUE;
6623 }
6624
6625 /*
6626 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
6627 * already is one, for STYLE_GLOB it needs to be added.
6628 */
6629 if (len && buffer[len - 1] == NUL)
6630 --len;
6631 else
6632 buffer[len] = NUL;
6633 i = 0;
6634 for (p = buffer; p < buffer + len; ++p)
6635 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
6636 {
6637 ++i;
6638 *p = NUL;
6639 }
6640 if (len)
6641 ++i; /* count last entry */
6642 }
6643 if (i == 0)
6644 {
6645 /*
6646 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
6647 * /bin/sh will happily expand it to nothing rather than returning an
6648 * error; and hey, it's good to check anyway -- webb.
6649 */
6650 vim_free(buffer);
6651 goto notfound;
6652 }
6653 *num_file = i;
6654 *file = (char_u **)alloc(sizeof(char_u *) * i);
6655 if (*file == NULL)
6656 {
6657 /* out of memory */
6658 vim_free(buffer);
6659 return FAIL;
6660 }
6661
6662 /*
6663 * Isolate the individual file names.
6664 */
6665 p = buffer;
6666 for (i = 0; i < *num_file; ++i)
6667 {
6668 (*file)[i] = p;
6669 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006670 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
6671 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006672 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00006673 while (!(shell_style == STYLE_ECHO && *p == ' ')
6674 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006675 ++p;
6676 if (p == buffer + len) /* last entry */
6677 *p = NUL;
6678 else
6679 {
6680 *p++ = NUL;
6681 p = skipwhite(p); /* skip to next entry */
6682 }
6683 }
6684 else /* NUL separates */
6685 {
6686 while (*p && p < buffer + len) /* skip entry */
6687 ++p;
6688 ++p; /* skip NUL */
6689 }
6690 }
6691
6692 /*
6693 * Move the file names to allocated memory.
6694 */
6695 for (j = 0, i = 0; i < *num_file; ++i)
6696 {
6697 /* Require the files to exist. Helps when using /bin/sh */
6698 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6699 continue;
6700
6701 /* check if this entry should be included */
6702 dir = (mch_isdir((*file)[i]));
6703 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6704 continue;
6705
Bram Moolenaara2031822006-03-07 22:29:51 +00006706 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006707 if (!dir && (flags & EW_EXEC)
6708 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006709 continue;
6710
Bram Moolenaar071d4272004-06-13 20:20:40 +00006711 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
6712 if (p)
6713 {
6714 STRCPY(p, (*file)[i]);
6715 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00006716 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006717 (*file)[j++] = p;
6718 }
6719 }
6720 vim_free(buffer);
6721 *num_file = j;
6722
6723 if (*num_file == 0) /* rejected all entries */
6724 {
6725 vim_free(*file);
6726 *file = NULL;
6727 goto notfound;
6728 }
6729
6730 return OK;
6731
6732notfound:
6733 if (flags & EW_NOTFOUND)
6734 return save_patterns(num_pat, pat, num_file, file);
6735 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736}
6737
6738#endif /* VMS */
6739
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006741save_patterns(
6742 int num_pat,
6743 char_u **pat,
6744 int *num_file,
6745 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746{
6747 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006748 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006749
6750 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
6751 if (*file == NULL)
6752 return FAIL;
6753 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00006754 {
6755 s = vim_strsave(pat[i]);
6756 if (s != NULL)
6757 /* Be compatible with expand_filename(): halve the number of
6758 * backslashes. */
6759 backslash_halve(s);
6760 (*file)[i] = s;
6761 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762 *num_file = num_pat;
6763 return OK;
6764}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006765
Bram Moolenaar071d4272004-06-13 20:20:40 +00006766/*
6767 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
6768 * expand.
6769 */
6770 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006771mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006773 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006774 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006775 if (*p == '\\' && p[1] != NUL)
6776 ++p;
6777 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006778 if (vim_strchr((char_u *)
6779#ifdef VMS
6780 "*?%"
6781#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006782 "*?[{'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006783#endif
6784 , *p) != NULL)
6785 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006786 }
6787 return FALSE;
6788}
6789
6790/*
6791 * Return TRUE if the string "p" contains a wildcard.
6792 * Don't recognize '~' at the end as a wildcard.
6793 */
6794 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006795mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006797 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006798 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006799 if (*p == '\\' && p[1] != NUL)
6800 ++p;
6801 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802 if (vim_strchr((char_u *)
6803#ifdef VMS
6804 "*?%$"
6805#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006806 "*?[{`'$"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006807#endif
6808 , *p) != NULL
6809 || (*p == '~' && p[1] != NUL))
6810 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006811 }
6812 return FALSE;
6813}
6814
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006816have_wildcard(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817{
6818 int i;
6819
6820 for (i = 0; i < num; i++)
6821 if (mch_has_wildcard(file[i]))
6822 return 1;
6823 return 0;
6824}
6825
6826 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006827have_dollars(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006828{
6829 int i;
6830
6831 for (i = 0; i < num; i++)
6832 if (vim_strchr(file[i], '$') != NULL)
6833 return TRUE;
6834 return FALSE;
6835}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006836
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006837#if !defined(HAVE_RENAME) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006838/*
6839 * Scaled-down version of rename(), which is missing in Xenix.
6840 * This version can only move regular files and will fail if the
6841 * destination exists.
6842 */
6843 int
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006844mch_rename(const char *src, const char *dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845{
6846 struct stat st;
6847
6848 if (stat(dest, &st) >= 0) /* fail if destination exists */
6849 return -1;
6850 if (link(src, dest) != 0) /* link file to new name */
6851 return -1;
6852 if (mch_remove(src) == 0) /* delete link to old name */
6853 return 0;
6854 return -1;
6855}
6856#endif /* !HAVE_RENAME */
6857
6858#ifdef FEAT_MOUSE_GPM
6859/*
6860 * Initializes connection with gpm (if it isn't already opened)
6861 * Return 1 if succeeded (or connection already opened), 0 if failed
6862 */
6863 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006864gpm_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006865{
6866 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
6867
6868 if (!gpm_flag)
6869 {
6870 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
6871 gpm_connect.defaultMask = ~GPM_HARD;
6872 /* Default handling for mouse move*/
6873 gpm_connect.minMod = 0; /* Handle any modifier keys */
6874 gpm_connect.maxMod = 0xffff;
6875 if (Gpm_Open(&gpm_connect, 0) > 0)
6876 {
6877 /* gpm library tries to handling TSTP causes
6878 * problems. Anyways, we close connection to Gpm whenever
6879 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006880 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00006881 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006882# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006884# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006885 return 1; /* succeed */
6886 }
6887 if (gpm_fd == -2)
6888 Gpm_Close(); /* We don't want to talk to xterm via gpm */
6889 return 0;
6890 }
6891 return 1; /* already open */
6892}
6893
6894/*
6895 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00006896 */
6897 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006898gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899{
6900 if (gpm_flag && gpm_fd >= 0) /* if Open */
6901 Gpm_Close();
6902}
6903
6904/* Reads gpm event and adds special keys to input buf. Returns length of
6905 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02006906 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00006907 */
6908 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006909mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910{
6911 int button;
6912 static Gpm_Event gpm_event;
6913 char_u string[6];
6914 int_u vim_modifiers;
6915 int row,col;
6916 unsigned char buttons_mask;
6917 unsigned char gpm_modifiers;
6918 static unsigned char old_buttons = 0;
6919
6920 Gpm_GetEvent(&gpm_event);
6921
6922#ifdef FEAT_GUI
6923 /* Don't put events in the input queue now. */
6924 if (hold_gui_events)
6925 return 0;
6926#endif
6927
6928 row = gpm_event.y - 1;
6929 col = gpm_event.x - 1;
6930
6931 string[0] = ESC; /* Our termcode */
6932 string[1] = 'M';
6933 string[2] = 'G';
6934 switch (GPM_BARE_EVENTS(gpm_event.type))
6935 {
6936 case GPM_DRAG:
6937 string[3] = MOUSE_DRAG;
6938 break;
6939 case GPM_DOWN:
6940 buttons_mask = gpm_event.buttons & ~old_buttons;
6941 old_buttons = gpm_event.buttons;
6942 switch (buttons_mask)
6943 {
6944 case GPM_B_LEFT:
6945 button = MOUSE_LEFT;
6946 break;
6947 case GPM_B_MIDDLE:
6948 button = MOUSE_MIDDLE;
6949 break;
6950 case GPM_B_RIGHT:
6951 button = MOUSE_RIGHT;
6952 break;
6953 default:
6954 return 0;
6955 /*Don't know what to do. Can more than one button be
6956 * reported in one event? */
6957 }
6958 string[3] = (char_u)(button | 0x20);
6959 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
6960 break;
6961 case GPM_UP:
6962 string[3] = MOUSE_RELEASE;
6963 old_buttons &= ~gpm_event.buttons;
6964 break;
6965 default:
6966 return 0;
6967 }
6968 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
6969 gpm_modifiers = gpm_event.modifiers;
6970 vim_modifiers = 0x0;
6971 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
6972 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
6973 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
6974 */
6975 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
6976 vim_modifiers |= MOUSE_SHIFT;
6977
6978 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
6979 vim_modifiers |= MOUSE_CTRL;
6980 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
6981 vim_modifiers |= MOUSE_ALT;
6982 string[3] |= vim_modifiers;
6983 string[4] = (char_u)(col + ' ' + 1);
6984 string[5] = (char_u)(row + ' ' + 1);
6985 add_to_input_buf(string, 6);
6986 return 6;
6987}
6988#endif /* FEAT_MOUSE_GPM */
6989
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006990#ifdef FEAT_SYSMOUSE
6991/*
6992 * Initialize connection with sysmouse.
6993 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6994 * output, any sysmouse output than will be processed via sig_sysmouse().
6995 * Return OK if succeeded, FAIL if failed.
6996 */
6997 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006998sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006999{
7000 struct mouse_info mouse;
7001
7002 mouse.operation = MOUSE_MODE;
7003 mouse.u.mode.mode = 0;
7004 mouse.u.mode.signal = SIGUSR2;
7005 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
7006 {
7007 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
7008 mouse.operation = MOUSE_SHOW;
7009 ioctl(1, CONS_MOUSECTL, &mouse);
7010 return OK;
7011 }
7012 return FAIL;
7013}
7014
7015/*
7016 * Stop processing SIGUSR2 signals, and also make sure that
7017 * virtual console do not send us any sysmouse related signal.
7018 */
7019 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007020sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007021{
7022 struct mouse_info mouse;
7023
7024 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
7025 mouse.operation = MOUSE_MODE;
7026 mouse.u.mode.mode = 0;
7027 mouse.u.mode.signal = 0;
7028 ioctl(1, CONS_MOUSECTL, &mouse);
7029}
7030
7031/*
7032 * Gets info from sysmouse and adds special keys to input buf.
7033 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007034 static RETSIGTYPE
7035sig_sysmouse SIGDEFARG(sigarg)
7036{
7037 struct mouse_info mouse;
7038 struct video_info video;
7039 char_u string[6];
7040 int row, col;
7041 int button;
7042 int buttons;
7043 static int oldbuttons = 0;
7044
7045#ifdef FEAT_GUI
7046 /* Don't put events in the input queue now. */
7047 if (hold_gui_events)
7048 return;
7049#endif
7050
7051 mouse.operation = MOUSE_GETINFO;
7052 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
7053 && ioctl(1, FBIO_MODEINFO, &video) != -1
7054 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
7055 && video.vi_cheight > 0 && video.vi_cwidth > 0)
7056 {
7057 row = mouse.u.data.y / video.vi_cheight;
7058 col = mouse.u.data.x / video.vi_cwidth;
7059 buttons = mouse.u.data.buttons;
7060 string[0] = ESC; /* Our termcode */
7061 string[1] = 'M';
7062 string[2] = 'S';
7063 if (oldbuttons == buttons && buttons != 0)
7064 {
7065 button = MOUSE_DRAG;
7066 }
7067 else
7068 {
7069 switch (buttons)
7070 {
7071 case 0:
7072 button = MOUSE_RELEASE;
7073 break;
7074 case 1:
7075 button = MOUSE_LEFT;
7076 break;
7077 case 2:
7078 button = MOUSE_MIDDLE;
7079 break;
7080 case 4:
7081 button = MOUSE_RIGHT;
7082 break;
7083 default:
7084 return;
7085 }
7086 oldbuttons = buttons;
7087 }
7088 string[3] = (char_u)(button);
7089 string[4] = (char_u)(col + ' ' + 1);
7090 string[5] = (char_u)(row + ' ' + 1);
7091 add_to_input_buf(string, 6);
7092 }
7093 return;
7094}
7095#endif /* FEAT_SYSMOUSE */
7096
Bram Moolenaar071d4272004-06-13 20:20:40 +00007097#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01007098typedef char_u * (*STRPROCSTR)(char_u *);
7099typedef char_u * (*INTPROCSTR)(int);
7100typedef int (*STRPROCINT)(char_u *);
7101typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007102
7103/*
7104 * Call a DLL routine which takes either a string or int param
7105 * and returns an allocated string.
7106 */
7107 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007108mch_libcall(
7109 char_u *libname,
7110 char_u *funcname,
7111 char_u *argstring, /* NULL when using a argint */
7112 int argint,
7113 char_u **string_result,/* NULL when using number_result */
7114 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115{
7116# if defined(USE_DLOPEN)
7117 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007118 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119# else
7120 shl_t hinstLib;
7121# endif
7122 STRPROCSTR ProcAdd;
7123 INTPROCSTR ProcAddI;
7124 char_u *retval_str = NULL;
7125 int retval_int = 0;
7126 int success = FALSE;
7127
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007128 /*
7129 * Get a handle to the DLL module.
7130 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007132 /* First clear any error, it's not cleared by the dlopen() call. */
7133 (void)dlerror();
7134
Bram Moolenaar071d4272004-06-13 20:20:40 +00007135 hinstLib = dlopen((char *)libname, RTLD_LAZY
7136# ifdef RTLD_LOCAL
7137 | RTLD_LOCAL
7138# endif
7139 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007140 if (hinstLib == NULL)
7141 {
7142 /* "dlerr" must be used before dlclose() */
7143 dlerr = (char *)dlerror();
7144 if (dlerr != NULL)
7145 EMSG2(_("dlerror = \"%s\""), dlerr);
7146 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007147# else
7148 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
7149# endif
7150
7151 /* If the handle is valid, try to get the function address. */
7152 if (hinstLib != NULL)
7153 {
7154# ifdef HAVE_SETJMP_H
7155 /*
7156 * Catch a crash when calling the library function. For example when
7157 * using a number where a string pointer is expected.
7158 */
7159 mch_startjmp();
7160 if (SETJMP(lc_jump_env) != 0)
7161 {
7162 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007163# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007164 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007165# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166 mch_didjmp();
7167 }
7168 else
7169# endif
7170 {
7171 retval_str = NULL;
7172 retval_int = 0;
7173
7174 if (argstring != NULL)
7175 {
7176# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007177 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007178 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007179# else
7180 if (shl_findsym(&hinstLib, (const char *)funcname,
7181 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
7182 ProcAdd = NULL;
7183# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007184 if ((success = (ProcAdd != NULL
7185# if defined(USE_DLOPEN)
7186 && dlerr == NULL
7187# endif
7188 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007189 {
7190 if (string_result == NULL)
7191 retval_int = ((STRPROCINT)ProcAdd)(argstring);
7192 else
7193 retval_str = (ProcAdd)(argstring);
7194 }
7195 }
7196 else
7197 {
7198# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007199 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007200 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007201# else
7202 if (shl_findsym(&hinstLib, (const char *)funcname,
7203 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
7204 ProcAddI = NULL;
7205# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007206 if ((success = (ProcAddI != NULL
7207# if defined(USE_DLOPEN)
7208 && dlerr == NULL
7209# endif
7210 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007211 {
7212 if (string_result == NULL)
7213 retval_int = ((INTPROCINT)ProcAddI)(argint);
7214 else
7215 retval_str = (ProcAddI)(argint);
7216 }
7217 }
7218
7219 /* Save the string before we free the library. */
7220 /* Assume that a "1" or "-1" result is an illegal pointer. */
7221 if (string_result == NULL)
7222 *number_result = retval_int;
7223 else if (retval_str != NULL
7224 && retval_str != (char_u *)1
7225 && retval_str != (char_u *)-1)
7226 *string_result = vim_strsave(retval_str);
7227 }
7228
7229# ifdef HAVE_SETJMP_H
7230 mch_endjmp();
7231# ifdef SIGHASARG
7232 if (lc_signal != 0)
7233 {
7234 int i;
7235
7236 /* try to find the name of this signal */
7237 for (i = 0; signal_info[i].sig != -1; i++)
7238 if (lc_signal == signal_info[i].sig)
7239 break;
7240 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
7241 }
7242# endif
7243# endif
7244
Bram Moolenaar071d4272004-06-13 20:20:40 +00007245# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007246 /* "dlerr" must be used before dlclose() */
7247 if (dlerr != NULL)
7248 EMSG2(_("dlerror = \"%s\""), dlerr);
7249
7250 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007251 (void)dlclose(hinstLib);
7252# else
7253 (void)shl_unload(hinstLib);
7254# endif
7255 }
7256
7257 if (!success)
7258 {
7259 EMSG2(_(e_libcall), funcname);
7260 return FAIL;
7261 }
7262
7263 return OK;
7264}
7265#endif
7266
7267#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
7268static int xterm_trace = -1; /* default: disabled */
7269static int xterm_button;
7270
7271/*
7272 * Setup a dummy window for X selections in a terminal.
7273 */
7274 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007275setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007276{
7277 int z = 0;
7278 char *strp = "";
7279 Widget AppShell;
7280
7281 if (!x_connect_to_server())
7282 return;
7283
7284 open_app_context();
7285 if (app_context != NULL && xterm_Shell == (Widget)0)
7286 {
7287 int (*oldhandler)();
7288#if defined(HAVE_SETJMP_H)
7289 int (*oldIOhandler)();
7290#endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007291# ifdef ELAPSED_FUNC
7292 ELAPSED_TYPE start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007293
7294 if (p_verbose > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007295 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007296# endif
7297
7298 /* Ignore X errors while opening the display */
7299 oldhandler = XSetErrorHandler(x_error_check);
7300
7301#if defined(HAVE_SETJMP_H)
7302 /* Ignore X IO errors while opening the display */
7303 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7304 mch_startjmp();
7305 if (SETJMP(lc_jump_env) != 0)
7306 {
7307 mch_didjmp();
7308 xterm_dpy = NULL;
7309 }
7310 else
7311#endif
7312 {
7313 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7314 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
7315#if defined(HAVE_SETJMP_H)
7316 mch_endjmp();
7317#endif
7318 }
7319
7320#if defined(HAVE_SETJMP_H)
7321 /* Now handle X IO errors normally. */
7322 (void)XSetIOErrorHandler(oldIOhandler);
7323#endif
7324 /* Now handle X errors normally. */
7325 (void)XSetErrorHandler(oldhandler);
7326
7327 if (xterm_dpy == NULL)
7328 {
7329 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007330 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007331 return;
7332 }
7333
7334 /* Catch terminating error of the X server connection. */
7335 (void)XSetIOErrorHandler(x_IOerror_handler);
7336
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007337# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00007338 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007339 {
7340 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007341 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007342 verbose_leave();
7343 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007344# endif
7345
7346 /* Create a Shell to make converters work. */
7347 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7348 applicationShellWidgetClass, xterm_dpy,
7349 NULL);
7350 if (AppShell == (Widget)0)
7351 return;
7352 xterm_Shell = XtVaCreatePopupShell("VIM",
7353 topLevelShellWidgetClass, AppShell,
7354 XtNmappedWhenManaged, 0,
7355 XtNwidth, 1,
7356 XtNheight, 1,
7357 NULL);
7358 if (xterm_Shell == (Widget)0)
7359 return;
7360
7361 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007362 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363 if (x11_display == NULL)
7364 x11_display = xterm_dpy;
7365
7366 XtRealizeWidget(xterm_Shell);
7367 XSync(xterm_dpy, False);
7368 xterm_update();
7369 }
7370 if (xterm_Shell != (Widget)0)
7371 {
7372 clip_init(TRUE);
7373 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7374 x11_window = (Window)atol(strp);
7375 /* Check if $WINDOWID is valid. */
7376 if (test_x11_window(xterm_dpy) == FAIL)
7377 x11_window = 0;
7378 if (x11_window != 0)
7379 xterm_trace = 0;
7380 }
7381}
7382
7383 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007384start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007385{
7386 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7387 return;
7388 xterm_trace = 1;
7389 xterm_button = button;
7390 do_xterm_trace();
7391}
7392
7393
7394 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007395stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007396{
7397 if (xterm_trace < 0)
7398 return;
7399 xterm_trace = 0;
7400}
7401
7402/*
7403 * Query the xterm pointer and generate mouse termcodes if necessary
7404 * return TRUE if dragging is active, else FALSE
7405 */
7406 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007407do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007408{
7409 Window root, child;
7410 int root_x, root_y;
7411 int win_x, win_y;
7412 int row, col;
7413 int_u mask_return;
7414 char_u buf[50];
7415 char_u *strp;
7416 long got_hints;
7417 static char_u *mouse_code;
7418 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7419 static int prev_row = 0, prev_col = 0;
7420 static XSizeHints xterm_hints;
7421
7422 if (xterm_trace <= 0)
7423 return FALSE;
7424
7425 if (xterm_trace == 1)
7426 {
7427 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007428 * have changed recently. */
7429 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7430 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007431 || xterm_hints.width_inc <= 1
7432 || xterm_hints.height_inc <= 1)
7433 {
7434 xterm_trace = -1; /* Not enough data -- disable tracing */
7435 return FALSE;
7436 }
7437
7438 /* Rely on the same mouse code for the duration of this */
7439 mouse_code = find_termcode(mouse_name);
7440 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007441 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007442 xterm_trace = 2;
7443
7444 /* Find the offset of the chars, there might be a scrollbar on the
7445 * left of the window and/or a menu on the top (eterm etc.) */
7446 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7447 &win_x, &win_y, &mask_return);
7448 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7449 - (xterm_hints.height_inc / 2);
7450 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7451 xterm_hints.y = 2;
7452 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7453 - (xterm_hints.width_inc / 2);
7454 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7455 xterm_hints.x = 2;
7456 return TRUE;
7457 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007458 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007459 {
7460 xterm_trace = 0;
7461 return FALSE;
7462 }
7463
7464 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7465 &win_x, &win_y, &mask_return);
7466
7467 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7468 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7469 if (row == prev_row && col == prev_col)
7470 return TRUE;
7471
7472 STRCPY(buf, mouse_code);
7473 strp = buf + STRLEN(buf);
7474 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7475 *strp++ = (char_u)(col + ' ' + 1);
7476 *strp++ = (char_u)(row + ' ' + 1);
7477 *strp = 0;
7478 add_to_input_buf(buf, STRLEN(buf));
7479
7480 prev_row = row;
7481 prev_col = col;
7482 return TRUE;
7483}
7484
7485# if defined(FEAT_GUI) || defined(PROTO)
7486/*
7487 * Destroy the display, window and app_context. Required for GTK.
7488 */
7489 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007490clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007491{
7492 if (xterm_Shell != (Widget)0)
7493 {
7494 XtDestroyWidget(xterm_Shell);
7495 xterm_Shell = (Widget)0;
7496 }
7497 if (xterm_dpy != NULL)
7498 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007499# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007500 /* Lesstif and Solaris crash here, lose some memory */
7501 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007502# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007503 if (x11_display == xterm_dpy)
7504 x11_display = NULL;
7505 xterm_dpy = NULL;
7506 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007507# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007508 if (app_context != (XtAppContext)NULL)
7509 {
7510 /* Lesstif and Solaris crash here, lose some memory */
7511 XtDestroyApplicationContext(app_context);
7512 app_context = (XtAppContext)NULL;
7513 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007514# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007515}
7516# endif
7517
7518/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007519 * Catch up with GUI or X events.
7520 */
7521 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007522clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007523{
7524# ifdef FEAT_GUI
7525 if (gui.in_use)
7526 gui_mch_update();
7527 else
7528# endif
7529 if (xterm_Shell != (Widget)0)
7530 xterm_update();
7531}
7532
7533/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007534 * Catch up with any queued X events. This may put keyboard input into the
7535 * input buffer, call resize call-backs, trigger timers etc. If there is
7536 * nothing in the X event queue (& no timers pending), then we return
7537 * immediately.
7538 */
7539 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007540xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007541{
7542 XEvent event;
7543
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007544 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007545 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007546 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007547
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007548 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007549 break;
7550
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007551 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007552 {
7553 /* There is an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007554 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007555#ifdef FEAT_CLIENTSERVER
7556 {
7557 XPropertyEvent *e = (XPropertyEvent *)&event;
7558
7559 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007561 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007562 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007563#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007564 XtDispatchEvent(&event);
7565 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007566 else
7567 {
7568 /* There is something else than an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007569 XtAppProcessEvent(app_context, mask);
7570 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007571 }
7572}
7573
7574 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007575clip_xterm_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007576{
7577 if (xterm_Shell != (Widget)0)
7578 return clip_x11_own_selection(xterm_Shell, cbd);
7579 return FAIL;
7580}
7581
7582 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007583clip_xterm_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007584{
7585 if (xterm_Shell != (Widget)0)
7586 clip_x11_lose_selection(xterm_Shell, cbd);
7587}
7588
7589 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007590clip_xterm_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007591{
7592 if (xterm_Shell != (Widget)0)
7593 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7594}
7595
7596 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007597clip_xterm_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007598{
7599 clip_x11_set_selection(cbd);
7600}
7601#endif
7602
7603
7604#if defined(USE_XSMP) || defined(PROTO)
7605/*
7606 * Code for X Session Management Protocol.
7607 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007608static void xsmp_handle_save_yourself(SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast);
7609static void xsmp_die(SmcConn smc_conn, SmPointer client_data);
7610static void xsmp_save_complete(SmcConn smc_conn, SmPointer client_data);
7611static void xsmp_shutdown_cancelled(SmcConn smc_conn, SmPointer client_data);
7612static void xsmp_ice_connection(IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007613
7614
7615# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007616static void xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007617
7618/*
7619 * This is our chance to ask the user if they want to save,
7620 * or abort the logout
7621 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007622 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007623xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007624{
7625 cmdmod_T save_cmdmod;
7626 int cancel_shutdown = False;
7627
7628 save_cmdmod = cmdmod;
7629 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007630 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007631 /* Mustn't logout */
7632 cancel_shutdown = True;
7633 cmdmod = save_cmdmod;
7634 setcursor(); /* position cursor */
7635 out_flush();
7636
7637 /* Done interaction */
7638 SmcInteractDone(smc_conn, cancel_shutdown);
7639
7640 /* Finish off
7641 * Only end save-yourself here if we're not cancelling shutdown;
7642 * we'll get a cancelled callback later in which we'll end it.
7643 * Hopefully get around glitchy SMs (like GNOME-1)
7644 */
7645 if (!cancel_shutdown)
7646 {
7647 xsmp.save_yourself = False;
7648 SmcSaveYourselfDone(smc_conn, True);
7649 }
7650}
7651# endif
7652
7653/*
7654 * Callback that starts save-yourself.
7655 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007656 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007657xsmp_handle_save_yourself(
7658 SmcConn smc_conn,
7659 SmPointer client_data UNUSED,
7660 int save_type UNUSED,
7661 Bool shutdown,
7662 int interact_style UNUSED,
7663 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007664{
7665 /* Handle already being in saveyourself */
7666 if (xsmp.save_yourself)
7667 SmcSaveYourselfDone(smc_conn, True);
7668 xsmp.save_yourself = True;
7669 xsmp.shutdown = shutdown;
7670
7671 /* First up, preserve all files */
7672 out_flush();
7673 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
7674
7675 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007676 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007677
7678# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
7679 /* Now see if we can ask about unsaved files */
7680 if (shutdown && !fast && gui.in_use)
7681 /* Need to interact with user, but need SM's permission */
7682 SmcInteractRequest(smc_conn, SmDialogError,
7683 xsmp_handle_interaction, client_data);
7684 else
7685# endif
7686 {
7687 /* Can stop the cycle here */
7688 SmcSaveYourselfDone(smc_conn, True);
7689 xsmp.save_yourself = False;
7690 }
7691}
7692
7693
7694/*
7695 * Callback to warn us of imminent death.
7696 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007697 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007698xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007699{
7700 xsmp_close();
7701
7702 /* quit quickly leaving swapfiles for modified buffers behind */
7703 getout_preserve_modified(0);
7704}
7705
7706
7707/*
7708 * Callback to tell us that save-yourself has completed.
7709 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007710 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007711xsmp_save_complete(
7712 SmcConn smc_conn UNUSED,
7713 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007714{
7715 xsmp.save_yourself = False;
7716}
7717
7718
7719/*
7720 * Callback to tell us that an instigated shutdown was cancelled
7721 * (maybe even by us)
7722 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007723 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007724xsmp_shutdown_cancelled(
7725 SmcConn smc_conn,
7726 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007727{
7728 if (xsmp.save_yourself)
7729 SmcSaveYourselfDone(smc_conn, True);
7730 xsmp.save_yourself = False;
7731 xsmp.shutdown = False;
7732}
7733
7734
7735/*
7736 * Callback to tell us that a new ICE connection has been established.
7737 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007738 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007739xsmp_ice_connection(
7740 IceConn iceConn,
7741 IcePointer clientData UNUSED,
7742 Bool opening,
7743 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007744{
7745 /* Intercept creation of ICE connection fd */
7746 if (opening)
7747 {
7748 xsmp_icefd = IceConnectionNumber(iceConn);
7749 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7750 }
7751}
7752
7753
7754/* Handle any ICE processing that's required; return FAIL if SM lost */
7755 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007756xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007757{
7758 Bool rep;
7759
7760 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7761 == IceProcessMessagesIOError)
7762 {
7763 /* Lost ICE */
7764 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007765 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007766 xsmp_close();
7767 return FAIL;
7768 }
7769 else
7770 return OK;
7771}
7772
7773static int dummy;
7774
7775/* Set up X Session Management Protocol */
7776 void
7777xsmp_init(void)
7778{
7779 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007780 SmcCallbacks smcallbacks;
7781#if 0
7782 SmPropValue smname;
7783 SmProp smnameprop;
7784 SmProp *smprops[1];
7785#endif
7786
7787 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007788 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007789
7790 xsmp.save_yourself = xsmp.shutdown = False;
7791
7792 /* Set up SM callbacks - must have all, even if they're not used */
7793 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7794 smcallbacks.save_yourself.client_data = NULL;
7795 smcallbacks.die.callback = xsmp_die;
7796 smcallbacks.die.client_data = NULL;
7797 smcallbacks.save_complete.callback = xsmp_save_complete;
7798 smcallbacks.save_complete.client_data = NULL;
7799 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
7800 smcallbacks.shutdown_cancelled.client_data = NULL;
7801
7802 /* Set up a watch on ICE connection creations. The "dummy" argument is
7803 * apparently required for FreeBSD (we get a BUS error when using NULL). */
7804 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
7805 {
7806 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007807 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007808 return;
7809 }
7810
7811 /* Create an SM connection */
7812 xsmp.smcconn = SmcOpenConnection(
7813 NULL,
7814 NULL,
7815 SmProtoMajor,
7816 SmProtoMinor,
7817 SmcSaveYourselfProcMask | SmcDieProcMask
7818 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
7819 &smcallbacks,
7820 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00007821 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007822 sizeof(errorstring),
7823 errorstring);
7824 if (xsmp.smcconn == NULL)
7825 {
7826 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00007827
Bram Moolenaar071d4272004-06-13 20:20:40 +00007828 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007829 {
7830 vim_snprintf(errorreport, sizeof(errorreport),
7831 _("XSMP SmcOpenConnection failed: %s"), errorstring);
7832 verb_msg((char_u *)errorreport);
7833 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007834 return;
7835 }
7836 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
7837
7838#if 0
7839 /* ID ourselves */
7840 smname.value = "vim";
7841 smname.length = 3;
7842 smnameprop.name = "SmProgram";
7843 smnameprop.type = "SmARRAY8";
7844 smnameprop.num_vals = 1;
7845 smnameprop.vals = &smname;
7846
7847 smprops[0] = &smnameprop;
7848 SmcSetProperties(xsmp.smcconn, 1, smprops);
7849#endif
7850}
7851
7852
7853/* Shut down XSMP comms. */
7854 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007855xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007856{
7857 if (xsmp_icefd != -1)
7858 {
7859 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00007860 if (xsmp.clientid != NULL)
7861 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00007862 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007863 xsmp_icefd = -1;
7864 }
7865}
7866#endif /* USE_XSMP */
7867
7868
7869#ifdef EBCDIC
7870/* Translate character to its CTRL- value */
7871char CtrlTable[] =
7872{
7873/* 00 - 5E */
7874 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7875 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7876 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7877 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7878 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7879 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7880/* ^ */ 0x1E,
7881/* - */ 0x1F,
7882/* 61 - 6C */
7883 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7884/* _ */ 0x1F,
7885/* 6E - 80 */
7886 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7887/* a */ 0x01,
7888/* b */ 0x02,
7889/* c */ 0x03,
7890/* d */ 0x37,
7891/* e */ 0x2D,
7892/* f */ 0x2E,
7893/* g */ 0x2F,
7894/* h */ 0x16,
7895/* i */ 0x05,
7896/* 8A - 90 */
7897 0, 0, 0, 0, 0, 0, 0,
7898/* j */ 0x15,
7899/* k */ 0x0B,
7900/* l */ 0x0C,
7901/* m */ 0x0D,
7902/* n */ 0x0E,
7903/* o */ 0x0F,
7904/* p */ 0x10,
7905/* q */ 0x11,
7906/* r */ 0x12,
7907/* 9A - A1 */
7908 0, 0, 0, 0, 0, 0, 0, 0,
7909/* s */ 0x13,
7910/* t */ 0x3C,
7911/* u */ 0x3D,
7912/* v */ 0x32,
7913/* w */ 0x26,
7914/* x */ 0x18,
7915/* y */ 0x19,
7916/* z */ 0x3F,
7917/* AA - AC */
7918 0, 0, 0,
7919/* [ */ 0x27,
7920/* AE - BC */
7921 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7922/* ] */ 0x1D,
7923/* BE - C0 */ 0, 0, 0,
7924/* A */ 0x01,
7925/* B */ 0x02,
7926/* C */ 0x03,
7927/* D */ 0x37,
7928/* E */ 0x2D,
7929/* F */ 0x2E,
7930/* G */ 0x2F,
7931/* H */ 0x16,
7932/* I */ 0x05,
7933/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
7934/* J */ 0x15,
7935/* K */ 0x0B,
7936/* L */ 0x0C,
7937/* M */ 0x0D,
7938/* N */ 0x0E,
7939/* O */ 0x0F,
7940/* P */ 0x10,
7941/* Q */ 0x11,
7942/* R */ 0x12,
7943/* DA - DF */ 0, 0, 0, 0, 0, 0,
7944/* \ */ 0x1C,
7945/* E1 */ 0,
7946/* S */ 0x13,
7947/* T */ 0x3C,
7948/* U */ 0x3D,
7949/* V */ 0x32,
7950/* W */ 0x26,
7951/* X */ 0x18,
7952/* Y */ 0x19,
7953/* Z */ 0x3F,
7954/* EA - FF*/ 0, 0, 0, 0, 0, 0,
7955 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7956};
7957
7958char MetaCharTable[]=
7959{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
7960 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
7961 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
7962 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
7963 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
7964};
7965
7966
7967/* TODO: Use characters NOT numbers!!! */
7968char CtrlCharTable[]=
7969{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
7970 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
7971 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
7972 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
7973 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
7974};
7975
7976
7977#endif