blob: ba5d386bb1771294fa1a1657f8d85c6df3857eaa [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
Bram Moolenaar071d4272004-06-13 20:20:40 +000021#include "vim.h"
22
Bram Moolenaar325b7a22004-07-05 15:58:32 +000023#ifdef FEAT_MZSCHEME
24# include "if_mzsch.h"
25#endif
26
Bram Moolenaar071d4272004-06-13 20:20:40 +000027#include "os_unixx.h" /* unix includes for os_unix.c only */
28
29#ifdef USE_XSMP
30# include <X11/SM/SMlib.h>
31#endif
32
Bram Moolenaar588ebeb2008-05-07 17:09:24 +000033#ifdef HAVE_SELINUX
34# include <selinux/selinux.h>
35static int selinux_enabled = -1;
36#endif
37
Bram Moolenaar5bd32f42014-04-02 14:05:38 +020038#ifdef HAVE_SMACK
39# include <attr/xattr.h>
40# include <linux/xattr.h>
41# ifndef SMACK_LABEL_LEN
42# define SMACK_LABEL_LEN 1024
43# endif
44#endif
45
Bram Moolenaar643b6142018-09-12 20:29:09 +020046#ifdef __BEOS__
Bram Moolenaar311d9822007-02-27 15:48:28 +000047# undef select
Bram Moolenaar643b6142018-09-12 20:29:09 +020048# define select beos_select
Bram Moolenaar071d4272004-06-13 20:20:40 +000049#endif
50
Bram Moolenaara2442432007-04-26 14:26:37 +000051#ifdef __CYGWIN__
Bram Moolenaar4f974752019-02-17 17:44:42 +010052# ifndef MSWIN
Bram Moolenaar0d1498e2008-06-29 12:00:49 +000053# include <cygwin/version.h>
54# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
55 * for cygwin_conv_path() */
Bram Moolenaar693e40c2013-02-26 14:56:42 +010056# ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
57# define WIN32_LEAN_AND_MEAN
58# include <windows.h>
59# include "winclip.pro"
60# endif
Bram Moolenaara2442432007-04-26 14:26:37 +000061# endif
62#endif
63
Bram Moolenaar071d4272004-06-13 20:20:40 +000064#ifdef FEAT_MOUSE_GPM
65# include <gpm.h>
66/* <linux/keyboard.h> contains defines conflicting with "keymap.h",
67 * I just copied relevant defines here. A cleaner solution would be to put gpm
68 * code into separate file and include there linux/keyboard.h
69 */
70/* #include <linux/keyboard.h> */
71# define KG_SHIFT 0
72# define KG_CTRL 2
73# define KG_ALT 3
74# define KG_ALTGR 1
75# define KG_SHIFTL 4
76# define KG_SHIFTR 5
77# define KG_CTRLL 6
78# define KG_CTRLR 7
79# define KG_CAPSSHIFT 8
80
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010081static void gpm_close(void);
82static int gpm_open(void);
83static int mch_gpm_process(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000084#endif
85
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000086#ifdef FEAT_SYSMOUSE
87# include <sys/consio.h>
88# include <sys/fbio.h>
89
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010090static int sysmouse_open(void);
91static void sysmouse_close(void);
Bram Moolenaard99df422016-01-29 23:20:40 +010092static RETSIGTYPE sig_sysmouse SIGPROTOARG;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000093#endif
94
Bram Moolenaar071d4272004-06-13 20:20:40 +000095/*
96 * end of autoconf section. To be extended...
97 */
98
99/* Are the following #ifdefs still required? And why? Is that for X11? */
100
101#if defined(ESIX) || defined(M_UNIX) && !defined(SCO)
102# ifdef SIGWINCH
103# undef SIGWINCH
104# endif
105# ifdef TIOCGWINSZ
106# undef TIOCGWINSZ
107# endif
108#endif
109
110#if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */
111# define SIGWINCH SIGWINDOW
112#endif
113
114#ifdef FEAT_X11
115# include <X11/Xlib.h>
116# include <X11/Xutil.h>
117# include <X11/Xatom.h>
118# ifdef FEAT_XCLIPBOARD
119# include <X11/Intrinsic.h>
120# include <X11/Shell.h>
121# include <X11/StringDefs.h>
122static Widget xterm_Shell = (Widget)0;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100123static void clip_update(void);
124static void xterm_update(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125# endif
126
127# if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)
128Window x11_window = 0;
129# endif
130Display *x11_display = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131#endif
132
133#ifdef FEAT_TITLE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100134static int get_x11_title(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135
136static char_u *oldtitle = NULL;
Bram Moolenaar8e82c052018-08-21 19:47:48 +0200137static volatile sig_atomic_t oldtitle_outdated = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138static int did_set_title = FALSE;
139static char_u *oldicon = NULL;
140static int did_set_icon = FALSE;
141#endif
142
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100143static void may_core_dump(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000144
Bram Moolenaar205b8862011-09-07 15:04:31 +0200145#ifdef HAVE_UNION_WAIT
146typedef union wait waitstatus;
147#else
148typedef int waitstatus;
149#endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200150static int WaitForChar(long msec, int *interrupted, int ignore_input);
151static int WaitForCharOrMouse(long msec, int *interrupted, int ignore_input);
Bram Moolenaar4ffa0702013-12-11 17:12:37 +0100152#if defined(__BEOS__) || defined(VMS)
Bram Moolenaarcda77642016-06-04 13:32:35 +0200153int RealWaitForChar(int, long, int *, int *interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154#else
Bram Moolenaarcda77642016-06-04 13:32:35 +0200155static int RealWaitForChar(int, long, int *, int *interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156#endif
157
158#ifdef FEAT_XCLIPBOARD
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100159static int do_xterm_trace(void);
Bram Moolenaarcf851ce2005-06-16 21:52:47 +0000160# define XT_TRACE_DELAY 50 /* delay for xterm tracing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000161#endif
162
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100163static void handle_resize(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164
165#if defined(SIGWINCH)
Bram Moolenaard99df422016-01-29 23:20:40 +0100166static RETSIGTYPE sig_winch SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167#endif
168#if defined(SIGINT)
Bram Moolenaard99df422016-01-29 23:20:40 +0100169static RETSIGTYPE catch_sigint SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170#endif
171#if defined(SIGPWR)
Bram Moolenaard99df422016-01-29 23:20:40 +0100172static RETSIGTYPE catch_sigpwr SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173#endif
174#if defined(SIGALRM) && defined(FEAT_X11) \
175 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK)
176# define SET_SIG_ALARM
Bram Moolenaard99df422016-01-29 23:20:40 +0100177static RETSIGTYPE sig_alarm SIGPROTOARG;
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000178/* volatile because it is used in signal handler sig_alarm(). */
Bram Moolenaar8e82c052018-08-21 19:47:48 +0200179static volatile sig_atomic_t sig_alarm_called;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180#endif
Bram Moolenaard99df422016-01-29 23:20:40 +0100181static RETSIGTYPE deathtrap SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100183static void catch_int_signal(void);
184static void set_signals(void);
185static void catch_signals(RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)());
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +0200186#ifdef HAVE_SIGPROCMASK
187# define SIGSET_DECL(set) sigset_t set;
188# define BLOCK_SIGNALS(set) block_signals(set)
189# define UNBLOCK_SIGNALS(set) unblock_signals(set)
190#else
191# define SIGSET_DECL(set)
192# define BLOCK_SIGNALS(set) do { /**/ } while (0)
193# define UNBLOCK_SIGNALS(set) do { /**/ } while (0)
194#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100195static int have_wildcard(int, char_u **);
196static int have_dollars(int, char_u **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100198static int save_patterns(int num_pat, char_u **pat, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000199
200#ifndef SIG_ERR
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000201# define SIG_ERR ((RETSIGTYPE (*)())-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000202#endif
203
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000204/* volatile because it is used in signal handler sig_winch(). */
Bram Moolenaar8e82c052018-08-21 19:47:48 +0200205static volatile sig_atomic_t do_resize = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206static char_u *extra_shell_arg = NULL;
207static int show_shell_mess = TRUE;
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000208/* volatile because it is used in signal handler deathtrap(). */
Bram Moolenaar8e82c052018-08-21 19:47:48 +0200209static volatile sig_atomic_t deadly_signal = 0; /* The signal we caught */
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000210/* volatile because it is used in signal handler deathtrap(). */
Bram Moolenaar8e82c052018-08-21 19:47:48 +0200211static volatile sig_atomic_t in_mch_delay = FALSE; /* sleeping in mch_delay() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +0100213#if defined(FEAT_JOB_CHANNEL) && !defined(USE_SYSTEM)
214static int dont_check_job_ended = 0;
215#endif
216
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217static int curr_tmode = TMODE_COOK; /* contains current terminal mode */
218
219#ifdef USE_XSMP
220typedef struct
221{
222 SmcConn smcconn; /* The SM connection ID */
223 IceConn iceconn; /* The ICE connection ID */
Bram Moolenaar67c53842010-05-22 18:28:27 +0200224 char *clientid; /* The client ID for the current smc session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225 Bool save_yourself; /* If we're in the middle of a save_yourself */
226 Bool shutdown; /* If we're in shutdown mode */
227} xsmp_config_T;
228
229static xsmp_config_T xsmp;
230#endif
231
232#ifdef SYS_SIGLIST_DECLARED
233/*
234 * I have seen
235 * extern char *_sys_siglist[NSIG];
236 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
237 * that describe the signals. That is nearly what we want here. But
238 * autoconf does only check for sys_siglist (without the underscore), I
239 * do not want to change everything today.... jw.
Bram Moolenaar3f7d0902016-11-12 21:13:42 +0100240 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.ac.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 */
242#endif
243
244static struct signalinfo
245{
246 int sig; /* Signal number, eg. SIGSEGV etc */
247 char *name; /* Signal name (not char_u!). */
248 char deadly; /* Catch as a deadly signal? */
249} signal_info[] =
250{
251#ifdef SIGHUP
252 {SIGHUP, "HUP", TRUE},
253#endif
254#ifdef SIGQUIT
255 {SIGQUIT, "QUIT", TRUE},
256#endif
257#ifdef SIGILL
258 {SIGILL, "ILL", TRUE},
259#endif
260#ifdef SIGTRAP
261 {SIGTRAP, "TRAP", TRUE},
262#endif
263#ifdef SIGABRT
264 {SIGABRT, "ABRT", TRUE},
265#endif
266#ifdef SIGEMT
267 {SIGEMT, "EMT", TRUE},
268#endif
269#ifdef SIGFPE
270 {SIGFPE, "FPE", TRUE},
271#endif
272#ifdef SIGBUS
273 {SIGBUS, "BUS", TRUE},
274#endif
Bram Moolenaar75676462013-01-30 14:55:42 +0100275#if defined(SIGSEGV) && !defined(FEAT_MZSCHEME)
276 /* MzScheme uses SEGV in its garbage collector */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 {SIGSEGV, "SEGV", TRUE},
278#endif
279#ifdef SIGSYS
280 {SIGSYS, "SYS", TRUE},
281#endif
282#ifdef SIGALRM
283 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */
284#endif
285#ifdef SIGTERM
286 {SIGTERM, "TERM", TRUE},
287#endif
Bram Moolenaarb292a2a2011-02-09 18:47:40 +0100288#if defined(SIGVTALRM) && !defined(FEAT_RUBY)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289 {SIGVTALRM, "VTALRM", TRUE},
290#endif
Bram Moolenaar02f07e02008-03-12 12:17:28 +0000291#if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
292 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
293 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000294 {SIGPROF, "PROF", TRUE},
295#endif
296#ifdef SIGXCPU
297 {SIGXCPU, "XCPU", TRUE},
298#endif
299#ifdef SIGXFSZ
300 {SIGXFSZ, "XFSZ", TRUE},
301#endif
302#ifdef SIGUSR1
303 {SIGUSR1, "USR1", TRUE},
304#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000305#if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE)
306 /* Used for sysmouse handling */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 {SIGUSR2, "USR2", TRUE},
308#endif
309#ifdef SIGINT
310 {SIGINT, "INT", FALSE},
311#endif
312#ifdef SIGWINCH
313 {SIGWINCH, "WINCH", FALSE},
314#endif
315#ifdef SIGTSTP
316 {SIGTSTP, "TSTP", FALSE},
317#endif
318#ifdef SIGPIPE
319 {SIGPIPE, "PIPE", FALSE},
320#endif
321 {-1, "Unknown!", FALSE}
322};
323
Bram Moolenaar25724922009-07-14 15:38:41 +0000324 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100325mch_chdir(char *path)
Bram Moolenaar25724922009-07-14 15:38:41 +0000326{
327 if (p_verbose >= 5)
328 {
329 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100330 smsg("chdir(%s)", path);
Bram Moolenaar25724922009-07-14 15:38:41 +0000331 verbose_leave();
332 }
333# ifdef VMS
334 return chdir(vms_fixfilename(path));
335# else
336 return chdir(path);
337# endif
338}
339
Bram Moolenaar4f44b882017-08-13 20:06:18 +0200340/* Why is NeXT excluded here (and not in os_unixx.h)? */
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +0100341#if defined(ECHOE) && defined(ICANON) \
342 && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) \
343 && !defined(__NeXT__)
Bram Moolenaar4f44b882017-08-13 20:06:18 +0200344# define NEW_TTY_SYSTEM
345#endif
346
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000347/*
Bram Moolenaard23a8232018-02-10 18:45:26 +0100348 * Write s[len] to the screen (stdout).
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000349 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000350 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100351mch_write(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000352{
Bram Moolenaar42335f52018-09-13 15:33:43 +0200353 vim_ignored = (int)write(1, (char *)s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000354 if (p_wd) /* Unix is too fast, slow down a bit more */
Bram Moolenaar8fdd7212016-03-26 19:41:48 +0100355 RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356}
357
358/*
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100359 * Function passed to inchar_loop() to handle window resizing.
360 * If "check_only" is TRUE: Return whether there was a resize.
361 * If "check_only" is FALSE: Deal with the window resized.
362 */
363 static int
364resize_func(int check_only)
365{
366 if (check_only)
367 return do_resize;
368 while (do_resize)
369 handle_resize();
370 return FALSE;
371}
372
373/*
Bram Moolenaarc2a27c32007-12-01 16:19:33 +0000374 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 * Get a characters from the keyboard.
376 * Return the number of characters that are available.
377 * If wtime == 0 do not wait for characters.
378 * If wtime == n wait a short time for characters.
379 * If wtime == -1 wait forever for characters.
380 */
381 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100382mch_inchar(
383 char_u *buf,
384 int maxlen,
385 long wtime, /* don't use "time", MIPS cannot handle it */
386 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387{
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100388 return inchar_loop(buf, maxlen, wtime, tb_change_cnt,
389 WaitForChar, resize_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390}
391
392 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100393handle_resize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394{
395 do_resize = FALSE;
396 shell_resized();
397}
398
399/*
Bram Moolenaar40b1b542016-04-20 20:18:23 +0200400 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 */
402 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100403mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404{
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200405 return WaitForChar(0L, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406}
407
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200408#if defined(FEAT_TERMINAL) || defined(PROTO)
409/*
410 * Check for any pending input or messages.
411 */
412 int
413mch_check_messages(void)
414{
415 return WaitForChar(0L, NULL, TRUE);
416}
417#endif
418
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419#if defined(HAVE_TOTAL_MEM) || defined(PROTO)
420# ifdef HAVE_SYS_RESOURCE_H
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000421# include <sys/resource.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422# endif
423# if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
424# include <sys/sysctl.h>
425# endif
426# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
427# include <sys/sysinfo.h>
428# endif
Bram Moolenaar362dc332018-03-05 21:59:37 +0100429# ifdef MACOS_X
Bram Moolenaar988615f2018-02-27 17:58:20 +0100430# include <mach/mach_host.h>
431# include <mach/mach_port.h>
Bram Moolenaar988615f2018-02-27 17:58:20 +0100432# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000433
434/*
Bram Moolenaar914572a2007-05-01 11:37:47 +0000435 * Return total amount of memory available in Kbyte.
436 * Doesn't change when memory has been allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000438 long_u
Bram Moolenaar05540972016-01-30 20:31:25 +0100439mch_total_mem(int special UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 long_u mem = 0;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000442 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443
Bram Moolenaar362dc332018-03-05 21:59:37 +0100444# ifdef MACOS_X
Bram Moolenaar988615f2018-02-27 17:58:20 +0100445 {
446 /* Mac (Darwin) way of getting the amount of RAM available */
447 mach_port_t host = mach_host_self();
448 kern_return_t kret;
449# ifdef HOST_VM_INFO64
450 struct vm_statistics64 vm_stat;
451 natural_t count = HOST_VM_INFO64_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452
Bram Moolenaar988615f2018-02-27 17:58:20 +0100453 kret = host_statistics64(host, HOST_VM_INFO64,
454 (host_info64_t)&vm_stat, &count);
455# else
456 struct vm_statistics vm_stat;
457 natural_t count = HOST_VM_INFO_COUNT;
458
459 kret = host_statistics(host, HOST_VM_INFO,
460 (host_info_t)&vm_stat, &count);
461# endif
462 if (kret == KERN_SUCCESS)
463 /* get the amount of user memory by summing each usage */
464 mem = (long_u)(vm_stat.free_count + vm_stat.active_count
465 + vm_stat.inactive_count
466# ifdef MAC_OS_X_VERSION_10_9
467 + vm_stat.compressor_page_count
468# endif
Bram Moolenaar62b7f6a2018-03-22 21:44:07 +0100469 ) * sysconf(_SC_PAGESIZE);
Bram Moolenaar988615f2018-02-27 17:58:20 +0100470 mach_port_deallocate(mach_task_self(), host);
471 }
472# endif
473
474# ifdef HAVE_SYSCTL
475 if (mem == 0)
476 {
477 /* BSD way of getting the amount of RAM available. */
478 int mib[2];
479 size_t len = sizeof(long_u);
480# ifdef HW_USERMEM64
481 long_u physmem;
482# else
483 /* sysctl() may return 32 bit or 64 bit, accept both */
484 union {
485 int_u u32;
486 long_u u64;
487 } physmem;
488# endif
489
490 mib[0] = CTL_HW;
491# ifdef HW_USERMEM64
492 mib[1] = HW_USERMEM64;
493# else
494 mib[1] = HW_USERMEM;
495# endif
496 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
497 {
498# ifdef HW_USERMEM64
499 mem = (long_u)physmem;
500# else
501 if (len == sizeof(physmem.u64))
502 mem = (long_u)physmem.u64;
503 else
504 mem = (long_u)physmem.u32;
505# endif
506 }
507 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200508# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000509
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200510# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000511 if (mem == 0)
512 {
513 struct sysinfo sinfo;
514
515 /* Linux way of getting amount of RAM available */
516 if (sysinfo(&sinfo) == 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000517 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200518# ifdef HAVE_SYSINFO_MEM_UNIT
Bram Moolenaar914572a2007-05-01 11:37:47 +0000519 /* avoid overflow as much as possible */
520 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
521 {
522 sinfo.mem_unit = sinfo.mem_unit >> 1;
523 --shiftright;
524 }
525 mem = sinfo.totalram * sinfo.mem_unit;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200526# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 mem = sinfo.totalram;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200528# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000529 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200531# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200533# ifdef HAVE_SYSCONF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000534 if (mem == 0)
535 {
536 long pagesize, pagecount;
537
538 /* Solaris way of getting amount of RAM available */
539 pagesize = sysconf(_SC_PAGESIZE);
540 pagecount = sysconf(_SC_PHYS_PAGES);
541 if (pagesize > 0 && pagecount > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000542 {
543 /* avoid overflow as much as possible */
544 while (shiftright > 0 && (pagesize & 1) == 0)
545 {
Bram Moolenaar3d27a452007-05-10 17:44:18 +0000546 pagesize = (long_u)pagesize >> 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000547 --shiftright;
548 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000549 mem = (long_u)pagesize * pagecount;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200552# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553
554 /* Return the minimum of the physical memory and the user limit, because
555 * using more than the user limit may cause Vim to be terminated. */
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200556# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000557 {
558 struct rlimit rlp;
559
560 if (getrlimit(RLIMIT_DATA, &rlp) == 0
561 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200562# ifdef RLIM_INFINITY
Bram Moolenaar071d4272004-06-13 20:20:40 +0000563 && rlp.rlim_cur != RLIM_INFINITY
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200564# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000565 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000566 )
Bram Moolenaar914572a2007-05-01 11:37:47 +0000567 {
568 mem = (long_u)rlp.rlim_cur;
569 shiftright = 10;
570 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200572# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573
574 if (mem > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000575 return mem >> shiftright;
576 return (long_u)0x1fffff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000577}
578#endif
579
580 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100581mch_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000582{
583 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000584#ifdef FEAT_MZSCHEME
585 long total = msec; /* remember original value */
586#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587
588 if (ignoreinput)
589 {
590 /* Go to cooked mode without echo, to allow SIGINT interrupting us
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000591 * here. But we don't want QUIT to kill us (CTRL-\ used in a
592 * shell may produce SIGQUIT). */
593 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000594 old_tmode = curr_tmode;
595 if (curr_tmode == TMODE_RAW)
596 settmode(TMODE_SLEEP);
597
598 /*
599 * Everybody sleeps in a different way...
600 * Prefer nanosleep(), some versions of usleep() can only sleep up to
601 * one second.
602 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000603#ifdef FEAT_MZSCHEME
604 do
605 {
606 /* if total is large enough, wait by portions in p_mzq */
607 if (total > p_mzq)
608 msec = p_mzq;
609 else
610 msec = total;
611 total -= msec;
612#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613#ifdef HAVE_NANOSLEEP
614 {
615 struct timespec ts;
616
617 ts.tv_sec = msec / 1000;
618 ts.tv_nsec = (msec % 1000) * 1000000;
619 (void)nanosleep(&ts, NULL);
620 }
621#else
622# ifdef HAVE_USLEEP
623 while (msec >= 1000)
624 {
625 usleep((unsigned int)(999 * 1000));
626 msec -= 999;
627 }
628 usleep((unsigned int)(msec * 1000));
629# else
630# ifndef HAVE_SELECT
631 poll(NULL, 0, (int)msec);
632# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 {
634 struct timeval tv;
635
636 tv.tv_sec = msec / 1000;
637 tv.tv_usec = (msec % 1000) * 1000;
638 /*
639 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
640 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
641 */
642 select(0, NULL, NULL, NULL, &tv);
643 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644# endif /* HAVE_SELECT */
645# endif /* HAVE_NANOSLEEP */
646#endif /* HAVE_USLEEP */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000647#ifdef FEAT_MZSCHEME
648 }
649 while (total > 0);
650#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651
652 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000653 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 }
655 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200656 WaitForChar(msec, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000657}
658
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000659#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
661# define HAVE_CHECK_STACK_GROWTH
662/*
663 * Support for checking for an almost-out-of-stack-space situation.
664 */
665
666/*
667 * Return a pointer to an item on the stack. Used to find out if the stack
668 * grows up or down.
669 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670static int stack_grows_downwards;
671
672/*
673 * Find out if the stack grows upwards or downwards.
674 * "p" points to a variable on the stack of the caller.
675 */
676 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100677check_stack_growth(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000678{
679 int i;
680
681 stack_grows_downwards = (p > (char *)&i);
682}
683#endif
684
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000685#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686static char *stack_limit = NULL;
687
688#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
689# include <pthread.h>
690# include <pthread_np.h>
691#endif
692
693/*
694 * Find out until how var the stack can grow without getting into trouble.
695 * Called when starting up and when switching to the signal stack in
696 * deathtrap().
697 */
698 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100699get_stack_limit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700{
701 struct rlimit rlp;
702 int i;
703 long lim;
704
705 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
706 * limit doesn't fit in a long (rlim_cur might be "long long"). */
707 if (getrlimit(RLIMIT_STACK, &rlp) == 0
708 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
709# ifdef RLIM_INFINITY
710 && rlp.rlim_cur != RLIM_INFINITY
711# endif
712 )
713 {
714 lim = (long)rlp.rlim_cur;
715#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
716 {
717 pthread_attr_t attr;
718 size_t size;
719
720 /* On FreeBSD the initial thread always has a fixed stack size, no
721 * matter what the limits are set to. Normally it's 1 Mbyte. */
722 pthread_attr_init(&attr);
723 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
724 {
725 pthread_attr_getstacksize(&attr, &size);
726 if (lim > (long)size)
727 lim = (long)size;
728 }
729 pthread_attr_destroy(&attr);
730 }
731#endif
732 if (stack_grows_downwards)
733 {
734 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
735 if (stack_limit >= (char *)&i)
736 /* overflow, set to 1/16 of current stack position */
737 stack_limit = (char *)((long)&i / 16L);
738 }
739 else
740 {
741 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
742 if (stack_limit <= (char *)&i)
743 stack_limit = NULL; /* overflow */
744 }
745 }
746}
747
748/*
749 * Return FAIL when running out of stack space.
750 * "p" must point to any variable local to the caller that's on the stack.
751 */
752 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100753mch_stackcheck(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754{
755 if (stack_limit != NULL)
756 {
757 if (stack_grows_downwards)
758 {
759 if (p < stack_limit)
760 return FAIL;
761 }
762 else if (p > stack_limit)
763 return FAIL;
764 }
765 return OK;
766}
767#endif
768
769#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
770/*
771 * Support for using the signal stack.
772 * This helps when we run out of stack space, which causes a SIGSEGV. The
773 * signal handler then must run on another stack, since the normal stack is
774 * completely full.
775 */
776
777#ifndef SIGSTKSZ
778# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
779#endif
780
781# ifdef HAVE_SIGALTSTACK
782static stack_t sigstk; /* for sigaltstack() */
783# else
784static struct sigstack sigstk; /* for sigstack() */
785# endif
786
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787static char *signal_stack;
788
789 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100790init_signal_stack(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000791{
792 if (signal_stack != NULL)
793 {
794# ifdef HAVE_SIGALTSTACK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795# ifdef HAVE_SS_BASE
796 sigstk.ss_base = signal_stack;
797# else
798 sigstk.ss_sp = signal_stack;
799# endif
800 sigstk.ss_size = SIGSTKSZ;
801 sigstk.ss_flags = 0;
802 (void)sigaltstack(&sigstk, NULL);
803# else
804 sigstk.ss_sp = signal_stack;
805 if (stack_grows_downwards)
806 sigstk.ss_sp += SIGSTKSZ - 1;
807 sigstk.ss_onstack = 0;
808 (void)sigstack(&sigstk, NULL);
809# endif
810 }
811}
812#endif
813
814/*
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000815 * We need correct prototypes for a signal function, otherwise mean compilers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 * will barf when the second argument to signal() is ``wrong''.
817 * Let me try it with a few tricky defines from my own osdef.h (jw).
818 */
819#if defined(SIGWINCH)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000820 static RETSIGTYPE
821sig_winch SIGDEFARG(sigarg)
822{
823 /* this is not required on all systems, but it doesn't hurt anybody */
824 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
825 do_resize = TRUE;
826 SIGRETURN;
827}
828#endif
829
830#if defined(SIGINT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 static RETSIGTYPE
832catch_sigint SIGDEFARG(sigarg)
833{
834 /* this is not required on all systems, but it doesn't hurt anybody */
835 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
836 got_int = TRUE;
837 SIGRETURN;
838}
839#endif
840
841#if defined(SIGPWR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842 static RETSIGTYPE
843catch_sigpwr SIGDEFARG(sigarg)
844{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000845 /* this is not required on all systems, but it doesn't hurt anybody */
846 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 /*
848 * I'm not sure we get the SIGPWR signal when the system is really going
849 * down or when the batteries are almost empty. Just preserve the swap
850 * files and don't exit, that can't do any harm.
851 */
852 ml_sync_all(FALSE, FALSE);
853 SIGRETURN;
854}
855#endif
856
857#ifdef SET_SIG_ALARM
858/*
859 * signal function for alarm().
860 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 static RETSIGTYPE
862sig_alarm SIGDEFARG(sigarg)
863{
864 /* doesn't do anything, just to break a system call */
865 sig_alarm_called = TRUE;
866 SIGRETURN;
867}
868#endif
869
Bram Moolenaaredce7422019-01-20 18:39:30 +0100870#if (defined(HAVE_SETJMP_H) \
871 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
872 || defined(FEAT_LIBCALL))) \
873 || defined(PROTO)
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100874# define USING_SETJMP 1
Bram Moolenaaredce7422019-01-20 18:39:30 +0100875
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100876// argument to SETJMP()
877static JMP_BUF lc_jump_env;
878
879# ifdef SIGHASARG
880// Caught signal number, 0 when no was signal caught; used for mch_libcall().
881// Volatile because it is used in signal handlers.
882static volatile sig_atomic_t lc_signal;
883# endif
884
885// TRUE when lc_jump_env is valid.
886// Volatile because it is used in signal handler deathtrap().
887static volatile sig_atomic_t lc_active INIT(= FALSE);
888
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889/*
890 * A simplistic version of setjmp() that only allows one level of using.
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100891 * Used to protect areas where we could crash.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 * Don't call twice before calling mch_endjmp()!.
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100893 *
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 * Usage:
895 * mch_startjmp();
896 * if (SETJMP(lc_jump_env) != 0)
897 * {
898 * mch_didjmp();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100899 * emsg("crash!");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 * }
901 * else
902 * {
903 * do_the_work;
904 * mch_endjmp();
905 * }
906 * Note: Can't move SETJMP() here, because a function calling setjmp() must
907 * not return before the saved environment is used.
908 * Returns OK for normal return, FAIL when the protected code caused a
909 * problem and LONGJMP() was used.
910 */
Bram Moolenaar113e1072019-01-20 15:30:40 +0100911 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100912mch_startjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913{
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100914# ifdef SIGHASARG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 lc_signal = 0;
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100916# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 lc_active = TRUE;
918}
919
Bram Moolenaar113e1072019-01-20 15:30:40 +0100920 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100921mch_endjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922{
923 lc_active = FALSE;
924}
925
Bram Moolenaar113e1072019-01-20 15:30:40 +0100926 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100927mch_didjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928{
929# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100930 // On FreeBSD the signal stack has to be reset after using siglongjmp(),
931 // otherwise catching the signal only works once.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 init_signal_stack();
933# endif
934}
935#endif
936
937/*
938 * This function handles deadly signals.
Bram Moolenaarbec9c202013-09-05 21:41:39 +0200939 * It tries to preserve any swap files and exit properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 * (partly from Elvis).
Bram Moolenaarbec9c202013-09-05 21:41:39 +0200941 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in
942 * a deadlock.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 */
944 static RETSIGTYPE
945deathtrap SIGDEFARG(sigarg)
946{
947 static int entered = 0; /* count the number of times we got here.
948 Note: when memory has been corrupted
949 this may get an arbitrary value! */
950#ifdef SIGHASARG
951 int i;
952#endif
953
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100954#if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 /*
956 * Catch a crash in protected code.
957 * Restores the environment saved in lc_jump_env, which looks like
958 * SETJMP() returns 1.
959 */
960 if (lc_active)
961 {
962# if defined(SIGHASARG)
963 lc_signal = sigarg;
964# endif
965 lc_active = FALSE; /* don't jump again */
966 LONGJMP(lc_jump_env, 1);
967 /* NOTREACHED */
968 }
969#endif
970
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000971#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000972# ifdef SIGQUIT
973 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
974 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
975 * pressing CTRL-\, but we don't want Vim to exit then. */
976 if (in_mch_delay && sigarg == SIGQUIT)
977 SIGRETURN;
978# endif
979
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000980 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
981 * here. This avoids that a non-reentrant function is interrupted, e.g.,
982 * free(). Calling free() again may then cause a crash. */
983 if (entered == 0
984 && (0
985# ifdef SIGHUP
986 || sigarg == SIGHUP
987# endif
988# ifdef SIGQUIT
989 || sigarg == SIGQUIT
990# endif
991# ifdef SIGTERM
992 || sigarg == SIGTERM
993# endif
994# ifdef SIGPWR
995 || sigarg == SIGPWR
996# endif
997# ifdef SIGUSR1
998 || sigarg == SIGUSR1
999# endif
1000# ifdef SIGUSR2
1001 || sigarg == SIGUSR2
1002# endif
1003 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001004 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001005 SIGRETURN;
1006#endif
1007
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 /* Remember how often we have been called. */
1009 ++entered;
1010
Bram Moolenaare429e702016-06-10 19:49:14 +02001011 /* Executing autocommands is likely to use more stack space than we have
1012 * available in the signal stack. */
1013 block_autocmds();
Bram Moolenaare429e702016-06-10 19:49:14 +02001014
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015#ifdef FEAT_EVAL
1016 /* Set the v:dying variable. */
1017 set_vim_var_nr(VV_DYING, (long)entered);
1018#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001019 v_dying = entered;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001021#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 /* Since we are now using the signal stack, need to reset the stack
1023 * limit. Otherwise using a regexp will fail. */
1024 get_stack_limit();
1025#endif
1026
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001027#if 0
1028 /* This is for opening gdb the moment Vim crashes.
1029 * You need to manually adjust the file name and Vim executable name.
1030 * Suggested by SungHyun Nam. */
1031 {
1032# define VI_GDB_FILE "/tmp/vimgdb"
1033# define VIM_NAME "/usr/bin/vim"
1034 FILE *fp = fopen(VI_GDB_FILE, "w");
1035 if (fp)
1036 {
1037 fprintf(fp,
1038 "file %s\n"
1039 "attach %d\n"
1040 "set height 1000\n"
1041 "bt full\n"
1042 , VIM_NAME, getpid());
1043 fclose(fp);
1044 system("xterm -e gdb -x "VI_GDB_FILE);
1045 unlink(VI_GDB_FILE);
1046 }
1047 }
1048#endif
1049
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050#ifdef SIGHASARG
1051 /* try to find the name of this signal */
1052 for (i = 0; signal_info[i].sig != -1; i++)
1053 if (sigarg == signal_info[i].sig)
1054 break;
1055 deadly_signal = sigarg;
1056#endif
1057
1058 full_screen = FALSE; /* don't write message to the GUI, it might be
1059 * part of the problem... */
1060 /*
1061 * If something goes wrong after entering here, we may get here again.
1062 * When this happens, give a message and try to exit nicely (resetting the
1063 * terminal mode, etc.)
1064 * When this happens twice, just exit, don't even try to give a message,
1065 * stack may be corrupt or something weird.
1066 * When this still happens again (or memory was corrupted in such a way
1067 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1068 */
1069 if (entered >= 3)
1070 {
1071 reset_signals(); /* don't catch any signals anymore */
1072 may_core_dump();
1073 if (entered >= 4)
1074 _exit(8);
1075 exit(7);
1076 }
1077 if (entered == 2)
1078 {
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001079 /* No translation, it may call malloc(). */
1080 OUT_STR("Vim: Double signal, exiting\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 out_flush();
1082 getout(1);
1083 }
1084
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001085 /* No translation, it may call malloc(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086#ifdef SIGHASARG
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001087 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 signal_info[i].name);
1089#else
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001090 sprintf((char *)IObuff, "Vim: Caught deadly signal\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091#endif
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001092
1093 /* Preserve files and exit. This sets the really_exiting flag to prevent
1094 * calling free(). */
1095 preserve_exit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096
Bram Moolenaare429e702016-06-10 19:49:14 +02001097 /* NOTREACHED */
1098
Bram Moolenaar009b2592004-10-24 19:18:58 +00001099#ifdef NBDEBUG
1100 reset_signals();
1101 may_core_dump();
1102 abort();
1103#endif
1104
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 SIGRETURN;
1106}
1107
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108/*
Bram Moolenaar2e310482018-08-21 13:09:10 +02001109 * Invoked after receiving SIGCONT. We don't know what happened while
1110 * sleeping, deal with part of that.
1111 */
1112 static void
1113after_sigcont(void)
1114{
1115# ifdef FEAT_TITLE
1116 // Don't change "oldtitle" in a signal handler, set a flag to obtain it
1117 // again later.
1118 oldtitle_outdated = TRUE;
1119# endif
1120 settmode(TMODE_RAW);
1121 need_check_timestamps = TRUE;
1122 did_check_timestamps = FALSE;
1123}
1124
1125#if defined(SIGCONT)
1126static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar8e82c052018-08-21 19:47:48 +02001127static volatile sig_atomic_t in_mch_suspend = FALSE;
Bram Moolenaar2e310482018-08-21 13:09:10 +02001128
1129/*
1130 * With multi-threading, suspending might not work immediately. Catch the
1131 * SIGCONT signal, which will be used as an indication whether the suspending
1132 * has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001133 *
1134 * On Linux, signal is not always handled immediately either.
1135 * See https://bugs.launchpad.net/bugs/291373
Bram Moolenaar2e310482018-08-21 13:09:10 +02001136 * Probably because the signal is handled in another thread.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001137 *
Bram Moolenaarb292a2a2011-02-09 18:47:40 +01001138 * volatile because it is used in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 */
Bram Moolenaar8e82c052018-08-21 19:47:48 +02001140static volatile sig_atomic_t sigcont_received;
Bram Moolenaarf1883472018-08-20 21:58:57 +02001141static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142
1143/*
1144 * signal handler for SIGCONT
1145 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 static RETSIGTYPE
1147sigcont_handler SIGDEFARG(sigarg)
1148{
Bram Moolenaar2e310482018-08-21 13:09:10 +02001149 if (in_mch_suspend)
1150 {
1151 sigcont_received = TRUE;
1152 }
1153 else
1154 {
1155 // We didn't suspend ourselves, assume we were stopped by a SIGSTOP
1156 // signal (which can't be intercepted) and get a SIGCONT. Need to get
1157 // back to a sane mode. We should redraw, but we can't really do that
1158 // in a signal handler, do a redraw later.
1159 after_sigcont();
1160 redraw_later(CLEAR);
1161 cursor_on_force();
1162 out_flush();
1163 }
1164
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 SIGRETURN;
1166}
1167#endif
1168
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02001169#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001170# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001171static void *clip_star_save = NULL;
1172static void *clip_plus_save = NULL;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001173# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001174
1175/*
1176 * Called when Vim is going to sleep or execute a shell command.
1177 * We can't respond to requests for the X selections. Lose them, otherwise
1178 * other applications will hang. But first copy the text to cut buffer 0.
1179 */
1180 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001181loose_clipboard(void)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001182{
1183 if (clip_star.owned || clip_plus.owned)
1184 {
1185 x11_export_final_selection();
1186 if (clip_star.owned)
1187 clip_lose_selection(&clip_star);
1188 if (clip_plus.owned)
1189 clip_lose_selection(&clip_plus);
1190 if (x11_display != NULL)
1191 XFlush(x11_display);
1192 }
1193}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001194
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001195# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001196/*
1197 * Save clipboard text to restore later.
1198 */
1199 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001200save_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001201{
1202 if (clip_star.owned)
1203 clip_star_save = get_register('*', TRUE);
1204 if (clip_plus.owned)
1205 clip_plus_save = get_register('+', TRUE);
1206}
1207
1208/*
1209 * Restore clipboard text if no one own the X selection.
1210 */
1211 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001212restore_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001213{
1214 if (clip_star_save != NULL)
1215 {
1216 if (!clip_gen_owner_exists(&clip_star))
1217 put_register('*', clip_star_save);
1218 else
1219 free_register(clip_star_save);
1220 clip_star_save = NULL;
1221 }
1222 if (clip_plus_save != NULL)
1223 {
1224 if (!clip_gen_owner_exists(&clip_plus))
1225 put_register('+', clip_plus_save);
1226 else
1227 free_register(clip_plus_save);
1228 clip_plus_save = NULL;
1229 }
1230}
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001231# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001232#endif
1233
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234/*
1235 * If the machine has job control, use it to suspend the program,
1236 * otherwise fake it by starting a new shell.
1237 */
1238 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001239mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240{
1241 /* BeOS does have SIGTSTP, but it doesn't work. */
1242#if defined(SIGTSTP) && !defined(__BEOS__)
Bram Moolenaar2e310482018-08-21 13:09:10 +02001243 in_mch_suspend = TRUE;
1244
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 out_flush(); /* needed to make cursor visible on some systems */
1246 settmode(TMODE_COOK);
1247 out_flush(); /* needed to disable mouse on some systems */
1248
1249# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001250 loose_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251# endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001252# if defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 sigcont_received = FALSE;
1254# endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 kill(0, SIGTSTP); /* send ourselves a STOP signal */
Bram Moolenaar2e310482018-08-21 13:09:10 +02001257
1258# if defined(SIGCONT)
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001259 /*
1260 * Wait for the SIGCONT signal to be handled. It generally happens
Bram Moolenaar2e310482018-08-21 13:09:10 +02001261 * immediately, but somehow not all the time, probably because it's handled
1262 * in another thread. Do not call pause() because there would be race
1263 * condition which would hang Vim if signal happened in between the test of
1264 * sigcont_received and the call to pause(). If signal is not yet received,
1265 * sleep 0, 1, 2, 3 ms. Don't bother waiting further if signal is not
1266 * received after 1+2+3 ms (not expected to happen).
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001267 */
1268 {
Bram Moolenaar262735e2009-07-14 10:20:22 +00001269 long wait_time;
Bram Moolenaar2e310482018-08-21 13:09:10 +02001270
Bram Moolenaar262735e2009-07-14 10:20:22 +00001271 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
Bram Moolenaar262735e2009-07-14 10:20:22 +00001272 mch_delay(wait_time, FALSE);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001273 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274# endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001275 in_mch_suspend = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276
Bram Moolenaar2e310482018-08-21 13:09:10 +02001277 after_sigcont();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278#else
1279 suspend_shell();
1280#endif
1281}
1282
1283 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001284mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285{
1286 Columns = 80;
1287 Rows = 24;
1288
1289 out_flush();
1290 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001291
Bram Moolenaar56718732006-03-15 22:53:57 +00001292#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001293 mac_conv_init();
1294#endif
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001295#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
1296 win_clip_init();
1297#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298}
1299
1300 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001301set_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302{
1303#if defined(SIGWINCH)
1304 /*
1305 * WINDOW CHANGE signal is handled with sig_winch().
1306 */
1307 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1308#endif
1309
1310 /*
1311 * We want the STOP signal to work, to make mch_suspend() work.
1312 * For "rvim" the STOP signal is ignored.
1313 */
1314#ifdef SIGTSTP
1315 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1316#endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001317#if defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 signal(SIGCONT, sigcont_handler);
1319#endif
1320
1321 /*
1322 * We want to ignore breaking of PIPEs.
1323 */
1324#ifdef SIGPIPE
1325 signal(SIGPIPE, SIG_IGN);
1326#endif
1327
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001329 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330#endif
1331
1332 /*
1333 * Ignore alarm signals (Perl's alarm() generates it).
1334 */
1335#ifdef SIGALRM
1336 signal(SIGALRM, SIG_IGN);
1337#endif
1338
1339 /*
1340 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1341 * work will be lost.
1342 */
1343#ifdef SIGPWR
1344 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1345#endif
1346
1347 /*
1348 * Arrange for other signals to gracefully shutdown Vim.
1349 */
1350 catch_signals(deathtrap, SIG_ERR);
1351
1352#if defined(FEAT_GUI) && defined(SIGHUP)
1353 /*
1354 * When the GUI is running, ignore the hangup signal.
1355 */
1356 if (gui.in_use)
1357 signal(SIGHUP, SIG_IGN);
1358#endif
1359}
1360
Bram Moolenaardf177f62005-02-22 08:39:57 +00001361#if defined(SIGINT) || defined(PROTO)
1362/*
1363 * Catch CTRL-C (only works while in Cooked mode).
1364 */
1365 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001366catch_int_signal(void)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001367{
1368 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1369}
1370#endif
1371
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001373reset_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374{
1375 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar2e310482018-08-21 13:09:10 +02001376#if defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 /* SIGCONT isn't in the list, because its default action is ignore */
1378 signal(SIGCONT, SIG_DFL);
1379#endif
1380}
1381
1382 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001383catch_signals(
1384 RETSIGTYPE (*func_deadly)(),
1385 RETSIGTYPE (*func_other)())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386{
1387 int i;
1388
1389 for (i = 0; signal_info[i].sig != -1; i++)
1390 if (signal_info[i].deadly)
1391 {
1392#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1393 struct sigaction sa;
1394
1395 /* Setup to use the alternate stack for the signal function. */
1396 sa.sa_handler = func_deadly;
1397 sigemptyset(&sa.sa_mask);
1398# if defined(__linux__) && defined(_REENTRANT)
1399 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1400 * thread handling in combination with using the alternate stack:
1401 * pthread library functions try to use the stack pointer to
1402 * identify the current thread, causing a SEGV signal, which
1403 * recursively calls deathtrap() and hangs. */
1404 sa.sa_flags = 0;
1405# else
1406 sa.sa_flags = SA_ONSTACK;
1407# endif
1408 sigaction(signal_info[i].sig, &sa, NULL);
1409#else
1410# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1411 struct sigvec sv;
1412
1413 /* Setup to use the alternate stack for the signal function. */
1414 sv.sv_handler = func_deadly;
1415 sv.sv_mask = 0;
1416 sv.sv_flags = SV_ONSTACK;
1417 sigvec(signal_info[i].sig, &sv, NULL);
1418# else
1419 signal(signal_info[i].sig, func_deadly);
1420# endif
1421#endif
1422 }
1423 else if (func_other != SIG_ERR)
1424 signal(signal_info[i].sig, func_other);
1425}
1426
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02001427#ifdef HAVE_SIGPROCMASK
1428 static void
1429block_signals(sigset_t *set)
1430{
1431 sigset_t newset;
1432 int i;
1433
1434 sigemptyset(&newset);
1435
1436 for (i = 0; signal_info[i].sig != -1; i++)
1437 sigaddset(&newset, signal_info[i].sig);
1438
Bram Moolenaar2e310482018-08-21 13:09:10 +02001439# if defined(SIGCONT)
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02001440 /* SIGCONT isn't in the list, because its default action is ignore */
1441 sigaddset(&newset, SIGCONT);
1442# endif
1443
1444 sigprocmask(SIG_BLOCK, &newset, set);
1445}
1446
1447 static void
1448unblock_signals(sigset_t *set)
1449{
1450 sigprocmask(SIG_SETMASK, set, NULL);
1451}
1452#endif
1453
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001455 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001456 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1457 * return TRUE
1458 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1459 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
Bram Moolenaar67c53842010-05-22 18:28:27 +02001460 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001461 * Returns TRUE when Vim should exit.
1462 */
1463 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001464vim_handle_signal(int sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001465{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001466 static int got_signal = 0;
1467 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001468
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001469 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001470 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001471 case SIGNAL_BLOCK: blocked = TRUE;
1472 break;
1473
1474 case SIGNAL_UNBLOCK: blocked = FALSE;
1475 if (got_signal != 0)
1476 {
1477 kill(getpid(), got_signal);
1478 got_signal = 0;
1479 }
1480 break;
1481
1482 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001483 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001484 got_signal = sig;
1485#ifdef SIGPWR
1486 if (sig != SIGPWR)
1487#endif
1488 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001489 break;
1490 }
1491 return FALSE;
1492}
1493
1494/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 * Check_win checks whether we have an interactive stdout.
1496 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001498mch_check_win(int argc UNUSED, char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 if (isatty(1))
1501 return OK;
1502 return FAIL;
1503}
1504
1505/*
1506 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1507 */
1508 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001509mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510{
1511 if (isatty(read_cmd_fd))
1512 return TRUE;
1513 return FALSE;
1514}
1515
1516#ifdef FEAT_X11
1517
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001518# if defined(ELAPSED_TIMEVAL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1520
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521/*
1522 * Give a message about the elapsed time for opening the X window.
1523 */
1524 static void
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001525xopen_message(long elapsed_msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001527 smsg(_("Opening the X display took %ld msec"), elapsed_msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528}
1529# endif
1530#endif
1531
1532#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1533/*
1534 * A few functions shared by X11 title and clipboard code.
1535 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536
1537static int got_x_error = FALSE;
1538
1539/*
1540 * X Error handler, otherwise X just exits! (very rude) -- webb
1541 */
1542 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001543x_error_handler(Display *dpy, XErrorEvent *error_event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001545 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 STRCAT(IObuff, _("\nVim: Got X error\n"));
1547
1548 /* We cannot print a message and continue, because no X calls are allowed
1549 * here (causes my system to hang). Silently continuing might be an
1550 * alternative... */
1551 preserve_exit(); /* preserve files and exit */
1552
1553 return 0; /* NOTREACHED */
1554}
1555
1556/*
1557 * Another X Error handler, just used to check for errors.
1558 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001560x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561{
1562 got_x_error = TRUE;
1563 return 0;
1564}
1565
Bram Moolenaarc0c75492018-12-29 11:03:23 +01001566/*
1567 * Return TRUE when connection to the X server is desired.
1568 */
1569 static int
1570x_connect_to_server(void)
1571{
1572 // No point in connecting if we are exiting or dying.
1573 if (exiting || v_dying)
1574 return FALSE;
1575
1576#if defined(FEAT_CLIENTSERVER)
1577 if (x_force_connect)
1578 return TRUE;
1579#endif
1580 if (x_no_connect)
1581 return FALSE;
1582
Bram Moolenaara8bfa172018-12-29 22:28:46 +01001583 // Check for a match with "exclude:" from 'clipboard'.
Bram Moolenaarc0c75492018-12-29 11:03:23 +01001584 if (clip_exclude_prog != NULL)
1585 {
Bram Moolenaara8bfa172018-12-29 22:28:46 +01001586 // Just in case we get called recursively, return FALSE. This could
1587 // happen if vpeekc() is used while executing the prog and it causes a
1588 // related callback to be invoked.
1589 if (regprog_in_use(clip_exclude_prog))
1590 return FALSE;
1591
Bram Moolenaarc0c75492018-12-29 11:03:23 +01001592 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0))
1593 return FALSE;
1594 }
1595 return TRUE;
1596}
1597
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaarb2148f52019-01-20 23:43:57 +01001599# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600/*
1601 * An X IO Error handler, used to catch error while opening the display.
1602 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001604x_IOerror_check(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605{
1606 /* This function should not return, it causes exit(). Longjump instead. */
1607 LONGJMP(lc_jump_env, 1);
Bram Moolenaar1eed5322019-02-26 17:03:54 +01001608# if defined(VMS) || defined(__CYGWIN__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001609 return 0; /* avoid the compiler complains about missing return value */
1610# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611}
1612# endif
1613
1614/*
1615 * An X IO Error handler, used to catch terminal errors.
1616 */
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001617static int xterm_dpy_retry_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001620x_IOerror_handler(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621{
1622 xterm_dpy = NULL;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001623 xterm_dpy_retry_count = 5; // Try reconnecting five times
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 x11_window = 0;
1625 x11_display = NULL;
1626 xterm_Shell = (Widget)0;
1627
1628 /* This function should not return, it causes exit(). Longjump instead. */
1629 LONGJMP(x_jump_env, 1);
Bram Moolenaar1eed5322019-02-26 17:03:54 +01001630# if defined(VMS) || defined(__CYGWIN__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001631 return 0; /* avoid the compiler complains about missing return value */
1632# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633}
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001634
1635/*
1636 * If the X11 connection was lost try to restore it.
1637 * Helps when the X11 server was stopped and restarted while Vim was inactive
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01001638 * (e.g. through tmux).
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001639 */
1640 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001641may_restore_clipboard(void)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001642{
Bram Moolenaar01e51e52018-12-29 13:09:46 +01001643 // No point in restoring the connecting if we are exiting or dying.
1644 if (!exiting && !v_dying && xterm_dpy_retry_count > 0)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001645 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001646 --xterm_dpy_retry_count;
Bram Moolenaar527a6782014-12-17 17:59:31 +01001647
1648# ifndef LESSTIF_VERSION
1649 /* This has been reported to avoid Vim getting stuck. */
1650 if (app_context != (XtAppContext)NULL)
1651 {
1652 XtDestroyApplicationContext(app_context);
1653 app_context = (XtAppContext)NULL;
1654 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
1655 }
1656# endif
1657
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001658 setup_term_clip();
1659 get_x11_title(FALSE);
1660 }
1661}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662#endif
1663
1664/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 * Test if "dpy" and x11_window are valid by getting the window title.
1666 * I don't actually want it yet, so there may be a simpler call to use, but
1667 * this will cause the error handler x_error_check() to be called if anything
1668 * is wrong, such as the window pointer being invalid (as can happen when the
1669 * user changes his DISPLAY, but not his WINDOWID) -- webb
1670 */
1671 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001672test_x11_window(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673{
1674 int (*old_handler)();
1675 XTextProperty text_prop;
1676
1677 old_handler = XSetErrorHandler(x_error_check);
1678 got_x_error = FALSE;
1679 if (XGetWMName(dpy, x11_window, &text_prop))
1680 XFree((void *)text_prop.value);
1681 XSync(dpy, False);
1682 (void)XSetErrorHandler(old_handler);
1683
1684 if (p_verbose > 0 && got_x_error)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001685 verb_msg(_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686
1687 return (got_x_error ? FAIL : OK);
1688}
1689#endif
1690
1691#ifdef FEAT_TITLE
1692
1693#ifdef FEAT_X11
1694
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001695static int get_x11_thing(int get_title, int test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001696
1697/*
1698 * try to get x11 window and display
1699 *
1700 * return FAIL for failure, OK otherwise
1701 */
1702 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001703get_x11_windis(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704{
1705 char *winid;
1706 static int result = -1;
1707#define XD_NONE 0 /* x11_display not set here */
1708#define XD_HERE 1 /* x11_display opened here */
1709#define XD_GUI 2 /* x11_display used from gui.dpy */
1710#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1711 static int x11_display_from = XD_NONE;
1712 static int did_set_error_handler = FALSE;
1713
1714 if (!did_set_error_handler)
1715 {
1716 /* X just exits if it finds an error otherwise! */
1717 (void)XSetErrorHandler(x_error_handler);
1718 did_set_error_handler = TRUE;
1719 }
1720
Bram Moolenaar9372a112005-12-06 19:59:18 +00001721#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722 if (gui.in_use)
1723 {
1724 /*
1725 * If the X11 display was opened here before, for the window where Vim
1726 * was started, close that one now to avoid a memory leak.
1727 */
1728 if (x11_display_from == XD_HERE && x11_display != NULL)
1729 {
1730 XCloseDisplay(x11_display);
1731 x11_display_from = XD_NONE;
1732 }
1733 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1734 {
1735 x11_display_from = XD_GUI;
1736 return OK;
1737 }
1738 x11_display = NULL;
1739 return FAIL;
1740 }
1741 else if (x11_display_from == XD_GUI)
1742 {
1743 /* GUI must have stopped somehow, clear x11_display */
1744 x11_window = 0;
1745 x11_display = NULL;
1746 x11_display_from = XD_NONE;
1747 }
1748#endif
1749
1750 /* When started with the "-X" argument, don't try connecting. */
1751 if (!x_connect_to_server())
1752 return FAIL;
1753
1754 /*
1755 * If WINDOWID not set, should try another method to find out
1756 * what the current window number is. The only code I know for
1757 * this is very complicated.
1758 * We assume that zero is invalid for WINDOWID.
1759 */
1760 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1761 x11_window = (Window)atol(winid);
1762
1763#ifdef FEAT_XCLIPBOARD
1764 if (xterm_dpy != NULL && x11_window != 0)
1765 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001766 /* We may have checked it already, but Gnome terminal can move us to
1767 * another window, so we need to check every time. */
1768 if (x11_display_from != XD_XTERM)
1769 {
1770 /*
1771 * If the X11 display was opened here before, for the window where
1772 * Vim was started, close that one now to avoid a memory leak.
1773 */
1774 if (x11_display_from == XD_HERE && x11_display != NULL)
1775 XCloseDisplay(x11_display);
1776 x11_display = xterm_dpy;
1777 x11_display_from = XD_XTERM;
1778 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 if (test_x11_window(x11_display) == FAIL)
1780 {
1781 /* probably bad $WINDOWID */
1782 x11_window = 0;
1783 x11_display = NULL;
1784 x11_display_from = XD_NONE;
1785 return FAIL;
1786 }
1787 return OK;
1788 }
1789#endif
1790
1791 if (x11_window == 0 || x11_display == NULL)
1792 result = -1;
1793
1794 if (result != -1) /* Have already been here and set this */
1795 return result; /* Don't do all these X calls again */
1796
1797 if (x11_window != 0 && x11_display == NULL)
1798 {
1799#ifdef SET_SIG_ALARM
1800 RETSIGTYPE (*sig_save)();
1801#endif
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01001802#ifdef ELAPSED_FUNC
1803 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804
1805 if (p_verbose > 0)
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01001806 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807#endif
1808
1809#ifdef SET_SIG_ALARM
1810 /*
1811 * Opening the Display may hang if the DISPLAY setting is wrong, or
1812 * the network connection is bad. Set an alarm timer to get out.
1813 */
1814 sig_alarm_called = FALSE;
1815 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1816 (RETSIGTYPE (*)())sig_alarm);
1817 alarm(2);
1818#endif
1819 x11_display = XOpenDisplay(NULL);
1820
1821#ifdef SET_SIG_ALARM
1822 alarm(0);
1823 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1824 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaar563bbea2019-01-22 21:45:40 +01001825 verb_msg(_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826#endif
1827 if (x11_display != NULL)
1828 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001829# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001831 {
1832 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001833 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001834 verbose_leave();
1835 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836# endif
1837 if (test_x11_window(x11_display) == FAIL)
1838 {
1839 /* Maybe window id is bad */
1840 x11_window = 0;
1841 XCloseDisplay(x11_display);
1842 x11_display = NULL;
1843 }
1844 else
1845 x11_display_from = XD_HERE;
1846 }
1847 }
1848 if (x11_window == 0 || x11_display == NULL)
1849 return (result = FAIL);
Bram Moolenaar727c8762010-10-20 19:17:48 +02001850
1851# ifdef FEAT_EVAL
1852 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
1853# endif
1854
Bram Moolenaar071d4272004-06-13 20:20:40 +00001855 return (result = OK);
1856}
1857
1858/*
1859 * Determine original x11 Window Title
1860 */
1861 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001862get_x11_title(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001864 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865}
1866
1867/*
1868 * Determine original x11 Window icon
1869 */
1870 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001871get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872{
1873 int retval = FALSE;
1874
1875 retval = get_x11_thing(FALSE, test_only);
1876
1877 /* could not get old icon, use terminal name */
1878 if (oldicon == NULL && !test_only)
1879 {
1880 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001881 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001882 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001883 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 }
1885
1886 return retval;
1887}
1888
1889 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001890get_x11_thing(
1891 int get_title, /* get title string */
1892 int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893{
1894 XTextProperty text_prop;
1895 int retval = FALSE;
1896 Status status;
1897
1898 if (get_x11_windis() == OK)
1899 {
1900 /* Get window/icon name if any */
1901 if (get_title)
1902 status = XGetWMName(x11_display, x11_window, &text_prop);
1903 else
1904 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1905
1906 /*
1907 * If terminal is xterm, then x11_window may be a child window of the
1908 * outer xterm window that actually contains the window/icon name, so
1909 * keep traversing up the tree until a window with a title/icon is
1910 * found.
1911 */
1912 /* Previously this was only done for xterm and alikes. I don't see a
1913 * reason why it would fail for other terminal emulators.
1914 * if (term_is_xterm) */
1915 {
1916 Window root;
1917 Window parent;
1918 Window win = x11_window;
1919 Window *children;
1920 unsigned int num_children;
1921
1922 while (!status || text_prop.value == NULL)
1923 {
1924 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1925 &num_children))
1926 break;
1927 if (children)
1928 XFree((void *)children);
1929 if (parent == root || parent == 0)
1930 break;
1931
1932 win = parent;
1933 if (get_title)
1934 status = XGetWMName(x11_display, win, &text_prop);
1935 else
1936 status = XGetWMIconName(x11_display, win, &text_prop);
1937 }
1938 }
1939 if (status && text_prop.value != NULL)
1940 {
1941 retval = TRUE;
1942 if (!test_only)
1943 {
Bram Moolenaara12a1612019-01-24 16:39:02 +01001944 if (text_prop.encoding == XA_STRING && !has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001945 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 if (get_title)
1947 oldtitle = vim_strsave((char_u *)text_prop.value);
1948 else
1949 oldicon = vim_strsave((char_u *)text_prop.value);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 }
1951 else
1952 {
1953 char **cl;
1954 Status transform_status;
1955 int n = 0;
1956
1957 transform_status = XmbTextPropertyToTextList(x11_display,
1958 &text_prop,
1959 &cl, &n);
1960 if (transform_status >= Success && n > 0 && cl[0])
1961 {
1962 if (get_title)
1963 oldtitle = vim_strsave((char_u *) cl[0]);
1964 else
1965 oldicon = vim_strsave((char_u *) cl[0]);
1966 XFreeStringList(cl);
1967 }
1968 else
1969 {
1970 if (get_title)
1971 oldtitle = vim_strsave((char_u *)text_prop.value);
1972 else
1973 oldicon = vim_strsave((char_u *)text_prop.value);
1974 }
1975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 }
1977 XFree((void *)text_prop.value);
1978 }
1979 }
1980 return retval;
1981}
1982
Bram Moolenaarb2148f52019-01-20 23:43:57 +01001983/* Xutf8 functions are not available on older systems. Note that on some
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02001984 * systems X_HAVE_UTF8_STRING may be defined in a header file but
1985 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for
1986 * that and defines HAVE_XUTF8SETWMPROPERTIES. */
Bram Moolenaara12a1612019-01-24 16:39:02 +01001987#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02001988# if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989# define USE_UTF8_STRING
1990# endif
1991#endif
1992
1993/*
1994 * Set x11 Window Title
1995 *
1996 * get_x11_windis() must be called before this and have returned OK
1997 */
1998 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001999set_x11_title(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000{
2001 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
2002 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
2003 * supported everywhere and STRING doesn't work for multi-byte titles.
2004 */
2005#ifdef USE_UTF8_STRING
2006 if (enc_utf8)
2007 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
2008 NULL, NULL, 0, NULL, NULL, NULL);
2009 else
2010#endif
2011 {
2012#if XtSpecificationRelease >= 4
2013# ifdef FEAT_XFONTSET
2014 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
2015 NULL, NULL, 0, NULL, NULL, NULL);
2016# else
2017 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002018 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019
2020 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002021 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 XSetWMProperties(x11_display, x11_window, &text_prop,
2023 NULL, NULL, 0, NULL, NULL, NULL);
2024# endif
2025#else
2026 XStoreName(x11_display, x11_window, (char *)title);
2027#endif
2028 }
2029 XFlush(x11_display);
2030}
2031
2032/*
2033 * Set x11 Window icon
2034 *
2035 * get_x11_windis() must be called before this and have returned OK
2036 */
2037 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002038set_x11_icon(char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039{
2040 /* See above for comments about using X*SetWMProperties(). */
2041#ifdef USE_UTF8_STRING
2042 if (enc_utf8)
2043 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2044 NULL, 0, NULL, NULL, NULL);
2045 else
2046#endif
2047 {
2048#if XtSpecificationRelease >= 4
2049# ifdef FEAT_XFONTSET
2050 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2051 NULL, 0, NULL, NULL, NULL);
2052# else
2053 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002054 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002056 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
2058 NULL, 0, NULL, NULL, NULL);
2059# endif
2060#else
2061 XSetIconName(x11_display, x11_window, (char *)icon);
2062#endif
2063 }
2064 XFlush(x11_display);
2065}
2066
2067#else /* FEAT_X11 */
2068
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002070get_x11_title(int test_only UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071{
2072 return FALSE;
2073}
2074
2075 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002076get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077{
2078 if (!test_only)
2079 {
2080 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002081 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002083 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 }
2085 return FALSE;
2086}
2087
2088#endif /* FEAT_X11 */
2089
2090 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002091mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092{
2093 return get_x11_title(TRUE);
2094}
2095
2096 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002097mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098{
2099 return get_x11_icon(TRUE);
2100}
2101
2102/*
2103 * Set the window title and icon.
2104 */
2105 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002106mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107{
2108 int type = 0;
2109 static int recursive = 0;
2110
2111 if (T_NAME == NULL) /* no terminal name (yet) */
2112 return;
2113 if (title == NULL && icon == NULL) /* nothing to do */
2114 return;
2115
2116 /* When one of the X11 functions causes a deadly signal, we get here again
2117 * recursively. Avoid hanging then (something is probably locked). */
2118 if (recursive)
2119 return;
2120 ++recursive;
2121
2122 /*
2123 * if the window ID and the display is known, we may use X11 calls
2124 */
2125#ifdef FEAT_X11
2126 if (get_x11_windis() == OK)
2127 type = 1;
2128#else
2129# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
2130 if (gui.in_use)
2131 type = 1;
2132# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133#endif
2134
2135 /*
Bram Moolenaarf82bac32010-07-25 22:30:20 +02002136 * Note: if "t_ts" is set, title is set with escape sequence rather
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 * than x11 calls, because the x11 calls don't always work
2138 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 if ((type || *T_TS != NUL) && title != NULL)
2140 {
Bram Moolenaard8f0cef2018-08-19 22:20:16 +02002141 if (oldtitle_outdated)
2142 {
2143 oldtitle_outdated = FALSE;
2144 VIM_CLEAR(oldtitle);
2145 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 if (oldtitle == NULL
2147#ifdef FEAT_GUI
2148 && !gui.in_use
2149#endif
2150 ) /* first call but not in GUI, save title */
2151 (void)get_x11_title(FALSE);
2152
2153 if (*T_TS != NUL) /* it's OK if t_fs is empty */
2154 term_settitle(title);
2155#ifdef FEAT_X11
2156 else
2157# ifdef FEAT_GUI_GTK
2158 if (!gui.in_use) /* don't do this if GTK+ is running */
2159# endif
2160 set_x11_title(title); /* x11 */
2161#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002162#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2164 else
2165 gui_mch_settitle(title, icon);
2166#endif
2167 did_set_title = TRUE;
2168 }
2169
2170 if ((type || *T_CIS != NUL) && icon != NULL)
2171 {
2172 if (oldicon == NULL
2173#ifdef FEAT_GUI
2174 && !gui.in_use
2175#endif
2176 ) /* first call, save icon */
2177 get_x11_icon(FALSE);
2178
2179 if (*T_CIS != NUL)
2180 {
2181 out_str(T_CIS); /* set icon start */
2182 out_str_nf(icon);
2183 out_str(T_CIE); /* set icon end */
2184 out_flush();
2185 }
2186#ifdef FEAT_X11
2187 else
2188# ifdef FEAT_GUI_GTK
2189 if (!gui.in_use) /* don't do this if GTK+ is running */
2190# endif
2191 set_x11_icon(icon); /* x11 */
2192#endif
2193 did_set_icon = TRUE;
2194 }
2195 --recursive;
2196}
2197
2198/*
2199 * Restore the window/icon title.
2200 * "which" is one of:
Bram Moolenaar40385db2018-08-07 22:31:44 +02002201 * SAVE_RESTORE_TITLE only restore title
2202 * SAVE_RESTORE_ICON only restore icon
2203 * SAVE_RESTORE_BOTH restore title and icon
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 */
2205 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002206mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207{
Bram Moolenaare5c83282019-05-03 23:15:37 +02002208 int do_push_pop = did_set_title || did_set_icon;
2209
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 /* only restore the title or icon when it has been set */
Bram Moolenaar40385db2018-08-07 22:31:44 +02002211 mch_settitle(((which & SAVE_RESTORE_TITLE) && did_set_title) ?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 (oldtitle ? oldtitle : p_titleold) : NULL,
Bram Moolenaar40385db2018-08-07 22:31:44 +02002213 ((which & SAVE_RESTORE_ICON) && did_set_icon) ? oldicon : NULL);
2214
Bram Moolenaare5c83282019-05-03 23:15:37 +02002215 if (do_push_pop)
2216 {
2217 // pop and push from/to the stack
2218 term_pop_title(which);
2219 term_push_title(which);
2220 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221}
2222
2223#endif /* FEAT_TITLE */
2224
2225/*
2226 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002227 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 */
2229 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002230vim_is_xterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002231{
2232 if (name == NULL)
2233 return FALSE;
2234 return (STRNICMP(name, "xterm", 5) == 0
2235 || STRNICMP(name, "nxterm", 6) == 0
2236 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002237 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 || STRNICMP(name, "rxvt", 4) == 0
Bram Moolenaar995e4af2017-09-01 20:24:03 +02002239 || STRNICMP(name, "screen.xterm", 12) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 || STRCMP(name, "builtin_xterm") == 0);
2241}
2242
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002243#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2244/*
2245 * Return TRUE if "name" appears to be that of a terminal
2246 * known to support the xterm-style mouse protocol.
2247 * Relies on term_is_xterm having been set to its correct value.
2248 */
2249 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002250use_xterm_like_mouse(char_u *name)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002251{
2252 return (name != NULL
Bram Moolenaare56132b2016-08-14 18:23:21 +02002253 && (term_is_xterm
2254 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002255 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaare56132b2016-08-14 18:23:21 +02002256 || STRICMP(name, "st") == 0
2257 || STRNICMP(name, "st-", 3) == 0
2258 || STRNICMP(name, "stterm", 6) == 0));
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002259}
2260#endif
2261
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2263/*
2264 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2265 * Return 1 for "xterm".
2266 * Return 2 for "xterm2".
Bram Moolenaarc8427482011-10-20 21:09:35 +02002267 * Return 3 for "urxvt".
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002268 * Return 4 for "sgr".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 */
2270 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002271use_xterm_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272{
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002273 if (ttym_flags == TTYM_SGR)
2274 return 4;
Bram Moolenaarc8427482011-10-20 21:09:35 +02002275 if (ttym_flags == TTYM_URXVT)
2276 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 if (ttym_flags == TTYM_XTERM2)
2278 return 2;
2279 if (ttym_flags == TTYM_XTERM)
2280 return 1;
2281 return 0;
2282}
2283#endif
2284
2285 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002286vim_is_iris(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287{
2288 if (name == NULL)
2289 return FALSE;
2290 return (STRNICMP(name, "iris-ansi", 9) == 0
2291 || STRCMP(name, "builtin_iris-ansi") == 0);
2292}
2293
2294 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002295vim_is_vt300(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296{
2297 if (name == NULL)
2298 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002299 /* catch VT100 - VT5xx */
2300 return ((STRNICMP(name, "vt", 2) == 0
2301 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 || STRCMP(name, "builtin_vt320") == 0);
2303}
2304
2305/*
2306 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2307 * This should include all windowed terminal emulators.
2308 */
2309 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002310vim_is_fastterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311{
2312 if (name == NULL)
2313 return FALSE;
2314 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2315 return TRUE;
2316 return ( STRNICMP(name, "hpterm", 6) == 0
2317 || STRNICMP(name, "sun-cmd", 7) == 0
2318 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002319 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 || STRNICMP(name, "dtterm", 6) == 0);
2321}
2322
2323/*
2324 * Insert user name in s[len].
2325 * Return OK if a name found.
2326 */
2327 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002328mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329{
2330#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002331 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 return OK;
2333#else
2334 return mch_get_uname(getuid(), s, len);
2335#endif
2336}
2337
2338/*
2339 * Insert user name for "uid" in s[len].
2340 * Return OK if a name found.
2341 */
2342 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002343mch_get_uname(uid_t uid, char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344{
2345#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2346 struct passwd *pw;
2347
2348 if ((pw = getpwuid(uid)) != NULL
2349 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2350 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002351 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002352 return OK;
2353 }
2354#endif
2355 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2356 return FAIL; /* a number is not a name */
2357}
2358
2359/*
2360 * Insert host name is s[len].
2361 */
2362
2363#ifdef HAVE_SYS_UTSNAME_H
2364 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002365mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366{
2367 struct utsname vutsname;
2368
2369 if (uname(&vutsname) < 0)
2370 *s = NUL;
2371 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002372 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373}
2374#else /* HAVE_SYS_UTSNAME_H */
2375
2376# ifdef HAVE_SYS_SYSTEMINFO_H
2377# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2378# endif
2379
2380 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002381mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382{
2383# ifdef VAXC
2384 vaxc$gethostname((char *)s, len);
2385# else
2386 gethostname((char *)s, len);
2387# endif
2388 s[len - 1] = NUL; /* make sure it's terminated */
2389}
2390#endif /* HAVE_SYS_UTSNAME_H */
2391
2392/*
2393 * return process ID
2394 */
2395 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002396mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397{
2398 return (long)getpid();
2399}
2400
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002401/*
2402 * return TRUE if process "pid" is still running
2403 */
2404 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002405mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002406{
2407 // EMX kill() not working correctly, it seems
2408 return kill(pid, 0) == 0;
2409}
2410
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 static char *
Bram Moolenaar05540972016-01-30 20:31:25 +01002413strerror(int err)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414{
2415 extern int sys_nerr;
2416 extern char *sys_errlist[];
2417 static char er[20];
2418
2419 if (err > 0 && err < sys_nerr)
2420 return (sys_errlist[err]);
2421 sprintf(er, "Error %d", err);
2422 return er;
2423}
2424#endif
2425
2426/*
2427 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2428 * Return OK for success, FAIL for failure.
2429 */
2430 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002431mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432{
2433#if defined(USE_GETCWD)
2434 if (getcwd((char *)buf, len) == NULL)
2435 {
2436 STRCPY(buf, strerror(errno));
2437 return FAIL;
2438 }
2439 return OK;
2440#else
2441 return (getwd((char *)buf) != NULL ? OK : FAIL);
2442#endif
2443}
2444
Bram Moolenaar071d4272004-06-13 20:20:40 +00002445/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002446 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 *
2448 * return FAIL for failure, OK for success
2449 */
2450 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002451mch_FullName(
2452 char_u *fname,
2453 char_u *buf,
2454 int len,
2455 int force) /* also expand when already absolute path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456{
2457 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002458#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 int fd = -1;
2460 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002461#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 char_u olddir[MAXPATHL];
2463 char_u *p;
2464 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002465#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002466 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2467 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002468#endif
2469
Bram Moolenaar38323e42007-03-06 19:22:53 +00002470#ifdef VMS
2471 fname = vms_fixfilename(fname);
2472#endif
2473
Bram Moolenaara2442432007-04-26 14:26:37 +00002474#ifdef __CYGWIN__
2475 /*
2476 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2477 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002478# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaar06b07342015-12-31 22:26:28 +01002479 /* Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in
2480 * a forward slash. */
2481 cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE,
2482 fname, posix_fname, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002483# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002484 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002485# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002486 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002487#endif
2488
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002489 /* Expand it if forced or not an absolute path.
2490 * Do not do it for "/file", the result is always "/". */
2491 if ((force || !mch_isFullName(fname))
2492 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 {
2494 /*
2495 * If the file name has a path, change to that directory for a moment,
2496 * and then do the getwd() (and get back to where we were).
2497 * This will get the correct path name with "../" things.
2498 */
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002499 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002500 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002501#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 /*
2503 * Use fchdir() if possible, it's said to be faster and more
2504 * reliable. But on SunOS 4 it might not work. Check this by
2505 * doing a fchdir() right now.
2506 */
2507 if (!dont_fchdir)
2508 {
2509 fd = open(".", O_RDONLY | O_EXTRA, 0);
2510 if (fd >= 0 && fchdir(fd) < 0)
2511 {
2512 close(fd);
2513 fd = -1;
2514 dont_fchdir = TRUE; /* don't try again */
2515 }
2516 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002517#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518
2519 /* Only change directory when we are sure we can return to where
2520 * we are now. After doing "su" chdir(".") might not work. */
2521 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002522#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002524#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 (mch_dirname(olddir, MAXPATHL) == FAIL
2526 || mch_chdir((char *)olddir) != 0))
2527 {
2528 p = NULL; /* can't get current dir: don't chdir */
2529 retval = FAIL;
2530 }
2531 else
2532 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 /* The directory is copied into buf[], to be able to remove
2534 * the file name without changing it (could be a string in
2535 * read-only memory) */
2536 if (p - fname >= len)
2537 retval = FAIL;
2538 else
2539 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002540 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 if (mch_chdir((char *)buf))
2542 retval = FAIL;
2543 else
2544 fname = p + 1;
2545 *buf = NUL;
2546 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 }
2548 }
2549 if (mch_dirname(buf, len) == FAIL)
2550 {
2551 retval = FAIL;
2552 *buf = NUL;
2553 }
2554 if (p != NULL)
2555 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002556#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 if (fd >= 0)
2558 {
Bram Moolenaar25724922009-07-14 15:38:41 +00002559 if (p_verbose >= 5)
2560 {
2561 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002562 msg("fchdir() to previous dir");
Bram Moolenaar25724922009-07-14 15:38:41 +00002563 verbose_leave();
2564 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 l = fchdir(fd);
2566 close(fd);
2567 }
2568 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002569#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 l = mch_chdir((char *)olddir);
2571 if (l != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002572 emsg(_(e_prev_dir));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 }
2574
2575 l = STRLEN(buf);
Bram Moolenaardac75692012-10-14 04:35:45 +02002576 if (l >= len - 1)
2577 retval = FAIL; /* no space for trailing "/" */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002578#ifndef VMS
Bram Moolenaardac75692012-10-14 04:35:45 +02002579 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002580 && STRCMP(fname, ".") != 0)
Bram Moolenaardac75692012-10-14 04:35:45 +02002581 STRCAT(buf, "/");
Bram Moolenaar38323e42007-03-06 19:22:53 +00002582#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002584
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 /* Catch file names which are too long. */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002586 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 return FAIL;
2588
2589 /* Do not append ".", "/dir/." is equal to "/dir". */
2590 if (STRCMP(fname, ".") != 0)
2591 STRCAT(buf, fname);
2592
2593 return OK;
2594}
2595
2596/*
2597 * Return TRUE if "fname" does not depend on the current directory.
2598 */
2599 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002600mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002602#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 return ( fname[0] == '/' || fname[0] == '.' ||
2604 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2605 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2606 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002607#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 return (*fname == '/' || *fname == '~');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609#endif
2610}
2611
Bram Moolenaar24552be2005-12-10 20:17:30 +00002612#if defined(USE_FNAME_CASE) || defined(PROTO)
2613/*
2614 * Set the case of the file name, if it already exists. This will cause the
2615 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002616 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002617 */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002618 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002619fname_case(
2620 char_u *name,
2621 int len UNUSED) /* buffer size, only used when name gets longer */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002622{
2623 struct stat st;
2624 char_u *slash, *tail;
2625 DIR *dirp;
2626 struct dirent *dp;
2627
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002628 if (mch_lstat((char *)name, &st) >= 0)
Bram Moolenaar24552be2005-12-10 20:17:30 +00002629 {
2630 /* Open the directory where the file is located. */
2631 slash = vim_strrchr(name, '/');
2632 if (slash == NULL)
2633 {
2634 dirp = opendir(".");
2635 tail = name;
2636 }
2637 else
2638 {
2639 *slash = NUL;
2640 dirp = opendir((char *)name);
2641 *slash = '/';
2642 tail = slash + 1;
2643 }
2644
2645 if (dirp != NULL)
2646 {
2647 while ((dp = readdir(dirp)) != NULL)
2648 {
2649 /* Only accept names that differ in case and are the same byte
2650 * length. TODO: accept different length name. */
2651 if (STRICMP(tail, dp->d_name) == 0
2652 && STRLEN(tail) == STRLEN(dp->d_name))
2653 {
2654 char_u newname[MAXPATHL + 1];
2655 struct stat st2;
2656
2657 /* Verify the inode is equal. */
2658 vim_strncpy(newname, name, MAXPATHL);
2659 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2660 MAXPATHL - (tail - name));
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002661 if (mch_lstat((char *)newname, &st2) >= 0
Bram Moolenaar24552be2005-12-10 20:17:30 +00002662 && st.st_ino == st2.st_ino
2663 && st.st_dev == st2.st_dev)
2664 {
2665 STRCPY(tail, dp->d_name);
2666 break;
2667 }
2668 }
2669 }
2670
2671 closedir(dirp);
2672 }
2673 }
2674}
2675#endif
2676
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677/*
2678 * Get file permissions for 'name'.
2679 * Returns -1 when it doesn't exist.
2680 */
2681 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002682mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683{
2684 struct stat statb;
2685
2686 /* Keep the #ifdef outside of stat(), it may be a macro. */
2687#ifdef VMS
2688 if (stat((char *)vms_fixfilename(name), &statb))
2689#else
2690 if (stat((char *)name, &statb))
2691#endif
2692 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002693#ifdef __INTERIX
2694 /* The top bit makes the value negative, which means the file doesn't
2695 * exist. Remove the bit, we don't use it. */
2696 return statb.st_mode & ~S_ADDACE;
2697#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002698 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002699#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002700}
2701
2702/*
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002703 * Set file permission for "name" to "perm".
2704 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705 */
2706 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002707mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708{
2709 return (chmod((char *)
2710#ifdef VMS
2711 vms_fixfilename(name),
2712#else
2713 name,
2714#endif
2715 (mode_t)perm) == 0 ? OK : FAIL);
2716}
2717
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002718#if defined(HAVE_FCHMOD) || defined(PROTO)
2719/*
2720 * Set file permission for open file "fd" to "perm".
2721 * Return FAIL for failure, OK otherwise.
2722 */
2723 int
2724mch_fsetperm(int fd, long perm)
2725{
2726 return (fchmod(fd, (mode_t)perm) == 0 ? OK : FAIL);
2727}
2728#endif
2729
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730#if defined(HAVE_ACL) || defined(PROTO)
2731# ifdef HAVE_SYS_ACL_H
2732# include <sys/acl.h>
2733# endif
2734# ifdef HAVE_SYS_ACCESS_H
2735# include <sys/access.h>
2736# endif
2737
2738# ifdef HAVE_SOLARIS_ACL
2739typedef struct vim_acl_solaris_T {
2740 int acl_cnt;
2741 aclent_t *acl_entry;
2742} vim_acl_solaris_T;
2743# endif
2744
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002745#if defined(HAVE_SELINUX) || defined(PROTO)
2746/*
2747 * Copy security info from "from_file" to "to_file".
2748 */
2749 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002750mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002751{
2752 if (from_file == NULL)
2753 return;
2754
2755 if (selinux_enabled == -1)
2756 selinux_enabled = is_selinux_enabled();
2757
2758 if (selinux_enabled > 0)
2759 {
2760 security_context_t from_context = NULL;
2761 security_context_t to_context = NULL;
2762
2763 if (getfilecon((char *)from_file, &from_context) < 0)
2764 {
2765 /* If the filesystem doesn't support extended attributes,
2766 the original had no special security context and the
2767 target cannot have one either. */
2768 if (errno == EOPNOTSUPP)
2769 return;
2770
Bram Moolenaar32526b32019-01-19 17:43:09 +01002771 msg_puts(_("\nCould not get security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002772 msg_outtrans(from_file);
2773 msg_putchar('\n');
2774 return;
2775 }
2776 if (getfilecon((char *)to_file, &to_context) < 0)
2777 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002778 msg_puts(_("\nCould not get security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002779 msg_outtrans(to_file);
2780 msg_putchar('\n');
2781 freecon (from_context);
2782 return ;
2783 }
2784 if (strcmp(from_context, to_context) != 0)
2785 {
2786 if (setfilecon((char *)to_file, from_context) < 0)
2787 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002788 msg_puts(_("\nCould not set security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002789 msg_outtrans(to_file);
2790 msg_putchar('\n');
2791 }
2792 }
2793 freecon(to_context);
2794 freecon(from_context);
2795 }
2796}
2797#endif /* HAVE_SELINUX */
2798
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002799#if defined(HAVE_SMACK) && !defined(PROTO)
2800/*
2801 * Copy security info from "from_file" to "to_file".
2802 */
2803 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002804mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002805{
Bram Moolenaar62f167f2014-04-23 12:52:40 +02002806 static const char * const smack_copied_attributes[] =
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002807 {
2808 XATTR_NAME_SMACK,
2809 XATTR_NAME_SMACKEXEC,
2810 XATTR_NAME_SMACKMMAP
2811 };
2812
2813 char buffer[SMACK_LABEL_LEN];
2814 const char *name;
2815 int index;
2816 int ret;
2817 ssize_t size;
2818
2819 if (from_file == NULL)
2820 return;
2821
2822 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes)
2823 / sizeof(smack_copied_attributes)[0]) ; index++)
2824 {
2825 /* get the name of the attribute to copy */
2826 name = smack_copied_attributes[index];
2827
2828 /* get the value of the attribute in buffer */
2829 size = getxattr((char*)from_file, name, buffer, sizeof(buffer));
2830 if (size >= 0)
2831 {
2832 /* copy the attribute value of buffer */
2833 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0);
2834 if (ret < 0)
2835 {
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002836 vim_snprintf((char *)IObuff, IOSIZE,
2837 _("Could not set security context %s for %s"),
2838 name, to_file);
2839 msg_outtrans(IObuff);
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002840 msg_putchar('\n');
2841 }
2842 }
2843 else
2844 {
2845 /* what reason of not having the attribute value? */
2846 switch (errno)
2847 {
2848 case ENOTSUP:
2849 /* extended attributes aren't supported or enabled */
2850 /* should a message be echoed? not sure... */
Bram Moolenaarb2148f52019-01-20 23:43:57 +01002851 return; /* leave because it isn't useful to continue */
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002852
2853 case ERANGE:
2854 default:
2855 /* no enough size OR unexpected error */
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002856 vim_snprintf((char *)IObuff, IOSIZE,
2857 _("Could not get security context %s for %s. Removing it!"),
2858 name, from_file);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002859 msg_puts((char *)IObuff);
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002860 msg_putchar('\n');
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002861 /* FALLTHROUGH to remove the attribute */
2862
2863 case ENODATA:
2864 /* no attribute of this name */
2865 ret = removexattr((char*)to_file, name);
Bram Moolenaar57a728d2014-04-02 23:09:26 +02002866 /* Silently ignore errors, apparently this happens when
2867 * smack is not actually being used. */
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002868 break;
2869 }
2870 }
2871 }
2872}
2873#endif /* HAVE_SMACK */
2874
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875/*
2876 * Return a pointer to the ACL of file "fname" in allocated memory.
2877 * Return NULL if the ACL is not available for whatever reason.
2878 */
2879 vim_acl_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002880mch_get_acl(char_u *fname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002881{
2882 vim_acl_T ret = NULL;
2883#ifdef HAVE_POSIX_ACL
2884 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2885#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002886#ifdef HAVE_SOLARIS_ZFS_ACL
2887 acl_t *aclent;
2888
2889 if (acl_get((char *)fname, 0, &aclent) < 0)
2890 return NULL;
2891 ret = (vim_acl_T)aclent;
2892#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893#ifdef HAVE_SOLARIS_ACL
2894 vim_acl_solaris_T *aclent;
2895
2896 aclent = malloc(sizeof(vim_acl_solaris_T));
2897 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2898 {
2899 free(aclent);
2900 return NULL;
2901 }
2902 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2903 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2904 {
2905 free(aclent->acl_entry);
2906 free(aclent);
2907 return NULL;
2908 }
2909 ret = (vim_acl_T)aclent;
2910#else
2911#if defined(HAVE_AIX_ACL)
2912 int aclsize;
2913 struct acl *aclent;
2914
2915 aclsize = sizeof(struct acl);
2916 aclent = malloc(aclsize);
2917 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2918 {
2919 if (errno == ENOSPC)
2920 {
2921 aclsize = aclent->acl_len;
2922 aclent = realloc(aclent, aclsize);
2923 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2924 {
2925 free(aclent);
2926 return NULL;
2927 }
2928 }
2929 else
2930 {
2931 free(aclent);
2932 return NULL;
2933 }
2934 }
2935 ret = (vim_acl_T)aclent;
2936#endif /* HAVE_AIX_ACL */
2937#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002938#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939#endif /* HAVE_POSIX_ACL */
2940 return ret;
2941}
2942
2943/*
2944 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2945 */
2946 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002947mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948{
2949 if (aclent == NULL)
2950 return;
2951#ifdef HAVE_POSIX_ACL
2952 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2953#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002954#ifdef HAVE_SOLARIS_ZFS_ACL
2955 acl_set((char *)fname, (acl_t *)aclent);
2956#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957#ifdef HAVE_SOLARIS_ACL
2958 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2959 ((vim_acl_solaris_T *)aclent)->acl_entry);
2960#else
2961#ifdef HAVE_AIX_ACL
2962 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2963#endif /* HAVE_AIX_ACL */
2964#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002965#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966#endif /* HAVE_POSIX_ACL */
2967}
2968
2969 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002970mch_free_acl(vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971{
2972 if (aclent == NULL)
2973 return;
2974#ifdef HAVE_POSIX_ACL
2975 acl_free((acl_t)aclent);
2976#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002977#ifdef HAVE_SOLARIS_ZFS_ACL
2978 acl_free((acl_t *)aclent);
2979#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980#ifdef HAVE_SOLARIS_ACL
2981 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2982 free(aclent);
2983#else
2984#ifdef HAVE_AIX_ACL
2985 free(aclent);
2986#endif /* HAVE_AIX_ACL */
2987#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002988#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989#endif /* HAVE_POSIX_ACL */
2990}
2991#endif
2992
2993/*
2994 * Set hidden flag for "name".
2995 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002997mch_hide(char_u *name UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998{
2999 /* can't hide a file */
3000}
3001
3002/*
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003003 * return TRUE if "name" is a directory or a symlink to a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003004 * return FALSE if "name" is not a directory
3005 * return FALSE for error
3006 */
3007 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003008mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009{
3010 struct stat statb;
3011
3012 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3013 return FALSE;
3014 if (stat((char *)name, &statb))
3015 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017}
3018
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003019/*
3020 * return TRUE if "name" is a directory, NOT a symlink to a directory
3021 * return FALSE if "name" is not a directory
3022 * return FALSE for error
3023 */
3024 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003025mch_isrealdir(char_u *name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003026{
3027 struct stat statb;
3028
3029 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3030 return FALSE;
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01003031 if (mch_lstat((char *)name, &statb))
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003032 return FALSE;
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003033 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003034}
3035
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036/*
3037 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
3038 */
3039 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003040executable_file(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041{
3042 struct stat st;
3043
3044 if (stat((char *)name, &st))
3045 return 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003046#ifdef VMS
3047 /* Like on Unix system file can have executable rights but not necessarily
3048 * be an executable, but on Unix is not a default for an ordianry file to
3049 * have an executable flag - on VMS it is in most cases.
3050 * Therefore, this check does not have any sense - let keep us to the
3051 * conventions instead:
3052 * *.COM and *.EXE files are the executables - the rest are not. This is
3053 * not ideal but better then it was.
3054 */
3055 int vms_executable = 0;
3056 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0)
3057 {
3058 if (strstr(vms_tolower((char*)name),".exe") != NULL
3059 || strstr(vms_tolower((char*)name),".com")!= NULL)
3060 vms_executable = 1;
3061 }
3062 return vms_executable;
3063#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003065#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066}
3067
3068/*
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01003069 * Return TRUE if "name" can be found in $PATH and executed, FALSE if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +01003070 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071 * Return -1 if unknown.
3072 */
3073 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003074mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075{
3076 char_u *buf;
3077 char_u *p, *e;
3078 int retval;
3079
Bram Moolenaarb5971142015-03-21 17:32:19 +01003080 /* When "use_path" is false and if it's an absolute or relative path don't
3081 * need to use $PATH. */
3082 if (!use_path || mch_isFullName(name) || (name[0] == '.'
3083 && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))))
Bram Moolenaar206f0112014-03-12 16:51:55 +01003084 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01003085 /* There must be a path separator, files in the current directory
3086 * can't be executed. */
3087 if (gettail(name) != name && executable_file(name))
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003088 {
3089 if (path != NULL)
3090 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003091 if (name[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003092 *path = FullName_save(name, TRUE);
3093 else
3094 *path = vim_strsave(name);
3095 }
3096 return TRUE;
3097 }
3098 return FALSE;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003099 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003100
3101 p = (char_u *)getenv("PATH");
3102 if (p == NULL || *p == NUL)
3103 return -1;
3104 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
3105 if (buf == NULL)
3106 return -1;
3107
3108 /*
3109 * Walk through all entries in $PATH to check if "name" exists there and
3110 * is an executable file.
3111 */
3112 for (;;)
3113 {
3114 e = (char_u *)strchr((char *)p, ':');
3115 if (e == NULL)
3116 e = p + STRLEN(p);
3117 if (e - p <= 1) /* empty entry means current dir */
3118 STRCPY(buf, "./");
3119 else
3120 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003121 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 add_pathsep(buf);
3123 }
3124 STRCAT(buf, name);
3125 retval = executable_file(buf);
3126 if (retval == 1)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003127 {
3128 if (path != NULL)
3129 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003130 if (buf[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003131 *path = FullName_save(buf, TRUE);
3132 else
3133 *path = vim_strsave(buf);
3134 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135 break;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003136 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003137
3138 if (*e != ':')
3139 break;
3140 p = e + 1;
3141 }
3142
3143 vim_free(buf);
3144 return retval;
3145}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003146
3147/*
3148 * Check what "name" is:
3149 * NODE_NORMAL: file or directory (or doesn't exist)
3150 * NODE_WRITABLE: writable device, socket, fifo, etc.
3151 * NODE_OTHER: non-writable things
3152 */
3153 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003154mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155{
3156 struct stat st;
3157
3158 if (stat((char *)name, &st))
3159 return NODE_NORMAL;
3160 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
3161 return NODE_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
3163 return NODE_OTHER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 /* Everything else is writable? */
3165 return NODE_WRITABLE;
3166}
3167
3168 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003169mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170{
3171#ifdef HAVE_CHECK_STACK_GROWTH
3172 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174 check_stack_growth((char *)&i);
3175
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003176# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 get_stack_limit();
3178# endif
3179
3180#endif
3181
3182 /*
3183 * Setup an alternative stack for signals. Helps to catch signals when
3184 * running out of stack space.
3185 * Use of sigaltstack() is preferred, it's more portable.
3186 * Ignore any errors.
3187 */
3188#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00003189 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 init_signal_stack();
3191#endif
3192}
3193
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003194#if defined(EXITFREE) || defined(PROTO)
3195 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003196mch_free_mem(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003197{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003198# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
3199 if (clip_star.owned)
3200 clip_lose_selection(&clip_star);
3201 if (clip_plus.owned)
3202 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003203# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00003204# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003205 if (xterm_Shell != (Widget)0)
3206 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00003207# ifndef LESSTIF_VERSION
3208 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003209 if (xterm_dpy != NULL)
3210 XtCloseDisplay(xterm_dpy);
3211 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00003212 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003213 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00003214# ifdef FEAT_X11
3215 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
3216# endif
3217 }
3218# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003219# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003220# if defined(FEAT_X11)
Bram Moolenaare8208012008-06-20 09:59:25 +00003221 if (x11_display != NULL
3222# ifdef FEAT_XCLIPBOARD
3223 && x11_display != xterm_dpy
3224# endif
3225 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003226 XCloseDisplay(x11_display);
3227# endif
3228# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaard23a8232018-02-10 18:45:26 +01003229 VIM_CLEAR(signal_stack);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003230# endif
3231# ifdef FEAT_TITLE
3232 vim_free(oldtitle);
3233 vim_free(oldicon);
3234# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003235}
3236#endif
3237
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238/*
3239 * Output a newline when exiting.
3240 * Make sure the newline goes to the same stream as the text.
3241 */
3242 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003243exit_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003244{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003245 if (silent_mode)
3246 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 if (newline_on_exit || msg_didout)
3248 {
3249 if (msg_use_printf())
3250 {
3251 if (info_message)
3252 mch_msg("\n");
3253 else
3254 mch_errmsg("\r\n");
3255 }
3256 else
3257 out_char('\n');
3258 }
3259 else
3260 {
3261 restore_cterm_colors(); /* get original colors back */
3262 msg_clr_eos_force(); /* clear the rest of the display */
3263 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3264 }
3265}
3266
3267 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003268mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269{
3270 exiting = TRUE;
3271
3272#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3273 x11_export_final_selection();
3274#endif
3275
3276#ifdef FEAT_GUI
3277 if (!gui.in_use)
3278#endif
3279 {
3280 settmode(TMODE_COOK);
3281#ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02003282 // restore xterm title and icon name
3283 mch_restore_title(SAVE_RESTORE_BOTH);
3284 term_pop_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285#endif
3286 /*
3287 * When t_ti is not empty but it doesn't cause swapping terminal
3288 * pages, need to output a newline when msg_didout is set. But when
3289 * t_ti does swap pages it should not go to the shell page. Do this
3290 * before stoptermcap().
3291 */
3292 if (swapping_screen() && !newline_on_exit)
3293 exit_scroll();
3294
3295 /* Stop termcap: May need to check for T_CRV response, which
3296 * requires RAW mode. */
3297 stoptermcap();
3298
3299 /*
3300 * A newline is only required after a message in the alternate screen.
3301 * This is set to TRUE by wait_return().
3302 */
3303 if (!swapping_screen() || newline_on_exit)
3304 exit_scroll();
3305
3306 /* Cursor may have been switched off without calling starttermcap()
3307 * when doing "vim -u vimrc" and vimrc contains ":q". */
3308 if (full_screen)
3309 cursor_on();
3310 }
3311 out_flush();
3312 ml_close_all(TRUE); /* remove all memfiles */
3313 may_core_dump();
3314#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003316 gui_exit(r);
3317#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003318
Bram Moolenaar56718732006-03-15 22:53:57 +00003319#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003320 mac_conv_cleanup();
3321#endif
3322
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323#ifdef __QNX__
3324 /* A core dump won't be created if the signal handler
3325 * doesn't return, so we can't call exit() */
3326 if (deadly_signal != 0)
3327 return;
3328#endif
3329
Bram Moolenaar009b2592004-10-24 19:18:58 +00003330#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003331 netbeans_send_disconnect();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003332#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003333
3334#ifdef EXITFREE
3335 free_all_mem();
3336#endif
3337
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 exit(r);
3339}
3340
3341 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003342may_core_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003343{
3344 if (deadly_signal != 0)
3345 {
3346 signal(deadly_signal, SIG_DFL);
3347 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3348 }
3349}
3350
3351#ifndef VMS
3352
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003353/*
3354 * Get the file descriptor to use for tty operations.
3355 */
3356 static int
3357get_tty_fd(int fd)
3358{
3359 int tty_fd = fd;
3360
3361#if defined(HAVE_SVR4_PTYS) && defined(SUN_SYSTEM)
3362 // On SunOS: Get the terminal parameters from "fd", or the slave device of
3363 // "fd" when it is a master device.
3364 if (mch_isatty(fd) > 1)
3365 {
3366 char *name;
3367
3368 name = ptsname(fd);
3369 if (name == NULL)
3370 return -1;
3371
3372 tty_fd = open(name, O_RDONLY | O_NOCTTY | O_EXTRA, 0);
3373 if (tty_fd < 0)
3374 return -1;
3375 }
3376#endif
3377 return tty_fd;
3378}
3379
3380 static int
3381mch_tcgetattr(int fd, void *term)
3382{
3383 int tty_fd;
3384 int retval = -1;
3385
3386 tty_fd = get_tty_fd(fd);
3387 if (tty_fd >= 0)
3388 {
3389#ifdef NEW_TTY_SYSTEM
3390# ifdef HAVE_TERMIOS_H
3391 retval = tcgetattr(tty_fd, (struct termios *)term);
3392# else
3393 retval = ioctl(tty_fd, TCGETA, (struct termio *)term);
3394# endif
3395#else
3396 // for "old" tty systems
3397 retval = ioctl(tty_fd, TIOCGETP, (struct sgttyb *)term);
3398#endif
3399 if (tty_fd != fd)
3400 close(tty_fd);
3401 }
3402 return retval;
3403}
3404
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003406mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003407{
3408 static int first = TRUE;
3409
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003410#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003411# ifdef HAVE_TERMIOS_H
3412 static struct termios told;
3413 struct termios tnew;
3414# else
3415 static struct termio told;
3416 struct termio tnew;
3417# endif
3418
3419 if (first)
3420 {
3421 first = FALSE;
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003422 mch_tcgetattr(read_cmd_fd, &told);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 }
3424
3425 tnew = told;
3426 if (tmode == TMODE_RAW)
3427 {
3428 /*
3429 * ~ICRNL enables typing ^V^M
3430 */
3431 tnew.c_iflag &= ~ICRNL;
3432 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3433# if defined(IEXTEN) && !defined(__MINT__)
3434 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3435 /* but it breaks function keys on MINT */
3436# endif
3437 );
3438# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3439 tnew.c_oflag &= ~ONLCR;
3440# endif
3441 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3442 tnew.c_cc[VTIME] = 0; /* don't wait */
3443 }
3444 else if (tmode == TMODE_SLEEP)
Bram Moolenaar40de4562016-07-01 15:03:46 +02003445 {
3446 /* Also reset ICANON here, otherwise on Solaris select() won't see
3447 * typeahead characters. */
3448 tnew.c_lflag &= ~(ICANON | ECHO);
3449 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3450 tnew.c_cc[VTIME] = 0; /* don't wait */
3451 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452
3453# if defined(HAVE_TERMIOS_H)
3454 {
3455 int n = 10;
3456
3457 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3458 * few times. */
3459 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3460 && errno == EINTR && n > 0)
3461 --n;
3462 }
3463# else
3464 ioctl(read_cmd_fd, TCSETA, &tnew);
3465# endif
3466
3467#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 /*
3469 * for "old" tty systems
3470 */
3471# ifndef TIOCSETN
3472# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3473# endif
3474 static struct sgttyb ttybold;
3475 struct sgttyb ttybnew;
3476
3477 if (first)
3478 {
3479 first = FALSE;
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003480 mch_tcgetattr(read_cmd_fd, &ttybold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003481 }
3482
3483 ttybnew = ttybold;
3484 if (tmode == TMODE_RAW)
3485 {
3486 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3487 ttybnew.sg_flags |= RAW;
3488 }
3489 else if (tmode == TMODE_SLEEP)
3490 ttybnew.sg_flags &= ~(ECHO);
3491 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3492#endif
3493 curr_tmode = tmode;
3494}
3495
3496/*
3497 * Try to get the code for "t_kb" from the stty setting
3498 *
3499 * Even if termcap claims a backspace key, the user's setting *should*
3500 * prevail. stty knows more about reality than termcap does, and if
3501 * somebody's usual erase key is DEL (which, for most BSD users, it will
3502 * be), they're going to get really annoyed if their erase key starts
3503 * doing forward deletes for no reason. (Eric Fischer)
3504 */
3505 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003506get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003507{
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003508 ttyinfo_T info;
3509 char_u buf[2];
3510 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003511
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003512 if (get_tty_info(read_cmd_fd, &info) == OK)
3513 {
3514 intr_char = info.interrupt;
3515 buf[0] = info.backspace;
3516 buf[1] = NUL;
3517 add_termcode((char_u *)"kb", buf, FALSE);
3518
3519 /* If <BS> and <DEL> are now the same, redefine <DEL>. */
3520 p = find_termcode((char_u *)"kD");
3521 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3522 do_fixdel(NULL);
3523 }
3524}
3525
3526/*
3527 * Obtain the characters that Backspace and Enter produce on "fd".
3528 * Returns OK or FAIL.
3529 */
3530 int
3531get_tty_info(int fd, ttyinfo_T *info)
3532{
3533#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003534# ifdef HAVE_TERMIOS_H
3535 struct termios keys;
3536# else
3537 struct termio keys;
3538# endif
3539
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003540 if (mch_tcgetattr(fd, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003541 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003542 info->backspace = keys.c_cc[VERASE];
3543 info->interrupt = keys.c_cc[VINTR];
3544 if (keys.c_iflag & ICRNL)
3545 info->enter = NL;
3546 else
3547 info->enter = CAR;
3548 if (keys.c_oflag & ONLCR)
3549 info->nl_does_cr = TRUE;
3550 else
3551 info->nl_does_cr = FALSE;
3552 return OK;
3553 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003554#else
3555 /* for "old" tty systems */
3556 struct sgttyb keys;
3557
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003558 if (mch_tcgetattr(fd, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003560 info->backspace = keys.sg_erase;
3561 info->interrupt = keys.sg_kill;
3562 info->enter = CAR;
3563 info->nl_does_cr = TRUE;
3564 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003566#endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003567 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568}
3569
3570#endif /* VMS */
3571
3572#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003573static int mouse_ison = FALSE;
3574
Bram Moolenaar071d4272004-06-13 20:20:40 +00003575/*
3576 * Set mouse clicks on or off.
3577 */
3578 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003579mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003580{
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003581# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003582 static int bevalterm_ison = FALSE;
3583# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 int xterm_mouse_vers;
3585
Bram Moolenaara06afc72018-08-27 23:24:16 +02003586# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
3587 if (!on)
3588 // Make sure not tracing mouse movements. Important when a button-down
3589 // was received but no release yet.
3590 stop_xterm_trace();
3591# endif
3592
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003593 if (on == mouse_ison
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003594# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003595 && p_bevalterm == bevalterm_ison
3596# endif
3597 )
3598 /* return quickly if nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 return;
3600
3601 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003602
3603# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003604 if (ttym_flags == TTYM_URXVT)
3605 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003606 out_str_nf((char_u *)
3607 (on
3608 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3609 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003610 mouse_ison = on;
Bram Moolenaarc8427482011-10-20 21:09:35 +02003611 }
3612# endif
3613
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003614 if (ttym_flags == TTYM_SGR)
3615 {
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003616 /* SGR mode supports columns above 223 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003617 out_str_nf((char_u *)
3618 (on
3619 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3620 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003621 mouse_ison = on;
3622 }
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003623
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003624# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003625 if (bevalterm_ison != (p_bevalterm && on))
3626 {
3627 bevalterm_ison = (p_bevalterm && on);
3628 if (xterm_mouse_vers > 1 && !bevalterm_ison)
3629 /* disable mouse movement events, enabling is below */
3630 out_str_nf((char_u *)
3631 (IF_EB("\033[?1003l", ESC_STR "[?1003l")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003632 }
3633# endif
3634
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 if (xterm_mouse_vers > 0)
3636 {
3637 if (on) /* enable mouse events, use mouse tracking if available */
3638 out_str_nf((char_u *)
3639 (xterm_mouse_vers > 1
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003640 ? (
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003641# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003642 bevalterm_ison
3643 ? IF_EB("\033[?1003h", ESC_STR "[?1003h") :
3644# endif
3645 IF_EB("\033[?1002h", ESC_STR "[?1002h"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3647 else /* disable mouse events, could probably always send the same */
3648 out_str_nf((char_u *)
3649 (xterm_mouse_vers > 1
3650 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3651 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003652 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 }
3654
3655# ifdef FEAT_MOUSE_DEC
3656 else if (ttym_flags == TTYM_DEC)
3657 {
3658 if (on) /* enable mouse events */
3659 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3660 else /* disable mouse events */
3661 out_str_nf((char_u *)"\033['z");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003662 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 }
3664# endif
3665
3666# ifdef FEAT_MOUSE_GPM
3667 else
3668 {
3669 if (on)
3670 {
3671 if (gpm_open())
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003672 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 }
3674 else
3675 {
3676 gpm_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003677 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 }
3679 }
3680# endif
3681
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003682# ifdef FEAT_SYSMOUSE
3683 else
3684 {
3685 if (on)
3686 {
3687 if (sysmouse_open() == OK)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003688 mouse_ison = TRUE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003689 }
3690 else
3691 {
3692 sysmouse_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003693 mouse_ison = FALSE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003694 }
3695 }
3696# endif
3697
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698# ifdef FEAT_MOUSE_JSB
3699 else
3700 {
3701 if (on)
3702 {
3703 /* D - Enable Mouse up/down messages
3704 * L - Enable Left Button Reporting
3705 * M - Enable Middle Button Reporting
3706 * R - Enable Right Button Reporting
3707 * K - Enable SHIFT and CTRL key Reporting
3708 * + - Enable Advanced messaging of mouse moves and up/down messages
3709 * Q - Quiet No Ack
3710 * # - Numeric value of mouse pointer required
3711 * 0 = Multiview 2000 cursor, used as standard
3712 * 1 = Windows Arrow
3713 * 2 = Windows I Beam
3714 * 3 = Windows Hour Glass
3715 * 4 = Windows Cross Hair
3716 * 5 = Windows UP Arrow
3717 */
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003718# ifdef JSBTERM_MOUSE_NONADVANCED
3719 /* Disables full feedback of pointer movements */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3721 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003722# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3724 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003725# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003726 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003727 }
3728 else
3729 {
3730 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3731 ESC_STR "[0~ZwQ" ESC_STR "\\"));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003732 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003733 }
3734 }
3735# endif
3736# ifdef FEAT_MOUSE_PTERM
3737 else
3738 {
3739 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3740 if (on)
3741 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3742 else
3743 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003744 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003745 }
3746# endif
3747}
3748
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003749#if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003750/*
3751 * Called when 'balloonevalterm' changed.
3752 */
3753 void
3754mch_bevalterm_changed(void)
3755{
3756 mch_setmouse(mouse_ison);
3757}
3758#endif
3759
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760/*
3761 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3762 */
3763 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003764check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003765{
3766# ifdef FEAT_MOUSE_XTERM
3767 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003768# ifdef FEAT_MOUSE_URXVT
3769 && use_xterm_mouse() != 3
3770# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771# ifdef FEAT_GUI
3772 && !gui.in_use
3773# endif
3774 )
3775 {
3776 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003777 ? IF_EB("\233M", CSI_STR "M")
3778 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003779 if (*p_mouse != NUL)
3780 {
3781 /* force mouse off and maybe on to send possibly new mouse
3782 * activation sequence to the xterm, with(out) drag tracing. */
3783 mch_setmouse(FALSE);
3784 setmouse();
3785 }
3786 }
3787 else
3788 del_mouse_termcode(KS_MOUSE);
3789# endif
3790
3791# ifdef FEAT_MOUSE_GPM
3792 if (!use_xterm_mouse()
3793# ifdef FEAT_GUI
3794 && !gui.in_use
3795# endif
3796 )
3797 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3798# endif
3799
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003800# ifdef FEAT_SYSMOUSE
3801 if (!use_xterm_mouse()
3802# ifdef FEAT_GUI
3803 && !gui.in_use
3804# endif
3805 )
3806 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3807# endif
3808
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809# ifdef FEAT_MOUSE_JSB
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003810 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 if (!use_xterm_mouse()
3812# ifdef FEAT_GUI
3813 && !gui.in_use
3814# endif
3815 )
3816 set_mouse_termcode(KS_JSBTERM_MOUSE,
3817 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3818 else
3819 del_mouse_termcode(KS_JSBTERM_MOUSE);
3820# endif
3821
3822# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003823 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 * define it in the GUI or when using an xterm. */
3825 if (!use_xterm_mouse()
3826# ifdef FEAT_GUI
3827 && !gui.in_use
3828# endif
3829 )
3830 set_mouse_termcode(KS_NETTERM_MOUSE,
3831 (char_u *)IF_EB("\033}", ESC_STR "}"));
3832 else
3833 del_mouse_termcode(KS_NETTERM_MOUSE);
3834# endif
3835
3836# ifdef FEAT_MOUSE_DEC
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003837 /* Conflicts with xterm mouse: "\033[" and "\033[M" */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003838 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003839# ifdef FEAT_GUI
3840 && !gui.in_use
3841# endif
3842 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003843 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3844 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 else
3846 del_mouse_termcode(KS_DEC_MOUSE);
3847# endif
3848# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003849 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003850 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851# ifdef FEAT_GUI
3852 && !gui.in_use
3853# endif
3854 )
3855 set_mouse_termcode(KS_PTERM_MOUSE,
3856 (char_u *) IF_EB("\033[", ESC_STR "["));
3857 else
3858 del_mouse_termcode(KS_PTERM_MOUSE);
3859# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003860# ifdef FEAT_MOUSE_URXVT
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003861 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003862# ifdef FEAT_GUI
3863 && !gui.in_use
3864# endif
3865 )
3866 {
3867 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003868 ? IF_EB("\233*M", CSI_STR "*M")
3869 : IF_EB("\033[*M", ESC_STR "[*M")));
Bram Moolenaarc8427482011-10-20 21:09:35 +02003870
3871 if (*p_mouse != NUL)
3872 {
3873 mch_setmouse(FALSE);
3874 setmouse();
3875 }
3876 }
3877 else
3878 del_mouse_termcode(KS_URXVT_MOUSE);
3879# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003880 if (use_xterm_mouse() == 4
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01003881# ifdef FEAT_GUI
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003882 && !gui.in_use
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01003883# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003884 )
3885 {
3886 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003887 ? IF_EB("\233<*M", CSI_STR "<*M")
3888 : IF_EB("\033[<*M", ESC_STR "[<*M")));
3889
3890 set_mouse_termcode(KS_SGR_MOUSE_RELEASE, (char_u *)(term_is_8bit(T_NAME)
3891 ? IF_EB("\233<*m", CSI_STR "<*m")
3892 : IF_EB("\033[<*m", ESC_STR "[<*m")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003893
3894 if (*p_mouse != NUL)
3895 {
3896 mch_setmouse(FALSE);
3897 setmouse();
3898 }
3899 }
3900 else
Bram Moolenaara529ce02017-06-22 22:37:57 +02003901 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003902 del_mouse_termcode(KS_SGR_MOUSE);
Bram Moolenaara529ce02017-06-22 22:37:57 +02003903 del_mouse_termcode(KS_SGR_MOUSE_RELEASE);
3904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905}
3906#endif
3907
3908/*
3909 * set screen mode, always fails.
3910 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003912mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003914 emsg(_(e_screenmode));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003915 return FAIL;
3916}
3917
3918#ifndef VMS
3919
3920/*
3921 * Try to get the current window size:
3922 * 1. with an ioctl(), most accurate method
3923 * 2. from the environment variables LINES and COLUMNS
3924 * 3. from the termcap
3925 * 4. keep using the old values
3926 * Return OK when size could be determined, FAIL otherwise.
3927 */
3928 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003929mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930{
3931 long rows = 0;
3932 long columns = 0;
3933 char_u *p;
3934
3935 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003936 * 1. try using an ioctl. It is the most accurate method.
3937 *
3938 * Try using TIOCGWINSZ first, some systems that have it also define
3939 * TIOCGSIZE but don't have a struct ttysize.
3940 */
3941# ifdef TIOCGWINSZ
3942 {
3943 struct winsize ws;
3944 int fd = 1;
3945
3946 /* When stdout is not a tty, use stdin for the ioctl(). */
3947 if (!isatty(fd) && isatty(read_cmd_fd))
3948 fd = read_cmd_fd;
3949 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3950 {
3951 columns = ws.ws_col;
3952 rows = ws.ws_row;
3953 }
3954 }
3955# else /* TIOCGWINSZ */
3956# ifdef TIOCGSIZE
3957 {
3958 struct ttysize ts;
3959 int fd = 1;
3960
3961 /* When stdout is not a tty, use stdin for the ioctl(). */
3962 if (!isatty(fd) && isatty(read_cmd_fd))
3963 fd = read_cmd_fd;
3964 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3965 {
3966 columns = ts.ts_cols;
3967 rows = ts.ts_lines;
3968 }
3969 }
3970# endif /* TIOCGSIZE */
3971# endif /* TIOCGWINSZ */
3972
3973 /*
3974 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003975 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3976 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003978 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979 {
3980 if ((p = (char_u *)getenv("LINES")))
3981 rows = atoi((char *)p);
3982 if ((p = (char_u *)getenv("COLUMNS")))
3983 columns = atoi((char *)p);
3984 }
3985
3986#ifdef HAVE_TGETENT
3987 /*
3988 * 3. try reading "co" and "li" entries from termcap
3989 */
3990 if (columns == 0 || rows == 0)
3991 getlinecol(&columns, &rows);
3992#endif
3993
3994 /*
3995 * 4. If everything fails, use the old values
3996 */
3997 if (columns <= 0 || rows <= 0)
3998 return FAIL;
3999
4000 Rows = rows;
4001 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02004002 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 return OK;
4004}
4005
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004006#if defined(FEAT_TERMINAL) || defined(PROTO)
4007/*
4008 * Report the windows size "rows" and "cols" to tty "fd".
4009 */
4010 int
4011mch_report_winsize(int fd, int rows, int cols)
4012{
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004013 int tty_fd;
4014 int retval = -1;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004015
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004016 tty_fd = get_tty_fd(fd);
4017 if (tty_fd >= 0)
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004018 {
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004019# if defined(TIOCSWINSZ)
4020 struct winsize ws;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004021
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004022 ws.ws_col = cols;
4023 ws.ws_row = rows;
4024 ws.ws_xpixel = cols * 5;
4025 ws.ws_ypixel = rows * 10;
4026 retval = ioctl(tty_fd, TIOCSWINSZ, &ws);
4027 ch_log(NULL, "ioctl(TIOCSWINSZ) %s",
4028 retval == 0 ? "success" : "failed");
4029# elif defined(TIOCSSIZE)
4030 struct ttysize ts;
4031
4032 ts.ts_cols = cols;
4033 ts.ts_lines = rows;
4034 retval = ioctl(tty_fd, TIOCSSIZE, &ts);
4035 ch_log(NULL, "ioctl(TIOCSSIZE) %s",
4036 retval == 0 ? "success" : "failed");
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004037# endif
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004038 if (tty_fd != fd)
4039 close(tty_fd);
4040 }
4041 return retval == 0 ? OK : FAIL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004042}
4043#endif
4044
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045/*
4046 * Try to set the window size to Rows and Columns.
4047 */
4048 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004049mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050{
4051 if (*T_CWS)
4052 {
4053 /*
4054 * NOTE: if you get an error here that term_set_winsize() is
4055 * undefined, check the output of configure. It could probably not
4056 * find a ncurses, termcap or termlib library.
4057 */
4058 term_set_winsize((int)Rows, (int)Columns);
4059 out_flush();
4060 screen_start(); /* don't know where cursor is now */
4061 }
4062}
4063
4064#endif /* VMS */
4065
4066/*
4067 * Rows and/or Columns has changed.
4068 */
4069 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004070mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071{
4072 /* Nothing to do. */
4073}
4074
Bram Moolenaar205b8862011-09-07 15:04:31 +02004075/*
4076 * Wait for process "child" to end.
4077 * Return "child" if it exited properly, <= 0 on error.
4078 */
4079 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01004080wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02004081{
4082 pid_t wait_pid = 0;
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004083 long delay_msec = 1;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004084
4085 while (wait_pid != child)
4086 {
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004087 /* When compiled with Python threads are probably used, in which case
4088 * wait() sometimes hangs for no obvious reason. Use waitpid()
4089 * instead and loop (like the GUI). Also needed for other interfaces,
4090 * they might call system(). */
4091# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004092 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004093# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02004094 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004095# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02004096 if (wait_pid == 0)
4097 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004098 /* Wait for 1 to 10 msec before trying again. */
4099 mch_delay(delay_msec, TRUE);
4100 if (++delay_msec > 10)
4101 delay_msec = 10;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004102 continue;
4103 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004104 if (wait_pid <= 0
4105# ifdef ECHILD
4106 && errno == ECHILD
4107# endif
4108 )
4109 break;
4110 }
4111 return wait_pid;
4112}
4113
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004114#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar7da34602017-08-01 17:14:21 +02004115/*
4116 * Set the environment for a child process.
4117 */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004118 static void
Bram Moolenaar493359e2018-06-12 20:25:52 +02004119set_child_environment(
4120 long rows,
4121 long columns,
4122 char *term,
4123 int is_terminal UNUSED)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004124{
4125# ifdef HAVE_SETENV
4126 char envbuf[50];
4127# else
Bram Moolenaar5f7e7bd2017-07-22 14:08:43 +02004128 static char envbuf_Term[30];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004129 static char envbuf_Rows[20];
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004130 static char envbuf_Lines[20];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004131 static char envbuf_Columns[20];
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004132 static char envbuf_Colors[20];
Bram Moolenaar493359e2018-06-12 20:25:52 +02004133# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02004134 static char envbuf_Version[20];
Bram Moolenaar493359e2018-06-12 20:25:52 +02004135# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004136# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004137 static char envbuf_Servername[60];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004138# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004139# endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004140 long colors =
4141# ifdef FEAT_GUI
4142 gui.in_use ? 256*256*256 :
4143# endif
4144 t_colors;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004145
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004146# ifdef HAVE_SETENV
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004147 setenv("TERM", term, 1);
4148 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004149 setenv("ROWS", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004150 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004151 setenv("LINES", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004152 sprintf((char *)envbuf, "%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004153 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004154 sprintf((char *)envbuf, "%ld", colors);
4155 setenv("COLORS", (char *)envbuf, 1);
Bram Moolenaar493359e2018-06-12 20:25:52 +02004156# ifdef FEAT_TERMINAL
4157 if (is_terminal)
4158 {
Bram Moolenaar5ecdf962018-06-13 20:49:50 +02004159 sprintf((char *)envbuf, "%ld", (long)get_vim_var_nr(VV_VERSION));
Bram Moolenaar493359e2018-06-12 20:25:52 +02004160 setenv("VIM_TERMINAL", (char *)envbuf, 1);
4161 }
4162# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004163# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004164 setenv("VIM_SERVERNAME", serverName == NULL ? "" : (char *)serverName, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004165# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004166# else
4167 /*
4168 * Putenv does not copy the string, it has to remain valid.
4169 * Use a static array to avoid losing allocated memory.
Bram Moolenaar7da34602017-08-01 17:14:21 +02004170 * This won't work well when running multiple children...
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004171 */
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004172 vim_snprintf(envbuf_Term, sizeof(envbuf_Term), "TERM=%s", term);
4173 putenv(envbuf_Term);
4174 vim_snprintf(envbuf_Rows, sizeof(envbuf_Rows), "ROWS=%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004175 putenv(envbuf_Rows);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004176 vim_snprintf(envbuf_Lines, sizeof(envbuf_Lines), "LINES=%ld", rows);
4177 putenv(envbuf_Lines);
4178 vim_snprintf(envbuf_Columns, sizeof(envbuf_Columns),
4179 "COLUMNS=%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004180 putenv(envbuf_Columns);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004181 vim_snprintf(envbuf_Colors, sizeof(envbuf_Colors), "COLORS=%ld", colors);
4182 putenv(envbuf_Colors);
Bram Moolenaar493359e2018-06-12 20:25:52 +02004183# ifdef FEAT_TERMINAL
4184 if (is_terminal)
4185 {
4186 vim_snprintf(envbuf_Version, sizeof(envbuf_Version),
Bram Moolenaar5ecdf962018-06-13 20:49:50 +02004187 "VIM_TERMINAL=%ld", (long)get_vim_var_nr(VV_VERSION));
Bram Moolenaar493359e2018-06-12 20:25:52 +02004188 putenv(envbuf_Version);
4189 }
4190# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004191# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004192 vim_snprintf(envbuf_Servername, sizeof(envbuf_Servername),
4193 "VIM_SERVERNAME=%s", serverName == NULL ? "" : (char *)serverName);
4194 putenv(envbuf_Servername);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004195# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004196# endif
4197}
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004198
4199 static void
Bram Moolenaar493359e2018-06-12 20:25:52 +02004200set_default_child_environment(int is_terminal)
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004201{
Bram Moolenaar493359e2018-06-12 20:25:52 +02004202 set_child_environment(Rows, Columns, "dumb", is_terminal);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004203}
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004204#endif
4205
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004206#if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004207/*
4208 * Open a PTY, with FD for the master and slave side.
4209 * When failing "pty_master_fd" and "pty_slave_fd" are -1.
Bram Moolenaar59386482019-02-10 22:43:46 +01004210 * When successful both file descriptors are stored and the allocated pty name
4211 * is stored in both "*name1" and "*name2".
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004212 */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004213 static void
Bram Moolenaar59386482019-02-10 22:43:46 +01004214open_pty(int *pty_master_fd, int *pty_slave_fd, char_u **name1, char_u **name2)
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004215{
4216 char *tty_name;
4217
Bram Moolenaar59386482019-02-10 22:43:46 +01004218 if (name1 != NULL)
4219 *name1 = NULL;
4220 if (name2 != NULL)
4221 *name2 = NULL;
4222
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004223 *pty_master_fd = mch_openpty(&tty_name); // open pty
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004224 if (*pty_master_fd >= 0)
4225 {
4226 /* Leaving out O_NOCTTY may lead to waitpid() always returning
4227 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4228 * adding O_NOCTTY always works when defined. */
4229#ifdef O_NOCTTY
4230 *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4231#else
4232 *pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4233#endif
4234 if (*pty_slave_fd < 0)
4235 {
4236 close(*pty_master_fd);
4237 *pty_master_fd = -1;
4238 }
Bram Moolenaar59386482019-02-10 22:43:46 +01004239 else
4240 {
4241 if (name1 != NULL)
4242 *name1 = vim_strsave((char_u *)tty_name);
4243 if (name2 != NULL)
4244 *name2 = vim_strsave((char_u *)tty_name);
4245 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004246 }
4247}
4248#endif
4249
Bram Moolenaarfae42832017-08-01 22:24:26 +02004250/*
4251 * Send SIGINT to a child process if "c" is an interrupt character.
4252 */
4253 void
4254may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED)
4255{
4256# ifdef SIGINT
4257 if (c == Ctrl_C || c == intr_char)
4258 {
4259# ifdef HAVE_SETSID
4260 kill(-pid, SIGINT);
4261# else
4262 kill(0, SIGINT);
4263# endif
4264 if (wpid > 0)
4265 kill(wpid, SIGINT);
4266 }
4267# endif
4268}
4269
Bram Moolenaar13568252018-03-16 20:46:58 +01004270#if !defined(USE_SYSTEM) || (defined(FEAT_GUI) && defined(FEAT_TERMINAL))
4271
4272 static int
4273build_argv(
4274 char_u *cmd,
4275 char ***argvp,
4276 char_u **sh_tofree,
4277 char_u **shcf_tofree)
4278{
4279 char **argv = NULL;
4280 int argc;
4281
4282 *sh_tofree = vim_strsave(p_sh);
4283 if (*sh_tofree == NULL) /* out of memory */
4284 return FAIL;
4285
4286 if (mch_parse_cmd(*sh_tofree, TRUE, &argv, &argc) == FAIL)
4287 return FAIL;
4288 *argvp = argv;
4289
4290 if (cmd != NULL)
4291 {
4292 char_u *s;
4293 char_u *p;
4294
4295 if (extra_shell_arg != NULL)
4296 argv[argc++] = (char *)extra_shell_arg;
4297
4298 /* Break 'shellcmdflag' into white separated parts. This doesn't
4299 * handle quoted strings, they are very unlikely to appear. */
4300 *shcf_tofree = alloc((unsigned)STRLEN(p_shcf) + 1);
4301 if (*shcf_tofree == NULL) /* out of memory */
4302 return FAIL;
4303 s = *shcf_tofree;
4304 p = p_shcf;
4305 while (*p != NUL)
4306 {
4307 argv[argc++] = (char *)s;
4308 while (*p && *p != ' ' && *p != TAB)
4309 *s++ = *p++;
4310 *s++ = NUL;
4311 p = skipwhite(p);
4312 }
4313
4314 argv[argc++] = (char *)cmd;
4315 }
4316 argv[argc] = NULL;
4317 return OK;
4318}
4319#endif
4320
4321#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4322/*
4323 * Use a terminal window to run a shell command in.
4324 */
4325 static int
4326mch_call_shell_terminal(
4327 char_u *cmd,
4328 int options UNUSED) /* SHELL_*, see vim.h */
4329{
4330 jobopt_T opt;
4331 char **argv = NULL;
4332 char_u *tofree1 = NULL;
4333 char_u *tofree2 = NULL;
4334 int retval = -1;
4335 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004336 job_T *job;
Bram Moolenaar13568252018-03-16 20:46:58 +01004337 aco_save_T aco;
4338 oparg_T oa; /* operator arguments */
4339
4340 if (build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
4341 goto theend;
4342
4343 init_job_options(&opt);
4344 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4345 buf = term_start(NULL, argv, &opt, TERM_START_SYSTEM);
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004346 if (buf == NULL)
4347 goto theend;
4348
4349 job = term_getjob(buf->b_term);
4350 ++job->jv_refcount;
Bram Moolenaar13568252018-03-16 20:46:58 +01004351
4352 /* Find a window to make "buf" curbuf. */
4353 aucmd_prepbuf(&aco, buf);
4354
4355 clear_oparg(&oa);
4356 while (term_use_loop())
4357 {
4358 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4359 {
4360 /* If terminal_loop() returns OK we got a key that is handled
4361 * in Normal model. We don't do redrawing anyway. */
4362 if (terminal_loop(TRUE) == OK)
4363 normal_cmd(&oa, TRUE);
4364 }
4365 else
4366 normal_cmd(&oa, TRUE);
4367 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004368 retval = job->jv_exitval;
Bram Moolenaar13568252018-03-16 20:46:58 +01004369 ch_log(NULL, "system command finished");
4370
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004371 job_unref(job);
4372
Bram Moolenaar13568252018-03-16 20:46:58 +01004373 /* restore curwin/curbuf and a few other things */
4374 aucmd_restbuf(&aco);
4375
4376 wait_return(TRUE);
4377 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4378
4379theend:
4380 vim_free(argv);
4381 vim_free(tofree1);
4382 vim_free(tofree2);
4383 return retval;
4384}
4385#endif
4386
4387#ifdef USE_SYSTEM
4388/*
4389 * Use system() to start the shell: simple but slow.
4390 */
4391 static int
4392mch_call_shell_system(
Bram Moolenaar05540972016-01-30 20:31:25 +01004393 char_u *cmd,
4394 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004395{
4396#ifdef VMS
4397 char *ifn = NULL;
4398 char *ofn = NULL;
4399#endif
4400 int tmode = cur_tmode;
Bram Moolenaarb2b050a2016-07-16 21:52:46 +02004401 char_u *newcmd; /* only needed for unix */
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01004402 int x;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403
4404 out_flush();
4405
4406 if (options & SHELL_COOKED)
4407 settmode(TMODE_COOK); /* set to normal mode */
4408
Bram Moolenaar62b42182010-09-21 22:09:37 +02004409# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004410 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004411 loose_clipboard();
4412# endif
4413
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 if (cmd == NULL)
4415 x = system((char *)p_sh);
4416 else
4417 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004418# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419 if (ofn = strchr((char *)cmd, '>'))
4420 *ofn++ = '\0';
4421 if (ifn = strchr((char *)cmd, '<'))
4422 {
4423 char *p;
4424
4425 *ifn++ = '\0';
4426 p = strchr(ifn,' '); /* chop off any trailing spaces */
4427 if (p)
4428 *p = '\0';
4429 }
4430 if (ofn)
4431 x = vms_sys((char *)cmd, ofn, ifn);
4432 else
4433 x = system((char *)cmd);
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004434# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 newcmd = lalloc(STRLEN(p_sh)
4436 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
4437 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
4438 if (newcmd == NULL)
4439 x = 0;
4440 else
4441 {
4442 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4443 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4444 (char *)p_shcf,
4445 (char *)cmd);
4446 x = system((char *)newcmd);
4447 vim_free(newcmd);
4448 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004449# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 }
4451# ifdef VMS
4452 x = vms_sys_status(x);
4453# endif
4454 if (emsg_silent)
4455 ;
4456 else if (x == 127)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004457 msg_puts(_("\nCannot execute shell sh\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 else if (x && !(options & SHELL_SILENT))
4459 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004460 msg_puts(_("\nshell returned "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 msg_outnum((long)x);
4462 msg_putchar('\n');
4463 }
4464
4465 if (tmode == TMODE_RAW)
4466 settmode(TMODE_RAW); /* set to raw mode */
4467# ifdef FEAT_TITLE
4468 resettitle();
4469# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004470# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4471 restore_clipboard();
4472# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 return x;
Bram Moolenaar13568252018-03-16 20:46:58 +01004474}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475
Bram Moolenaar13568252018-03-16 20:46:58 +01004476#else /* USE_SYSTEM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477
Bram Moolenaardf177f62005-02-22 08:39:57 +00004478# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
4479 127, some shells use that already */
Bram Moolenaarb109bb42017-08-21 21:07:29 +02004480# define OPEN_NULL_FAILED 123 /* Exit code if /dev/null can't be opened */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481
Bram Moolenaar13568252018-03-16 20:46:58 +01004482/*
4483 * Don't use system(), use fork()/exec().
4484 */
4485 static int
4486mch_call_shell_fork(
4487 char_u *cmd,
4488 int options) /* SHELL_*, see vim.h */
4489{
4490 int tmode = cur_tmode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004492 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 pid_t wait_pid = 0;
4494# ifdef HAVE_UNION_WAIT
4495 union wait status;
4496# else
4497 int status = -1;
4498# endif
4499 int retval = -1;
4500 char **argv = NULL;
Bram Moolenaar13568252018-03-16 20:46:58 +01004501 char_u *tofree1 = NULL;
4502 char_u *tofree2 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004505# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 int pty_slave_fd = -1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004507# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004508 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 int fd_fromshell[2];
4510 int pipe_error = FALSE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004511 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512
4513 out_flush();
4514 if (options & SHELL_COOKED)
4515 settmode(TMODE_COOK); /* set to normal mode */
4516
Bram Moolenaar13568252018-03-16 20:46:58 +01004517 if (build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
Bram Moolenaar835dc632016-02-07 14:27:38 +01004518 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004519
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004521 * For the GUI, when writing the output into the buffer and when reading
4522 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4523 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004525 if ((options & (SHELL_READ|SHELL_WRITE))
4526# ifdef FEAT_GUI
4527 || (gui.in_use && show_shell_mess)
4528# endif
4529 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004531# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 /*
4533 * Try to open a master pty.
4534 * If this works, open the slave pty.
4535 * If the slave can't be opened, close the master pty.
4536 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004537 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar59386482019-02-10 22:43:46 +01004538 open_pty(&pty_master_fd, &pty_slave_fd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 /*
4540 * If not opening a pty or it didn't work, try using pipes.
4541 */
4542 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004543# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544 {
4545 pipe_error = (pipe(fd_toshell) < 0);
4546 if (!pipe_error) /* pipe create OK */
4547 {
4548 pipe_error = (pipe(fd_fromshell) < 0);
4549 if (pipe_error) /* pipe create failed */
4550 {
4551 close(fd_toshell[0]);
4552 close(fd_toshell[1]);
4553 }
4554 }
4555 if (pipe_error)
4556 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004557 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004558 out_flush();
4559 }
4560 }
4561 }
4562
4563 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004565 SIGSET_DECL(curset)
4566
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567# ifdef __BEOS__
4568 beos_cleanup_read_thread();
4569# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004570
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004571 BLOCK_SIGNALS(&curset);
4572 pid = fork(); /* maybe we should use vfork() */
4573 if (pid == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004575 UNBLOCK_SIGNALS(&curset);
4576
Bram Moolenaar32526b32019-01-19 17:43:09 +01004577 msg_puts(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004578 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004579# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004580 || (gui.in_use && show_shell_mess)
4581# endif
4582 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004584# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004585 if (pty_master_fd >= 0) /* close the pseudo tty */
4586 {
4587 close(pty_master_fd);
4588 close(pty_slave_fd);
4589 }
4590 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004591# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 {
4593 close(fd_toshell[0]);
4594 close(fd_toshell[1]);
4595 close(fd_fromshell[0]);
4596 close(fd_fromshell[1]);
4597 }
4598 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599 }
4600 else if (pid == 0) /* child */
4601 {
4602 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004603 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004604
Bram Moolenaar819524702018-02-27 19:10:00 +01004605# ifdef FEAT_JOB_CHANNEL
4606 if (ch_log_active())
4607 /* close the log file in the child */
4608 ch_logfile((char_u *)"", (char_u *)"");
4609# endif
4610
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611 if (!show_shell_mess || (options & SHELL_EXPAND))
4612 {
4613 int fd;
4614
4615 /*
4616 * Don't want to show any message from the shell. Can't just
4617 * close stdout and stderr though, because some systems will
4618 * break if you try to write to them after that, so we must
4619 * use dup() to replace them with something else -- webb
4620 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4621 * waiting for input.
4622 */
4623 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4624 fclose(stdin);
4625 fclose(stdout);
4626 fclose(stderr);
4627
4628 /*
4629 * If any of these open()'s and dup()'s fail, we just continue
4630 * anyway. It's not fatal, and on most systems it will make
4631 * no difference at all. On a few it will cause the execvp()
4632 * to exit with a non-zero status even when the completion
4633 * could be done, which is nothing too serious. If the open()
4634 * or dup() failed we'd just do the same thing ourselves
4635 * anyway -- webb
4636 */
4637 if (fd >= 0)
4638 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02004639 vim_ignored = dup(fd); /* To replace stdin (fd 0) */
4640 vim_ignored = dup(fd); /* To replace stdout (fd 1) */
4641 vim_ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642
4643 /* Don't need this now that we've duplicated it */
4644 close(fd);
4645 }
4646 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004647 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004648# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004649 || gui.in_use
4650# endif
4651 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 {
4653
Bram Moolenaardf177f62005-02-22 08:39:57 +00004654# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004655 /* Create our own process group, so that the child and all its
4656 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004657 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004658 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004659 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004660 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004661# if defined(SIGHUP)
4662 /* When doing "!xterm&" and 'shell' is bash: the shell
4663 * will exit and send SIGHUP to all processes in its
4664 * group, killing the just started process. Ignore SIGHUP
4665 * to avoid that. (suggested by Simon Schubert)
4666 */
4667 signal(SIGHUP, SIG_IGN);
4668# endif
4669 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004670# endif
4671# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004672 if (pty_slave_fd >= 0)
4673 {
4674 /* push stream discipline modules */
4675 if (options & SHELL_COOKED)
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004676 setup_slavepty(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004678 /* Try to become controlling tty (probably doesn't work,
4679 * unless run by root) */
4680 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004682 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004683# endif
Bram Moolenaar493359e2018-06-12 20:25:52 +02004684 set_default_child_environment(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685
Bram Moolenaara5792f52005-11-23 21:25:05 +00004686 /*
4687 * stderr is only redirected when using the GUI, so that a
4688 * program like gpg can still access the terminal to get a
4689 * passphrase using stderr.
4690 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004691# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 if (pty_master_fd >= 0)
4693 {
4694 close(pty_master_fd); /* close master side of pty */
4695
4696 /* set up stdin/stdout/stderr for the child */
4697 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004698 vim_ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699 close(1);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004700 vim_ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004701 if (gui.in_use)
4702 {
4703 close(2);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004704 vim_ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004705 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706
4707 close(pty_slave_fd); /* has been dupped, close it now */
4708 }
4709 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004710# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 {
4712 /* set up stdin for the child */
4713 close(fd_toshell[1]);
4714 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004715 vim_ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 close(fd_toshell[0]);
4717
4718 /* set up stdout for the child */
4719 close(fd_fromshell[0]);
4720 close(1);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004721 vim_ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722 close(fd_fromshell[1]);
4723
Bram Moolenaara5792f52005-11-23 21:25:05 +00004724# ifdef FEAT_GUI
4725 if (gui.in_use)
4726 {
4727 /* set up stderr for the child */
4728 close(2);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004729 vim_ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004730 }
4731# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004732 }
4733 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004734
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 /*
4736 * There is no type cast for the argv, because the type may be
4737 * different on different machines. This may cause a warning
4738 * message with strict compilers, don't worry about it.
4739 * Call _exit() instead of exit() to avoid closing the connection
4740 * to the X server (esp. with GTK, which uses atexit()).
4741 */
4742 execvp(argv[0], argv);
4743 _exit(EXEC_FAILED); /* exec failed, return failure code */
4744 }
4745 else /* parent */
4746 {
4747 /*
4748 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004749 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750 */
4751 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004752 catch_int_signal();
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004753 UNBLOCK_SIGNALS(&curset);
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01004754# ifdef FEAT_JOB_CHANNEL
4755 ++dont_check_job_ended;
4756# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 /*
4758 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004759 * This is also used to pipe stdin/stdout to/from the external
4760 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004761 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004762 if ((options & (SHELL_READ|SHELL_WRITE))
4763# ifdef FEAT_GUI
4764 || (gui.in_use && show_shell_mess)
4765# endif
4766 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004768# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 char_u buffer[BUFLEN + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004770 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4772 int ta_len = 0; /* valid bytes in ta_buf[] */
4773 int len;
4774 int p_more_save;
4775 int old_State;
4776 int c;
4777 int toshell_fd;
4778 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004779 garray_T ga;
4780 int noread_cnt;
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01004781# ifdef ELAPSED_FUNC
4782 elapsed_T start_tv;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004783# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004784
Bram Moolenaardf177f62005-02-22 08:39:57 +00004785# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 if (pty_master_fd >= 0)
4787 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004788 fromshell_fd = pty_master_fd;
4789 toshell_fd = dup(pty_master_fd);
4790 }
4791 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004792# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 {
4794 close(fd_toshell[0]);
4795 close(fd_fromshell[1]);
4796 toshell_fd = fd_toshell[1];
4797 fromshell_fd = fd_fromshell[0];
4798 }
4799
4800 /*
4801 * Write to the child if there are typed characters.
4802 * Read from the child if there are characters available.
4803 * Repeat the reading a few times if more characters are
4804 * available. Need to check for typed keys now and then, but
4805 * not too often (delays when no chars are available).
4806 * This loop is quit if no characters can be read from the pty
4807 * (WaitForChar detected special condition), or there are no
4808 * characters available and the child has exited.
4809 * Only check if the child has exited when there is no more
4810 * output. The child may exit before all the output has
4811 * been printed.
4812 *
4813 * Currently this busy loops!
4814 * This can probably dead-lock when the write blocks!
4815 */
4816 p_more_save = p_more;
4817 p_more = FALSE;
4818 old_State = State;
4819 State = EXTERNCMD; /* don't redraw at window resize */
4820
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004821 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004822 {
4823 /* Fork a process that will write the lines to the
4824 * external program. */
4825 if ((wpid = fork()) == -1)
4826 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004827 msg_puts(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004828 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004829 else if (wpid == 0) /* child */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004830 {
4831 linenr_T lnum = curbuf->b_op_start.lnum;
4832 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004833 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004834 size_t l;
4835
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004836 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004837 for (;;)
4838 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004839 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004840 if (l == 0)
4841 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004842 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004843 /* NL -> NUL translation */
4844 len = write(toshell_fd, "", (size_t)1);
4845 else
4846 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004847 char_u *s = vim_strchr(lp + written, NL);
4848
Bram Moolenaar89d40322006-08-29 15:30:07 +00004849 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004850 s == NULL ? l
4851 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004852 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004853 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004854 {
4855 /* Finished a line, add a NL, unless this line
4856 * should not have one. */
4857 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004858 || (!curbuf->b_p_bin
4859 && curbuf->b_p_fixeol)
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004860 || (lnum != curbuf->b_no_eol_lnum
Bram Moolenaardf177f62005-02-22 08:39:57 +00004861 && (lnum !=
4862 curbuf->b_ml.ml_line_count
4863 || curbuf->b_p_eol)))
Bram Moolenaar42335f52018-09-13 15:33:43 +02004864 vim_ignored = write(toshell_fd, "\n",
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004865 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004866 ++lnum;
4867 if (lnum > curbuf->b_op_end.lnum)
4868 {
4869 /* finished all the lines, close pipe */
4870 close(toshell_fd);
4871 toshell_fd = -1;
4872 break;
4873 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004874 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004875 written = 0;
4876 }
4877 else if (len > 0)
4878 written += len;
4879 }
4880 _exit(0);
4881 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004882 else /* parent */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004883 {
4884 close(toshell_fd);
4885 toshell_fd = -1;
4886 }
4887 }
4888
4889 if (options & SHELL_READ)
4890 ga_init2(&ga, 1, BUFLEN);
4891
4892 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004893# ifdef ELAPSED_FUNC
4894 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004895# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 for (;;)
4897 {
4898 /*
4899 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004900 * if there are any.
4901 * Don't do this if we are expanding wild cards (would eat
4902 * typeahead).
4903 * Don't do this when filtering and terminal is in cooked
4904 * mode, the shell command will handle the I/O. Avoids
4905 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004906 * Don't get characters when the child has already
4907 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004908 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004909 * while (noread_cnt > 4), avoids that ":r !ls" eats
4910 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 */
4912 len = 0;
4913 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004914 && ((options &
4915 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4916 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004917# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004918 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004919# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004920 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004921 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004922 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004924 if (ta_len == 0)
4925 {
4926 /* Get extra characters when we don't have any.
4927 * Reset the counter and timer. */
4928 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004929# ifdef ELAPSED_FUNC
4930 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004931# endif
4932 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4933 }
4934 if (ta_len > 0 || len > 0)
4935 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004936 /*
4937 * For pipes:
4938 * Check for CTRL-C: send interrupt signal to child.
4939 * Check for CTRL-D: EOF, close pipe to child.
4940 */
4941 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4942 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 /*
4944 * Send SIGINT to the child's group or all
4945 * processes in our group.
4946 */
Bram Moolenaarfae42832017-08-01 22:24:26 +02004947 may_send_sigint(ta_buf[ta_len], pid, wpid);
4948
Bram Moolenaar071d4272004-06-13 20:20:40 +00004949 if (pty_master_fd < 0 && toshell_fd >= 0
4950 && ta_buf[ta_len] == Ctrl_D)
4951 {
4952 close(toshell_fd);
4953 toshell_fd = -1;
4954 }
4955 }
4956
4957 /* replace K_BS by <BS> and K_DEL by <DEL> */
4958 for (i = ta_len; i < ta_len + len; ++i)
4959 {
4960 if (ta_buf[i] == CSI && len - i > 2)
4961 {
4962 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4963 if (c == K_DEL || c == K_KDEL || c == K_BS)
4964 {
4965 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4966 (size_t)(len - i - 2));
4967 if (c == K_DEL || c == K_KDEL)
4968 ta_buf[i] = DEL;
4969 else
4970 ta_buf[i] = Ctrl_H;
4971 len -= 2;
4972 }
4973 }
4974 else if (ta_buf[i] == '\r')
4975 ta_buf[i] = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004976 if (has_mbyte)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00004977 i += (*mb_ptr2len_len)(ta_buf + i,
4978 ta_len + len - i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004979 }
4980
4981 /*
4982 * For pipes: echo the typed characters.
4983 * For a pty this does not seem to work.
4984 */
4985 if (pty_master_fd < 0)
4986 {
4987 for (i = ta_len; i < ta_len + len; ++i)
4988 {
4989 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4990 msg_putchar(ta_buf[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 else if (has_mbyte)
4992 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004993 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994
4995 msg_outtrans_len(ta_buf + i, l);
4996 i += l - 1;
4997 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 else
4999 msg_outtrans_len(ta_buf + i, 1);
5000 }
5001 windgoto(msg_row, msg_col);
5002 out_flush();
5003 }
5004
5005 ta_len += len;
5006
5007 /*
5008 * Write the characters to the child, unless EOF has
5009 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00005010 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005011 * When writing buffer lines, drop the typed
5012 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005014 if (options & SHELL_WRITE)
5015 ta_len = 0;
5016 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 {
5018 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
5019 if (len > 0)
5020 {
5021 ta_len -= len;
5022 mch_memmove(ta_buf, ta_buf + len, ta_len);
5023 }
5024 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005025 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 }
5027
Bram Moolenaardf177f62005-02-22 08:39:57 +00005028 if (got_int)
5029 {
5030 /* CTRL-C sends a signal to the child, we ignore it
5031 * ourselves */
5032# ifdef HAVE_SETSID
5033 kill(-pid, SIGINT);
5034# else
5035 kill(0, SIGINT);
5036# endif
5037 if (wpid > 0)
5038 kill(wpid, SIGINT);
5039 got_int = FALSE;
5040 }
5041
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 /*
5043 * Check if the child has any characters to be printed.
5044 * Read them and write them to our window. Repeat this as
5045 * long as there is something to do, avoid the 10ms wait
5046 * for mch_inchar(), or sending typeahead characters to
5047 * the external process.
5048 * TODO: This should handle escape sequences, compatible
5049 * to some terminal (vt52?).
5050 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005051 ++noread_cnt;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005052 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01005054 len = read_eintr(fromshell_fd, buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 );
5057 if (len <= 0) /* end of file or error */
5058 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005059
5060 noread_cnt = 0;
5061 if (options & SHELL_READ)
5062 {
5063 /* Do NUL -> NL translation, append NL separated
5064 * lines to the current buffer. */
5065 for (i = 0; i < len; ++i)
5066 {
5067 if (buffer[i] == NL)
5068 append_ga_line(&ga);
5069 else if (buffer[i] == NUL)
5070 ga_append(&ga, NL);
5071 else
5072 ga_append(&ga, buffer[i]);
5073 }
5074 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005075 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 {
5077 int l;
Bram Moolenaara2150ac2018-03-17 13:15:17 +01005078 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079
Bram Moolenaardf177f62005-02-22 08:39:57 +00005080 len += buffer_off;
5081 buffer[len] = NUL;
5082
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 /* Check if the last character in buffer[] is
5084 * incomplete, keep these bytes for the next
5085 * round. */
5086 for (p = buffer; p < buffer + len; p += l)
5087 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02005088 l = MB_CPTR2LEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 if (l == 0)
5090 l = 1; /* NUL byte? */
5091 else if (MB_BYTE2LEN(*p) != l)
5092 break;
5093 }
5094 if (p == buffer) /* no complete character */
5095 {
5096 /* avoid getting stuck at an illegal byte */
5097 if (len >= 12)
5098 ++p;
5099 else
5100 {
5101 buffer_off = len;
5102 continue;
5103 }
5104 }
5105 c = *p;
5106 *p = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01005107 msg_puts((char *)buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 if (p < buffer + len)
5109 {
5110 *p = c;
5111 buffer_off = (buffer + len) - p;
5112 mch_memmove(buffer, p, buffer_off);
5113 continue;
5114 }
5115 buffer_off = 0;
5116 }
5117 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 {
5119 buffer[len] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01005120 msg_puts((char *)buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 }
5122
5123 windgoto(msg_row, msg_col);
5124 cursor_on();
5125 out_flush();
5126 if (got_int)
5127 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005128
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005129# ifdef ELAPSED_FUNC
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005130 if (wait_pid == 0)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005131 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005132 long msec = ELAPSED_FUNC(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005133
5134 /* Avoid that we keep looping here without
5135 * checking for a CTRL-C for a long time. Don't
5136 * break out too often to avoid losing typeahead. */
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005137 if (msec > 2000)
5138 {
5139 noread_cnt = 5;
5140 break;
5141 }
5142 }
5143# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 }
5145
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005146 /* If we already detected the child has finished, continue
5147 * reading output for a short while. Some text may be
5148 * buffered. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005149 if (wait_pid == pid)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005150 {
5151 if (noread_cnt < 5)
5152 continue;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005153 break;
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005154 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005155
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 /*
5157 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00005158 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005160# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02005161 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005162# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005164# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5166 || (wait_pid == pid && WIFEXITED(status)))
5167 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005168 /* Don't break the loop yet, try reading more
5169 * characters from "fromshell_fd" first. When using
5170 * pipes there might still be something to read and
5171 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005174 else
5175 wait_pid = 0;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005176
Bram Moolenaar95a51352013-03-21 22:53:50 +01005177# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005178 /* Handle any X events, e.g. serving the clipboard. */
5179 clip_update();
5180# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 }
5182finished:
5183 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005184 if (options & SHELL_READ)
5185 {
5186 if (ga.ga_len > 0)
5187 {
5188 append_ga_line(&ga);
5189 /* remember that the NL was missing */
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005190 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005191 }
5192 else
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005193 curbuf->b_no_eol_lnum = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005194 ga_clear(&ga);
5195 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 /*
5198 * Give all typeahead that wasn't used back to ui_inchar().
5199 */
5200 if (ta_len)
5201 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 State = old_State;
5203 if (toshell_fd >= 0)
5204 close(toshell_fd);
5205 close(fromshell_fd);
5206 }
Bram Moolenaar95a51352013-03-21 22:53:50 +01005207# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005208 else
5209 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005210 long delay_msec = 1;
5211
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005212 /*
5213 * Similar to the loop above, but only handle X events, no
5214 * I/O.
5215 */
5216 for (;;)
5217 {
5218 if (got_int)
5219 {
5220 /* CTRL-C sends a signal to the child, we ignore it
5221 * ourselves */
5222# ifdef HAVE_SETSID
5223 kill(-pid, SIGINT);
5224# else
5225 kill(0, SIGINT);
5226# endif
5227 got_int = FALSE;
5228 }
5229# ifdef __NeXT__
5230 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
5231# else
5232 wait_pid = waitpid(pid, &status, WNOHANG);
5233# endif
5234 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5235 || (wait_pid == pid && WIFEXITED(status)))
5236 {
5237 wait_pid = pid;
5238 break;
5239 }
5240
5241 /* Handle any X events, e.g. serving the clipboard. */
5242 clip_update();
5243
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005244 /* Wait for 1 to 10 msec. 1 is faster but gives the child
5245 * less time. */
5246 mch_delay(delay_msec, TRUE);
5247 if (++delay_msec > 10)
5248 delay_msec = 10;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005249 }
5250 }
5251# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252
5253 /*
5254 * Wait until our child has exited.
5255 * Ignore wait() returning pids of other children and returning
5256 * because of some signal like SIGWINCH.
5257 * Don't wait if wait_pid was already set above, indicating the
5258 * child already exited.
5259 */
Bram Moolenaar205b8862011-09-07 15:04:31 +02005260 if (wait_pid != pid)
5261 wait_pid = wait4pid(pid, &status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262
Bram Moolenaar624891f2010-10-13 16:22:09 +02005263# ifdef FEAT_GUI
5264 /* Close slave side of pty. Only do this after the child has
5265 * exited, otherwise the child may hang when it tries to write on
5266 * the pty. */
5267 if (pty_master_fd >= 0)
5268 close(pty_slave_fd);
5269# endif
5270
Bram Moolenaardf177f62005-02-22 08:39:57 +00005271 /* Make sure the child that writes to the external program is
5272 * dead. */
5273 if (wpid > 0)
Bram Moolenaar205b8862011-09-07 15:04:31 +02005274 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005275 kill(wpid, SIGKILL);
Bram Moolenaar205b8862011-09-07 15:04:31 +02005276 wait4pid(wpid, NULL);
5277 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005278
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005279# ifdef FEAT_JOB_CHANNEL
5280 --dont_check_job_ended;
5281# endif
5282
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 /*
5284 * Set to raw mode right now, otherwise a CTRL-C after
5285 * catch_signals() will kill Vim.
5286 */
5287 if (tmode == TMODE_RAW)
5288 settmode(TMODE_RAW);
5289 did_settmode = TRUE;
5290 set_signals();
5291
5292 if (WIFEXITED(status))
5293 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00005294 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 retval = WEXITSTATUS(status);
Bram Moolenaar75676462013-01-30 14:55:42 +01005296 if (retval != 0 && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 {
5298 if (retval == EXEC_FAILED)
5299 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005300 msg_puts(_("\nCannot execute shell "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 msg_outtrans(p_sh);
5302 msg_putchar('\n');
5303 }
5304 else if (!(options & SHELL_SILENT))
5305 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005306 msg_puts(_("\nshell returned "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 msg_outnum((long)retval);
5308 msg_putchar('\n');
5309 }
5310 }
5311 }
5312 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005313 msg_puts(_("\nCommand terminated\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 }
5315 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316
5317error:
5318 if (!did_settmode)
5319 if (tmode == TMODE_RAW)
5320 settmode(TMODE_RAW); /* set to raw mode */
5321# ifdef FEAT_TITLE
5322 resettitle();
5323# endif
Bram Moolenaar13568252018-03-16 20:46:58 +01005324 vim_free(argv);
5325 vim_free(tofree1);
5326 vim_free(tofree2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327
5328 return retval;
Bram Moolenaar13568252018-03-16 20:46:58 +01005329}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005330#endif /* USE_SYSTEM */
Bram Moolenaar13568252018-03-16 20:46:58 +01005331
5332 int
5333mch_call_shell(
5334 char_u *cmd,
5335 int options) /* SHELL_*, see vim.h */
5336{
5337#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
5338 if (gui.in_use && vim_strchr(p_go, GO_TERMINAL) != NULL)
5339 return mch_call_shell_terminal(cmd, options);
5340#endif
5341#ifdef USE_SYSTEM
5342 return mch_call_shell_system(cmd, options);
5343#else
5344 return mch_call_shell_fork(cmd, options);
5345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346}
5347
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005348#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005349 void
Bram Moolenaar493359e2018-06-12 20:25:52 +02005350mch_job_start(char **argv, job_T *job, jobopt_T *options, int is_terminal)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005351{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005352 pid_t pid;
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02005353 int fd_in[2] = {-1, -1}; /* for stdin */
5354 int fd_out[2] = {-1, -1}; /* for stdout */
5355 int fd_err[2] = {-1, -1}; /* for stderr */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005356 int pty_master_fd = -1;
5357 int pty_slave_fd = -1;
Bram Moolenaar16eb4f82016-02-14 23:02:34 +01005358 channel_T *channel = NULL;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005359 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5360 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5361 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005362 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005363 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5364 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
Bram Moolenaarb2412082017-08-20 18:09:14 +02005365 int use_buffer_for_in = options->jo_io[PART_IN] == JIO_BUFFER;
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005366 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005367 SIGSET_DECL(curset)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005368
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005369 if (use_out_for_err && use_null_for_out)
5370 use_null_for_err = TRUE;
5371
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005372 /* default is to fail */
5373 job->jv_status = JOB_FAILED;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005374
Bram Moolenaarb2412082017-08-20 18:09:14 +02005375 if (options->jo_pty
5376 && (!(use_file_for_in || use_null_for_in)
Bram Moolenaar59386482019-02-10 22:43:46 +01005377 || !(use_file_for_out || use_null_for_out)
Bram Moolenaarb2412082017-08-20 18:09:14 +02005378 || !(use_out_for_err || use_file_for_err || use_null_for_err)))
Bram Moolenaar59386482019-02-10 22:43:46 +01005379 open_pty(&pty_master_fd, &pty_slave_fd,
5380 &job->jv_tty_out, &job->jv_tty_in);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005381
Bram Moolenaar12dcf022016-02-15 23:09:04 +01005382 /* TODO: without the channel feature connect the child to /dev/null? */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005383 /* Open pipes for stdin, stdout, stderr. */
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005384 if (use_file_for_in)
5385 {
5386 char_u *fname = options->jo_io_name[PART_IN];
5387
5388 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0);
5389 if (fd_in[0] < 0)
5390 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005391 semsg(_(e_notopen), fname);
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005392 goto failed;
5393 }
5394 }
Bram Moolenaarb2412082017-08-20 18:09:14 +02005395 else
5396 /* When writing buffer lines to the input don't use the pty, so that
5397 * the pipe can be closed when all lines were written. */
5398 if (!use_null_for_in && (pty_master_fd < 0 || use_buffer_for_in)
5399 && pipe(fd_in) < 0)
5400 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005401
5402 if (use_file_for_out)
5403 {
5404 char_u *fname = options->jo_io_name[PART_OUT];
5405
5406 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
5407 if (fd_out[1] < 0)
5408 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005409 semsg(_(e_notopen), fname);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005410 goto failed;
5411 }
5412 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005413 else if (!use_null_for_out && pty_master_fd < 0 && pipe(fd_out) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005414 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005415
5416 if (use_file_for_err)
5417 {
5418 char_u *fname = options->jo_io_name[PART_ERR];
5419
5420 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
5421 if (fd_err[1] < 0)
5422 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005423 semsg(_(e_notopen), fname);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005424 goto failed;
5425 }
5426 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005427 else if (!use_out_for_err && !use_null_for_err
5428 && pty_master_fd < 0 && pipe(fd_err) < 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005429 goto failed;
5430
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005431 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5432 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005433 if (options->jo_set & JO_CHANNEL)
5434 {
5435 channel = options->jo_channel;
5436 if (channel != NULL)
5437 ++channel->ch_refcount;
5438 }
5439 else
5440 channel = add_channel();
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005441 if (channel == NULL)
5442 goto failed;
Bram Moolenaarf3360612017-10-01 16:21:31 +02005443 if (job->jv_tty_out != NULL)
5444 ch_log(channel, "using pty %s on fd %d",
5445 job->jv_tty_out, pty_master_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005446 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005447
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005448 BLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005449 pid = fork(); /* maybe we should use vfork() */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005450 if (pid == -1)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005451 {
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005452 /* failed to fork */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005453 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005454 goto failed;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005455 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005456 if (pid == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005457 {
Bram Moolenaar4694a172016-04-21 14:05:23 +02005458 int null_fd = -1;
5459 int stderr_works = TRUE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005460
Bram Moolenaar835dc632016-02-07 14:27:38 +01005461 /* child */
5462 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005463 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005464
Bram Moolenaar819524702018-02-27 19:10:00 +01005465# ifdef FEAT_JOB_CHANNEL
5466 if (ch_log_active())
5467 /* close the log file in the child */
5468 ch_logfile((char_u *)"", (char_u *)"");
5469# endif
5470
Bram Moolenaar835dc632016-02-07 14:27:38 +01005471# ifdef HAVE_SETSID
5472 /* Create our own process group, so that the child and all its
5473 * children can be kill()ed. Don't do this when using pipes,
5474 * because stdin is not a tty, we would lose /dev/tty. */
5475 (void)setsid();
5476# endif
5477
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005478# ifdef FEAT_TERMINAL
5479 if (options->jo_term_rows > 0)
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005480 {
5481 char *term = (char *)T_NAME;
5482
5483#ifdef FEAT_GUI
5484 if (term_is_gui(T_NAME))
5485 /* In the GUI 'term' is not what we want, use $TERM. */
5486 term = getenv("TERM");
5487#endif
5488 /* Use 'term' or $TERM if it starts with "xterm", otherwise fall
5489 * back to "xterm". */
5490 if (term == NULL || *term == NUL || STRNCMP(term, "xterm", 5) != 0)
5491 term = "xterm";
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005492 set_child_environment(
5493 (long)options->jo_term_rows,
5494 (long)options->jo_term_cols,
Bram Moolenaar493359e2018-06-12 20:25:52 +02005495 term,
5496 is_terminal);
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005497 }
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005498 else
5499# endif
Bram Moolenaar493359e2018-06-12 20:25:52 +02005500 set_default_child_environment(is_terminal);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005501
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005502 if (options->jo_env != NULL)
5503 {
5504 dict_T *dict = options->jo_env;
5505 hashitem_T *hi;
5506 int todo = (int)dict->dv_hashtab.ht_used;
5507
5508 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
5509 if (!HASHITEM_EMPTY(hi))
5510 {
5511 typval_T *item = &dict_lookup(hi)->di_tv;
5512
Bram Moolenaard155d7a2018-12-21 16:04:21 +01005513 vim_setenv((char_u*)hi->hi_key, tv_get_string(item));
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005514 --todo;
5515 }
5516 }
5517
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005518 if (use_null_for_in || use_null_for_out || use_null_for_err)
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005519 {
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005520 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005521 if (null_fd < 0)
5522 {
5523 perror("opening /dev/null failed");
5524 _exit(OPEN_NULL_FAILED);
5525 }
5526 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005527
Bram Moolenaar223896d2017-08-02 22:33:28 +02005528 if (pty_slave_fd >= 0)
5529 {
5530 /* push stream discipline modules */
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01005531 setup_slavepty(pty_slave_fd);
Bram Moolenaar223896d2017-08-02 22:33:28 +02005532# ifdef TIOCSCTTY
5533 /* Try to become controlling tty (probably doesn't work,
5534 * unless run by root) */
5535 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
5536# endif
5537 }
5538
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005539 /* set up stdin for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005540 close(0);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005541 if (use_null_for_in && null_fd >= 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005542 vim_ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005543 else if (fd_in[0] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005544 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005545 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005546 vim_ignored = dup(fd_in[0]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005547
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005548 /* set up stderr for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005549 close(2);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005550 if (use_null_for_err && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005551 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02005552 vim_ignored = dup(null_fd);
Bram Moolenaar4694a172016-04-21 14:05:23 +02005553 stderr_works = FALSE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005554 }
5555 else if (use_out_for_err)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005556 vim_ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005557 else if (fd_err[1] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005558 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005559 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005560 vim_ignored = dup(fd_err[1]);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005561
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005562 /* set up stdout for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005563 close(1);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005564 if (use_null_for_out && null_fd >= 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005565 vim_ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005566 else if (fd_out[1] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005567 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005568 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005569 vim_ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005570
5571 if (fd_in[0] >= 0)
5572 close(fd_in[0]);
5573 if (fd_in[1] >= 0)
5574 close(fd_in[1]);
5575 if (fd_out[0] >= 0)
5576 close(fd_out[0]);
5577 if (fd_out[1] >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005578 close(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005579 if (fd_err[0] >= 0)
5580 close(fd_err[0]);
5581 if (fd_err[1] >= 0)
5582 close(fd_err[1]);
5583 if (pty_master_fd >= 0)
5584 {
Bram Moolenaar223896d2017-08-02 22:33:28 +02005585 close(pty_master_fd); /* not used in the child */
5586 close(pty_slave_fd); /* was duped above */
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005587 }
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005588
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005589 if (null_fd >= 0)
5590 close(null_fd);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005591
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005592 if (options->jo_cwd != NULL && mch_chdir((char *)options->jo_cwd) != 0)
5593 _exit(EXEC_FAILED);
5594
Bram Moolenaar835dc632016-02-07 14:27:38 +01005595 /* See above for type of argv. */
5596 execvp(argv[0], argv);
5597
Bram Moolenaar4694a172016-04-21 14:05:23 +02005598 if (stderr_works)
5599 perror("executing job failed");
Bram Moolenaarfae42832017-08-01 22:24:26 +02005600# ifdef EXITFREE
Bram Moolenaarcda77642016-06-04 13:32:35 +02005601 /* calling free_all_mem() here causes problems. Ignore valgrind
5602 * reporting possibly leaked memory. */
Bram Moolenaarfae42832017-08-01 22:24:26 +02005603# endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005604 _exit(EXEC_FAILED); /* exec failed, return failure code */
5605 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005606
5607 /* parent */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005608 UNBLOCK_SIGNALS(&curset);
5609
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005610 job->jv_pid = pid;
5611 job->jv_status = JOB_STARTED;
Bram Moolenaarde279892016-03-11 22:19:44 +01005612 job->jv_channel = channel; /* ch_refcount was set above */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005613
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005614 if (pty_master_fd >= 0)
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005615 close(pty_slave_fd); /* not used in the parent */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005616 /* close child stdin, stdout and stderr */
Bram Moolenaar819524702018-02-27 19:10:00 +01005617 if (fd_in[0] >= 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005618 close(fd_in[0]);
Bram Moolenaar819524702018-02-27 19:10:00 +01005619 if (fd_out[1] >= 0)
Bram Moolenaare98d1212016-03-08 15:37:41 +01005620 close(fd_out[1]);
Bram Moolenaar819524702018-02-27 19:10:00 +01005621 if (fd_err[1] >= 0)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005622 close(fd_err[1]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005623 if (channel != NULL)
5624 {
Bram Moolenaar652de232019-04-04 20:13:09 +02005625 int in_fd = INVALID_FD;
5626 int out_fd = INVALID_FD;
5627 int err_fd = INVALID_FD;
5628
5629 if (!(use_file_for_in || use_null_for_in))
5630 in_fd = fd_in[1] >= 0 ? fd_in[1] : pty_master_fd;
5631
5632 if (!(use_file_for_out || use_null_for_out))
5633 out_fd = fd_out[0] >= 0 ? fd_out[0] : pty_master_fd;
5634
5635 // When using pty_master_fd only set it for stdout, do not duplicate
5636 // it for stderr, it only needs to be read once.
5637 if (!(use_out_for_err || use_file_for_err || use_null_for_err))
5638 {
5639 if (fd_err[0] >= 0)
5640 err_fd = fd_err[0];
5641 else if (out_fd != pty_master_fd)
5642 err_fd = pty_master_fd;
5643 }
Bram Moolenaar4e9d4432018-04-24 20:54:07 +02005644
5645 channel_set_pipes(channel, in_fd, out_fd, err_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005646 channel_set_job(channel, job, options);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005647 }
Bram Moolenaar979e8c52017-08-01 15:08:07 +02005648 else
5649 {
5650 if (fd_in[1] >= 0)
5651 close(fd_in[1]);
5652 if (fd_out[0] >= 0)
5653 close(fd_out[0]);
5654 if (fd_err[0] >= 0)
5655 close(fd_err[0]);
5656 if (pty_master_fd >= 0)
5657 close(pty_master_fd);
5658 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005659
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005660 /* success! */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005661 return;
5662
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005663failed:
Bram Moolenaarde279892016-03-11 22:19:44 +01005664 channel_unref(channel);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005665 if (fd_in[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005666 close(fd_in[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005667 if (fd_in[1] >= 0)
5668 close(fd_in[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005669 if (fd_out[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005670 close(fd_out[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005671 if (fd_out[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005672 close(fd_out[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005673 if (fd_err[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005674 close(fd_err[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005675 if (fd_err[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005676 close(fd_err[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005677 if (pty_master_fd >= 0)
5678 close(pty_master_fd);
5679 if (pty_slave_fd >= 0)
5680 close(pty_slave_fd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005681}
5682
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005683 static char_u *
5684get_signal_name(int sig)
5685{
5686 int i;
5687 char_u numbuf[NUMBUFLEN];
5688
5689 if (sig == SIGKILL)
5690 return vim_strsave((char_u *)"kill");
5691
5692 for (i = 0; signal_info[i].sig != -1; i++)
5693 if (sig == signal_info[i].sig)
5694 return strlow_save((char_u *)signal_info[i].name);
5695
5696 vim_snprintf((char *)numbuf, NUMBUFLEN, "%d", sig);
5697 return vim_strsave(numbuf);
5698}
5699
Bram Moolenaar835dc632016-02-07 14:27:38 +01005700 char *
5701mch_job_status(job_T *job)
5702{
5703# ifdef HAVE_UNION_WAIT
5704 union wait status;
5705# else
5706 int status = -1;
5707# endif
5708 pid_t wait_pid = 0;
5709
5710# ifdef __NeXT__
5711 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0);
5712# else
5713 wait_pid = waitpid(job->jv_pid, &status, WNOHANG);
5714# endif
5715 if (wait_pid == -1)
5716 {
5717 /* process must have exited */
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005718 if (job->jv_status < JOB_ENDED)
5719 ch_log(job->jv_channel, "Job no longer exists: %s",
5720 strerror(errno));
Bram Moolenaar97792de2016-10-15 18:36:49 +02005721 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005722 }
5723 if (wait_pid == 0)
5724 return "run";
5725 if (WIFEXITED(status))
5726 {
5727 /* LINTED avoid "bitwise operation on signed value" */
5728 job->jv_exitval = WEXITSTATUS(status);
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005729 if (job->jv_status < JOB_ENDED)
5730 ch_log(job->jv_channel, "Job exited with %d", job->jv_exitval);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005731 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005732 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005733 if (WIFSIGNALED(status))
5734 {
5735 job->jv_exitval = -1;
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005736 job->jv_termsig = get_signal_name(WTERMSIG(status));
5737 if (job->jv_status < JOB_ENDED && job->jv_termsig != NULL)
5738 ch_log(job->jv_channel, "Job terminated by signal \"%s\"",
5739 job->jv_termsig);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005740 goto return_dead;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005741 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01005742 return "run";
Bram Moolenaar97792de2016-10-15 18:36:49 +02005743
5744return_dead:
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005745 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005746 job->jv_status = JOB_ENDED;
Bram Moolenaar97792de2016-10-15 18:36:49 +02005747 return "dead";
5748}
5749
5750 job_T *
5751mch_detect_ended_job(job_T *job_list)
5752{
5753# ifdef HAVE_UNION_WAIT
5754 union wait status;
5755# else
5756 int status = -1;
5757# endif
5758 pid_t wait_pid = 0;
5759 job_T *job;
5760
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005761# ifndef USE_SYSTEM
5762 /* Do not do this when waiting for a shell command to finish, we would get
5763 * the exit value here (and discard it), the exit value obtained there
5764 * would then be wrong. */
5765 if (dont_check_job_ended > 0)
5766 return NULL;
5767# endif
5768
Bram Moolenaar97792de2016-10-15 18:36:49 +02005769# ifdef __NeXT__
5770 wait_pid = wait4(-1, &status, WNOHANG, (struct rusage *)0);
5771# else
5772 wait_pid = waitpid(-1, &status, WNOHANG);
5773# endif
5774 if (wait_pid <= 0)
5775 /* no process ended */
5776 return NULL;
5777 for (job = job_list; job != NULL; job = job->jv_next)
5778 {
5779 if (job->jv_pid == wait_pid)
5780 {
5781 if (WIFEXITED(status))
5782 /* LINTED avoid "bitwise operation on signed value" */
5783 job->jv_exitval = WEXITSTATUS(status);
5784 else if (WIFSIGNALED(status))
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005785 {
Bram Moolenaar97792de2016-10-15 18:36:49 +02005786 job->jv_exitval = -1;
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005787 job->jv_termsig = get_signal_name(WTERMSIG(status));
5788 }
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005789 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005790 {
5791 ch_log(job->jv_channel, "Job ended");
5792 job->jv_status = JOB_ENDED;
5793 }
5794 return job;
5795 }
5796 }
5797 return NULL;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005798}
5799
Bram Moolenaar3a117e12016-10-30 21:57:52 +01005800/*
5801 * Send a (deadly) signal to "job".
5802 * Return FAIL if "how" is not a valid name.
5803 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01005804 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005805mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005806{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005807 int sig = -1;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005808
Bram Moolenaar923d9262016-02-25 20:56:01 +01005809 if (*how == NUL || STRCMP(how, "term") == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005810 sig = SIGTERM;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005811 else if (STRCMP(how, "hup") == 0)
5812 sig = SIGHUP;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005813 else if (STRCMP(how, "quit") == 0)
5814 sig = SIGQUIT;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005815 else if (STRCMP(how, "int") == 0)
5816 sig = SIGINT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005817 else if (STRCMP(how, "kill") == 0)
5818 sig = SIGKILL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02005819#ifdef SIGWINCH
5820 else if (STRCMP(how, "winch") == 0)
5821 sig = SIGWINCH;
5822#endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005823 else if (isdigit(*how))
5824 sig = atoi((char *)how);
5825 else
5826 return FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005827
Bram Moolenaar76ab4fd2018-12-08 14:39:05 +01005828 // Never kill ourselves!
5829 if (job->jv_pid != 0)
5830 {
5831 // TODO: have an option to only kill the process, not the group?
5832 kill(-job->jv_pid, sig);
5833 kill(job->jv_pid, sig);
5834 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005835
Bram Moolenaar835dc632016-02-07 14:27:38 +01005836 return OK;
5837}
Bram Moolenaar76467df2016-02-12 19:30:26 +01005838
5839/*
5840 * Clear the data related to "job".
5841 */
5842 void
5843mch_clear_job(job_T *job)
5844{
5845 /* call waitpid because child process may become zombie */
5846# ifdef __NeXT__
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005847 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005848# else
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005849 (void)waitpid(job->jv_pid, NULL, WNOHANG);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005850# endif
5851}
Bram Moolenaar835dc632016-02-07 14:27:38 +01005852#endif
5853
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005854#if defined(FEAT_TERMINAL) || defined(PROTO)
5855 int
5856mch_create_pty_channel(job_T *job, jobopt_T *options)
5857{
5858 int pty_master_fd = -1;
5859 int pty_slave_fd = -1;
5860 channel_T *channel;
5861
Bram Moolenaar59386482019-02-10 22:43:46 +01005862 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_out, &job->jv_tty_in);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005863 close(pty_slave_fd);
5864
5865 channel = add_channel();
5866 if (channel == NULL)
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005867 {
5868 close(pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005869 return FAIL;
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005870 }
Bram Moolenaarf3360612017-10-01 16:21:31 +02005871 if (job->jv_tty_out != NULL)
5872 ch_log(channel, "using pty %s on fd %d",
5873 job->jv_tty_out, pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005874 job->jv_channel = channel; /* ch_refcount was set by add_channel() */
5875 channel->ch_keep_open = TRUE;
5876
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005877 /* Only set the pty_master_fd for stdout, do not duplicate it for stderr,
5878 * it only needs to be read once. */
5879 channel_set_pipes(channel, pty_master_fd, pty_master_fd, INVALID_FD);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005880 channel_set_job(channel, job, options);
5881 return OK;
5882}
5883#endif
5884
Bram Moolenaar071d4272004-06-13 20:20:40 +00005885/*
5886 * Check for CTRL-C typed by reading all available characters.
5887 * In cooked mode we should get SIGINT, no need to check.
5888 */
5889 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005890mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005892 if ((curr_tmode == TMODE_RAW || force)
5893 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894 fill_input_buf(FALSE);
5895}
5896
5897/*
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005898 * Wait "msec" msec until a character is available from the mouse, keyboard,
5899 * from inbuf[].
5900 * "msec" == -1 will block forever.
5901 * Invokes timer callbacks when needed.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005902 * When "ignore_input" is TRUE even check for pending input when input is
5903 * already available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005904 * "interrupted" (if not NULL) is set to TRUE when no character is available
5905 * but something else needs to be done.
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005906 * Returns TRUE when a character is available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005907 * When a GUI is being used, this will never get called -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 */
5909 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005910WaitForChar(long msec, int *interrupted, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911{
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005912#ifdef FEAT_TIMERS
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01005913 return ui_wait_for_chars_or_timer(
5914 msec, WaitForCharOrMouse, interrupted, ignore_input) == OK;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005915#else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005916 return WaitForCharOrMouse(msec, interrupted, ignore_input);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005917#endif
5918}
5919
5920/*
5921 * Wait "msec" msec until a character is available from the mouse or keyboard
5922 * or from inbuf[].
5923 * "msec" == -1 will block forever.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005924 * for "ignore_input" see WaitForCharOr().
Bram Moolenaarcda77642016-06-04 13:32:35 +02005925 * "interrupted" (if not NULL) is set to TRUE when no character is available
5926 * but something else needs to be done.
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005927 * When a GUI is being used, this will never get called -- webb
5928 */
5929 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005930WaitForCharOrMouse(long msec, int *interrupted, int ignore_input)
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005931{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932#ifdef FEAT_MOUSE_GPM
5933 int gpm_process_wanted;
5934#endif
5935#ifdef FEAT_XCLIPBOARD
5936 int rest;
5937#endif
5938 int avail;
5939
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005940 if (!ignore_input && input_available()) /* something in inbuf[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941 return 1;
5942
5943#if defined(FEAT_MOUSE_DEC)
5944 /* May need to query the mouse position. */
5945 if (WantQueryMouse)
5946 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005947 WantQueryMouse = FALSE;
Bram Moolenaar92fd5992019-05-02 23:00:22 +02005948 if (!no_query_mouse_for_testing)
5949 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005950 }
5951#endif
5952
5953 /*
5954 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
5955 * events. This is a bit complicated, because they might both be defined.
5956 */
5957#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
5958# ifdef FEAT_XCLIPBOARD
5959 rest = 0;
5960 if (do_xterm_trace())
5961 rest = msec;
5962# endif
5963 do
5964 {
5965# ifdef FEAT_XCLIPBOARD
5966 if (rest != 0)
5967 {
5968 msec = XT_TRACE_DELAY;
5969 if (rest >= 0 && rest < XT_TRACE_DELAY)
5970 msec = rest;
5971 if (rest >= 0)
5972 rest -= msec;
5973 }
5974# endif
5975# ifdef FEAT_MOUSE_GPM
5976 gpm_process_wanted = 0;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005977 avail = RealWaitForChar(read_cmd_fd, msec,
Bram Moolenaarcda77642016-06-04 13:32:35 +02005978 &gpm_process_wanted, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979# else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005980 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005981# endif
5982 if (!avail)
5983 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005984 if (!ignore_input && input_available())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005985 return 1;
5986# ifdef FEAT_XCLIPBOARD
5987 if (rest == 0 || !do_xterm_trace())
5988# endif
5989 break;
5990 }
5991 }
5992 while (FALSE
5993# ifdef FEAT_MOUSE_GPM
5994 || (gpm_process_wanted && mch_gpm_process() == 0)
5995# endif
5996# ifdef FEAT_XCLIPBOARD
5997 || (!avail && rest != 0)
5998# endif
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005999 )
6000 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001
6002#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02006003 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006004#endif
6005 return avail;
6006}
6007
Bram Moolenaar4ffa0702013-12-11 17:12:37 +01006008#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00006009/*
6010 * Wait "msec" msec until a character is available from file descriptor "fd".
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006011 * "msec" == 0 will check for characters once.
6012 * "msec" == -1 will block until a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013 * When a GUI is being used, this will not be used for input -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006014 * Or when a Linux GPM mouse event is waiting.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006015 * Or when a clientserver message is on the queue.
Bram Moolenaarcda77642016-06-04 13:32:35 +02006016 * "interrupted" (if not NULL) is set to TRUE when no character is available
6017 * but something else needs to be done.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019#if defined(__BEOS__)
6020 int
6021#else
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006022 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006024RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025{
6026 int ret;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006027 int result;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006028#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006029 static int busy = FALSE;
6030
6031 /* May retry getting characters after an event was handled. */
6032# define MAY_LOOP
6033
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006034# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006035 /* Remember at what time we started, so that we know how much longer we
6036 * should wait after being interrupted. */
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01006037 long start_msec = msec;
6038 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02006040 if (msec > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006041 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042# endif
6043
6044 /* Handle being called recursively. This may happen for the session
6045 * manager stuff, it may save the file, which does a breakcheck. */
6046 if (busy)
6047 return 0;
6048#endif
6049
6050#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00006051 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052#endif
6053 {
6054#ifdef MAY_LOOP
6055 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006056# ifdef FEAT_MZSCHEME
6057 int mzquantum_used = FALSE;
6058# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059#endif
6060#ifndef HAVE_SELECT
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006061 /* each channel may use in, out and err */
6062 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063 int nfd;
6064# ifdef FEAT_XCLIPBOARD
6065 int xterm_idx = -1;
6066# endif
6067# ifdef FEAT_MOUSE_GPM
6068 int gpm_idx = -1;
6069# endif
6070# ifdef USE_XSMP
6071 int xsmp_idx = -1;
6072# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006073 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006075# ifdef FEAT_MZSCHEME
6076 mzvim_check_threads();
6077 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6078 {
6079 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
6080 mzquantum_used = TRUE;
6081 }
6082# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006083 fds[0].fd = fd;
6084 fds[0].events = POLLIN;
6085 nfd = 1;
6086
Bram Moolenaar071d4272004-06-13 20:20:40 +00006087# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006088 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006089 if (xterm_Shell != (Widget)0)
6090 {
6091 xterm_idx = nfd;
6092 fds[nfd].fd = ConnectionNumber(xterm_dpy);
6093 fds[nfd].events = POLLIN;
6094 nfd++;
6095 }
6096# endif
6097# ifdef FEAT_MOUSE_GPM
6098 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6099 {
6100 gpm_idx = nfd;
6101 fds[nfd].fd = gpm_fd;
6102 fds[nfd].events = POLLIN;
6103 nfd++;
6104 }
6105# endif
6106# ifdef USE_XSMP
6107 if (xsmp_icefd != -1)
6108 {
6109 xsmp_idx = nfd;
6110 fds[nfd].fd = xsmp_icefd;
6111 fds[nfd].events = POLLIN;
6112 nfd++;
6113 }
6114# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006115#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006116 nfd = channel_poll_setup(nfd, &fds, &towait);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006117#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006118 if (interrupted != NULL)
6119 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006120
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006121 ret = poll(fds, nfd, towait);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006122
6123 result = ret > 0 && (fds[0].revents & POLLIN);
Bram Moolenaarcda77642016-06-04 13:32:35 +02006124 if (result == 0 && interrupted != NULL && ret > 0)
6125 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006126
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006127# ifdef FEAT_MZSCHEME
6128 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006129 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006130 finished = FALSE;
6131# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006132
Bram Moolenaar071d4272004-06-13 20:20:40 +00006133# ifdef FEAT_XCLIPBOARD
6134 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
6135 {
6136 xterm_update(); /* Maybe we should hand out clipboard */
6137 if (--ret == 0 && !input_available())
6138 /* Try again */
6139 finished = FALSE;
6140 }
6141# endif
6142# ifdef FEAT_MOUSE_GPM
6143 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006144 *check_for_gpm = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006145# endif
6146# ifdef USE_XSMP
6147 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
6148 {
6149 if (fds[xsmp_idx].revents & POLLIN)
6150 {
6151 busy = TRUE;
6152 xsmp_handle_requests();
6153 busy = FALSE;
6154 }
6155 else if (fds[xsmp_idx].revents & POLLHUP)
6156 {
6157 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006158 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159 xsmp_close();
6160 }
6161 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006162 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163 }
6164# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006165#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar2c519cf2019-03-21 21:45:34 +01006166 // also call when ret == 0, we may be polling a keep-open channel
Bram Moolenaarf3360612017-10-01 16:21:31 +02006167 if (ret >= 0)
Bram Moolenaar2c519cf2019-03-21 21:45:34 +01006168 channel_poll_check(ret, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006169#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171#else /* HAVE_SELECT */
6172
6173 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006174 struct timeval *tvp;
Bram Moolenaar61fb8d82018-11-12 21:45:08 +01006175 // These are static because they can take 8 Kbyte each and cause the
6176 // signal stack to run out with -O3.
6177 static fd_set rfds, wfds, efds;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006178 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006179 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006181# ifdef FEAT_MZSCHEME
6182 mzvim_check_threads();
6183 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6184 {
6185 towait = p_mzq; /* don't wait longer than 'mzquantum' */
6186 mzquantum_used = TRUE;
6187 }
6188# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006190 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006191 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006192 tv.tv_sec = towait / 1000;
6193 tv.tv_usec = (towait % 1000) * (1000000/1000);
6194 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006196 else
6197 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006198
6199 /*
6200 * Select on ready for reading and exceptional condition (end of file).
6201 */
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006202select_eintr:
6203 FD_ZERO(&rfds);
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006204 FD_ZERO(&wfds);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 FD_ZERO(&efds);
6206 FD_SET(fd, &rfds);
6207# if !defined(__QNX__) && !defined(__CYGWIN32__)
6208 /* For QNX select() always returns 1 if this is set. Why? */
6209 FD_SET(fd, &efds);
6210# endif
6211 maxfd = fd;
6212
Bram Moolenaar071d4272004-06-13 20:20:40 +00006213# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006214 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 if (xterm_Shell != (Widget)0)
6216 {
6217 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
6218 if (maxfd < ConnectionNumber(xterm_dpy))
6219 maxfd = ConnectionNumber(xterm_dpy);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006220
6221 /* An event may have already been read but not handled. In
6222 * particulary, XFlush may cause this. */
6223 xterm_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006224 }
6225# endif
6226# ifdef FEAT_MOUSE_GPM
6227 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6228 {
6229 FD_SET(gpm_fd, &rfds);
6230 FD_SET(gpm_fd, &efds);
6231 if (maxfd < gpm_fd)
6232 maxfd = gpm_fd;
6233 }
6234# endif
6235# ifdef USE_XSMP
6236 if (xsmp_icefd != -1)
6237 {
6238 FD_SET(xsmp_icefd, &rfds);
6239 FD_SET(xsmp_icefd, &efds);
6240 if (maxfd < xsmp_icefd)
6241 maxfd = xsmp_icefd;
6242 }
6243# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006244# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006245 maxfd = channel_select_setup(maxfd, &rfds, &wfds, &tv, &tvp);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006246# endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006247 if (interrupted != NULL)
6248 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006249
Bram Moolenaar643b6142018-09-12 20:29:09 +02006250 ret = select(maxfd + 1, SELECT_TYPE_ARG234 &rfds,
6251 SELECT_TYPE_ARG234 &wfds, SELECT_TYPE_ARG234 &efds, tvp);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006252 result = ret > 0 && FD_ISSET(fd, &rfds);
6253 if (result)
6254 --ret;
Bram Moolenaarcda77642016-06-04 13:32:35 +02006255 else if (interrupted != NULL && ret > 0)
6256 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006257
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006258# ifdef EINTR
6259 if (ret == -1 && errno == EINTR)
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006260 {
6261 /* Check whether window has been resized, EINTR may be caused by
6262 * SIGWINCH. */
6263 if (do_resize)
6264 handle_resize();
6265
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006266 /* Interrupted by a signal, need to try again. We ignore msec
6267 * here, because we do want to check even after a timeout if
6268 * characters are available. Needed for reading output of an
6269 * external command after the process has finished. */
6270 goto select_eintr;
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006271 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006272# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00006273# ifdef __TANDEM
6274 if (ret == -1 && errno == ENOTSUP)
6275 {
6276 FD_ZERO(&rfds);
6277 FD_ZERO(&efds);
6278 ret = 0;
6279 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006280# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006281# ifdef FEAT_MZSCHEME
6282 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006283 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006284 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285# endif
6286
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287# ifdef FEAT_XCLIPBOARD
6288 if (ret > 0 && xterm_Shell != (Widget)0
6289 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
6290 {
6291 xterm_update(); /* Maybe we should hand out clipboard */
6292 /* continue looping when we only got the X event and the input
6293 * buffer is empty */
6294 if (--ret == 0 && !input_available())
6295 {
6296 /* Try again */
6297 finished = FALSE;
6298 }
6299 }
6300# endif
6301# ifdef FEAT_MOUSE_GPM
6302 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
6303 {
6304 if (FD_ISSET(gpm_fd, &efds))
6305 gpm_close();
6306 else if (FD_ISSET(gpm_fd, &rfds))
6307 *check_for_gpm = 1;
6308 }
6309# endif
6310# ifdef USE_XSMP
6311 if (ret > 0 && xsmp_icefd != -1)
6312 {
6313 if (FD_ISSET(xsmp_icefd, &efds))
6314 {
6315 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006316 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006317 xsmp_close();
6318 if (--ret == 0)
6319 finished = FALSE; /* keep going if event was only one */
6320 }
6321 else if (FD_ISSET(xsmp_icefd, &rfds))
6322 {
6323 busy = TRUE;
6324 xsmp_handle_requests();
6325 busy = FALSE;
6326 if (--ret == 0)
6327 finished = FALSE; /* keep going if event was only one */
6328 }
6329 }
6330# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006331#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006332 /* also call when ret == 0, we may be polling a keep-open channel */
6333 if (ret >= 0)
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006334 ret = channel_select_check(ret, &rfds, &wfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006335#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336
6337#endif /* HAVE_SELECT */
6338
6339#ifdef MAY_LOOP
6340 if (finished || msec == 0)
6341 break;
6342
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006343# ifdef FEAT_CLIENTSERVER
6344 if (server_waiting())
6345 break;
6346# endif
6347
Bram Moolenaar071d4272004-06-13 20:20:40 +00006348 /* We're going to loop around again, find out for how long */
6349 if (msec > 0)
6350 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006351# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352 /* Compute remaining wait time. */
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006353 msec = start_msec - ELAPSED_FUNC(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006354# else
6355 /* Guess we got interrupted halfway. */
6356 msec = msec / 2;
6357# endif
6358 if (msec <= 0)
6359 break; /* waited long enough */
6360 }
6361#endif
6362 }
6363
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006364 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365}
6366
Bram Moolenaar071d4272004-06-13 20:20:40 +00006367#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368/*
Bram Moolenaar02743632005-07-25 20:42:36 +00006369 * Expand a path into all matching files and/or directories. Handles "*",
6370 * "?", "[a-z]", "**", etc.
6371 * "path" has backslashes before chars that are not to be expanded.
6372 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006373 */
6374 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006375mch_expandpath(
6376 garray_T *gap,
6377 char_u *path,
6378 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379{
Bram Moolenaar02743632005-07-25 20:42:36 +00006380 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381}
6382#endif
6383
6384/*
6385 * mch_expand_wildcards() - this code does wild-card pattern matching using
6386 * the shell
6387 *
6388 * return OK for success, FAIL for error (you may lose some memory) and put
6389 * an error message in *file.
6390 *
6391 * num_pat is number of input patterns
6392 * pat is array of pointers to input patterns
6393 * num_file is pointer to number of matched file names
6394 * file is pointer to array of pointers to matched file names
6395 */
6396
6397#ifndef SEEK_SET
6398# define SEEK_SET 0
6399#endif
6400#ifndef SEEK_END
6401# define SEEK_END 2
6402#endif
6403
Bram Moolenaar5555acc2006-04-07 21:33:12 +00006404#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00006405
Bram Moolenaar071d4272004-06-13 20:20:40 +00006406 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006407mch_expand_wildcards(
6408 int num_pat,
6409 char_u **pat,
6410 int *num_file,
6411 char_u ***file,
6412 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006413{
6414 int i;
6415 size_t len;
Bram Moolenaar85325f82017-03-30 21:18:45 +02006416 long llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006417 char_u *p;
6418 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419
Bram Moolenaarc7247912008-01-13 12:54:11 +00006420 /*
6421 * This is the non-OS/2 implementation (really Unix).
6422 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006423 int j;
6424 char_u *tempname;
6425 char_u *command;
6426 FILE *fd;
6427 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006428#define STYLE_ECHO 0 /* use "echo", the default */
6429#define STYLE_GLOB 1 /* use "glob", for csh */
6430#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
6431#define STYLE_PRINT 3 /* use "print -N", for zsh */
6432#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
6433 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006434 int shell_style = STYLE_ECHO;
6435 int check_spaces;
6436 static int did_find_nul = FALSE;
Bram Moolenaarbdace832019-03-02 10:13:42 +01006437 int ampersand = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006438 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006439 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006440
6441 *num_file = 0; /* default: no files found */
6442 *file = NULL;
6443
6444 /*
6445 * If there are no wildcards, just copy the names to allocated memory.
6446 * Saves a lot of time, because we don't have to start a new shell.
6447 */
6448 if (!have_wildcard(num_pat, pat))
6449 return save_patterns(num_pat, pat, num_file, file);
6450
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006451# ifdef HAVE_SANDBOX
6452 /* Don't allow any shell command in the sandbox. */
6453 if (sandbox != 0 && check_secure())
6454 return FAIL;
6455# endif
6456
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457 /*
6458 * Don't allow the use of backticks in secure and restricted mode.
6459 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006460 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461 for (i = 0; i < num_pat; ++i)
6462 if (vim_strchr(pat[i], '`') != NULL
6463 && (check_restricted() || check_secure()))
6464 return FAIL;
6465
6466 /*
6467 * get a name for the temp file
6468 */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02006469 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006470 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006471 emsg(_(e_notmp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 return FAIL;
6473 }
6474
6475 /*
6476 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00006477 * file.
6478 * STYLE_BT: NL separated
6479 * If expanding `cmd` execute it directly.
6480 * STYLE_GLOB: NUL separated
6481 * If we use *csh, "glob" will work better than "echo".
6482 * STYLE_PRINT: NL or NUL separated
6483 * If we use *zsh, "print -N" will work better than "glob".
6484 * STYLE_VIMGLOB: NL separated
6485 * If we use *sh*, we define "vimglob()".
6486 * STYLE_ECHO: space separated.
6487 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006488 */
6489 if (num_pat == 1 && *pat[0] == '`'
6490 && (len = STRLEN(pat[0])) > 2
6491 && *(pat[0] + len - 1) == '`')
6492 shell_style = STYLE_BT;
6493 else if ((len = STRLEN(p_sh)) >= 3)
6494 {
6495 if (STRCMP(p_sh + len - 3, "csh") == 0)
6496 shell_style = STYLE_GLOB;
6497 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
6498 shell_style = STYLE_PRINT;
6499 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006500 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
6501 "sh") != NULL)
6502 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006503
Bram Moolenaarc7247912008-01-13 12:54:11 +00006504 /* Compute the length of the command. We need 2 extra bytes: for the
6505 * optional '&' and for the NUL.
6506 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006508 if (shell_style == STYLE_VIMGLOB)
6509 len += STRLEN(sh_vimglob_func);
6510
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006511 for (i = 0; i < num_pat; ++i)
6512 {
6513 /* Count the length of the patterns in the same way as they are put in
6514 * "command" below. */
6515#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00006516 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006517#else
6518 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006519 for (j = 0; pat[i][j] != NUL; ++j)
6520 {
6521 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
6522 ++len; /* may add a backslash */
6523 ++len;
6524 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006525#endif
6526 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006527 command = alloc(len);
6528 if (command == NULL)
6529 {
6530 /* out of memory */
6531 vim_free(tempname);
6532 return FAIL;
6533 }
6534
6535 /*
6536 * Build the shell command:
6537 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
6538 * recognizes this).
6539 * - Add the shell command to print the expanded names.
6540 * - Add the temp file name.
6541 * - Add the file name patterns.
6542 */
6543 if (shell_style == STYLE_BT)
6544 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00006545 /* change `command; command& ` to (command; command ) */
6546 STRCPY(command, "(");
6547 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006548 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006549 *p-- = ')'; /* remove last backtick */
Bram Moolenaar1c465442017-03-12 20:10:05 +01006550 while (p > command && VIM_ISWHITE(*p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006551 --p;
6552 if (*p == '&') /* remove trailing '&' */
6553 {
Bram Moolenaarbdace832019-03-02 10:13:42 +01006554 ampersand = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006555 *p = ' ';
6556 }
6557 STRCAT(command, ">");
6558 }
6559 else
6560 {
6561 if (flags & EW_NOTFOUND)
6562 STRCPY(command, "set nonomatch; ");
6563 else
6564 STRCPY(command, "unset nonomatch; ");
6565 if (shell_style == STYLE_GLOB)
6566 STRCAT(command, "glob >");
6567 else if (shell_style == STYLE_PRINT)
6568 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00006569 else if (shell_style == STYLE_VIMGLOB)
6570 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006571 else
6572 STRCAT(command, "echo >");
6573 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006574
Bram Moolenaar071d4272004-06-13 20:20:40 +00006575 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00006576
Bram Moolenaar071d4272004-06-13 20:20:40 +00006577 if (shell_style != STYLE_BT)
6578 for (i = 0; i < num_pat; ++i)
6579 {
6580 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00006581 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006582 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583#ifdef USE_SYSTEM
6584 STRCAT(command, " \"");
6585 STRCAT(command, pat[i]);
6586 STRCAT(command, "\"");
6587#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00006588 int intick = FALSE;
6589
Bram Moolenaar071d4272004-06-13 20:20:40 +00006590 p = command + STRLEN(command);
6591 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00006592 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00006593 {
6594 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00006595 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006596 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
6597 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006598 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00006599 * backslash inside backticks, before a special character
6600 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006601 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00006602 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
6603 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006604 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006605 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006606 }
Bram Moolenaare4df1642014-08-29 12:58:44 +02006607 else if (!intick
6608 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$')
6609 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00006610 /* Put a backslash before a special character, but not
Bram Moolenaare4df1642014-08-29 12:58:44 +02006611 * when inside ``. And not for $var when EW_KEEPDOLLAR is
6612 * set. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006613 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006614
6615 /* Copy one character. */
6616 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00006617 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006618 *p = NUL;
6619#endif
6620 }
6621 if (flags & EW_SILENT)
6622 show_shell_mess = FALSE;
Bram Moolenaarbdace832019-03-02 10:13:42 +01006623 if (ampersand)
Bram Moolenaarc7247912008-01-13 12:54:11 +00006624 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006625
6626 /*
6627 * Using zsh -G: If a pattern has no matches, it is just deleted from
6628 * the argument list, otherwise zsh gives an error message and doesn't
6629 * expand any other pattern.
6630 */
6631 if (shell_style == STYLE_PRINT)
6632 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
6633
6634 /*
6635 * If we use -f then shell variables set in .cshrc won't get expanded.
6636 * vi can do it, so we will too, but it is only necessary if there is a "$"
6637 * in one of the patterns, otherwise we can still use the fast option.
6638 */
6639 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
6640 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
6641
6642 /*
6643 * execute the shell command
6644 */
6645 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6646
6647 /* When running in the background, give it some time to create the temp
6648 * file, but don't wait for it to finish. */
Bram Moolenaarbdace832019-03-02 10:13:42 +01006649 if (ampersand)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006650 mch_delay(10L, TRUE);
6651
6652 extra_shell_arg = NULL; /* cleanup */
6653 show_shell_mess = TRUE;
6654 vim_free(command);
6655
Bram Moolenaarc7247912008-01-13 12:54:11 +00006656 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006657 {
6658 mch_remove(tempname);
6659 vim_free(tempname);
6660 /*
6661 * With interactive completion, the error message is not printed.
6662 * However with USE_SYSTEM, I don't know how to turn off error messages
6663 * from the shell, so screen may still get messed up -- webb.
6664 */
6665#ifndef USE_SYSTEM
6666 if (!(flags & EW_SILENT))
6667#endif
6668 {
6669 redraw_later_clear(); /* probably messed up screen */
6670 msg_putchar('\n'); /* clear bottom line quickly */
6671 cmdline_row = Rows - 1; /* continue on last line */
6672#ifdef USE_SYSTEM
6673 if (!(flags & EW_SILENT))
6674#endif
6675 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006676 msg(_(e_wildexpand));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677 msg_start(); /* don't overwrite this message */
6678 }
6679 }
6680 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
6681 * EW_NOTFOUND is given */
6682 if (shell_style == STYLE_BT)
6683 return FAIL;
6684 goto notfound;
6685 }
6686
6687 /*
6688 * read the names from the file into memory
6689 */
6690 fd = fopen((char *)tempname, READBIN);
6691 if (fd == NULL)
6692 {
6693 /* Something went wrong, perhaps a file name with a special char. */
6694 if (!(flags & EW_SILENT))
6695 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006696 msg(_(e_wildexpand));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006697 msg_start(); /* don't overwrite this message */
6698 }
6699 vim_free(tempname);
6700 goto notfound;
6701 }
6702 fseek(fd, 0L, SEEK_END);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006703 llen = ftell(fd); /* get size of temp file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704 fseek(fd, 0L, SEEK_SET);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006705 if (llen < 0)
6706 /* just in case ftell() would fail */
6707 buffer = NULL;
6708 else
6709 buffer = alloc(llen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006710 if (buffer == NULL)
6711 {
6712 /* out of memory */
6713 mch_remove(tempname);
6714 vim_free(tempname);
6715 fclose(fd);
6716 return FAIL;
6717 }
Bram Moolenaar85325f82017-03-30 21:18:45 +02006718 len = llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006719 i = fread((char *)buffer, 1, len, fd);
6720 fclose(fd);
6721 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00006722 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006723 {
6724 /* unexpected read error */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006725 semsg(_(e_notread), tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726 vim_free(tempname);
6727 vim_free(buffer);
6728 return FAIL;
6729 }
6730 vim_free(tempname);
6731
Bram Moolenaar1eed5322019-02-26 17:03:54 +01006732# ifdef __CYGWIN__
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
6734 p = buffer;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02006735 for (i = 0; i < (int)len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
6737 *p++ = buffer[i];
6738 len = p - buffer;
6739# endif
6740
6741
6742 /* file names are separated with Space */
6743 if (shell_style == STYLE_ECHO)
6744 {
6745 buffer[len] = '\n'; /* make sure the buffer ends in NL */
6746 p = buffer;
6747 for (i = 0; *p != '\n'; ++i) /* count number of entries */
6748 {
6749 while (*p != ' ' && *p != '\n')
6750 ++p;
6751 p = skipwhite(p); /* skip to next entry */
6752 }
6753 }
6754 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006755 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006756 {
6757 buffer[len] = NUL; /* make sure the buffer ends in NUL */
6758 p = buffer;
6759 for (i = 0; *p != NUL; ++i) /* count number of entries */
6760 {
6761 while (*p != '\n' && *p != NUL)
6762 ++p;
6763 if (*p != NUL)
6764 ++p;
6765 p = skipwhite(p); /* skip leading white space */
6766 }
6767 }
6768 /* file names are separated with NUL */
6769 else
6770 {
6771 /*
6772 * Some versions of zsh use spaces instead of NULs to separate
6773 * results. Only do this when there is no NUL before the end of the
6774 * buffer, otherwise we would never be able to use file names with
6775 * embedded spaces when zsh does use NULs.
6776 * When we found a NUL once, we know zsh is OK, set did_find_nul and
6777 * don't check for spaces again.
6778 */
6779 check_spaces = FALSE;
6780 if (shell_style == STYLE_PRINT && !did_find_nul)
6781 {
6782 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02006783 buffer[len] = NUL;
Bram Moolenaarb011af92013-12-11 13:21:51 +01006784 if (len && (int)STRLEN(buffer) < (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006785 did_find_nul = TRUE;
6786 else
6787 check_spaces = TRUE;
6788 }
6789
6790 /*
6791 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
6792 * already is one, for STYLE_GLOB it needs to be added.
6793 */
6794 if (len && buffer[len - 1] == NUL)
6795 --len;
6796 else
6797 buffer[len] = NUL;
6798 i = 0;
6799 for (p = buffer; p < buffer + len; ++p)
6800 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
6801 {
6802 ++i;
6803 *p = NUL;
6804 }
6805 if (len)
6806 ++i; /* count last entry */
6807 }
6808 if (i == 0)
6809 {
6810 /*
6811 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
6812 * /bin/sh will happily expand it to nothing rather than returning an
6813 * error; and hey, it's good to check anyway -- webb.
6814 */
6815 vim_free(buffer);
6816 goto notfound;
6817 }
6818 *num_file = i;
6819 *file = (char_u **)alloc(sizeof(char_u *) * i);
6820 if (*file == NULL)
6821 {
6822 /* out of memory */
6823 vim_free(buffer);
6824 return FAIL;
6825 }
6826
6827 /*
6828 * Isolate the individual file names.
6829 */
6830 p = buffer;
6831 for (i = 0; i < *num_file; ++i)
6832 {
6833 (*file)[i] = p;
6834 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006835 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
6836 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006837 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00006838 while (!(shell_style == STYLE_ECHO && *p == ' ')
6839 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006840 ++p;
6841 if (p == buffer + len) /* last entry */
6842 *p = NUL;
6843 else
6844 {
6845 *p++ = NUL;
6846 p = skipwhite(p); /* skip to next entry */
6847 }
6848 }
6849 else /* NUL separates */
6850 {
6851 while (*p && p < buffer + len) /* skip entry */
6852 ++p;
6853 ++p; /* skip NUL */
6854 }
6855 }
6856
6857 /*
6858 * Move the file names to allocated memory.
6859 */
6860 for (j = 0, i = 0; i < *num_file; ++i)
6861 {
6862 /* Require the files to exist. Helps when using /bin/sh */
6863 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6864 continue;
6865
6866 /* check if this entry should be included */
6867 dir = (mch_isdir((*file)[i]));
6868 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6869 continue;
6870
Bram Moolenaara2031822006-03-07 22:29:51 +00006871 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006872 if (!dir && (flags & EW_EXEC)
6873 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006874 continue;
6875
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
6877 if (p)
6878 {
6879 STRCPY(p, (*file)[i]);
6880 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00006881 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006882 (*file)[j++] = p;
6883 }
6884 }
6885 vim_free(buffer);
6886 *num_file = j;
6887
6888 if (*num_file == 0) /* rejected all entries */
6889 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01006890 VIM_CLEAR(*file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006891 goto notfound;
6892 }
6893
6894 return OK;
6895
6896notfound:
6897 if (flags & EW_NOTFOUND)
6898 return save_patterns(num_pat, pat, num_file, file);
6899 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006900}
6901
6902#endif /* VMS */
6903
Bram Moolenaar071d4272004-06-13 20:20:40 +00006904 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006905save_patterns(
6906 int num_pat,
6907 char_u **pat,
6908 int *num_file,
6909 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910{
6911 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006912 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913
6914 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
6915 if (*file == NULL)
6916 return FAIL;
6917 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00006918 {
6919 s = vim_strsave(pat[i]);
6920 if (s != NULL)
6921 /* Be compatible with expand_filename(): halve the number of
6922 * backslashes. */
6923 backslash_halve(s);
6924 (*file)[i] = s;
6925 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 *num_file = num_pat;
6927 return OK;
6928}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006929
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930/*
6931 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
6932 * expand.
6933 */
6934 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006935mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006937 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006938 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939 if (*p == '\\' && p[1] != NUL)
6940 ++p;
6941 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942 if (vim_strchr((char_u *)
6943#ifdef VMS
6944 "*?%"
6945#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006946 "*?[{'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006947#endif
6948 , *p) != NULL)
6949 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 }
6951 return FALSE;
6952}
6953
6954/*
6955 * Return TRUE if the string "p" contains a wildcard.
6956 * Don't recognize '~' at the end as a wildcard.
6957 */
6958 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006959mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006960{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006961 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963 if (*p == '\\' && p[1] != NUL)
6964 ++p;
6965 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006966 if (vim_strchr((char_u *)
6967#ifdef VMS
6968 "*?%$"
6969#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006970 "*?[{`'$"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006971#endif
6972 , *p) != NULL
6973 || (*p == '~' && p[1] != NUL))
6974 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975 }
6976 return FALSE;
6977}
6978
Bram Moolenaar071d4272004-06-13 20:20:40 +00006979 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006980have_wildcard(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006981{
6982 int i;
6983
6984 for (i = 0; i < num; i++)
6985 if (mch_has_wildcard(file[i]))
6986 return 1;
6987 return 0;
6988}
6989
6990 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006991have_dollars(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006992{
6993 int i;
6994
6995 for (i = 0; i < num; i++)
6996 if (vim_strchr(file[i], '$') != NULL)
6997 return TRUE;
6998 return FALSE;
6999}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007000
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01007001#if !defined(HAVE_RENAME) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002/*
7003 * Scaled-down version of rename(), which is missing in Xenix.
7004 * This version can only move regular files and will fail if the
7005 * destination exists.
7006 */
7007 int
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01007008mch_rename(const char *src, const char *dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009{
7010 struct stat st;
7011
7012 if (stat(dest, &st) >= 0) /* fail if destination exists */
7013 return -1;
7014 if (link(src, dest) != 0) /* link file to new name */
7015 return -1;
7016 if (mch_remove(src) == 0) /* delete link to old name */
7017 return 0;
7018 return -1;
7019}
7020#endif /* !HAVE_RENAME */
7021
7022#ifdef FEAT_MOUSE_GPM
7023/*
7024 * Initializes connection with gpm (if it isn't already opened)
7025 * Return 1 if succeeded (or connection already opened), 0 if failed
7026 */
7027 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007028gpm_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029{
7030 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
7031
7032 if (!gpm_flag)
7033 {
7034 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
7035 gpm_connect.defaultMask = ~GPM_HARD;
7036 /* Default handling for mouse move*/
7037 gpm_connect.minMod = 0; /* Handle any modifier keys */
7038 gpm_connect.maxMod = 0xffff;
7039 if (Gpm_Open(&gpm_connect, 0) > 0)
7040 {
7041 /* gpm library tries to handling TSTP causes
7042 * problems. Anyways, we close connection to Gpm whenever
7043 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00007044 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00007046# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00007048# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049 return 1; /* succeed */
7050 }
7051 if (gpm_fd == -2)
7052 Gpm_Close(); /* We don't want to talk to xterm via gpm */
7053 return 0;
7054 }
7055 return 1; /* already open */
7056}
7057
7058/*
7059 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00007060 */
7061 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007062gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007063{
7064 if (gpm_flag && gpm_fd >= 0) /* if Open */
7065 Gpm_Close();
7066}
7067
7068/* Reads gpm event and adds special keys to input buf. Returns length of
7069 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02007070 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007071 */
7072 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007073mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074{
7075 int button;
7076 static Gpm_Event gpm_event;
7077 char_u string[6];
7078 int_u vim_modifiers;
7079 int row,col;
7080 unsigned char buttons_mask;
7081 unsigned char gpm_modifiers;
7082 static unsigned char old_buttons = 0;
7083
7084 Gpm_GetEvent(&gpm_event);
7085
7086#ifdef FEAT_GUI
7087 /* Don't put events in the input queue now. */
7088 if (hold_gui_events)
7089 return 0;
7090#endif
7091
7092 row = gpm_event.y - 1;
7093 col = gpm_event.x - 1;
7094
7095 string[0] = ESC; /* Our termcode */
7096 string[1] = 'M';
7097 string[2] = 'G';
7098 switch (GPM_BARE_EVENTS(gpm_event.type))
7099 {
7100 case GPM_DRAG:
7101 string[3] = MOUSE_DRAG;
7102 break;
7103 case GPM_DOWN:
7104 buttons_mask = gpm_event.buttons & ~old_buttons;
7105 old_buttons = gpm_event.buttons;
7106 switch (buttons_mask)
7107 {
7108 case GPM_B_LEFT:
7109 button = MOUSE_LEFT;
7110 break;
7111 case GPM_B_MIDDLE:
7112 button = MOUSE_MIDDLE;
7113 break;
7114 case GPM_B_RIGHT:
7115 button = MOUSE_RIGHT;
7116 break;
7117 default:
7118 return 0;
7119 /*Don't know what to do. Can more than one button be
7120 * reported in one event? */
7121 }
7122 string[3] = (char_u)(button | 0x20);
7123 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
7124 break;
7125 case GPM_UP:
7126 string[3] = MOUSE_RELEASE;
7127 old_buttons &= ~gpm_event.buttons;
7128 break;
7129 default:
7130 return 0;
7131 }
7132 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
7133 gpm_modifiers = gpm_event.modifiers;
7134 vim_modifiers = 0x0;
7135 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
7136 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
7137 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
7138 */
7139 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
7140 vim_modifiers |= MOUSE_SHIFT;
7141
7142 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
7143 vim_modifiers |= MOUSE_CTRL;
7144 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
7145 vim_modifiers |= MOUSE_ALT;
7146 string[3] |= vim_modifiers;
7147 string[4] = (char_u)(col + ' ' + 1);
7148 string[5] = (char_u)(row + ' ' + 1);
7149 add_to_input_buf(string, 6);
7150 return 6;
7151}
7152#endif /* FEAT_MOUSE_GPM */
7153
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007154#ifdef FEAT_SYSMOUSE
7155/*
7156 * Initialize connection with sysmouse.
7157 * Let virtual console inform us with SIGUSR2 for pending sysmouse
7158 * output, any sysmouse output than will be processed via sig_sysmouse().
7159 * Return OK if succeeded, FAIL if failed.
7160 */
7161 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007162sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007163{
7164 struct mouse_info mouse;
7165
7166 mouse.operation = MOUSE_MODE;
7167 mouse.u.mode.mode = 0;
7168 mouse.u.mode.signal = SIGUSR2;
7169 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
7170 {
7171 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
7172 mouse.operation = MOUSE_SHOW;
7173 ioctl(1, CONS_MOUSECTL, &mouse);
7174 return OK;
7175 }
7176 return FAIL;
7177}
7178
7179/*
7180 * Stop processing SIGUSR2 signals, and also make sure that
7181 * virtual console do not send us any sysmouse related signal.
7182 */
7183 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007184sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007185{
7186 struct mouse_info mouse;
7187
7188 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
7189 mouse.operation = MOUSE_MODE;
7190 mouse.u.mode.mode = 0;
7191 mouse.u.mode.signal = 0;
7192 ioctl(1, CONS_MOUSECTL, &mouse);
7193}
7194
7195/*
7196 * Gets info from sysmouse and adds special keys to input buf.
7197 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007198 static RETSIGTYPE
7199sig_sysmouse SIGDEFARG(sigarg)
7200{
7201 struct mouse_info mouse;
7202 struct video_info video;
7203 char_u string[6];
7204 int row, col;
7205 int button;
7206 int buttons;
7207 static int oldbuttons = 0;
7208
7209#ifdef FEAT_GUI
7210 /* Don't put events in the input queue now. */
7211 if (hold_gui_events)
7212 return;
7213#endif
7214
7215 mouse.operation = MOUSE_GETINFO;
7216 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
7217 && ioctl(1, FBIO_MODEINFO, &video) != -1
7218 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
7219 && video.vi_cheight > 0 && video.vi_cwidth > 0)
7220 {
7221 row = mouse.u.data.y / video.vi_cheight;
7222 col = mouse.u.data.x / video.vi_cwidth;
7223 buttons = mouse.u.data.buttons;
7224 string[0] = ESC; /* Our termcode */
7225 string[1] = 'M';
7226 string[2] = 'S';
7227 if (oldbuttons == buttons && buttons != 0)
7228 {
7229 button = MOUSE_DRAG;
7230 }
7231 else
7232 {
7233 switch (buttons)
7234 {
7235 case 0:
7236 button = MOUSE_RELEASE;
7237 break;
7238 case 1:
7239 button = MOUSE_LEFT;
7240 break;
7241 case 2:
7242 button = MOUSE_MIDDLE;
7243 break;
7244 case 4:
7245 button = MOUSE_RIGHT;
7246 break;
7247 default:
7248 return;
7249 }
7250 oldbuttons = buttons;
7251 }
7252 string[3] = (char_u)(button);
7253 string[4] = (char_u)(col + ' ' + 1);
7254 string[5] = (char_u)(row + ' ' + 1);
7255 add_to_input_buf(string, 6);
7256 }
7257 return;
7258}
7259#endif /* FEAT_SYSMOUSE */
7260
Bram Moolenaar071d4272004-06-13 20:20:40 +00007261#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01007262typedef char_u * (*STRPROCSTR)(char_u *);
7263typedef char_u * (*INTPROCSTR)(int);
7264typedef int (*STRPROCINT)(char_u *);
7265typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007266
7267/*
7268 * Call a DLL routine which takes either a string or int param
7269 * and returns an allocated string.
7270 */
7271 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007272mch_libcall(
7273 char_u *libname,
7274 char_u *funcname,
7275 char_u *argstring, /* NULL when using a argint */
7276 int argint,
7277 char_u **string_result,/* NULL when using number_result */
7278 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007279{
7280# if defined(USE_DLOPEN)
7281 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007282 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007283# else
7284 shl_t hinstLib;
7285# endif
7286 STRPROCSTR ProcAdd;
7287 INTPROCSTR ProcAddI;
7288 char_u *retval_str = NULL;
7289 int retval_int = 0;
7290 int success = FALSE;
7291
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007292 /*
7293 * Get a handle to the DLL module.
7294 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007295# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007296 /* First clear any error, it's not cleared by the dlopen() call. */
7297 (void)dlerror();
7298
Bram Moolenaar071d4272004-06-13 20:20:40 +00007299 hinstLib = dlopen((char *)libname, RTLD_LAZY
7300# ifdef RTLD_LOCAL
7301 | RTLD_LOCAL
7302# endif
7303 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007304 if (hinstLib == NULL)
7305 {
7306 /* "dlerr" must be used before dlclose() */
7307 dlerr = (char *)dlerror();
7308 if (dlerr != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007309 semsg(_("dlerror = \"%s\""), dlerr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007310 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007311# else
7312 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
7313# endif
7314
7315 /* If the handle is valid, try to get the function address. */
7316 if (hinstLib != NULL)
7317 {
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007318# ifdef USING_SETJMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007319 /*
7320 * Catch a crash when calling the library function. For example when
7321 * using a number where a string pointer is expected.
7322 */
7323 mch_startjmp();
7324 if (SETJMP(lc_jump_env) != 0)
7325 {
7326 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007327# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007328 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007329# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007330 mch_didjmp();
7331 }
7332 else
7333# endif
7334 {
7335 retval_str = NULL;
7336 retval_int = 0;
7337
7338 if (argstring != NULL)
7339 {
7340# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007341 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007342 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007343# else
7344 if (shl_findsym(&hinstLib, (const char *)funcname,
7345 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
7346 ProcAdd = NULL;
7347# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007348 if ((success = (ProcAdd != NULL
7349# if defined(USE_DLOPEN)
7350 && dlerr == NULL
7351# endif
7352 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007353 {
7354 if (string_result == NULL)
7355 retval_int = ((STRPROCINT)ProcAdd)(argstring);
7356 else
7357 retval_str = (ProcAdd)(argstring);
7358 }
7359 }
7360 else
7361 {
7362# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007363 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007364 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007365# else
7366 if (shl_findsym(&hinstLib, (const char *)funcname,
7367 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
7368 ProcAddI = NULL;
7369# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007370 if ((success = (ProcAddI != NULL
7371# if defined(USE_DLOPEN)
7372 && dlerr == NULL
7373# endif
7374 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007375 {
7376 if (string_result == NULL)
7377 retval_int = ((INTPROCINT)ProcAddI)(argint);
7378 else
7379 retval_str = (ProcAddI)(argint);
7380 }
7381 }
7382
7383 /* Save the string before we free the library. */
7384 /* Assume that a "1" or "-1" result is an illegal pointer. */
7385 if (string_result == NULL)
7386 *number_result = retval_int;
7387 else if (retval_str != NULL
7388 && retval_str != (char_u *)1
7389 && retval_str != (char_u *)-1)
7390 *string_result = vim_strsave(retval_str);
7391 }
7392
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007393# ifdef USING_SETJMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007394 mch_endjmp();
7395# ifdef SIGHASARG
7396 if (lc_signal != 0)
7397 {
7398 int i;
7399
7400 /* try to find the name of this signal */
7401 for (i = 0; signal_info[i].sig != -1; i++)
7402 if (lc_signal == signal_info[i].sig)
7403 break;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007404 semsg("E368: got SIG%s in libcall()", signal_info[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007405 }
7406# endif
7407# endif
7408
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007410 /* "dlerr" must be used before dlclose() */
7411 if (dlerr != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007412 semsg(_("dlerror = \"%s\""), dlerr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007413
7414 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007415 (void)dlclose(hinstLib);
7416# else
7417 (void)shl_unload(hinstLib);
7418# endif
7419 }
7420
7421 if (!success)
7422 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007423 semsg(_(e_libcall), funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007424 return FAIL;
7425 }
7426
7427 return OK;
7428}
7429#endif
7430
7431#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
7432static int xterm_trace = -1; /* default: disabled */
7433static int xterm_button;
7434
7435/*
7436 * Setup a dummy window for X selections in a terminal.
7437 */
7438 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007439setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007440{
7441 int z = 0;
7442 char *strp = "";
7443 Widget AppShell;
7444
7445 if (!x_connect_to_server())
7446 return;
7447
7448 open_app_context();
7449 if (app_context != NULL && xterm_Shell == (Widget)0)
7450 {
7451 int (*oldhandler)();
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007452# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007453 int (*oldIOhandler)();
Bram Moolenaaredce7422019-01-20 18:39:30 +01007454# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007455# ifdef ELAPSED_FUNC
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01007456 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007457
7458 if (p_verbose > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007459 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007460# endif
7461
7462 /* Ignore X errors while opening the display */
7463 oldhandler = XSetErrorHandler(x_error_check);
7464
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007465# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007466 /* Ignore X IO errors while opening the display */
7467 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7468 mch_startjmp();
7469 if (SETJMP(lc_jump_env) != 0)
7470 {
7471 mch_didjmp();
7472 xterm_dpy = NULL;
7473 }
7474 else
Bram Moolenaaredce7422019-01-20 18:39:30 +01007475# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007476 {
7477 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7478 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007479 if (xterm_dpy != NULL)
7480 xterm_dpy_retry_count = 0;
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007481# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007482 mch_endjmp();
Bram Moolenaaredce7422019-01-20 18:39:30 +01007483# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007484 }
7485
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007486# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007487 /* Now handle X IO errors normally. */
7488 (void)XSetIOErrorHandler(oldIOhandler);
Bram Moolenaaredce7422019-01-20 18:39:30 +01007489# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007490 /* Now handle X errors normally. */
7491 (void)XSetErrorHandler(oldhandler);
7492
7493 if (xterm_dpy == NULL)
7494 {
7495 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007496 verb_msg(_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007497 return;
7498 }
7499
7500 /* Catch terminating error of the X server connection. */
7501 (void)XSetIOErrorHandler(x_IOerror_handler);
7502
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007503# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00007504 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007505 {
7506 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007507 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007508 verbose_leave();
7509 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007510# endif
7511
7512 /* Create a Shell to make converters work. */
7513 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7514 applicationShellWidgetClass, xterm_dpy,
7515 NULL);
7516 if (AppShell == (Widget)0)
7517 return;
7518 xterm_Shell = XtVaCreatePopupShell("VIM",
7519 topLevelShellWidgetClass, AppShell,
7520 XtNmappedWhenManaged, 0,
7521 XtNwidth, 1,
7522 XtNheight, 1,
7523 NULL);
7524 if (xterm_Shell == (Widget)0)
7525 return;
7526
7527 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007528 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007529 if (x11_display == NULL)
7530 x11_display = xterm_dpy;
7531
7532 XtRealizeWidget(xterm_Shell);
7533 XSync(xterm_dpy, False);
7534 xterm_update();
7535 }
7536 if (xterm_Shell != (Widget)0)
7537 {
7538 clip_init(TRUE);
7539 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7540 x11_window = (Window)atol(strp);
7541 /* Check if $WINDOWID is valid. */
7542 if (test_x11_window(xterm_dpy) == FAIL)
7543 x11_window = 0;
7544 if (x11_window != 0)
7545 xterm_trace = 0;
7546 }
7547}
7548
7549 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007550start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007551{
7552 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7553 return;
7554 xterm_trace = 1;
7555 xterm_button = button;
7556 do_xterm_trace();
7557}
7558
7559
7560 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007561stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007562{
7563 if (xterm_trace < 0)
7564 return;
7565 xterm_trace = 0;
7566}
7567
7568/*
7569 * Query the xterm pointer and generate mouse termcodes if necessary
7570 * return TRUE if dragging is active, else FALSE
7571 */
7572 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007573do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007574{
7575 Window root, child;
7576 int root_x, root_y;
7577 int win_x, win_y;
7578 int row, col;
7579 int_u mask_return;
7580 char_u buf[50];
7581 char_u *strp;
7582 long got_hints;
7583 static char_u *mouse_code;
7584 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7585 static int prev_row = 0, prev_col = 0;
7586 static XSizeHints xterm_hints;
7587
7588 if (xterm_trace <= 0)
7589 return FALSE;
7590
7591 if (xterm_trace == 1)
7592 {
7593 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007594 * have changed recently. */
7595 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7596 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007597 || xterm_hints.width_inc <= 1
7598 || xterm_hints.height_inc <= 1)
7599 {
7600 xterm_trace = -1; /* Not enough data -- disable tracing */
7601 return FALSE;
7602 }
7603
7604 /* Rely on the same mouse code for the duration of this */
7605 mouse_code = find_termcode(mouse_name);
7606 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007607 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007608 xterm_trace = 2;
7609
7610 /* Find the offset of the chars, there might be a scrollbar on the
7611 * left of the window and/or a menu on the top (eterm etc.) */
7612 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7613 &win_x, &win_y, &mask_return);
7614 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7615 - (xterm_hints.height_inc / 2);
7616 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7617 xterm_hints.y = 2;
7618 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7619 - (xterm_hints.width_inc / 2);
7620 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7621 xterm_hints.x = 2;
7622 return TRUE;
7623 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007624 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007625 {
7626 xterm_trace = 0;
7627 return FALSE;
7628 }
7629
7630 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7631 &win_x, &win_y, &mask_return);
7632
7633 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7634 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7635 if (row == prev_row && col == prev_col)
7636 return TRUE;
7637
7638 STRCPY(buf, mouse_code);
7639 strp = buf + STRLEN(buf);
7640 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7641 *strp++ = (char_u)(col + ' ' + 1);
7642 *strp++ = (char_u)(row + ' ' + 1);
7643 *strp = 0;
7644 add_to_input_buf(buf, STRLEN(buf));
7645
7646 prev_row = row;
7647 prev_col = col;
7648 return TRUE;
7649}
7650
7651# if defined(FEAT_GUI) || defined(PROTO)
7652/*
7653 * Destroy the display, window and app_context. Required for GTK.
7654 */
7655 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007656clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007657{
7658 if (xterm_Shell != (Widget)0)
7659 {
7660 XtDestroyWidget(xterm_Shell);
7661 xterm_Shell = (Widget)0;
7662 }
7663 if (xterm_dpy != NULL)
7664 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007665# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007666 /* Lesstif and Solaris crash here, lose some memory */
7667 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007668# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007669 if (x11_display == xterm_dpy)
7670 x11_display = NULL;
7671 xterm_dpy = NULL;
7672 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007673# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007674 if (app_context != (XtAppContext)NULL)
7675 {
7676 /* Lesstif and Solaris crash here, lose some memory */
7677 XtDestroyApplicationContext(app_context);
7678 app_context = (XtAppContext)NULL;
7679 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007680# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007681}
7682# endif
7683
7684/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007685 * Catch up with GUI or X events.
7686 */
7687 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007688clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007689{
7690# ifdef FEAT_GUI
7691 if (gui.in_use)
7692 gui_mch_update();
7693 else
7694# endif
7695 if (xterm_Shell != (Widget)0)
7696 xterm_update();
7697}
7698
7699/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007700 * Catch up with any queued X events. This may put keyboard input into the
7701 * input buffer, call resize call-backs, trigger timers etc. If there is
7702 * nothing in the X event queue (& no timers pending), then we return
7703 * immediately.
7704 */
7705 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007706xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007707{
7708 XEvent event;
7709
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007710 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007711 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007712 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007713
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007714 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007715 break;
7716
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007717 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007718 {
7719 /* There is an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007720 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007721#ifdef FEAT_CLIENTSERVER
7722 {
7723 XPropertyEvent *e = (XPropertyEvent *)&event;
7724
7725 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007726 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007727 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007728 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007729#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007730 XtDispatchEvent(&event);
7731 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007732 else
7733 {
7734 /* There is something else than an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007735 XtAppProcessEvent(app_context, mask);
7736 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007737 }
7738}
7739
7740 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007741clip_xterm_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007742{
7743 if (xterm_Shell != (Widget)0)
7744 return clip_x11_own_selection(xterm_Shell, cbd);
7745 return FAIL;
7746}
7747
7748 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007749clip_xterm_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007750{
7751 if (xterm_Shell != (Widget)0)
7752 clip_x11_lose_selection(xterm_Shell, cbd);
7753}
7754
7755 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007756clip_xterm_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007757{
7758 if (xterm_Shell != (Widget)0)
7759 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7760}
7761
7762 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007763clip_xterm_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007764{
7765 clip_x11_set_selection(cbd);
7766}
7767#endif
7768
7769
7770#if defined(USE_XSMP) || defined(PROTO)
7771/*
7772 * Code for X Session Management Protocol.
7773 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007774
7775# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007776/*
7777 * This is our chance to ask the user if they want to save,
7778 * or abort the logout
7779 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007780 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007781xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007782{
7783 cmdmod_T save_cmdmod;
7784 int cancel_shutdown = False;
7785
7786 save_cmdmod = cmdmod;
7787 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007788 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007789 /* Mustn't logout */
7790 cancel_shutdown = True;
7791 cmdmod = save_cmdmod;
7792 setcursor(); /* position cursor */
7793 out_flush();
7794
7795 /* Done interaction */
7796 SmcInteractDone(smc_conn, cancel_shutdown);
7797
7798 /* Finish off
7799 * Only end save-yourself here if we're not cancelling shutdown;
7800 * we'll get a cancelled callback later in which we'll end it.
7801 * Hopefully get around glitchy SMs (like GNOME-1)
7802 */
7803 if (!cancel_shutdown)
7804 {
7805 xsmp.save_yourself = False;
7806 SmcSaveYourselfDone(smc_conn, True);
7807 }
7808}
7809# endif
7810
7811/*
7812 * Callback that starts save-yourself.
7813 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007814 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007815xsmp_handle_save_yourself(
7816 SmcConn smc_conn,
7817 SmPointer client_data UNUSED,
7818 int save_type UNUSED,
7819 Bool shutdown,
7820 int interact_style UNUSED,
7821 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007822{
7823 /* Handle already being in saveyourself */
7824 if (xsmp.save_yourself)
7825 SmcSaveYourselfDone(smc_conn, True);
7826 xsmp.save_yourself = True;
7827 xsmp.shutdown = shutdown;
7828
7829 /* First up, preserve all files */
7830 out_flush();
7831 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
7832
7833 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007834 verb_msg(_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007835
7836# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
7837 /* Now see if we can ask about unsaved files */
7838 if (shutdown && !fast && gui.in_use)
7839 /* Need to interact with user, but need SM's permission */
7840 SmcInteractRequest(smc_conn, SmDialogError,
7841 xsmp_handle_interaction, client_data);
7842 else
7843# endif
7844 {
7845 /* Can stop the cycle here */
7846 SmcSaveYourselfDone(smc_conn, True);
7847 xsmp.save_yourself = False;
7848 }
7849}
7850
7851
7852/*
7853 * Callback to warn us of imminent death.
7854 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007855 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007856xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007857{
7858 xsmp_close();
7859
7860 /* quit quickly leaving swapfiles for modified buffers behind */
7861 getout_preserve_modified(0);
7862}
7863
7864
7865/*
7866 * Callback to tell us that save-yourself has completed.
7867 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007868 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007869xsmp_save_complete(
7870 SmcConn smc_conn UNUSED,
7871 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007872{
7873 xsmp.save_yourself = False;
7874}
7875
7876
7877/*
7878 * Callback to tell us that an instigated shutdown was cancelled
7879 * (maybe even by us)
7880 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007881 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007882xsmp_shutdown_cancelled(
7883 SmcConn smc_conn,
7884 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007885{
7886 if (xsmp.save_yourself)
7887 SmcSaveYourselfDone(smc_conn, True);
7888 xsmp.save_yourself = False;
7889 xsmp.shutdown = False;
7890}
7891
7892
7893/*
7894 * Callback to tell us that a new ICE connection has been established.
7895 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007896 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007897xsmp_ice_connection(
7898 IceConn iceConn,
7899 IcePointer clientData UNUSED,
7900 Bool opening,
7901 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007902{
7903 /* Intercept creation of ICE connection fd */
7904 if (opening)
7905 {
7906 xsmp_icefd = IceConnectionNumber(iceConn);
7907 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7908 }
7909}
7910
7911
7912/* Handle any ICE processing that's required; return FAIL if SM lost */
7913 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007914xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007915{
7916 Bool rep;
7917
7918 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7919 == IceProcessMessagesIOError)
7920 {
7921 /* Lost ICE */
7922 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007923 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007924 xsmp_close();
7925 return FAIL;
7926 }
7927 else
7928 return OK;
7929}
7930
7931static int dummy;
7932
7933/* Set up X Session Management Protocol */
7934 void
7935xsmp_init(void)
7936{
7937 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007938 SmcCallbacks smcallbacks;
7939#if 0
7940 SmPropValue smname;
7941 SmProp smnameprop;
7942 SmProp *smprops[1];
7943#endif
7944
7945 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007946 verb_msg(_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007947
7948 xsmp.save_yourself = xsmp.shutdown = False;
7949
7950 /* Set up SM callbacks - must have all, even if they're not used */
7951 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7952 smcallbacks.save_yourself.client_data = NULL;
7953 smcallbacks.die.callback = xsmp_die;
7954 smcallbacks.die.client_data = NULL;
7955 smcallbacks.save_complete.callback = xsmp_save_complete;
7956 smcallbacks.save_complete.client_data = NULL;
7957 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
7958 smcallbacks.shutdown_cancelled.client_data = NULL;
7959
7960 /* Set up a watch on ICE connection creations. The "dummy" argument is
7961 * apparently required for FreeBSD (we get a BUS error when using NULL). */
7962 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
7963 {
7964 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007965 verb_msg(_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007966 return;
7967 }
7968
7969 /* Create an SM connection */
7970 xsmp.smcconn = SmcOpenConnection(
7971 NULL,
7972 NULL,
7973 SmProtoMajor,
7974 SmProtoMinor,
7975 SmcSaveYourselfProcMask | SmcDieProcMask
7976 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
7977 &smcallbacks,
7978 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00007979 &xsmp.clientid,
Bram Moolenaar4841a7c2018-09-22 14:08:49 +02007980 sizeof(errorstring) - 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007981 errorstring);
7982 if (xsmp.smcconn == NULL)
7983 {
7984 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00007985
Bram Moolenaar071d4272004-06-13 20:20:40 +00007986 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007987 {
7988 vim_snprintf(errorreport, sizeof(errorreport),
7989 _("XSMP SmcOpenConnection failed: %s"), errorstring);
Bram Moolenaar32526b32019-01-19 17:43:09 +01007990 verb_msg(errorreport);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007991 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007992 return;
7993 }
7994 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
7995
7996#if 0
7997 /* ID ourselves */
7998 smname.value = "vim";
7999 smname.length = 3;
8000 smnameprop.name = "SmProgram";
8001 smnameprop.type = "SmARRAY8";
8002 smnameprop.num_vals = 1;
8003 smnameprop.vals = &smname;
8004
8005 smprops[0] = &smnameprop;
8006 SmcSetProperties(xsmp.smcconn, 1, smprops);
8007#endif
8008}
8009
8010
8011/* Shut down XSMP comms. */
8012 void
Bram Moolenaar05540972016-01-30 20:31:25 +01008013xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008014{
8015 if (xsmp_icefd != -1)
8016 {
8017 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00008018 if (xsmp.clientid != NULL)
8019 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00008020 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008021 xsmp_icefd = -1;
8022 }
8023}
8024#endif /* USE_XSMP */
8025
8026
8027#ifdef EBCDIC
8028/* Translate character to its CTRL- value */
8029char CtrlTable[] =
8030{
8031/* 00 - 5E */
8032 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8033 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8034 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8035 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8036 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8037 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8038/* ^ */ 0x1E,
8039/* - */ 0x1F,
8040/* 61 - 6C */
8041 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8042/* _ */ 0x1F,
8043/* 6E - 80 */
8044 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8045/* a */ 0x01,
8046/* b */ 0x02,
8047/* c */ 0x03,
8048/* d */ 0x37,
8049/* e */ 0x2D,
8050/* f */ 0x2E,
8051/* g */ 0x2F,
8052/* h */ 0x16,
8053/* i */ 0x05,
8054/* 8A - 90 */
8055 0, 0, 0, 0, 0, 0, 0,
8056/* j */ 0x15,
8057/* k */ 0x0B,
8058/* l */ 0x0C,
8059/* m */ 0x0D,
8060/* n */ 0x0E,
8061/* o */ 0x0F,
8062/* p */ 0x10,
8063/* q */ 0x11,
8064/* r */ 0x12,
8065/* 9A - A1 */
8066 0, 0, 0, 0, 0, 0, 0, 0,
8067/* s */ 0x13,
8068/* t */ 0x3C,
8069/* u */ 0x3D,
8070/* v */ 0x32,
8071/* w */ 0x26,
8072/* x */ 0x18,
8073/* y */ 0x19,
8074/* z */ 0x3F,
8075/* AA - AC */
8076 0, 0, 0,
8077/* [ */ 0x27,
8078/* AE - BC */
8079 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8080/* ] */ 0x1D,
8081/* BE - C0 */ 0, 0, 0,
8082/* A */ 0x01,
8083/* B */ 0x02,
8084/* C */ 0x03,
8085/* D */ 0x37,
8086/* E */ 0x2D,
8087/* F */ 0x2E,
8088/* G */ 0x2F,
8089/* H */ 0x16,
8090/* I */ 0x05,
8091/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
8092/* J */ 0x15,
8093/* K */ 0x0B,
8094/* L */ 0x0C,
8095/* M */ 0x0D,
8096/* N */ 0x0E,
8097/* O */ 0x0F,
8098/* P */ 0x10,
8099/* Q */ 0x11,
8100/* R */ 0x12,
8101/* DA - DF */ 0, 0, 0, 0, 0, 0,
8102/* \ */ 0x1C,
8103/* E1 */ 0,
8104/* S */ 0x13,
8105/* T */ 0x3C,
8106/* U */ 0x3D,
8107/* V */ 0x32,
8108/* W */ 0x26,
8109/* X */ 0x18,
8110/* Y */ 0x19,
8111/* Z */ 0x3F,
8112/* EA - FF*/ 0, 0, 0, 0, 0, 0,
8113 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8114};
8115
8116char MetaCharTable[]=
8117{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8118 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
8119 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
8120 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
8121 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
8122};
8123
8124
8125/* TODO: Use characters NOT numbers!!! */
8126char CtrlCharTable[]=
8127{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8128 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
8129 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
8130 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
8131 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
8132};
8133
8134
8135#endif