blob: 425498c6bc95ef37fa4c12acca1faed455b27bea [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__
52# ifndef WIN32
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 Moolenaarfe17e762013-06-29 14:17:02 +02001608# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
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 Moolenaarfe17e762013-06-29 14:17:02 +02001630# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
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{
2208 /* only restore the title or icon when it has been set */
Bram Moolenaar40385db2018-08-07 22:31:44 +02002209 mch_settitle(((which & SAVE_RESTORE_TITLE) && did_set_title) ?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 (oldtitle ? oldtitle : p_titleold) : NULL,
Bram Moolenaar40385db2018-08-07 22:31:44 +02002211 ((which & SAVE_RESTORE_ICON) && did_set_icon) ? oldicon : NULL);
2212
2213 // pop and push from/to the stack
2214 term_pop_title(which);
2215 term_push_title(which);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216}
2217
2218#endif /* FEAT_TITLE */
2219
2220/*
2221 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002222 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 */
2224 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002225vim_is_xterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226{
2227 if (name == NULL)
2228 return FALSE;
2229 return (STRNICMP(name, "xterm", 5) == 0
2230 || STRNICMP(name, "nxterm", 6) == 0
2231 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002232 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 || STRNICMP(name, "rxvt", 4) == 0
Bram Moolenaar995e4af2017-09-01 20:24:03 +02002234 || STRNICMP(name, "screen.xterm", 12) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 || STRCMP(name, "builtin_xterm") == 0);
2236}
2237
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002238#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2239/*
2240 * Return TRUE if "name" appears to be that of a terminal
2241 * known to support the xterm-style mouse protocol.
2242 * Relies on term_is_xterm having been set to its correct value.
2243 */
2244 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002245use_xterm_like_mouse(char_u *name)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002246{
2247 return (name != NULL
Bram Moolenaare56132b2016-08-14 18:23:21 +02002248 && (term_is_xterm
2249 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002250 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaare56132b2016-08-14 18:23:21 +02002251 || STRICMP(name, "st") == 0
2252 || STRNICMP(name, "st-", 3) == 0
2253 || STRNICMP(name, "stterm", 6) == 0));
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002254}
2255#endif
2256
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2258/*
2259 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2260 * Return 1 for "xterm".
2261 * Return 2 for "xterm2".
Bram Moolenaarc8427482011-10-20 21:09:35 +02002262 * Return 3 for "urxvt".
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002263 * Return 4 for "sgr".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 */
2265 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002266use_xterm_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002267{
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002268 if (ttym_flags == TTYM_SGR)
2269 return 4;
Bram Moolenaarc8427482011-10-20 21:09:35 +02002270 if (ttym_flags == TTYM_URXVT)
2271 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 if (ttym_flags == TTYM_XTERM2)
2273 return 2;
2274 if (ttym_flags == TTYM_XTERM)
2275 return 1;
2276 return 0;
2277}
2278#endif
2279
2280 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002281vim_is_iris(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282{
2283 if (name == NULL)
2284 return FALSE;
2285 return (STRNICMP(name, "iris-ansi", 9) == 0
2286 || STRCMP(name, "builtin_iris-ansi") == 0);
2287}
2288
2289 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002290vim_is_vt300(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291{
2292 if (name == NULL)
2293 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002294 /* catch VT100 - VT5xx */
2295 return ((STRNICMP(name, "vt", 2) == 0
2296 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 || STRCMP(name, "builtin_vt320") == 0);
2298}
2299
2300/*
2301 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2302 * This should include all windowed terminal emulators.
2303 */
2304 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002305vim_is_fastterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306{
2307 if (name == NULL)
2308 return FALSE;
2309 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2310 return TRUE;
2311 return ( STRNICMP(name, "hpterm", 6) == 0
2312 || STRNICMP(name, "sun-cmd", 7) == 0
2313 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002314 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315 || STRNICMP(name, "dtterm", 6) == 0);
2316}
2317
2318/*
2319 * Insert user name in s[len].
2320 * Return OK if a name found.
2321 */
2322 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002323mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324{
2325#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002326 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002327 return OK;
2328#else
2329 return mch_get_uname(getuid(), s, len);
2330#endif
2331}
2332
2333/*
2334 * Insert user name for "uid" in s[len].
2335 * Return OK if a name found.
2336 */
2337 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002338mch_get_uname(uid_t uid, char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339{
2340#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2341 struct passwd *pw;
2342
2343 if ((pw = getpwuid(uid)) != NULL
2344 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2345 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002346 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 return OK;
2348 }
2349#endif
2350 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2351 return FAIL; /* a number is not a name */
2352}
2353
2354/*
2355 * Insert host name is s[len].
2356 */
2357
2358#ifdef HAVE_SYS_UTSNAME_H
2359 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002360mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361{
2362 struct utsname vutsname;
2363
2364 if (uname(&vutsname) < 0)
2365 *s = NUL;
2366 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002367 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368}
2369#else /* HAVE_SYS_UTSNAME_H */
2370
2371# ifdef HAVE_SYS_SYSTEMINFO_H
2372# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2373# endif
2374
2375 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002376mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377{
2378# ifdef VAXC
2379 vaxc$gethostname((char *)s, len);
2380# else
2381 gethostname((char *)s, len);
2382# endif
2383 s[len - 1] = NUL; /* make sure it's terminated */
2384}
2385#endif /* HAVE_SYS_UTSNAME_H */
2386
2387/*
2388 * return process ID
2389 */
2390 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002391mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392{
2393 return (long)getpid();
2394}
2395
2396#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397 static char *
Bram Moolenaar05540972016-01-30 20:31:25 +01002398strerror(int err)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399{
2400 extern int sys_nerr;
2401 extern char *sys_errlist[];
2402 static char er[20];
2403
2404 if (err > 0 && err < sys_nerr)
2405 return (sys_errlist[err]);
2406 sprintf(er, "Error %d", err);
2407 return er;
2408}
2409#endif
2410
2411/*
2412 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2413 * Return OK for success, FAIL for failure.
2414 */
2415 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002416mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002417{
2418#if defined(USE_GETCWD)
2419 if (getcwd((char *)buf, len) == NULL)
2420 {
2421 STRCPY(buf, strerror(errno));
2422 return FAIL;
2423 }
2424 return OK;
2425#else
2426 return (getwd((char *)buf) != NULL ? OK : FAIL);
2427#endif
2428}
2429
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002431 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 *
2433 * return FAIL for failure, OK for success
2434 */
2435 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002436mch_FullName(
2437 char_u *fname,
2438 char_u *buf,
2439 int len,
2440 int force) /* also expand when already absolute path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441{
2442 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002443#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 int fd = -1;
2445 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002446#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002447 char_u olddir[MAXPATHL];
2448 char_u *p;
2449 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002450#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002451 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2452 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002453#endif
2454
Bram Moolenaar38323e42007-03-06 19:22:53 +00002455#ifdef VMS
2456 fname = vms_fixfilename(fname);
2457#endif
2458
Bram Moolenaara2442432007-04-26 14:26:37 +00002459#ifdef __CYGWIN__
2460 /*
2461 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2462 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002463# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaar06b07342015-12-31 22:26:28 +01002464 /* Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in
2465 * a forward slash. */
2466 cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE,
2467 fname, posix_fname, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002468# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002469 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002470# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002471 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002472#endif
2473
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002474 /* Expand it if forced or not an absolute path.
2475 * Do not do it for "/file", the result is always "/". */
2476 if ((force || !mch_isFullName(fname))
2477 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478 {
2479 /*
2480 * If the file name has a path, change to that directory for a moment,
2481 * and then do the getwd() (and get back to where we were).
2482 * This will get the correct path name with "../" things.
2483 */
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002484 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002486#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 /*
2488 * Use fchdir() if possible, it's said to be faster and more
2489 * reliable. But on SunOS 4 it might not work. Check this by
2490 * doing a fchdir() right now.
2491 */
2492 if (!dont_fchdir)
2493 {
2494 fd = open(".", O_RDONLY | O_EXTRA, 0);
2495 if (fd >= 0 && fchdir(fd) < 0)
2496 {
2497 close(fd);
2498 fd = -1;
2499 dont_fchdir = TRUE; /* don't try again */
2500 }
2501 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002502#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002503
2504 /* Only change directory when we are sure we can return to where
2505 * we are now. After doing "su" chdir(".") might not work. */
2506 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002507#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002508 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002509#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002510 (mch_dirname(olddir, MAXPATHL) == FAIL
2511 || mch_chdir((char *)olddir) != 0))
2512 {
2513 p = NULL; /* can't get current dir: don't chdir */
2514 retval = FAIL;
2515 }
2516 else
2517 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 /* The directory is copied into buf[], to be able to remove
2519 * the file name without changing it (could be a string in
2520 * read-only memory) */
2521 if (p - fname >= len)
2522 retval = FAIL;
2523 else
2524 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002525 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 if (mch_chdir((char *)buf))
2527 retval = FAIL;
2528 else
2529 fname = p + 1;
2530 *buf = NUL;
2531 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 }
2533 }
2534 if (mch_dirname(buf, len) == FAIL)
2535 {
2536 retval = FAIL;
2537 *buf = NUL;
2538 }
2539 if (p != NULL)
2540 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002541#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 if (fd >= 0)
2543 {
Bram Moolenaar25724922009-07-14 15:38:41 +00002544 if (p_verbose >= 5)
2545 {
2546 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002547 msg("fchdir() to previous dir");
Bram Moolenaar25724922009-07-14 15:38:41 +00002548 verbose_leave();
2549 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 l = fchdir(fd);
2551 close(fd);
2552 }
2553 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002554#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 l = mch_chdir((char *)olddir);
2556 if (l != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002557 emsg(_(e_prev_dir));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 }
2559
2560 l = STRLEN(buf);
Bram Moolenaardac75692012-10-14 04:35:45 +02002561 if (l >= len - 1)
2562 retval = FAIL; /* no space for trailing "/" */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002563#ifndef VMS
Bram Moolenaardac75692012-10-14 04:35:45 +02002564 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002565 && STRCMP(fname, ".") != 0)
Bram Moolenaardac75692012-10-14 04:35:45 +02002566 STRCAT(buf, "/");
Bram Moolenaar38323e42007-03-06 19:22:53 +00002567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002569
Bram Moolenaar071d4272004-06-13 20:20:40 +00002570 /* Catch file names which are too long. */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002571 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 return FAIL;
2573
2574 /* Do not append ".", "/dir/." is equal to "/dir". */
2575 if (STRCMP(fname, ".") != 0)
2576 STRCAT(buf, fname);
2577
2578 return OK;
2579}
2580
2581/*
2582 * Return TRUE if "fname" does not depend on the current directory.
2583 */
2584 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002585mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002587#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 return ( fname[0] == '/' || fname[0] == '.' ||
2589 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2590 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2591 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002592#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 return (*fname == '/' || *fname == '~');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594#endif
2595}
2596
Bram Moolenaar24552be2005-12-10 20:17:30 +00002597#if defined(USE_FNAME_CASE) || defined(PROTO)
2598/*
2599 * Set the case of the file name, if it already exists. This will cause the
2600 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002601 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002602 */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002603 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002604fname_case(
2605 char_u *name,
2606 int len UNUSED) /* buffer size, only used when name gets longer */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002607{
2608 struct stat st;
2609 char_u *slash, *tail;
2610 DIR *dirp;
2611 struct dirent *dp;
2612
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002613 if (mch_lstat((char *)name, &st) >= 0)
Bram Moolenaar24552be2005-12-10 20:17:30 +00002614 {
2615 /* Open the directory where the file is located. */
2616 slash = vim_strrchr(name, '/');
2617 if (slash == NULL)
2618 {
2619 dirp = opendir(".");
2620 tail = name;
2621 }
2622 else
2623 {
2624 *slash = NUL;
2625 dirp = opendir((char *)name);
2626 *slash = '/';
2627 tail = slash + 1;
2628 }
2629
2630 if (dirp != NULL)
2631 {
2632 while ((dp = readdir(dirp)) != NULL)
2633 {
2634 /* Only accept names that differ in case and are the same byte
2635 * length. TODO: accept different length name. */
2636 if (STRICMP(tail, dp->d_name) == 0
2637 && STRLEN(tail) == STRLEN(dp->d_name))
2638 {
2639 char_u newname[MAXPATHL + 1];
2640 struct stat st2;
2641
2642 /* Verify the inode is equal. */
2643 vim_strncpy(newname, name, MAXPATHL);
2644 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2645 MAXPATHL - (tail - name));
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002646 if (mch_lstat((char *)newname, &st2) >= 0
Bram Moolenaar24552be2005-12-10 20:17:30 +00002647 && st.st_ino == st2.st_ino
2648 && st.st_dev == st2.st_dev)
2649 {
2650 STRCPY(tail, dp->d_name);
2651 break;
2652 }
2653 }
2654 }
2655
2656 closedir(dirp);
2657 }
2658 }
2659}
2660#endif
2661
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662/*
2663 * Get file permissions for 'name'.
2664 * Returns -1 when it doesn't exist.
2665 */
2666 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002667mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668{
2669 struct stat statb;
2670
2671 /* Keep the #ifdef outside of stat(), it may be a macro. */
2672#ifdef VMS
2673 if (stat((char *)vms_fixfilename(name), &statb))
2674#else
2675 if (stat((char *)name, &statb))
2676#endif
2677 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002678#ifdef __INTERIX
2679 /* The top bit makes the value negative, which means the file doesn't
2680 * exist. Remove the bit, we don't use it. */
2681 return statb.st_mode & ~S_ADDACE;
2682#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002684#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685}
2686
2687/*
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002688 * Set file permission for "name" to "perm".
2689 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 */
2691 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002692mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002693{
2694 return (chmod((char *)
2695#ifdef VMS
2696 vms_fixfilename(name),
2697#else
2698 name,
2699#endif
2700 (mode_t)perm) == 0 ? OK : FAIL);
2701}
2702
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002703#if defined(HAVE_FCHMOD) || defined(PROTO)
2704/*
2705 * Set file permission for open file "fd" to "perm".
2706 * Return FAIL for failure, OK otherwise.
2707 */
2708 int
2709mch_fsetperm(int fd, long perm)
2710{
2711 return (fchmod(fd, (mode_t)perm) == 0 ? OK : FAIL);
2712}
2713#endif
2714
Bram Moolenaar071d4272004-06-13 20:20:40 +00002715#if defined(HAVE_ACL) || defined(PROTO)
2716# ifdef HAVE_SYS_ACL_H
2717# include <sys/acl.h>
2718# endif
2719# ifdef HAVE_SYS_ACCESS_H
2720# include <sys/access.h>
2721# endif
2722
2723# ifdef HAVE_SOLARIS_ACL
2724typedef struct vim_acl_solaris_T {
2725 int acl_cnt;
2726 aclent_t *acl_entry;
2727} vim_acl_solaris_T;
2728# endif
2729
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002730#if defined(HAVE_SELINUX) || defined(PROTO)
2731/*
2732 * Copy security info from "from_file" to "to_file".
2733 */
2734 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002735mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002736{
2737 if (from_file == NULL)
2738 return;
2739
2740 if (selinux_enabled == -1)
2741 selinux_enabled = is_selinux_enabled();
2742
2743 if (selinux_enabled > 0)
2744 {
2745 security_context_t from_context = NULL;
2746 security_context_t to_context = NULL;
2747
2748 if (getfilecon((char *)from_file, &from_context) < 0)
2749 {
2750 /* If the filesystem doesn't support extended attributes,
2751 the original had no special security context and the
2752 target cannot have one either. */
2753 if (errno == EOPNOTSUPP)
2754 return;
2755
Bram Moolenaar32526b32019-01-19 17:43:09 +01002756 msg_puts(_("\nCould not get security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002757 msg_outtrans(from_file);
2758 msg_putchar('\n');
2759 return;
2760 }
2761 if (getfilecon((char *)to_file, &to_context) < 0)
2762 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002763 msg_puts(_("\nCould not get security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002764 msg_outtrans(to_file);
2765 msg_putchar('\n');
2766 freecon (from_context);
2767 return ;
2768 }
2769 if (strcmp(from_context, to_context) != 0)
2770 {
2771 if (setfilecon((char *)to_file, from_context) < 0)
2772 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002773 msg_puts(_("\nCould not set security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002774 msg_outtrans(to_file);
2775 msg_putchar('\n');
2776 }
2777 }
2778 freecon(to_context);
2779 freecon(from_context);
2780 }
2781}
2782#endif /* HAVE_SELINUX */
2783
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002784#if defined(HAVE_SMACK) && !defined(PROTO)
2785/*
2786 * Copy security info from "from_file" to "to_file".
2787 */
2788 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002789mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002790{
Bram Moolenaar62f167f2014-04-23 12:52:40 +02002791 static const char * const smack_copied_attributes[] =
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002792 {
2793 XATTR_NAME_SMACK,
2794 XATTR_NAME_SMACKEXEC,
2795 XATTR_NAME_SMACKMMAP
2796 };
2797
2798 char buffer[SMACK_LABEL_LEN];
2799 const char *name;
2800 int index;
2801 int ret;
2802 ssize_t size;
2803
2804 if (from_file == NULL)
2805 return;
2806
2807 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes)
2808 / sizeof(smack_copied_attributes)[0]) ; index++)
2809 {
2810 /* get the name of the attribute to copy */
2811 name = smack_copied_attributes[index];
2812
2813 /* get the value of the attribute in buffer */
2814 size = getxattr((char*)from_file, name, buffer, sizeof(buffer));
2815 if (size >= 0)
2816 {
2817 /* copy the attribute value of buffer */
2818 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0);
2819 if (ret < 0)
2820 {
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002821 vim_snprintf((char *)IObuff, IOSIZE,
2822 _("Could not set security context %s for %s"),
2823 name, to_file);
2824 msg_outtrans(IObuff);
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002825 msg_putchar('\n');
2826 }
2827 }
2828 else
2829 {
2830 /* what reason of not having the attribute value? */
2831 switch (errno)
2832 {
2833 case ENOTSUP:
2834 /* extended attributes aren't supported or enabled */
2835 /* should a message be echoed? not sure... */
Bram Moolenaarb2148f52019-01-20 23:43:57 +01002836 return; /* leave because it isn't useful to continue */
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002837
2838 case ERANGE:
2839 default:
2840 /* no enough size OR unexpected error */
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002841 vim_snprintf((char *)IObuff, IOSIZE,
2842 _("Could not get security context %s for %s. Removing it!"),
2843 name, from_file);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002844 msg_puts((char *)IObuff);
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002845 msg_putchar('\n');
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002846 /* FALLTHROUGH to remove the attribute */
2847
2848 case ENODATA:
2849 /* no attribute of this name */
2850 ret = removexattr((char*)to_file, name);
Bram Moolenaar57a728d2014-04-02 23:09:26 +02002851 /* Silently ignore errors, apparently this happens when
2852 * smack is not actually being used. */
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002853 break;
2854 }
2855 }
2856 }
2857}
2858#endif /* HAVE_SMACK */
2859
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860/*
2861 * Return a pointer to the ACL of file "fname" in allocated memory.
2862 * Return NULL if the ACL is not available for whatever reason.
2863 */
2864 vim_acl_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002865mch_get_acl(char_u *fname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866{
2867 vim_acl_T ret = NULL;
2868#ifdef HAVE_POSIX_ACL
2869 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2870#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002871#ifdef HAVE_SOLARIS_ZFS_ACL
2872 acl_t *aclent;
2873
2874 if (acl_get((char *)fname, 0, &aclent) < 0)
2875 return NULL;
2876 ret = (vim_acl_T)aclent;
2877#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878#ifdef HAVE_SOLARIS_ACL
2879 vim_acl_solaris_T *aclent;
2880
2881 aclent = malloc(sizeof(vim_acl_solaris_T));
2882 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2883 {
2884 free(aclent);
2885 return NULL;
2886 }
2887 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2888 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2889 {
2890 free(aclent->acl_entry);
2891 free(aclent);
2892 return NULL;
2893 }
2894 ret = (vim_acl_T)aclent;
2895#else
2896#if defined(HAVE_AIX_ACL)
2897 int aclsize;
2898 struct acl *aclent;
2899
2900 aclsize = sizeof(struct acl);
2901 aclent = malloc(aclsize);
2902 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2903 {
2904 if (errno == ENOSPC)
2905 {
2906 aclsize = aclent->acl_len;
2907 aclent = realloc(aclent, aclsize);
2908 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2909 {
2910 free(aclent);
2911 return NULL;
2912 }
2913 }
2914 else
2915 {
2916 free(aclent);
2917 return NULL;
2918 }
2919 }
2920 ret = (vim_acl_T)aclent;
2921#endif /* HAVE_AIX_ACL */
2922#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002923#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924#endif /* HAVE_POSIX_ACL */
2925 return ret;
2926}
2927
2928/*
2929 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2930 */
2931 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002932mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933{
2934 if (aclent == NULL)
2935 return;
2936#ifdef HAVE_POSIX_ACL
2937 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2938#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002939#ifdef HAVE_SOLARIS_ZFS_ACL
2940 acl_set((char *)fname, (acl_t *)aclent);
2941#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942#ifdef HAVE_SOLARIS_ACL
2943 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2944 ((vim_acl_solaris_T *)aclent)->acl_entry);
2945#else
2946#ifdef HAVE_AIX_ACL
2947 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2948#endif /* HAVE_AIX_ACL */
2949#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002950#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951#endif /* HAVE_POSIX_ACL */
2952}
2953
2954 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002955mch_free_acl(vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956{
2957 if (aclent == NULL)
2958 return;
2959#ifdef HAVE_POSIX_ACL
2960 acl_free((acl_t)aclent);
2961#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002962#ifdef HAVE_SOLARIS_ZFS_ACL
2963 acl_free((acl_t *)aclent);
2964#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965#ifdef HAVE_SOLARIS_ACL
2966 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2967 free(aclent);
2968#else
2969#ifdef HAVE_AIX_ACL
2970 free(aclent);
2971#endif /* HAVE_AIX_ACL */
2972#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002973#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974#endif /* HAVE_POSIX_ACL */
2975}
2976#endif
2977
2978/*
2979 * Set hidden flag for "name".
2980 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002982mch_hide(char_u *name UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002983{
2984 /* can't hide a file */
2985}
2986
2987/*
Bram Moolenaar43a34f92016-01-17 15:56:34 +01002988 * return TRUE if "name" is a directory or a symlink to a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 * return FALSE if "name" is not a directory
2990 * return FALSE for error
2991 */
2992 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002993mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994{
2995 struct stat statb;
2996
2997 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2998 return FALSE;
2999 if (stat((char *)name, &statb))
3000 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003001 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002}
3003
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003004/*
3005 * return TRUE if "name" is a directory, NOT a symlink to a directory
3006 * return FALSE if "name" is not a directory
3007 * return FALSE for error
3008 */
3009 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003010mch_isrealdir(char_u *name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003011{
3012 struct stat statb;
3013
3014 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3015 return FALSE;
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01003016 if (mch_lstat((char *)name, &statb))
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003017 return FALSE;
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003018 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003019}
3020
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021/*
3022 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
3023 */
3024 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003025executable_file(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026{
3027 struct stat st;
3028
3029 if (stat((char *)name, &st))
3030 return 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003031#ifdef VMS
3032 /* Like on Unix system file can have executable rights but not necessarily
3033 * be an executable, but on Unix is not a default for an ordianry file to
3034 * have an executable flag - on VMS it is in most cases.
3035 * Therefore, this check does not have any sense - let keep us to the
3036 * conventions instead:
3037 * *.COM and *.EXE files are the executables - the rest are not. This is
3038 * not ideal but better then it was.
3039 */
3040 int vms_executable = 0;
3041 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0)
3042 {
3043 if (strstr(vms_tolower((char*)name),".exe") != NULL
3044 || strstr(vms_tolower((char*)name),".com")!= NULL)
3045 vms_executable = 1;
3046 }
3047 return vms_executable;
3048#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003049 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051}
3052
3053/*
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01003054 * Return TRUE if "name" can be found in $PATH and executed, FALSE if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +01003055 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 * Return -1 if unknown.
3057 */
3058 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003059mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060{
3061 char_u *buf;
3062 char_u *p, *e;
3063 int retval;
3064
Bram Moolenaarb5971142015-03-21 17:32:19 +01003065 /* When "use_path" is false and if it's an absolute or relative path don't
3066 * need to use $PATH. */
3067 if (!use_path || mch_isFullName(name) || (name[0] == '.'
3068 && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))))
Bram Moolenaar206f0112014-03-12 16:51:55 +01003069 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01003070 /* There must be a path separator, files in the current directory
3071 * can't be executed. */
3072 if (gettail(name) != name && executable_file(name))
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003073 {
3074 if (path != NULL)
3075 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003076 if (name[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003077 *path = FullName_save(name, TRUE);
3078 else
3079 *path = vim_strsave(name);
3080 }
3081 return TRUE;
3082 }
3083 return FALSE;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003084 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085
3086 p = (char_u *)getenv("PATH");
3087 if (p == NULL || *p == NUL)
3088 return -1;
3089 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
3090 if (buf == NULL)
3091 return -1;
3092
3093 /*
3094 * Walk through all entries in $PATH to check if "name" exists there and
3095 * is an executable file.
3096 */
3097 for (;;)
3098 {
3099 e = (char_u *)strchr((char *)p, ':');
3100 if (e == NULL)
3101 e = p + STRLEN(p);
3102 if (e - p <= 1) /* empty entry means current dir */
3103 STRCPY(buf, "./");
3104 else
3105 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003106 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107 add_pathsep(buf);
3108 }
3109 STRCAT(buf, name);
3110 retval = executable_file(buf);
3111 if (retval == 1)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003112 {
3113 if (path != NULL)
3114 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003115 if (buf[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003116 *path = FullName_save(buf, TRUE);
3117 else
3118 *path = vim_strsave(buf);
3119 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 break;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003121 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122
3123 if (*e != ':')
3124 break;
3125 p = e + 1;
3126 }
3127
3128 vim_free(buf);
3129 return retval;
3130}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003131
3132/*
3133 * Check what "name" is:
3134 * NODE_NORMAL: file or directory (or doesn't exist)
3135 * NODE_WRITABLE: writable device, socket, fifo, etc.
3136 * NODE_OTHER: non-writable things
3137 */
3138 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003139mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140{
3141 struct stat st;
3142
3143 if (stat((char *)name, &st))
3144 return NODE_NORMAL;
3145 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
3146 return NODE_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
3148 return NODE_OTHER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 /* Everything else is writable? */
3150 return NODE_WRITABLE;
3151}
3152
3153 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003154mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155{
3156#ifdef HAVE_CHECK_STACK_GROWTH
3157 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158
Bram Moolenaar071d4272004-06-13 20:20:40 +00003159 check_stack_growth((char *)&i);
3160
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003161# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003162 get_stack_limit();
3163# endif
3164
3165#endif
3166
3167 /*
3168 * Setup an alternative stack for signals. Helps to catch signals when
3169 * running out of stack space.
3170 * Use of sigaltstack() is preferred, it's more portable.
3171 * Ignore any errors.
3172 */
3173#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00003174 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003175 init_signal_stack();
3176#endif
3177}
3178
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003179#if defined(EXITFREE) || defined(PROTO)
3180 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003181mch_free_mem(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003182{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003183# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
3184 if (clip_star.owned)
3185 clip_lose_selection(&clip_star);
3186 if (clip_plus.owned)
3187 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003188# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00003189# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003190 if (xterm_Shell != (Widget)0)
3191 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00003192# ifndef LESSTIF_VERSION
3193 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003194 if (xterm_dpy != NULL)
3195 XtCloseDisplay(xterm_dpy);
3196 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00003197 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003198 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00003199# ifdef FEAT_X11
3200 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
3201# endif
3202 }
3203# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003204# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003205# if defined(FEAT_X11)
Bram Moolenaare8208012008-06-20 09:59:25 +00003206 if (x11_display != NULL
3207# ifdef FEAT_XCLIPBOARD
3208 && x11_display != xterm_dpy
3209# endif
3210 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003211 XCloseDisplay(x11_display);
3212# endif
3213# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaard23a8232018-02-10 18:45:26 +01003214 VIM_CLEAR(signal_stack);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003215# endif
3216# ifdef FEAT_TITLE
3217 vim_free(oldtitle);
3218 vim_free(oldicon);
3219# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003220}
3221#endif
3222
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223/*
3224 * Output a newline when exiting.
3225 * Make sure the newline goes to the same stream as the text.
3226 */
3227 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003228exit_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003230 if (silent_mode)
3231 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003232 if (newline_on_exit || msg_didout)
3233 {
3234 if (msg_use_printf())
3235 {
3236 if (info_message)
3237 mch_msg("\n");
3238 else
3239 mch_errmsg("\r\n");
3240 }
3241 else
3242 out_char('\n');
3243 }
3244 else
3245 {
3246 restore_cterm_colors(); /* get original colors back */
3247 msg_clr_eos_force(); /* clear the rest of the display */
3248 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3249 }
3250}
3251
3252 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003253mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254{
3255 exiting = TRUE;
3256
3257#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3258 x11_export_final_selection();
3259#endif
3260
3261#ifdef FEAT_GUI
3262 if (!gui.in_use)
3263#endif
3264 {
3265 settmode(TMODE_COOK);
3266#ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02003267 // restore xterm title and icon name
3268 mch_restore_title(SAVE_RESTORE_BOTH);
3269 term_pop_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270#endif
3271 /*
3272 * When t_ti is not empty but it doesn't cause swapping terminal
3273 * pages, need to output a newline when msg_didout is set. But when
3274 * t_ti does swap pages it should not go to the shell page. Do this
3275 * before stoptermcap().
3276 */
3277 if (swapping_screen() && !newline_on_exit)
3278 exit_scroll();
3279
3280 /* Stop termcap: May need to check for T_CRV response, which
3281 * requires RAW mode. */
3282 stoptermcap();
3283
3284 /*
3285 * A newline is only required after a message in the alternate screen.
3286 * This is set to TRUE by wait_return().
3287 */
3288 if (!swapping_screen() || newline_on_exit)
3289 exit_scroll();
3290
3291 /* Cursor may have been switched off without calling starttermcap()
3292 * when doing "vim -u vimrc" and vimrc contains ":q". */
3293 if (full_screen)
3294 cursor_on();
3295 }
3296 out_flush();
3297 ml_close_all(TRUE); /* remove all memfiles */
3298 may_core_dump();
3299#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003300 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003301 gui_exit(r);
3302#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003303
Bram Moolenaar56718732006-03-15 22:53:57 +00003304#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003305 mac_conv_cleanup();
3306#endif
3307
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308#ifdef __QNX__
3309 /* A core dump won't be created if the signal handler
3310 * doesn't return, so we can't call exit() */
3311 if (deadly_signal != 0)
3312 return;
3313#endif
3314
Bram Moolenaar009b2592004-10-24 19:18:58 +00003315#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003316 netbeans_send_disconnect();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003317#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003318
3319#ifdef EXITFREE
3320 free_all_mem();
3321#endif
3322
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323 exit(r);
3324}
3325
3326 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003327may_core_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328{
3329 if (deadly_signal != 0)
3330 {
3331 signal(deadly_signal, SIG_DFL);
3332 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3333 }
3334}
3335
3336#ifndef VMS
3337
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003338/*
3339 * Get the file descriptor to use for tty operations.
3340 */
3341 static int
3342get_tty_fd(int fd)
3343{
3344 int tty_fd = fd;
3345
3346#if defined(HAVE_SVR4_PTYS) && defined(SUN_SYSTEM)
3347 // On SunOS: Get the terminal parameters from "fd", or the slave device of
3348 // "fd" when it is a master device.
3349 if (mch_isatty(fd) > 1)
3350 {
3351 char *name;
3352
3353 name = ptsname(fd);
3354 if (name == NULL)
3355 return -1;
3356
3357 tty_fd = open(name, O_RDONLY | O_NOCTTY | O_EXTRA, 0);
3358 if (tty_fd < 0)
3359 return -1;
3360 }
3361#endif
3362 return tty_fd;
3363}
3364
3365 static int
3366mch_tcgetattr(int fd, void *term)
3367{
3368 int tty_fd;
3369 int retval = -1;
3370
3371 tty_fd = get_tty_fd(fd);
3372 if (tty_fd >= 0)
3373 {
3374#ifdef NEW_TTY_SYSTEM
3375# ifdef HAVE_TERMIOS_H
3376 retval = tcgetattr(tty_fd, (struct termios *)term);
3377# else
3378 retval = ioctl(tty_fd, TCGETA, (struct termio *)term);
3379# endif
3380#else
3381 // for "old" tty systems
3382 retval = ioctl(tty_fd, TIOCGETP, (struct sgttyb *)term);
3383#endif
3384 if (tty_fd != fd)
3385 close(tty_fd);
3386 }
3387 return retval;
3388}
3389
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003391mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003392{
3393 static int first = TRUE;
3394
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003395#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003396# ifdef HAVE_TERMIOS_H
3397 static struct termios told;
3398 struct termios tnew;
3399# else
3400 static struct termio told;
3401 struct termio tnew;
3402# endif
3403
3404 if (first)
3405 {
3406 first = FALSE;
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003407 mch_tcgetattr(read_cmd_fd, &told);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003408 }
3409
3410 tnew = told;
3411 if (tmode == TMODE_RAW)
3412 {
3413 /*
3414 * ~ICRNL enables typing ^V^M
3415 */
3416 tnew.c_iflag &= ~ICRNL;
3417 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3418# if defined(IEXTEN) && !defined(__MINT__)
3419 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3420 /* but it breaks function keys on MINT */
3421# endif
3422 );
3423# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3424 tnew.c_oflag &= ~ONLCR;
3425# endif
3426 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3427 tnew.c_cc[VTIME] = 0; /* don't wait */
3428 }
3429 else if (tmode == TMODE_SLEEP)
Bram Moolenaar40de4562016-07-01 15:03:46 +02003430 {
3431 /* Also reset ICANON here, otherwise on Solaris select() won't see
3432 * typeahead characters. */
3433 tnew.c_lflag &= ~(ICANON | ECHO);
3434 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3435 tnew.c_cc[VTIME] = 0; /* don't wait */
3436 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437
3438# if defined(HAVE_TERMIOS_H)
3439 {
3440 int n = 10;
3441
3442 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3443 * few times. */
3444 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3445 && errno == EINTR && n > 0)
3446 --n;
3447 }
3448# else
3449 ioctl(read_cmd_fd, TCSETA, &tnew);
3450# endif
3451
3452#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003453 /*
3454 * for "old" tty systems
3455 */
3456# ifndef TIOCSETN
3457# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3458# endif
3459 static struct sgttyb ttybold;
3460 struct sgttyb ttybnew;
3461
3462 if (first)
3463 {
3464 first = FALSE;
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003465 mch_tcgetattr(read_cmd_fd, &ttybold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 }
3467
3468 ttybnew = ttybold;
3469 if (tmode == TMODE_RAW)
3470 {
3471 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3472 ttybnew.sg_flags |= RAW;
3473 }
3474 else if (tmode == TMODE_SLEEP)
3475 ttybnew.sg_flags &= ~(ECHO);
3476 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3477#endif
3478 curr_tmode = tmode;
3479}
3480
3481/*
3482 * Try to get the code for "t_kb" from the stty setting
3483 *
3484 * Even if termcap claims a backspace key, the user's setting *should*
3485 * prevail. stty knows more about reality than termcap does, and if
3486 * somebody's usual erase key is DEL (which, for most BSD users, it will
3487 * be), they're going to get really annoyed if their erase key starts
3488 * doing forward deletes for no reason. (Eric Fischer)
3489 */
3490 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003491get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492{
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003493 ttyinfo_T info;
3494 char_u buf[2];
3495 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003497 if (get_tty_info(read_cmd_fd, &info) == OK)
3498 {
3499 intr_char = info.interrupt;
3500 buf[0] = info.backspace;
3501 buf[1] = NUL;
3502 add_termcode((char_u *)"kb", buf, FALSE);
3503
3504 /* If <BS> and <DEL> are now the same, redefine <DEL>. */
3505 p = find_termcode((char_u *)"kD");
3506 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3507 do_fixdel(NULL);
3508 }
3509}
3510
3511/*
3512 * Obtain the characters that Backspace and Enter produce on "fd".
3513 * Returns OK or FAIL.
3514 */
3515 int
3516get_tty_info(int fd, ttyinfo_T *info)
3517{
3518#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003519# ifdef HAVE_TERMIOS_H
3520 struct termios keys;
3521# else
3522 struct termio keys;
3523# endif
3524
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003525 if (mch_tcgetattr(fd, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003526 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003527 info->backspace = keys.c_cc[VERASE];
3528 info->interrupt = keys.c_cc[VINTR];
3529 if (keys.c_iflag & ICRNL)
3530 info->enter = NL;
3531 else
3532 info->enter = CAR;
3533 if (keys.c_oflag & ONLCR)
3534 info->nl_does_cr = TRUE;
3535 else
3536 info->nl_does_cr = FALSE;
3537 return OK;
3538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539#else
3540 /* for "old" tty systems */
3541 struct sgttyb keys;
3542
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003543 if (mch_tcgetattr(fd, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003545 info->backspace = keys.sg_erase;
3546 info->interrupt = keys.sg_kill;
3547 info->enter = CAR;
3548 info->nl_does_cr = TRUE;
3549 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003551#endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003552 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553}
3554
3555#endif /* VMS */
3556
3557#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003558static int mouse_ison = FALSE;
3559
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560/*
3561 * Set mouse clicks on or off.
3562 */
3563 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003564mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565{
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003566# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003567 static int bevalterm_ison = FALSE;
3568# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 int xterm_mouse_vers;
3570
Bram Moolenaara06afc72018-08-27 23:24:16 +02003571# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
3572 if (!on)
3573 // Make sure not tracing mouse movements. Important when a button-down
3574 // was received but no release yet.
3575 stop_xterm_trace();
3576# endif
3577
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003578 if (on == mouse_ison
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003579# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003580 && p_bevalterm == bevalterm_ison
3581# endif
3582 )
3583 /* return quickly if nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 return;
3585
3586 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003587
3588# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003589 if (ttym_flags == TTYM_URXVT)
3590 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003591 out_str_nf((char_u *)
3592 (on
3593 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3594 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003595 mouse_ison = on;
Bram Moolenaarc8427482011-10-20 21:09:35 +02003596 }
3597# endif
3598
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003599# ifdef FEAT_MOUSE_SGR
3600 if (ttym_flags == TTYM_SGR)
3601 {
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003602 /* SGR mode supports columns above 223 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003603 out_str_nf((char_u *)
3604 (on
3605 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3606 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003607 mouse_ison = on;
3608 }
3609# endif
3610
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003611# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003612 if (bevalterm_ison != (p_bevalterm && on))
3613 {
3614 bevalterm_ison = (p_bevalterm && on);
3615 if (xterm_mouse_vers > 1 && !bevalterm_ison)
3616 /* disable mouse movement events, enabling is below */
3617 out_str_nf((char_u *)
3618 (IF_EB("\033[?1003l", ESC_STR "[?1003l")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003619 }
3620# endif
3621
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 if (xterm_mouse_vers > 0)
3623 {
3624 if (on) /* enable mouse events, use mouse tracking if available */
3625 out_str_nf((char_u *)
3626 (xterm_mouse_vers > 1
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003627 ? (
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003628# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003629 bevalterm_ison
3630 ? IF_EB("\033[?1003h", ESC_STR "[?1003h") :
3631# endif
3632 IF_EB("\033[?1002h", ESC_STR "[?1002h"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003633 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3634 else /* disable mouse events, could probably always send the same */
3635 out_str_nf((char_u *)
3636 (xterm_mouse_vers > 1
3637 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3638 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003639 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003640 }
3641
3642# ifdef FEAT_MOUSE_DEC
3643 else if (ttym_flags == TTYM_DEC)
3644 {
3645 if (on) /* enable mouse events */
3646 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3647 else /* disable mouse events */
3648 out_str_nf((char_u *)"\033['z");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003649 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003650 }
3651# endif
3652
3653# ifdef FEAT_MOUSE_GPM
3654 else
3655 {
3656 if (on)
3657 {
3658 if (gpm_open())
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003659 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660 }
3661 else
3662 {
3663 gpm_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003664 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 }
3666 }
3667# endif
3668
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003669# ifdef FEAT_SYSMOUSE
3670 else
3671 {
3672 if (on)
3673 {
3674 if (sysmouse_open() == OK)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003675 mouse_ison = TRUE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003676 }
3677 else
3678 {
3679 sysmouse_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003680 mouse_ison = FALSE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003681 }
3682 }
3683# endif
3684
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685# ifdef FEAT_MOUSE_JSB
3686 else
3687 {
3688 if (on)
3689 {
3690 /* D - Enable Mouse up/down messages
3691 * L - Enable Left Button Reporting
3692 * M - Enable Middle Button Reporting
3693 * R - Enable Right Button Reporting
3694 * K - Enable SHIFT and CTRL key Reporting
3695 * + - Enable Advanced messaging of mouse moves and up/down messages
3696 * Q - Quiet No Ack
3697 * # - Numeric value of mouse pointer required
3698 * 0 = Multiview 2000 cursor, used as standard
3699 * 1 = Windows Arrow
3700 * 2 = Windows I Beam
3701 * 3 = Windows Hour Glass
3702 * 4 = Windows Cross Hair
3703 * 5 = Windows UP Arrow
3704 */
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003705# ifdef JSBTERM_MOUSE_NONADVANCED
3706 /* Disables full feedback of pointer movements */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3708 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003709# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3711 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003712# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003713 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714 }
3715 else
3716 {
3717 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3718 ESC_STR "[0~ZwQ" ESC_STR "\\"));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003719 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 }
3721 }
3722# endif
3723# ifdef FEAT_MOUSE_PTERM
3724 else
3725 {
3726 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3727 if (on)
3728 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3729 else
3730 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003731 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 }
3733# endif
3734}
3735
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003736#if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003737/*
3738 * Called when 'balloonevalterm' changed.
3739 */
3740 void
3741mch_bevalterm_changed(void)
3742{
3743 mch_setmouse(mouse_ison);
3744}
3745#endif
3746
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747/*
3748 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3749 */
3750 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003751check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003752{
3753# ifdef FEAT_MOUSE_XTERM
3754 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003755# ifdef FEAT_MOUSE_URXVT
3756 && use_xterm_mouse() != 3
3757# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758# ifdef FEAT_GUI
3759 && !gui.in_use
3760# endif
3761 )
3762 {
3763 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003764 ? IF_EB("\233M", CSI_STR "M")
3765 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 if (*p_mouse != NUL)
3767 {
3768 /* force mouse off and maybe on to send possibly new mouse
3769 * activation sequence to the xterm, with(out) drag tracing. */
3770 mch_setmouse(FALSE);
3771 setmouse();
3772 }
3773 }
3774 else
3775 del_mouse_termcode(KS_MOUSE);
3776# endif
3777
3778# ifdef FEAT_MOUSE_GPM
3779 if (!use_xterm_mouse()
3780# ifdef FEAT_GUI
3781 && !gui.in_use
3782# endif
3783 )
3784 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3785# endif
3786
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003787# ifdef FEAT_SYSMOUSE
3788 if (!use_xterm_mouse()
3789# ifdef FEAT_GUI
3790 && !gui.in_use
3791# endif
3792 )
3793 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3794# endif
3795
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796# ifdef FEAT_MOUSE_JSB
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003797 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 if (!use_xterm_mouse()
3799# ifdef FEAT_GUI
3800 && !gui.in_use
3801# endif
3802 )
3803 set_mouse_termcode(KS_JSBTERM_MOUSE,
3804 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3805 else
3806 del_mouse_termcode(KS_JSBTERM_MOUSE);
3807# endif
3808
3809# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003810 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003811 * define it in the GUI or when using an xterm. */
3812 if (!use_xterm_mouse()
3813# ifdef FEAT_GUI
3814 && !gui.in_use
3815# endif
3816 )
3817 set_mouse_termcode(KS_NETTERM_MOUSE,
3818 (char_u *)IF_EB("\033}", ESC_STR "}"));
3819 else
3820 del_mouse_termcode(KS_NETTERM_MOUSE);
3821# endif
3822
3823# ifdef FEAT_MOUSE_DEC
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003824 /* Conflicts with xterm mouse: "\033[" and "\033[M" */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003825 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826# ifdef FEAT_GUI
3827 && !gui.in_use
3828# endif
3829 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003830 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3831 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832 else
3833 del_mouse_termcode(KS_DEC_MOUSE);
3834# endif
3835# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003836 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003837 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838# ifdef FEAT_GUI
3839 && !gui.in_use
3840# endif
3841 )
3842 set_mouse_termcode(KS_PTERM_MOUSE,
3843 (char_u *) IF_EB("\033[", ESC_STR "["));
3844 else
3845 del_mouse_termcode(KS_PTERM_MOUSE);
3846# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003847# ifdef FEAT_MOUSE_URXVT
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003848 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003849# ifdef FEAT_GUI
3850 && !gui.in_use
3851# endif
3852 )
3853 {
3854 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003855 ? IF_EB("\233*M", CSI_STR "*M")
3856 : IF_EB("\033[*M", ESC_STR "[*M")));
Bram Moolenaarc8427482011-10-20 21:09:35 +02003857
3858 if (*p_mouse != NUL)
3859 {
3860 mch_setmouse(FALSE);
3861 setmouse();
3862 }
3863 }
3864 else
3865 del_mouse_termcode(KS_URXVT_MOUSE);
3866# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003867# ifdef FEAT_MOUSE_SGR
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003868 if (use_xterm_mouse() == 4
3869# ifdef FEAT_GUI
3870 && !gui.in_use
3871# endif
3872 )
3873 {
3874 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003875 ? IF_EB("\233<*M", CSI_STR "<*M")
3876 : IF_EB("\033[<*M", ESC_STR "[<*M")));
3877
3878 set_mouse_termcode(KS_SGR_MOUSE_RELEASE, (char_u *)(term_is_8bit(T_NAME)
3879 ? IF_EB("\233<*m", CSI_STR "<*m")
3880 : IF_EB("\033[<*m", ESC_STR "[<*m")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003881
3882 if (*p_mouse != NUL)
3883 {
3884 mch_setmouse(FALSE);
3885 setmouse();
3886 }
3887 }
3888 else
Bram Moolenaara529ce02017-06-22 22:37:57 +02003889 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003890 del_mouse_termcode(KS_SGR_MOUSE);
Bram Moolenaara529ce02017-06-22 22:37:57 +02003891 del_mouse_termcode(KS_SGR_MOUSE_RELEASE);
3892 }
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003893# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003894}
3895#endif
3896
3897/*
3898 * set screen mode, always fails.
3899 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003900 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003901mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003903 emsg(_(e_screenmode));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 return FAIL;
3905}
3906
3907#ifndef VMS
3908
3909/*
3910 * Try to get the current window size:
3911 * 1. with an ioctl(), most accurate method
3912 * 2. from the environment variables LINES and COLUMNS
3913 * 3. from the termcap
3914 * 4. keep using the old values
3915 * Return OK when size could be determined, FAIL otherwise.
3916 */
3917 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003918mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003919{
3920 long rows = 0;
3921 long columns = 0;
3922 char_u *p;
3923
3924 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 * 1. try using an ioctl. It is the most accurate method.
3926 *
3927 * Try using TIOCGWINSZ first, some systems that have it also define
3928 * TIOCGSIZE but don't have a struct ttysize.
3929 */
3930# ifdef TIOCGWINSZ
3931 {
3932 struct winsize ws;
3933 int fd = 1;
3934
3935 /* When stdout is not a tty, use stdin for the ioctl(). */
3936 if (!isatty(fd) && isatty(read_cmd_fd))
3937 fd = read_cmd_fd;
3938 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3939 {
3940 columns = ws.ws_col;
3941 rows = ws.ws_row;
3942 }
3943 }
3944# else /* TIOCGWINSZ */
3945# ifdef TIOCGSIZE
3946 {
3947 struct ttysize ts;
3948 int fd = 1;
3949
3950 /* When stdout is not a tty, use stdin for the ioctl(). */
3951 if (!isatty(fd) && isatty(read_cmd_fd))
3952 fd = read_cmd_fd;
3953 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3954 {
3955 columns = ts.ts_cols;
3956 rows = ts.ts_lines;
3957 }
3958 }
3959# endif /* TIOCGSIZE */
3960# endif /* TIOCGWINSZ */
3961
3962 /*
3963 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003964 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3965 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003966 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003967 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 {
3969 if ((p = (char_u *)getenv("LINES")))
3970 rows = atoi((char *)p);
3971 if ((p = (char_u *)getenv("COLUMNS")))
3972 columns = atoi((char *)p);
3973 }
3974
3975#ifdef HAVE_TGETENT
3976 /*
3977 * 3. try reading "co" and "li" entries from termcap
3978 */
3979 if (columns == 0 || rows == 0)
3980 getlinecol(&columns, &rows);
3981#endif
3982
3983 /*
3984 * 4. If everything fails, use the old values
3985 */
3986 if (columns <= 0 || rows <= 0)
3987 return FAIL;
3988
3989 Rows = rows;
3990 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02003991 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003992 return OK;
3993}
3994
Bram Moolenaarb13501f2017-07-22 22:32:56 +02003995#if defined(FEAT_TERMINAL) || defined(PROTO)
3996/*
3997 * Report the windows size "rows" and "cols" to tty "fd".
3998 */
3999 int
4000mch_report_winsize(int fd, int rows, int cols)
4001{
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004002 int tty_fd;
4003 int retval = -1;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004004
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004005 tty_fd = get_tty_fd(fd);
4006 if (tty_fd >= 0)
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004007 {
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004008# if defined(TIOCSWINSZ)
4009 struct winsize ws;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004010
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004011 ws.ws_col = cols;
4012 ws.ws_row = rows;
4013 ws.ws_xpixel = cols * 5;
4014 ws.ws_ypixel = rows * 10;
4015 retval = ioctl(tty_fd, TIOCSWINSZ, &ws);
4016 ch_log(NULL, "ioctl(TIOCSWINSZ) %s",
4017 retval == 0 ? "success" : "failed");
4018# elif defined(TIOCSSIZE)
4019 struct ttysize ts;
4020
4021 ts.ts_cols = cols;
4022 ts.ts_lines = rows;
4023 retval = ioctl(tty_fd, TIOCSSIZE, &ts);
4024 ch_log(NULL, "ioctl(TIOCSSIZE) %s",
4025 retval == 0 ? "success" : "failed");
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004026# endif
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004027 if (tty_fd != fd)
4028 close(tty_fd);
4029 }
4030 return retval == 0 ? OK : FAIL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004031}
4032#endif
4033
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034/*
4035 * Try to set the window size to Rows and Columns.
4036 */
4037 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004038mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039{
4040 if (*T_CWS)
4041 {
4042 /*
4043 * NOTE: if you get an error here that term_set_winsize() is
4044 * undefined, check the output of configure. It could probably not
4045 * find a ncurses, termcap or termlib library.
4046 */
4047 term_set_winsize((int)Rows, (int)Columns);
4048 out_flush();
4049 screen_start(); /* don't know where cursor is now */
4050 }
4051}
4052
4053#endif /* VMS */
4054
4055/*
4056 * Rows and/or Columns has changed.
4057 */
4058 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004059mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060{
4061 /* Nothing to do. */
4062}
4063
Bram Moolenaar205b8862011-09-07 15:04:31 +02004064/*
4065 * Wait for process "child" to end.
4066 * Return "child" if it exited properly, <= 0 on error.
4067 */
4068 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01004069wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02004070{
4071 pid_t wait_pid = 0;
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004072 long delay_msec = 1;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004073
4074 while (wait_pid != child)
4075 {
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004076 /* When compiled with Python threads are probably used, in which case
4077 * wait() sometimes hangs for no obvious reason. Use waitpid()
4078 * instead and loop (like the GUI). Also needed for other interfaces,
4079 * they might call system(). */
4080# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004081 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004082# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02004083 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004084# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02004085 if (wait_pid == 0)
4086 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004087 /* Wait for 1 to 10 msec before trying again. */
4088 mch_delay(delay_msec, TRUE);
4089 if (++delay_msec > 10)
4090 delay_msec = 10;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004091 continue;
4092 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004093 if (wait_pid <= 0
4094# ifdef ECHILD
4095 && errno == ECHILD
4096# endif
4097 )
4098 break;
4099 }
4100 return wait_pid;
4101}
4102
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004103#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar7da34602017-08-01 17:14:21 +02004104/*
4105 * Set the environment for a child process.
4106 */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004107 static void
Bram Moolenaar493359e2018-06-12 20:25:52 +02004108set_child_environment(
4109 long rows,
4110 long columns,
4111 char *term,
4112 int is_terminal UNUSED)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004113{
4114# ifdef HAVE_SETENV
4115 char envbuf[50];
4116# else
Bram Moolenaar5f7e7bd2017-07-22 14:08:43 +02004117 static char envbuf_Term[30];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004118 static char envbuf_Rows[20];
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004119 static char envbuf_Lines[20];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004120 static char envbuf_Columns[20];
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004121 static char envbuf_Colors[20];
Bram Moolenaar493359e2018-06-12 20:25:52 +02004122# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02004123 static char envbuf_Version[20];
Bram Moolenaar493359e2018-06-12 20:25:52 +02004124# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004125# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004126 static char envbuf_Servername[60];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004127# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004128# endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004129 long colors =
4130# ifdef FEAT_GUI
4131 gui.in_use ? 256*256*256 :
4132# endif
4133 t_colors;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004134
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004135# ifdef HAVE_SETENV
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004136 setenv("TERM", term, 1);
4137 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004138 setenv("ROWS", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004139 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004140 setenv("LINES", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004141 sprintf((char *)envbuf, "%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004142 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004143 sprintf((char *)envbuf, "%ld", colors);
4144 setenv("COLORS", (char *)envbuf, 1);
Bram Moolenaar493359e2018-06-12 20:25:52 +02004145# ifdef FEAT_TERMINAL
4146 if (is_terminal)
4147 {
Bram Moolenaar5ecdf962018-06-13 20:49:50 +02004148 sprintf((char *)envbuf, "%ld", (long)get_vim_var_nr(VV_VERSION));
Bram Moolenaar493359e2018-06-12 20:25:52 +02004149 setenv("VIM_TERMINAL", (char *)envbuf, 1);
4150 }
4151# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004152# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004153 setenv("VIM_SERVERNAME", serverName == NULL ? "" : (char *)serverName, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004154# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004155# else
4156 /*
4157 * Putenv does not copy the string, it has to remain valid.
4158 * Use a static array to avoid losing allocated memory.
Bram Moolenaar7da34602017-08-01 17:14:21 +02004159 * This won't work well when running multiple children...
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004160 */
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004161 vim_snprintf(envbuf_Term, sizeof(envbuf_Term), "TERM=%s", term);
4162 putenv(envbuf_Term);
4163 vim_snprintf(envbuf_Rows, sizeof(envbuf_Rows), "ROWS=%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004164 putenv(envbuf_Rows);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004165 vim_snprintf(envbuf_Lines, sizeof(envbuf_Lines), "LINES=%ld", rows);
4166 putenv(envbuf_Lines);
4167 vim_snprintf(envbuf_Columns, sizeof(envbuf_Columns),
4168 "COLUMNS=%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004169 putenv(envbuf_Columns);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004170 vim_snprintf(envbuf_Colors, sizeof(envbuf_Colors), "COLORS=%ld", colors);
4171 putenv(envbuf_Colors);
Bram Moolenaar493359e2018-06-12 20:25:52 +02004172# ifdef FEAT_TERMINAL
4173 if (is_terminal)
4174 {
4175 vim_snprintf(envbuf_Version, sizeof(envbuf_Version),
Bram Moolenaar5ecdf962018-06-13 20:49:50 +02004176 "VIM_TERMINAL=%ld", (long)get_vim_var_nr(VV_VERSION));
Bram Moolenaar493359e2018-06-12 20:25:52 +02004177 putenv(envbuf_Version);
4178 }
4179# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004180# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004181 vim_snprintf(envbuf_Servername, sizeof(envbuf_Servername),
4182 "VIM_SERVERNAME=%s", serverName == NULL ? "" : (char *)serverName);
4183 putenv(envbuf_Servername);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004184# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004185# endif
4186}
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004187
4188 static void
Bram Moolenaar493359e2018-06-12 20:25:52 +02004189set_default_child_environment(int is_terminal)
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004190{
Bram Moolenaar493359e2018-06-12 20:25:52 +02004191 set_child_environment(Rows, Columns, "dumb", is_terminal);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004192}
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004193#endif
4194
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004195#if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004196/*
4197 * Open a PTY, with FD for the master and slave side.
4198 * When failing "pty_master_fd" and "pty_slave_fd" are -1.
Bram Moolenaar59386482019-02-10 22:43:46 +01004199 * When successful both file descriptors are stored and the allocated pty name
4200 * is stored in both "*name1" and "*name2".
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004201 */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004202 static void
Bram Moolenaar59386482019-02-10 22:43:46 +01004203open_pty(int *pty_master_fd, int *pty_slave_fd, char_u **name1, char_u **name2)
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004204{
4205 char *tty_name;
4206
Bram Moolenaar59386482019-02-10 22:43:46 +01004207 if (name1 != NULL)
4208 *name1 = NULL;
4209 if (name2 != NULL)
4210 *name2 = NULL;
4211
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004212 *pty_master_fd = mch_openpty(&tty_name); // open pty
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004213 if (*pty_master_fd >= 0)
4214 {
4215 /* Leaving out O_NOCTTY may lead to waitpid() always returning
4216 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4217 * adding O_NOCTTY always works when defined. */
4218#ifdef O_NOCTTY
4219 *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4220#else
4221 *pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4222#endif
4223 if (*pty_slave_fd < 0)
4224 {
4225 close(*pty_master_fd);
4226 *pty_master_fd = -1;
4227 }
Bram Moolenaar59386482019-02-10 22:43:46 +01004228 else
4229 {
4230 if (name1 != NULL)
4231 *name1 = vim_strsave((char_u *)tty_name);
4232 if (name2 != NULL)
4233 *name2 = vim_strsave((char_u *)tty_name);
4234 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004235 }
4236}
4237#endif
4238
Bram Moolenaarfae42832017-08-01 22:24:26 +02004239/*
4240 * Send SIGINT to a child process if "c" is an interrupt character.
4241 */
4242 void
4243may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED)
4244{
4245# ifdef SIGINT
4246 if (c == Ctrl_C || c == intr_char)
4247 {
4248# ifdef HAVE_SETSID
4249 kill(-pid, SIGINT);
4250# else
4251 kill(0, SIGINT);
4252# endif
4253 if (wpid > 0)
4254 kill(wpid, SIGINT);
4255 }
4256# endif
4257}
4258
Bram Moolenaar13568252018-03-16 20:46:58 +01004259#if !defined(USE_SYSTEM) || (defined(FEAT_GUI) && defined(FEAT_TERMINAL))
4260
4261 static int
4262build_argv(
4263 char_u *cmd,
4264 char ***argvp,
4265 char_u **sh_tofree,
4266 char_u **shcf_tofree)
4267{
4268 char **argv = NULL;
4269 int argc;
4270
4271 *sh_tofree = vim_strsave(p_sh);
4272 if (*sh_tofree == NULL) /* out of memory */
4273 return FAIL;
4274
4275 if (mch_parse_cmd(*sh_tofree, TRUE, &argv, &argc) == FAIL)
4276 return FAIL;
4277 *argvp = argv;
4278
4279 if (cmd != NULL)
4280 {
4281 char_u *s;
4282 char_u *p;
4283
4284 if (extra_shell_arg != NULL)
4285 argv[argc++] = (char *)extra_shell_arg;
4286
4287 /* Break 'shellcmdflag' into white separated parts. This doesn't
4288 * handle quoted strings, they are very unlikely to appear. */
4289 *shcf_tofree = alloc((unsigned)STRLEN(p_shcf) + 1);
4290 if (*shcf_tofree == NULL) /* out of memory */
4291 return FAIL;
4292 s = *shcf_tofree;
4293 p = p_shcf;
4294 while (*p != NUL)
4295 {
4296 argv[argc++] = (char *)s;
4297 while (*p && *p != ' ' && *p != TAB)
4298 *s++ = *p++;
4299 *s++ = NUL;
4300 p = skipwhite(p);
4301 }
4302
4303 argv[argc++] = (char *)cmd;
4304 }
4305 argv[argc] = NULL;
4306 return OK;
4307}
4308#endif
4309
4310#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4311/*
4312 * Use a terminal window to run a shell command in.
4313 */
4314 static int
4315mch_call_shell_terminal(
4316 char_u *cmd,
4317 int options UNUSED) /* SHELL_*, see vim.h */
4318{
4319 jobopt_T opt;
4320 char **argv = NULL;
4321 char_u *tofree1 = NULL;
4322 char_u *tofree2 = NULL;
4323 int retval = -1;
4324 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004325 job_T *job;
Bram Moolenaar13568252018-03-16 20:46:58 +01004326 aco_save_T aco;
4327 oparg_T oa; /* operator arguments */
4328
4329 if (build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
4330 goto theend;
4331
4332 init_job_options(&opt);
4333 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4334 buf = term_start(NULL, argv, &opt, TERM_START_SYSTEM);
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004335 if (buf == NULL)
4336 goto theend;
4337
4338 job = term_getjob(buf->b_term);
4339 ++job->jv_refcount;
Bram Moolenaar13568252018-03-16 20:46:58 +01004340
4341 /* Find a window to make "buf" curbuf. */
4342 aucmd_prepbuf(&aco, buf);
4343
4344 clear_oparg(&oa);
4345 while (term_use_loop())
4346 {
4347 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4348 {
4349 /* If terminal_loop() returns OK we got a key that is handled
4350 * in Normal model. We don't do redrawing anyway. */
4351 if (terminal_loop(TRUE) == OK)
4352 normal_cmd(&oa, TRUE);
4353 }
4354 else
4355 normal_cmd(&oa, TRUE);
4356 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004357 retval = job->jv_exitval;
Bram Moolenaar13568252018-03-16 20:46:58 +01004358 ch_log(NULL, "system command finished");
4359
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004360 job_unref(job);
4361
Bram Moolenaar13568252018-03-16 20:46:58 +01004362 /* restore curwin/curbuf and a few other things */
4363 aucmd_restbuf(&aco);
4364
4365 wait_return(TRUE);
4366 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4367
4368theend:
4369 vim_free(argv);
4370 vim_free(tofree1);
4371 vim_free(tofree2);
4372 return retval;
4373}
4374#endif
4375
4376#ifdef USE_SYSTEM
4377/*
4378 * Use system() to start the shell: simple but slow.
4379 */
4380 static int
4381mch_call_shell_system(
Bram Moolenaar05540972016-01-30 20:31:25 +01004382 char_u *cmd,
4383 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384{
4385#ifdef VMS
4386 char *ifn = NULL;
4387 char *ofn = NULL;
4388#endif
4389 int tmode = cur_tmode;
Bram Moolenaarb2b050a2016-07-16 21:52:46 +02004390 char_u *newcmd; /* only needed for unix */
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01004391 int x;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392
4393 out_flush();
4394
4395 if (options & SHELL_COOKED)
4396 settmode(TMODE_COOK); /* set to normal mode */
4397
Bram Moolenaar62b42182010-09-21 22:09:37 +02004398# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004399 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004400 loose_clipboard();
4401# endif
4402
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 if (cmd == NULL)
4404 x = system((char *)p_sh);
4405 else
4406 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004407# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004408 if (ofn = strchr((char *)cmd, '>'))
4409 *ofn++ = '\0';
4410 if (ifn = strchr((char *)cmd, '<'))
4411 {
4412 char *p;
4413
4414 *ifn++ = '\0';
4415 p = strchr(ifn,' '); /* chop off any trailing spaces */
4416 if (p)
4417 *p = '\0';
4418 }
4419 if (ofn)
4420 x = vms_sys((char *)cmd, ofn, ifn);
4421 else
4422 x = system((char *)cmd);
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004423# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004424 newcmd = lalloc(STRLEN(p_sh)
4425 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
4426 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
4427 if (newcmd == NULL)
4428 x = 0;
4429 else
4430 {
4431 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4432 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4433 (char *)p_shcf,
4434 (char *)cmd);
4435 x = system((char *)newcmd);
4436 vim_free(newcmd);
4437 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004438# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 }
4440# ifdef VMS
4441 x = vms_sys_status(x);
4442# endif
4443 if (emsg_silent)
4444 ;
4445 else if (x == 127)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004446 msg_puts(_("\nCannot execute shell sh\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 else if (x && !(options & SHELL_SILENT))
4448 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004449 msg_puts(_("\nshell returned "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 msg_outnum((long)x);
4451 msg_putchar('\n');
4452 }
4453
4454 if (tmode == TMODE_RAW)
4455 settmode(TMODE_RAW); /* set to raw mode */
4456# ifdef FEAT_TITLE
4457 resettitle();
4458# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004459# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4460 restore_clipboard();
4461# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 return x;
Bram Moolenaar13568252018-03-16 20:46:58 +01004463}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464
Bram Moolenaar13568252018-03-16 20:46:58 +01004465#else /* USE_SYSTEM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466
Bram Moolenaardf177f62005-02-22 08:39:57 +00004467# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
4468 127, some shells use that already */
Bram Moolenaarb109bb42017-08-21 21:07:29 +02004469# define OPEN_NULL_FAILED 123 /* Exit code if /dev/null can't be opened */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470
Bram Moolenaar13568252018-03-16 20:46:58 +01004471/*
4472 * Don't use system(), use fork()/exec().
4473 */
4474 static int
4475mch_call_shell_fork(
4476 char_u *cmd,
4477 int options) /* SHELL_*, see vim.h */
4478{
4479 int tmode = cur_tmode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004480 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004481 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 pid_t wait_pid = 0;
4483# ifdef HAVE_UNION_WAIT
4484 union wait status;
4485# else
4486 int status = -1;
4487# endif
4488 int retval = -1;
4489 char **argv = NULL;
Bram Moolenaar13568252018-03-16 20:46:58 +01004490 char_u *tofree1 = NULL;
4491 char_u *tofree2 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004494# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 int pty_slave_fd = -1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004496# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004497 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498 int fd_fromshell[2];
4499 int pipe_error = FALSE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004500 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004501
4502 out_flush();
4503 if (options & SHELL_COOKED)
4504 settmode(TMODE_COOK); /* set to normal mode */
4505
Bram Moolenaar13568252018-03-16 20:46:58 +01004506 if (build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
Bram Moolenaar835dc632016-02-07 14:27:38 +01004507 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004508
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004510 * For the GUI, when writing the output into the buffer and when reading
4511 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4512 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004514 if ((options & (SHELL_READ|SHELL_WRITE))
4515# ifdef FEAT_GUI
4516 || (gui.in_use && show_shell_mess)
4517# endif
4518 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004520# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 /*
4522 * Try to open a master pty.
4523 * If this works, open the slave pty.
4524 * If the slave can't be opened, close the master pty.
4525 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004526 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar59386482019-02-10 22:43:46 +01004527 open_pty(&pty_master_fd, &pty_slave_fd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 /*
4529 * If not opening a pty or it didn't work, try using pipes.
4530 */
4531 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004532# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004533 {
4534 pipe_error = (pipe(fd_toshell) < 0);
4535 if (!pipe_error) /* pipe create OK */
4536 {
4537 pipe_error = (pipe(fd_fromshell) < 0);
4538 if (pipe_error) /* pipe create failed */
4539 {
4540 close(fd_toshell[0]);
4541 close(fd_toshell[1]);
4542 }
4543 }
4544 if (pipe_error)
4545 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004546 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 out_flush();
4548 }
4549 }
4550 }
4551
4552 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004554 SIGSET_DECL(curset)
4555
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556# ifdef __BEOS__
4557 beos_cleanup_read_thread();
4558# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004559
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004560 BLOCK_SIGNALS(&curset);
4561 pid = fork(); /* maybe we should use vfork() */
4562 if (pid == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004564 UNBLOCK_SIGNALS(&curset);
4565
Bram Moolenaar32526b32019-01-19 17:43:09 +01004566 msg_puts(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004567 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004569 || (gui.in_use && show_shell_mess)
4570# endif
4571 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004573# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004574 if (pty_master_fd >= 0) /* close the pseudo tty */
4575 {
4576 close(pty_master_fd);
4577 close(pty_slave_fd);
4578 }
4579 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004580# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 {
4582 close(fd_toshell[0]);
4583 close(fd_toshell[1]);
4584 close(fd_fromshell[0]);
4585 close(fd_fromshell[1]);
4586 }
4587 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 }
4589 else if (pid == 0) /* child */
4590 {
4591 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004592 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004593
Bram Moolenaar819524702018-02-27 19:10:00 +01004594# ifdef FEAT_JOB_CHANNEL
4595 if (ch_log_active())
4596 /* close the log file in the child */
4597 ch_logfile((char_u *)"", (char_u *)"");
4598# endif
4599
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600 if (!show_shell_mess || (options & SHELL_EXPAND))
4601 {
4602 int fd;
4603
4604 /*
4605 * Don't want to show any message from the shell. Can't just
4606 * close stdout and stderr though, because some systems will
4607 * break if you try to write to them after that, so we must
4608 * use dup() to replace them with something else -- webb
4609 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4610 * waiting for input.
4611 */
4612 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4613 fclose(stdin);
4614 fclose(stdout);
4615 fclose(stderr);
4616
4617 /*
4618 * If any of these open()'s and dup()'s fail, we just continue
4619 * anyway. It's not fatal, and on most systems it will make
4620 * no difference at all. On a few it will cause the execvp()
4621 * to exit with a non-zero status even when the completion
4622 * could be done, which is nothing too serious. If the open()
4623 * or dup() failed we'd just do the same thing ourselves
4624 * anyway -- webb
4625 */
4626 if (fd >= 0)
4627 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02004628 vim_ignored = dup(fd); /* To replace stdin (fd 0) */
4629 vim_ignored = dup(fd); /* To replace stdout (fd 1) */
4630 vim_ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631
4632 /* Don't need this now that we've duplicated it */
4633 close(fd);
4634 }
4635 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004636 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004638 || gui.in_use
4639# endif
4640 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 {
4642
Bram Moolenaardf177f62005-02-22 08:39:57 +00004643# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004644 /* Create our own process group, so that the child and all its
4645 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004646 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004647 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004648 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004649 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004650# if defined(SIGHUP)
4651 /* When doing "!xterm&" and 'shell' is bash: the shell
4652 * will exit and send SIGHUP to all processes in its
4653 * group, killing the just started process. Ignore SIGHUP
4654 * to avoid that. (suggested by Simon Schubert)
4655 */
4656 signal(SIGHUP, SIG_IGN);
4657# endif
4658 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004659# endif
4660# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004661 if (pty_slave_fd >= 0)
4662 {
4663 /* push stream discipline modules */
4664 if (options & SHELL_COOKED)
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004665 setup_slavepty(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004666# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004667 /* Try to become controlling tty (probably doesn't work,
4668 * unless run by root) */
4669 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004670# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004671 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004672# endif
Bram Moolenaar493359e2018-06-12 20:25:52 +02004673 set_default_child_environment(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674
Bram Moolenaara5792f52005-11-23 21:25:05 +00004675 /*
4676 * stderr is only redirected when using the GUI, so that a
4677 * program like gpg can still access the terminal to get a
4678 * passphrase using stderr.
4679 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004680# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 if (pty_master_fd >= 0)
4682 {
4683 close(pty_master_fd); /* close master side of pty */
4684
4685 /* set up stdin/stdout/stderr for the child */
4686 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004687 vim_ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 close(1);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004689 vim_ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004690 if (gui.in_use)
4691 {
4692 close(2);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004693 vim_ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695
4696 close(pty_slave_fd); /* has been dupped, close it now */
4697 }
4698 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004699# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004700 {
4701 /* set up stdin for the child */
4702 close(fd_toshell[1]);
4703 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004704 vim_ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 close(fd_toshell[0]);
4706
4707 /* set up stdout for the child */
4708 close(fd_fromshell[0]);
4709 close(1);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004710 vim_ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 close(fd_fromshell[1]);
4712
Bram Moolenaara5792f52005-11-23 21:25:05 +00004713# ifdef FEAT_GUI
4714 if (gui.in_use)
4715 {
4716 /* set up stderr for the child */
4717 close(2);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004718 vim_ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004719 }
4720# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 }
4722 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004723
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 /*
4725 * There is no type cast for the argv, because the type may be
4726 * different on different machines. This may cause a warning
4727 * message with strict compilers, don't worry about it.
4728 * Call _exit() instead of exit() to avoid closing the connection
4729 * to the X server (esp. with GTK, which uses atexit()).
4730 */
4731 execvp(argv[0], argv);
4732 _exit(EXEC_FAILED); /* exec failed, return failure code */
4733 }
4734 else /* parent */
4735 {
4736 /*
4737 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004738 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004739 */
4740 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004741 catch_int_signal();
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004742 UNBLOCK_SIGNALS(&curset);
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01004743# ifdef FEAT_JOB_CHANNEL
4744 ++dont_check_job_ended;
4745# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 /*
4747 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004748 * This is also used to pipe stdin/stdout to/from the external
4749 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004751 if ((options & (SHELL_READ|SHELL_WRITE))
4752# ifdef FEAT_GUI
4753 || (gui.in_use && show_shell_mess)
4754# endif
4755 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004757# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004758 char_u buffer[BUFLEN + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4761 int ta_len = 0; /* valid bytes in ta_buf[] */
4762 int len;
4763 int p_more_save;
4764 int old_State;
4765 int c;
4766 int toshell_fd;
4767 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004768 garray_T ga;
4769 int noread_cnt;
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01004770# ifdef ELAPSED_FUNC
4771 elapsed_T start_tv;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004772# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773
Bram Moolenaardf177f62005-02-22 08:39:57 +00004774# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775 if (pty_master_fd >= 0)
4776 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777 fromshell_fd = pty_master_fd;
4778 toshell_fd = dup(pty_master_fd);
4779 }
4780 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004781# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 {
4783 close(fd_toshell[0]);
4784 close(fd_fromshell[1]);
4785 toshell_fd = fd_toshell[1];
4786 fromshell_fd = fd_fromshell[0];
4787 }
4788
4789 /*
4790 * Write to the child if there are typed characters.
4791 * Read from the child if there are characters available.
4792 * Repeat the reading a few times if more characters are
4793 * available. Need to check for typed keys now and then, but
4794 * not too often (delays when no chars are available).
4795 * This loop is quit if no characters can be read from the pty
4796 * (WaitForChar detected special condition), or there are no
4797 * characters available and the child has exited.
4798 * Only check if the child has exited when there is no more
4799 * output. The child may exit before all the output has
4800 * been printed.
4801 *
4802 * Currently this busy loops!
4803 * This can probably dead-lock when the write blocks!
4804 */
4805 p_more_save = p_more;
4806 p_more = FALSE;
4807 old_State = State;
4808 State = EXTERNCMD; /* don't redraw at window resize */
4809
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004810 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004811 {
4812 /* Fork a process that will write the lines to the
4813 * external program. */
4814 if ((wpid = fork()) == -1)
4815 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004816 msg_puts(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004817 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004818 else if (wpid == 0) /* child */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004819 {
4820 linenr_T lnum = curbuf->b_op_start.lnum;
4821 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004822 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004823 size_t l;
4824
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004825 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004826 for (;;)
4827 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004828 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004829 if (l == 0)
4830 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004831 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004832 /* NL -> NUL translation */
4833 len = write(toshell_fd, "", (size_t)1);
4834 else
4835 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004836 char_u *s = vim_strchr(lp + written, NL);
4837
Bram Moolenaar89d40322006-08-29 15:30:07 +00004838 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004839 s == NULL ? l
4840 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004841 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004842 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004843 {
4844 /* Finished a line, add a NL, unless this line
4845 * should not have one. */
4846 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004847 || (!curbuf->b_p_bin
4848 && curbuf->b_p_fixeol)
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004849 || (lnum != curbuf->b_no_eol_lnum
Bram Moolenaardf177f62005-02-22 08:39:57 +00004850 && (lnum !=
4851 curbuf->b_ml.ml_line_count
4852 || curbuf->b_p_eol)))
Bram Moolenaar42335f52018-09-13 15:33:43 +02004853 vim_ignored = write(toshell_fd, "\n",
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004854 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004855 ++lnum;
4856 if (lnum > curbuf->b_op_end.lnum)
4857 {
4858 /* finished all the lines, close pipe */
4859 close(toshell_fd);
4860 toshell_fd = -1;
4861 break;
4862 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004863 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004864 written = 0;
4865 }
4866 else if (len > 0)
4867 written += len;
4868 }
4869 _exit(0);
4870 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004871 else /* parent */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004872 {
4873 close(toshell_fd);
4874 toshell_fd = -1;
4875 }
4876 }
4877
4878 if (options & SHELL_READ)
4879 ga_init2(&ga, 1, BUFLEN);
4880
4881 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004882# ifdef ELAPSED_FUNC
4883 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004884# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 for (;;)
4886 {
4887 /*
4888 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004889 * if there are any.
4890 * Don't do this if we are expanding wild cards (would eat
4891 * typeahead).
4892 * Don't do this when filtering and terminal is in cooked
4893 * mode, the shell command will handle the I/O. Avoids
4894 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004895 * Don't get characters when the child has already
4896 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004897 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004898 * while (noread_cnt > 4), avoids that ":r !ls" eats
4899 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900 */
4901 len = 0;
4902 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004903 && ((options &
4904 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4905 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004906# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004907 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004908# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004909 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004910 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004911 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004912 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004913 if (ta_len == 0)
4914 {
4915 /* Get extra characters when we don't have any.
4916 * Reset the counter and timer. */
4917 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004918# ifdef ELAPSED_FUNC
4919 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004920# endif
4921 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4922 }
4923 if (ta_len > 0 || len > 0)
4924 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 /*
4926 * For pipes:
4927 * Check for CTRL-C: send interrupt signal to child.
4928 * Check for CTRL-D: EOF, close pipe to child.
4929 */
4930 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4931 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 /*
4933 * Send SIGINT to the child's group or all
4934 * processes in our group.
4935 */
Bram Moolenaarfae42832017-08-01 22:24:26 +02004936 may_send_sigint(ta_buf[ta_len], pid, wpid);
4937
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 if (pty_master_fd < 0 && toshell_fd >= 0
4939 && ta_buf[ta_len] == Ctrl_D)
4940 {
4941 close(toshell_fd);
4942 toshell_fd = -1;
4943 }
4944 }
4945
4946 /* replace K_BS by <BS> and K_DEL by <DEL> */
4947 for (i = ta_len; i < ta_len + len; ++i)
4948 {
4949 if (ta_buf[i] == CSI && len - i > 2)
4950 {
4951 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4952 if (c == K_DEL || c == K_KDEL || c == K_BS)
4953 {
4954 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4955 (size_t)(len - i - 2));
4956 if (c == K_DEL || c == K_KDEL)
4957 ta_buf[i] = DEL;
4958 else
4959 ta_buf[i] = Ctrl_H;
4960 len -= 2;
4961 }
4962 }
4963 else if (ta_buf[i] == '\r')
4964 ta_buf[i] = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 if (has_mbyte)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00004966 i += (*mb_ptr2len_len)(ta_buf + i,
4967 ta_len + len - i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 }
4969
4970 /*
4971 * For pipes: echo the typed characters.
4972 * For a pty this does not seem to work.
4973 */
4974 if (pty_master_fd < 0)
4975 {
4976 for (i = ta_len; i < ta_len + len; ++i)
4977 {
4978 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4979 msg_putchar(ta_buf[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 else if (has_mbyte)
4981 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004982 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983
4984 msg_outtrans_len(ta_buf + i, l);
4985 i += l - 1;
4986 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 else
4988 msg_outtrans_len(ta_buf + i, 1);
4989 }
4990 windgoto(msg_row, msg_col);
4991 out_flush();
4992 }
4993
4994 ta_len += len;
4995
4996 /*
4997 * Write the characters to the child, unless EOF has
4998 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004999 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005000 * When writing buffer lines, drop the typed
5001 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005003 if (options & SHELL_WRITE)
5004 ta_len = 0;
5005 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 {
5007 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
5008 if (len > 0)
5009 {
5010 ta_len -= len;
5011 mch_memmove(ta_buf, ta_buf + len, ta_len);
5012 }
5013 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005014 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 }
5016
Bram Moolenaardf177f62005-02-22 08:39:57 +00005017 if (got_int)
5018 {
5019 /* CTRL-C sends a signal to the child, we ignore it
5020 * ourselves */
5021# ifdef HAVE_SETSID
5022 kill(-pid, SIGINT);
5023# else
5024 kill(0, SIGINT);
5025# endif
5026 if (wpid > 0)
5027 kill(wpid, SIGINT);
5028 got_int = FALSE;
5029 }
5030
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 /*
5032 * Check if the child has any characters to be printed.
5033 * Read them and write them to our window. Repeat this as
5034 * long as there is something to do, avoid the 10ms wait
5035 * for mch_inchar(), or sending typeahead characters to
5036 * the external process.
5037 * TODO: This should handle escape sequences, compatible
5038 * to some terminal (vt52?).
5039 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005040 ++noread_cnt;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005041 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01005043 len = read_eintr(fromshell_fd, buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 );
5046 if (len <= 0) /* end of file or error */
5047 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005048
5049 noread_cnt = 0;
5050 if (options & SHELL_READ)
5051 {
5052 /* Do NUL -> NL translation, append NL separated
5053 * lines to the current buffer. */
5054 for (i = 0; i < len; ++i)
5055 {
5056 if (buffer[i] == NL)
5057 append_ga_line(&ga);
5058 else if (buffer[i] == NUL)
5059 ga_append(&ga, NL);
5060 else
5061 ga_append(&ga, buffer[i]);
5062 }
5063 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005064 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 {
5066 int l;
Bram Moolenaara2150ac2018-03-17 13:15:17 +01005067 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068
Bram Moolenaardf177f62005-02-22 08:39:57 +00005069 len += buffer_off;
5070 buffer[len] = NUL;
5071
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 /* Check if the last character in buffer[] is
5073 * incomplete, keep these bytes for the next
5074 * round. */
5075 for (p = buffer; p < buffer + len; p += l)
5076 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02005077 l = MB_CPTR2LEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 if (l == 0)
5079 l = 1; /* NUL byte? */
5080 else if (MB_BYTE2LEN(*p) != l)
5081 break;
5082 }
5083 if (p == buffer) /* no complete character */
5084 {
5085 /* avoid getting stuck at an illegal byte */
5086 if (len >= 12)
5087 ++p;
5088 else
5089 {
5090 buffer_off = len;
5091 continue;
5092 }
5093 }
5094 c = *p;
5095 *p = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01005096 msg_puts((char *)buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 if (p < buffer + len)
5098 {
5099 *p = c;
5100 buffer_off = (buffer + len) - p;
5101 mch_memmove(buffer, p, buffer_off);
5102 continue;
5103 }
5104 buffer_off = 0;
5105 }
5106 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 {
5108 buffer[len] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01005109 msg_puts((char *)buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 }
5111
5112 windgoto(msg_row, msg_col);
5113 cursor_on();
5114 out_flush();
5115 if (got_int)
5116 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005117
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005118# ifdef ELAPSED_FUNC
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005119 if (wait_pid == 0)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005120 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005121 long msec = ELAPSED_FUNC(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005122
5123 /* Avoid that we keep looping here without
5124 * checking for a CTRL-C for a long time. Don't
5125 * break out too often to avoid losing typeahead. */
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005126 if (msec > 2000)
5127 {
5128 noread_cnt = 5;
5129 break;
5130 }
5131 }
5132# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133 }
5134
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005135 /* If we already detected the child has finished, continue
5136 * reading output for a short while. Some text may be
5137 * buffered. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005138 if (wait_pid == pid)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005139 {
5140 if (noread_cnt < 5)
5141 continue;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005142 break;
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005143 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005144
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 /*
5146 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00005147 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005149# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02005150 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005151# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005153# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005154 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5155 || (wait_pid == pid && WIFEXITED(status)))
5156 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005157 /* Don't break the loop yet, try reading more
5158 * characters from "fromshell_fd" first. When using
5159 * pipes there might still be something to read and
5160 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005162 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005163 else
5164 wait_pid = 0;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005165
Bram Moolenaar95a51352013-03-21 22:53:50 +01005166# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005167 /* Handle any X events, e.g. serving the clipboard. */
5168 clip_update();
5169# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 }
5171finished:
5172 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005173 if (options & SHELL_READ)
5174 {
5175 if (ga.ga_len > 0)
5176 {
5177 append_ga_line(&ga);
5178 /* remember that the NL was missing */
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005179 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005180 }
5181 else
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005182 curbuf->b_no_eol_lnum = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005183 ga_clear(&ga);
5184 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005185
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 /*
5187 * Give all typeahead that wasn't used back to ui_inchar().
5188 */
5189 if (ta_len)
5190 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 State = old_State;
5192 if (toshell_fd >= 0)
5193 close(toshell_fd);
5194 close(fromshell_fd);
5195 }
Bram Moolenaar95a51352013-03-21 22:53:50 +01005196# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005197 else
5198 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005199 long delay_msec = 1;
5200
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005201 /*
5202 * Similar to the loop above, but only handle X events, no
5203 * I/O.
5204 */
5205 for (;;)
5206 {
5207 if (got_int)
5208 {
5209 /* CTRL-C sends a signal to the child, we ignore it
5210 * ourselves */
5211# ifdef HAVE_SETSID
5212 kill(-pid, SIGINT);
5213# else
5214 kill(0, SIGINT);
5215# endif
5216 got_int = FALSE;
5217 }
5218# ifdef __NeXT__
5219 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
5220# else
5221 wait_pid = waitpid(pid, &status, WNOHANG);
5222# endif
5223 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5224 || (wait_pid == pid && WIFEXITED(status)))
5225 {
5226 wait_pid = pid;
5227 break;
5228 }
5229
5230 /* Handle any X events, e.g. serving the clipboard. */
5231 clip_update();
5232
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005233 /* Wait for 1 to 10 msec. 1 is faster but gives the child
5234 * less time. */
5235 mch_delay(delay_msec, TRUE);
5236 if (++delay_msec > 10)
5237 delay_msec = 10;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005238 }
5239 }
5240# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241
5242 /*
5243 * Wait until our child has exited.
5244 * Ignore wait() returning pids of other children and returning
5245 * because of some signal like SIGWINCH.
5246 * Don't wait if wait_pid was already set above, indicating the
5247 * child already exited.
5248 */
Bram Moolenaar205b8862011-09-07 15:04:31 +02005249 if (wait_pid != pid)
5250 wait_pid = wait4pid(pid, &status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251
Bram Moolenaar624891f2010-10-13 16:22:09 +02005252# ifdef FEAT_GUI
5253 /* Close slave side of pty. Only do this after the child has
5254 * exited, otherwise the child may hang when it tries to write on
5255 * the pty. */
5256 if (pty_master_fd >= 0)
5257 close(pty_slave_fd);
5258# endif
5259
Bram Moolenaardf177f62005-02-22 08:39:57 +00005260 /* Make sure the child that writes to the external program is
5261 * dead. */
5262 if (wpid > 0)
Bram Moolenaar205b8862011-09-07 15:04:31 +02005263 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005264 kill(wpid, SIGKILL);
Bram Moolenaar205b8862011-09-07 15:04:31 +02005265 wait4pid(wpid, NULL);
5266 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005267
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005268# ifdef FEAT_JOB_CHANNEL
5269 --dont_check_job_ended;
5270# endif
5271
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 /*
5273 * Set to raw mode right now, otherwise a CTRL-C after
5274 * catch_signals() will kill Vim.
5275 */
5276 if (tmode == TMODE_RAW)
5277 settmode(TMODE_RAW);
5278 did_settmode = TRUE;
5279 set_signals();
5280
5281 if (WIFEXITED(status))
5282 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00005283 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 retval = WEXITSTATUS(status);
Bram Moolenaar75676462013-01-30 14:55:42 +01005285 if (retval != 0 && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005286 {
5287 if (retval == EXEC_FAILED)
5288 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005289 msg_puts(_("\nCannot execute shell "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005290 msg_outtrans(p_sh);
5291 msg_putchar('\n');
5292 }
5293 else if (!(options & SHELL_SILENT))
5294 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005295 msg_puts(_("\nshell returned "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005296 msg_outnum((long)retval);
5297 msg_putchar('\n');
5298 }
5299 }
5300 }
5301 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005302 msg_puts(_("\nCommand terminated\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005303 }
5304 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305
5306error:
5307 if (!did_settmode)
5308 if (tmode == TMODE_RAW)
5309 settmode(TMODE_RAW); /* set to raw mode */
5310# ifdef FEAT_TITLE
5311 resettitle();
5312# endif
Bram Moolenaar13568252018-03-16 20:46:58 +01005313 vim_free(argv);
5314 vim_free(tofree1);
5315 vim_free(tofree2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316
5317 return retval;
Bram Moolenaar13568252018-03-16 20:46:58 +01005318}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005319#endif /* USE_SYSTEM */
Bram Moolenaar13568252018-03-16 20:46:58 +01005320
5321 int
5322mch_call_shell(
5323 char_u *cmd,
5324 int options) /* SHELL_*, see vim.h */
5325{
5326#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
5327 if (gui.in_use && vim_strchr(p_go, GO_TERMINAL) != NULL)
5328 return mch_call_shell_terminal(cmd, options);
5329#endif
5330#ifdef USE_SYSTEM
5331 return mch_call_shell_system(cmd, options);
5332#else
5333 return mch_call_shell_fork(cmd, options);
5334#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005335}
5336
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005337#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005338 void
Bram Moolenaar493359e2018-06-12 20:25:52 +02005339mch_job_start(char **argv, job_T *job, jobopt_T *options, int is_terminal)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005340{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005341 pid_t pid;
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02005342 int fd_in[2] = {-1, -1}; /* for stdin */
5343 int fd_out[2] = {-1, -1}; /* for stdout */
5344 int fd_err[2] = {-1, -1}; /* for stderr */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005345 int pty_master_fd = -1;
5346 int pty_slave_fd = -1;
Bram Moolenaar16eb4f82016-02-14 23:02:34 +01005347 channel_T *channel = NULL;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005348 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5349 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5350 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005351 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005352 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5353 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
Bram Moolenaarb2412082017-08-20 18:09:14 +02005354 int use_buffer_for_in = options->jo_io[PART_IN] == JIO_BUFFER;
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005355 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005356 SIGSET_DECL(curset)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005357
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005358 if (use_out_for_err && use_null_for_out)
5359 use_null_for_err = TRUE;
5360
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005361 /* default is to fail */
5362 job->jv_status = JOB_FAILED;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005363
Bram Moolenaarb2412082017-08-20 18:09:14 +02005364 if (options->jo_pty
5365 && (!(use_file_for_in || use_null_for_in)
Bram Moolenaar59386482019-02-10 22:43:46 +01005366 || !(use_file_for_out || use_null_for_out)
Bram Moolenaarb2412082017-08-20 18:09:14 +02005367 || !(use_out_for_err || use_file_for_err || use_null_for_err)))
Bram Moolenaar59386482019-02-10 22:43:46 +01005368 open_pty(&pty_master_fd, &pty_slave_fd,
5369 &job->jv_tty_out, &job->jv_tty_in);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005370
Bram Moolenaar12dcf022016-02-15 23:09:04 +01005371 /* TODO: without the channel feature connect the child to /dev/null? */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005372 /* Open pipes for stdin, stdout, stderr. */
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005373 if (use_file_for_in)
5374 {
5375 char_u *fname = options->jo_io_name[PART_IN];
5376
5377 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0);
5378 if (fd_in[0] < 0)
5379 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005380 semsg(_(e_notopen), fname);
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005381 goto failed;
5382 }
5383 }
Bram Moolenaarb2412082017-08-20 18:09:14 +02005384 else
5385 /* When writing buffer lines to the input don't use the pty, so that
5386 * the pipe can be closed when all lines were written. */
5387 if (!use_null_for_in && (pty_master_fd < 0 || use_buffer_for_in)
5388 && pipe(fd_in) < 0)
5389 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005390
5391 if (use_file_for_out)
5392 {
5393 char_u *fname = options->jo_io_name[PART_OUT];
5394
5395 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
5396 if (fd_out[1] < 0)
5397 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005398 semsg(_(e_notopen), fname);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005399 goto failed;
5400 }
5401 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005402 else if (!use_null_for_out && pty_master_fd < 0 && pipe(fd_out) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005403 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005404
5405 if (use_file_for_err)
5406 {
5407 char_u *fname = options->jo_io_name[PART_ERR];
5408
5409 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
5410 if (fd_err[1] < 0)
5411 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005412 semsg(_(e_notopen), fname);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005413 goto failed;
5414 }
5415 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005416 else if (!use_out_for_err && !use_null_for_err
5417 && pty_master_fd < 0 && pipe(fd_err) < 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005418 goto failed;
5419
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005420 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5421 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005422 if (options->jo_set & JO_CHANNEL)
5423 {
5424 channel = options->jo_channel;
5425 if (channel != NULL)
5426 ++channel->ch_refcount;
5427 }
5428 else
5429 channel = add_channel();
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005430 if (channel == NULL)
5431 goto failed;
Bram Moolenaarf3360612017-10-01 16:21:31 +02005432 if (job->jv_tty_out != NULL)
5433 ch_log(channel, "using pty %s on fd %d",
5434 job->jv_tty_out, pty_master_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005435 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005436
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005437 BLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005438 pid = fork(); /* maybe we should use vfork() */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005439 if (pid == -1)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005440 {
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005441 /* failed to fork */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005442 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005443 goto failed;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005444 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005445 if (pid == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005446 {
Bram Moolenaar4694a172016-04-21 14:05:23 +02005447 int null_fd = -1;
5448 int stderr_works = TRUE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005449
Bram Moolenaar835dc632016-02-07 14:27:38 +01005450 /* child */
5451 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005452 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005453
Bram Moolenaar819524702018-02-27 19:10:00 +01005454# ifdef FEAT_JOB_CHANNEL
5455 if (ch_log_active())
5456 /* close the log file in the child */
5457 ch_logfile((char_u *)"", (char_u *)"");
5458# endif
5459
Bram Moolenaar835dc632016-02-07 14:27:38 +01005460# ifdef HAVE_SETSID
5461 /* Create our own process group, so that the child and all its
5462 * children can be kill()ed. Don't do this when using pipes,
5463 * because stdin is not a tty, we would lose /dev/tty. */
5464 (void)setsid();
5465# endif
5466
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005467# ifdef FEAT_TERMINAL
5468 if (options->jo_term_rows > 0)
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005469 {
5470 char *term = (char *)T_NAME;
5471
5472#ifdef FEAT_GUI
5473 if (term_is_gui(T_NAME))
5474 /* In the GUI 'term' is not what we want, use $TERM. */
5475 term = getenv("TERM");
5476#endif
5477 /* Use 'term' or $TERM if it starts with "xterm", otherwise fall
5478 * back to "xterm". */
5479 if (term == NULL || *term == NUL || STRNCMP(term, "xterm", 5) != 0)
5480 term = "xterm";
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005481 set_child_environment(
5482 (long)options->jo_term_rows,
5483 (long)options->jo_term_cols,
Bram Moolenaar493359e2018-06-12 20:25:52 +02005484 term,
5485 is_terminal);
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005486 }
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005487 else
5488# endif
Bram Moolenaar493359e2018-06-12 20:25:52 +02005489 set_default_child_environment(is_terminal);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005490
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005491 if (options->jo_env != NULL)
5492 {
5493 dict_T *dict = options->jo_env;
5494 hashitem_T *hi;
5495 int todo = (int)dict->dv_hashtab.ht_used;
5496
5497 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
5498 if (!HASHITEM_EMPTY(hi))
5499 {
5500 typval_T *item = &dict_lookup(hi)->di_tv;
5501
Bram Moolenaard155d7a2018-12-21 16:04:21 +01005502 vim_setenv((char_u*)hi->hi_key, tv_get_string(item));
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005503 --todo;
5504 }
5505 }
5506
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005507 if (use_null_for_in || use_null_for_out || use_null_for_err)
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005508 {
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005509 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005510 if (null_fd < 0)
5511 {
5512 perror("opening /dev/null failed");
5513 _exit(OPEN_NULL_FAILED);
5514 }
5515 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005516
Bram Moolenaar223896d2017-08-02 22:33:28 +02005517 if (pty_slave_fd >= 0)
5518 {
5519 /* push stream discipline modules */
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01005520 setup_slavepty(pty_slave_fd);
Bram Moolenaar223896d2017-08-02 22:33:28 +02005521# ifdef TIOCSCTTY
5522 /* Try to become controlling tty (probably doesn't work,
5523 * unless run by root) */
5524 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
5525# endif
5526 }
5527
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005528 /* set up stdin for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005529 close(0);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005530 if (use_null_for_in && null_fd >= 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005531 vim_ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005532 else if (fd_in[0] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005533 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005534 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005535 vim_ignored = dup(fd_in[0]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005536
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005537 /* set up stderr for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005538 close(2);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005539 if (use_null_for_err && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005540 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02005541 vim_ignored = dup(null_fd);
Bram Moolenaar4694a172016-04-21 14:05:23 +02005542 stderr_works = FALSE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005543 }
5544 else if (use_out_for_err)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005545 vim_ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005546 else if (fd_err[1] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005547 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005548 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005549 vim_ignored = dup(fd_err[1]);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005550
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005551 /* set up stdout for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005552 close(1);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005553 if (use_null_for_out && null_fd >= 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005554 vim_ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005555 else if (fd_out[1] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005556 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005557 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005558 vim_ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005559
5560 if (fd_in[0] >= 0)
5561 close(fd_in[0]);
5562 if (fd_in[1] >= 0)
5563 close(fd_in[1]);
5564 if (fd_out[0] >= 0)
5565 close(fd_out[0]);
5566 if (fd_out[1] >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005567 close(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005568 if (fd_err[0] >= 0)
5569 close(fd_err[0]);
5570 if (fd_err[1] >= 0)
5571 close(fd_err[1]);
5572 if (pty_master_fd >= 0)
5573 {
Bram Moolenaar223896d2017-08-02 22:33:28 +02005574 close(pty_master_fd); /* not used in the child */
5575 close(pty_slave_fd); /* was duped above */
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005576 }
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005577
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005578 if (null_fd >= 0)
5579 close(null_fd);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005580
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005581 if (options->jo_cwd != NULL && mch_chdir((char *)options->jo_cwd) != 0)
5582 _exit(EXEC_FAILED);
5583
Bram Moolenaar835dc632016-02-07 14:27:38 +01005584 /* See above for type of argv. */
5585 execvp(argv[0], argv);
5586
Bram Moolenaar4694a172016-04-21 14:05:23 +02005587 if (stderr_works)
5588 perror("executing job failed");
Bram Moolenaarfae42832017-08-01 22:24:26 +02005589# ifdef EXITFREE
Bram Moolenaarcda77642016-06-04 13:32:35 +02005590 /* calling free_all_mem() here causes problems. Ignore valgrind
5591 * reporting possibly leaked memory. */
Bram Moolenaarfae42832017-08-01 22:24:26 +02005592# endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005593 _exit(EXEC_FAILED); /* exec failed, return failure code */
5594 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005595
5596 /* parent */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005597 UNBLOCK_SIGNALS(&curset);
5598
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005599 job->jv_pid = pid;
5600 job->jv_status = JOB_STARTED;
Bram Moolenaarde279892016-03-11 22:19:44 +01005601 job->jv_channel = channel; /* ch_refcount was set above */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005602
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005603 if (pty_master_fd >= 0)
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005604 close(pty_slave_fd); /* not used in the parent */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005605 /* close child stdin, stdout and stderr */
Bram Moolenaar819524702018-02-27 19:10:00 +01005606 if (fd_in[0] >= 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005607 close(fd_in[0]);
Bram Moolenaar819524702018-02-27 19:10:00 +01005608 if (fd_out[1] >= 0)
Bram Moolenaare98d1212016-03-08 15:37:41 +01005609 close(fd_out[1]);
Bram Moolenaar819524702018-02-27 19:10:00 +01005610 if (fd_err[1] >= 0)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005611 close(fd_err[1]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005612 if (channel != NULL)
5613 {
Bram Moolenaar4e9d4432018-04-24 20:54:07 +02005614 int in_fd = use_file_for_in || use_null_for_in
5615 ? INVALID_FD : fd_in[1] < 0 ? pty_master_fd : fd_in[1];
5616 int out_fd = use_file_for_out || use_null_for_out
5617 ? INVALID_FD : fd_out[0] < 0 ? pty_master_fd : fd_out[0];
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005618 /* When using pty_master_fd only set it for stdout, do not duplicate it
5619 * for stderr, it only needs to be read once. */
Bram Moolenaar4e9d4432018-04-24 20:54:07 +02005620 int err_fd = use_out_for_err || use_file_for_err || use_null_for_err
Bram Moolenaarcd8fb442018-05-12 17:42:42 +02005621 ? INVALID_FD
5622 : fd_err[0] >= 0
5623 ? fd_err[0]
5624 : (out_fd == pty_master_fd
5625 ? INVALID_FD
5626 : pty_master_fd);
Bram Moolenaar4e9d4432018-04-24 20:54:07 +02005627
5628 channel_set_pipes(channel, in_fd, out_fd, err_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005629 channel_set_job(channel, job, options);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005630 }
Bram Moolenaar979e8c52017-08-01 15:08:07 +02005631 else
5632 {
5633 if (fd_in[1] >= 0)
5634 close(fd_in[1]);
5635 if (fd_out[0] >= 0)
5636 close(fd_out[0]);
5637 if (fd_err[0] >= 0)
5638 close(fd_err[0]);
5639 if (pty_master_fd >= 0)
5640 close(pty_master_fd);
5641 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005642
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005643 /* success! */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005644 return;
5645
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005646failed:
Bram Moolenaarde279892016-03-11 22:19:44 +01005647 channel_unref(channel);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005648 if (fd_in[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005649 close(fd_in[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005650 if (fd_in[1] >= 0)
5651 close(fd_in[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005652 if (fd_out[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005653 close(fd_out[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005654 if (fd_out[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005655 close(fd_out[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005656 if (fd_err[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005657 close(fd_err[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005658 if (fd_err[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005659 close(fd_err[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005660 if (pty_master_fd >= 0)
5661 close(pty_master_fd);
5662 if (pty_slave_fd >= 0)
5663 close(pty_slave_fd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005664}
5665
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005666 static char_u *
5667get_signal_name(int sig)
5668{
5669 int i;
5670 char_u numbuf[NUMBUFLEN];
5671
5672 if (sig == SIGKILL)
5673 return vim_strsave((char_u *)"kill");
5674
5675 for (i = 0; signal_info[i].sig != -1; i++)
5676 if (sig == signal_info[i].sig)
5677 return strlow_save((char_u *)signal_info[i].name);
5678
5679 vim_snprintf((char *)numbuf, NUMBUFLEN, "%d", sig);
5680 return vim_strsave(numbuf);
5681}
5682
Bram Moolenaar835dc632016-02-07 14:27:38 +01005683 char *
5684mch_job_status(job_T *job)
5685{
5686# ifdef HAVE_UNION_WAIT
5687 union wait status;
5688# else
5689 int status = -1;
5690# endif
5691 pid_t wait_pid = 0;
5692
5693# ifdef __NeXT__
5694 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0);
5695# else
5696 wait_pid = waitpid(job->jv_pid, &status, WNOHANG);
5697# endif
5698 if (wait_pid == -1)
5699 {
5700 /* process must have exited */
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005701 if (job->jv_status < JOB_ENDED)
5702 ch_log(job->jv_channel, "Job no longer exists: %s",
5703 strerror(errno));
Bram Moolenaar97792de2016-10-15 18:36:49 +02005704 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005705 }
5706 if (wait_pid == 0)
5707 return "run";
5708 if (WIFEXITED(status))
5709 {
5710 /* LINTED avoid "bitwise operation on signed value" */
5711 job->jv_exitval = WEXITSTATUS(status);
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005712 if (job->jv_status < JOB_ENDED)
5713 ch_log(job->jv_channel, "Job exited with %d", job->jv_exitval);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005714 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005715 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005716 if (WIFSIGNALED(status))
5717 {
5718 job->jv_exitval = -1;
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005719 job->jv_termsig = get_signal_name(WTERMSIG(status));
5720 if (job->jv_status < JOB_ENDED && job->jv_termsig != NULL)
5721 ch_log(job->jv_channel, "Job terminated by signal \"%s\"",
5722 job->jv_termsig);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005723 goto return_dead;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005724 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01005725 return "run";
Bram Moolenaar97792de2016-10-15 18:36:49 +02005726
5727return_dead:
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005728 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005729 job->jv_status = JOB_ENDED;
Bram Moolenaar97792de2016-10-15 18:36:49 +02005730 return "dead";
5731}
5732
5733 job_T *
5734mch_detect_ended_job(job_T *job_list)
5735{
5736# ifdef HAVE_UNION_WAIT
5737 union wait status;
5738# else
5739 int status = -1;
5740# endif
5741 pid_t wait_pid = 0;
5742 job_T *job;
5743
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005744# ifndef USE_SYSTEM
5745 /* Do not do this when waiting for a shell command to finish, we would get
5746 * the exit value here (and discard it), the exit value obtained there
5747 * would then be wrong. */
5748 if (dont_check_job_ended > 0)
5749 return NULL;
5750# endif
5751
Bram Moolenaar97792de2016-10-15 18:36:49 +02005752# ifdef __NeXT__
5753 wait_pid = wait4(-1, &status, WNOHANG, (struct rusage *)0);
5754# else
5755 wait_pid = waitpid(-1, &status, WNOHANG);
5756# endif
5757 if (wait_pid <= 0)
5758 /* no process ended */
5759 return NULL;
5760 for (job = job_list; job != NULL; job = job->jv_next)
5761 {
5762 if (job->jv_pid == wait_pid)
5763 {
5764 if (WIFEXITED(status))
5765 /* LINTED avoid "bitwise operation on signed value" */
5766 job->jv_exitval = WEXITSTATUS(status);
5767 else if (WIFSIGNALED(status))
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005768 {
Bram Moolenaar97792de2016-10-15 18:36:49 +02005769 job->jv_exitval = -1;
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005770 job->jv_termsig = get_signal_name(WTERMSIG(status));
5771 }
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005772 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005773 {
5774 ch_log(job->jv_channel, "Job ended");
5775 job->jv_status = JOB_ENDED;
5776 }
5777 return job;
5778 }
5779 }
5780 return NULL;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005781}
5782
Bram Moolenaar3a117e12016-10-30 21:57:52 +01005783/*
5784 * Send a (deadly) signal to "job".
5785 * Return FAIL if "how" is not a valid name.
5786 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01005787 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005788mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005789{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005790 int sig = -1;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005791
Bram Moolenaar923d9262016-02-25 20:56:01 +01005792 if (*how == NUL || STRCMP(how, "term") == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005793 sig = SIGTERM;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005794 else if (STRCMP(how, "hup") == 0)
5795 sig = SIGHUP;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005796 else if (STRCMP(how, "quit") == 0)
5797 sig = SIGQUIT;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005798 else if (STRCMP(how, "int") == 0)
5799 sig = SIGINT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005800 else if (STRCMP(how, "kill") == 0)
5801 sig = SIGKILL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02005802#ifdef SIGWINCH
5803 else if (STRCMP(how, "winch") == 0)
5804 sig = SIGWINCH;
5805#endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005806 else if (isdigit(*how))
5807 sig = atoi((char *)how);
5808 else
5809 return FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005810
Bram Moolenaar76ab4fd2018-12-08 14:39:05 +01005811 // Never kill ourselves!
5812 if (job->jv_pid != 0)
5813 {
5814 // TODO: have an option to only kill the process, not the group?
5815 kill(-job->jv_pid, sig);
5816 kill(job->jv_pid, sig);
5817 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005818
Bram Moolenaar835dc632016-02-07 14:27:38 +01005819 return OK;
5820}
Bram Moolenaar76467df2016-02-12 19:30:26 +01005821
5822/*
5823 * Clear the data related to "job".
5824 */
5825 void
5826mch_clear_job(job_T *job)
5827{
5828 /* call waitpid because child process may become zombie */
5829# ifdef __NeXT__
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005830 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005831# else
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005832 (void)waitpid(job->jv_pid, NULL, WNOHANG);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005833# endif
5834}
Bram Moolenaar835dc632016-02-07 14:27:38 +01005835#endif
5836
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005837#if defined(FEAT_TERMINAL) || defined(PROTO)
5838 int
5839mch_create_pty_channel(job_T *job, jobopt_T *options)
5840{
5841 int pty_master_fd = -1;
5842 int pty_slave_fd = -1;
5843 channel_T *channel;
5844
Bram Moolenaar59386482019-02-10 22:43:46 +01005845 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_out, &job->jv_tty_in);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005846 close(pty_slave_fd);
5847
5848 channel = add_channel();
5849 if (channel == NULL)
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005850 {
5851 close(pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005852 return FAIL;
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005853 }
Bram Moolenaarf3360612017-10-01 16:21:31 +02005854 if (job->jv_tty_out != NULL)
5855 ch_log(channel, "using pty %s on fd %d",
5856 job->jv_tty_out, pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005857 job->jv_channel = channel; /* ch_refcount was set by add_channel() */
5858 channel->ch_keep_open = TRUE;
5859
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005860 /* Only set the pty_master_fd for stdout, do not duplicate it for stderr,
5861 * it only needs to be read once. */
5862 channel_set_pipes(channel, pty_master_fd, pty_master_fd, INVALID_FD);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005863 channel_set_job(channel, job, options);
5864 return OK;
5865}
5866#endif
5867
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868/*
5869 * Check for CTRL-C typed by reading all available characters.
5870 * In cooked mode we should get SIGINT, no need to check.
5871 */
5872 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005873mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005874{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005875 if ((curr_tmode == TMODE_RAW || force)
5876 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877 fill_input_buf(FALSE);
5878}
5879
5880/*
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005881 * Wait "msec" msec until a character is available from the mouse, keyboard,
5882 * from inbuf[].
5883 * "msec" == -1 will block forever.
5884 * Invokes timer callbacks when needed.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005885 * When "ignore_input" is TRUE even check for pending input when input is
5886 * already available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005887 * "interrupted" (if not NULL) is set to TRUE when no character is available
5888 * but something else needs to be done.
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005889 * Returns TRUE when a character is available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005890 * When a GUI is being used, this will never get called -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 */
5892 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005893WaitForChar(long msec, int *interrupted, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894{
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005895#ifdef FEAT_TIMERS
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01005896 return ui_wait_for_chars_or_timer(
5897 msec, WaitForCharOrMouse, interrupted, ignore_input) == OK;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005898#else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005899 return WaitForCharOrMouse(msec, interrupted, ignore_input);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005900#endif
5901}
5902
5903/*
5904 * Wait "msec" msec until a character is available from the mouse or keyboard
5905 * or from inbuf[].
5906 * "msec" == -1 will block forever.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005907 * for "ignore_input" see WaitForCharOr().
Bram Moolenaarcda77642016-06-04 13:32:35 +02005908 * "interrupted" (if not NULL) is set to TRUE when no character is available
5909 * but something else needs to be done.
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005910 * When a GUI is being used, this will never get called -- webb
5911 */
5912 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005913WaitForCharOrMouse(long msec, int *interrupted, int ignore_input)
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005914{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915#ifdef FEAT_MOUSE_GPM
5916 int gpm_process_wanted;
5917#endif
5918#ifdef FEAT_XCLIPBOARD
5919 int rest;
5920#endif
5921 int avail;
5922
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005923 if (!ignore_input && input_available()) /* something in inbuf[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005924 return 1;
5925
5926#if defined(FEAT_MOUSE_DEC)
5927 /* May need to query the mouse position. */
5928 if (WantQueryMouse)
5929 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005930 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
5932 }
5933#endif
5934
5935 /*
5936 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
5937 * events. This is a bit complicated, because they might both be defined.
5938 */
5939#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
5940# ifdef FEAT_XCLIPBOARD
5941 rest = 0;
5942 if (do_xterm_trace())
5943 rest = msec;
5944# endif
5945 do
5946 {
5947# ifdef FEAT_XCLIPBOARD
5948 if (rest != 0)
5949 {
5950 msec = XT_TRACE_DELAY;
5951 if (rest >= 0 && rest < XT_TRACE_DELAY)
5952 msec = rest;
5953 if (rest >= 0)
5954 rest -= msec;
5955 }
5956# endif
5957# ifdef FEAT_MOUSE_GPM
5958 gpm_process_wanted = 0;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005959 avail = RealWaitForChar(read_cmd_fd, msec,
Bram Moolenaarcda77642016-06-04 13:32:35 +02005960 &gpm_process_wanted, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005961# else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005962 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005963# endif
5964 if (!avail)
5965 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005966 if (!ignore_input && input_available())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967 return 1;
5968# ifdef FEAT_XCLIPBOARD
5969 if (rest == 0 || !do_xterm_trace())
5970# endif
5971 break;
5972 }
5973 }
5974 while (FALSE
5975# ifdef FEAT_MOUSE_GPM
5976 || (gpm_process_wanted && mch_gpm_process() == 0)
5977# endif
5978# ifdef FEAT_XCLIPBOARD
5979 || (!avail && rest != 0)
5980# endif
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005981 )
5982 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005983
5984#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005985 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005986#endif
5987 return avail;
5988}
5989
Bram Moolenaar4ffa0702013-12-11 17:12:37 +01005990#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991/*
5992 * Wait "msec" msec until a character is available from file descriptor "fd".
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005993 * "msec" == 0 will check for characters once.
5994 * "msec" == -1 will block until a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995 * When a GUI is being used, this will not be used for input -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005996 * Or when a Linux GPM mouse event is waiting.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02005997 * Or when a clientserver message is on the queue.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005998 * "interrupted" (if not NULL) is set to TRUE when no character is available
5999 * but something else needs to be done.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006000 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001#if defined(__BEOS__)
6002 int
6003#else
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006004 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006006RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006007{
6008 int ret;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006009 int result;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006010#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011 static int busy = FALSE;
6012
6013 /* May retry getting characters after an event was handled. */
6014# define MAY_LOOP
6015
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006016# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017 /* Remember at what time we started, so that we know how much longer we
6018 * should wait after being interrupted. */
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01006019 long start_msec = msec;
6020 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02006022 if (msec > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006023 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006024# endif
6025
6026 /* Handle being called recursively. This may happen for the session
6027 * manager stuff, it may save the file, which does a breakcheck. */
6028 if (busy)
6029 return 0;
6030#endif
6031
6032#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00006033 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006034#endif
6035 {
6036#ifdef MAY_LOOP
6037 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006038# ifdef FEAT_MZSCHEME
6039 int mzquantum_used = FALSE;
6040# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006041#endif
6042#ifndef HAVE_SELECT
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006043 /* each channel may use in, out and err */
6044 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006045 int nfd;
6046# ifdef FEAT_XCLIPBOARD
6047 int xterm_idx = -1;
6048# endif
6049# ifdef FEAT_MOUSE_GPM
6050 int gpm_idx = -1;
6051# endif
6052# ifdef USE_XSMP
6053 int xsmp_idx = -1;
6054# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006055 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006057# ifdef FEAT_MZSCHEME
6058 mzvim_check_threads();
6059 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6060 {
6061 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
6062 mzquantum_used = TRUE;
6063 }
6064# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 fds[0].fd = fd;
6066 fds[0].events = POLLIN;
6067 nfd = 1;
6068
Bram Moolenaar071d4272004-06-13 20:20:40 +00006069# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006070 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 if (xterm_Shell != (Widget)0)
6072 {
6073 xterm_idx = nfd;
6074 fds[nfd].fd = ConnectionNumber(xterm_dpy);
6075 fds[nfd].events = POLLIN;
6076 nfd++;
6077 }
6078# endif
6079# ifdef FEAT_MOUSE_GPM
6080 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6081 {
6082 gpm_idx = nfd;
6083 fds[nfd].fd = gpm_fd;
6084 fds[nfd].events = POLLIN;
6085 nfd++;
6086 }
6087# endif
6088# ifdef USE_XSMP
6089 if (xsmp_icefd != -1)
6090 {
6091 xsmp_idx = nfd;
6092 fds[nfd].fd = xsmp_icefd;
6093 fds[nfd].events = POLLIN;
6094 nfd++;
6095 }
6096# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006097#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006098 nfd = channel_poll_setup(nfd, &fds, &towait);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006099#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006100 if (interrupted != NULL)
6101 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006102
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006103 ret = poll(fds, nfd, towait);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006104
6105 result = ret > 0 && (fds[0].revents & POLLIN);
Bram Moolenaarcda77642016-06-04 13:32:35 +02006106 if (result == 0 && interrupted != NULL && ret > 0)
6107 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006108
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006109# ifdef FEAT_MZSCHEME
6110 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006111 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006112 finished = FALSE;
6113# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006114
Bram Moolenaar071d4272004-06-13 20:20:40 +00006115# ifdef FEAT_XCLIPBOARD
6116 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
6117 {
6118 xterm_update(); /* Maybe we should hand out clipboard */
6119 if (--ret == 0 && !input_available())
6120 /* Try again */
6121 finished = FALSE;
6122 }
6123# endif
6124# ifdef FEAT_MOUSE_GPM
6125 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
6126 {
6127 *check_for_gpm = 1;
6128 }
6129# endif
6130# ifdef USE_XSMP
6131 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
6132 {
6133 if (fds[xsmp_idx].revents & POLLIN)
6134 {
6135 busy = TRUE;
6136 xsmp_handle_requests();
6137 busy = FALSE;
6138 }
6139 else if (fds[xsmp_idx].revents & POLLHUP)
6140 {
6141 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006142 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143 xsmp_close();
6144 }
6145 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006146 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147 }
6148# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006149#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006150 /* also call when ret == 0, we may be polling a keep-open channel */
6151 if (ret >= 0)
Bram Moolenaare0874f82016-01-24 20:36:41 +01006152 ret = channel_poll_check(ret, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006153#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006154
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155#else /* HAVE_SELECT */
6156
6157 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006158 struct timeval *tvp;
Bram Moolenaar61fb8d82018-11-12 21:45:08 +01006159 // These are static because they can take 8 Kbyte each and cause the
6160 // signal stack to run out with -O3.
6161 static fd_set rfds, wfds, efds;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006163 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006165# ifdef FEAT_MZSCHEME
6166 mzvim_check_threads();
6167 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6168 {
6169 towait = p_mzq; /* don't wait longer than 'mzquantum' */
6170 mzquantum_used = TRUE;
6171 }
6172# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006174 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006176 tv.tv_sec = towait / 1000;
6177 tv.tv_usec = (towait % 1000) * (1000000/1000);
6178 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006180 else
6181 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182
6183 /*
6184 * Select on ready for reading and exceptional condition (end of file).
6185 */
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006186select_eintr:
6187 FD_ZERO(&rfds);
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006188 FD_ZERO(&wfds);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 FD_ZERO(&efds);
6190 FD_SET(fd, &rfds);
6191# if !defined(__QNX__) && !defined(__CYGWIN32__)
6192 /* For QNX select() always returns 1 if this is set. Why? */
6193 FD_SET(fd, &efds);
6194# endif
6195 maxfd = fd;
6196
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006198 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006199 if (xterm_Shell != (Widget)0)
6200 {
6201 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
6202 if (maxfd < ConnectionNumber(xterm_dpy))
6203 maxfd = ConnectionNumber(xterm_dpy);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006204
6205 /* An event may have already been read but not handled. In
6206 * particulary, XFlush may cause this. */
6207 xterm_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208 }
6209# endif
6210# ifdef FEAT_MOUSE_GPM
6211 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6212 {
6213 FD_SET(gpm_fd, &rfds);
6214 FD_SET(gpm_fd, &efds);
6215 if (maxfd < gpm_fd)
6216 maxfd = gpm_fd;
6217 }
6218# endif
6219# ifdef USE_XSMP
6220 if (xsmp_icefd != -1)
6221 {
6222 FD_SET(xsmp_icefd, &rfds);
6223 FD_SET(xsmp_icefd, &efds);
6224 if (maxfd < xsmp_icefd)
6225 maxfd = xsmp_icefd;
6226 }
6227# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006228# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006229 maxfd = channel_select_setup(maxfd, &rfds, &wfds, &tv, &tvp);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006230# endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006231 if (interrupted != NULL)
6232 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233
Bram Moolenaar643b6142018-09-12 20:29:09 +02006234 ret = select(maxfd + 1, SELECT_TYPE_ARG234 &rfds,
6235 SELECT_TYPE_ARG234 &wfds, SELECT_TYPE_ARG234 &efds, tvp);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006236 result = ret > 0 && FD_ISSET(fd, &rfds);
6237 if (result)
6238 --ret;
Bram Moolenaarcda77642016-06-04 13:32:35 +02006239 else if (interrupted != NULL && ret > 0)
6240 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006241
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006242# ifdef EINTR
6243 if (ret == -1 && errno == EINTR)
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006244 {
6245 /* Check whether window has been resized, EINTR may be caused by
6246 * SIGWINCH. */
6247 if (do_resize)
6248 handle_resize();
6249
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006250 /* Interrupted by a signal, need to try again. We ignore msec
6251 * here, because we do want to check even after a timeout if
6252 * characters are available. Needed for reading output of an
6253 * external command after the process has finished. */
6254 goto select_eintr;
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006255 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006256# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00006257# ifdef __TANDEM
6258 if (ret == -1 && errno == ENOTSUP)
6259 {
6260 FD_ZERO(&rfds);
6261 FD_ZERO(&efds);
6262 ret = 0;
6263 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006264# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006265# ifdef FEAT_MZSCHEME
6266 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006267 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006268 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006269# endif
6270
Bram Moolenaar071d4272004-06-13 20:20:40 +00006271# ifdef FEAT_XCLIPBOARD
6272 if (ret > 0 && xterm_Shell != (Widget)0
6273 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
6274 {
6275 xterm_update(); /* Maybe we should hand out clipboard */
6276 /* continue looping when we only got the X event and the input
6277 * buffer is empty */
6278 if (--ret == 0 && !input_available())
6279 {
6280 /* Try again */
6281 finished = FALSE;
6282 }
6283 }
6284# endif
6285# ifdef FEAT_MOUSE_GPM
6286 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
6287 {
6288 if (FD_ISSET(gpm_fd, &efds))
6289 gpm_close();
6290 else if (FD_ISSET(gpm_fd, &rfds))
6291 *check_for_gpm = 1;
6292 }
6293# endif
6294# ifdef USE_XSMP
6295 if (ret > 0 && xsmp_icefd != -1)
6296 {
6297 if (FD_ISSET(xsmp_icefd, &efds))
6298 {
6299 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006300 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301 xsmp_close();
6302 if (--ret == 0)
6303 finished = FALSE; /* keep going if event was only one */
6304 }
6305 else if (FD_ISSET(xsmp_icefd, &rfds))
6306 {
6307 busy = TRUE;
6308 xsmp_handle_requests();
6309 busy = FALSE;
6310 if (--ret == 0)
6311 finished = FALSE; /* keep going if event was only one */
6312 }
6313 }
6314# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006315#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006316 /* also call when ret == 0, we may be polling a keep-open channel */
6317 if (ret >= 0)
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006318 ret = channel_select_check(ret, &rfds, &wfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006319#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320
6321#endif /* HAVE_SELECT */
6322
6323#ifdef MAY_LOOP
6324 if (finished || msec == 0)
6325 break;
6326
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006327# ifdef FEAT_CLIENTSERVER
6328 if (server_waiting())
6329 break;
6330# endif
6331
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 /* We're going to loop around again, find out for how long */
6333 if (msec > 0)
6334 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006335# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336 /* Compute remaining wait time. */
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006337 msec = start_msec - ELAPSED_FUNC(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006338# else
6339 /* Guess we got interrupted halfway. */
6340 msec = msec / 2;
6341# endif
6342 if (msec <= 0)
6343 break; /* waited long enough */
6344 }
6345#endif
6346 }
6347
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006348 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006349}
6350
Bram Moolenaar071d4272004-06-13 20:20:40 +00006351#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352/*
Bram Moolenaar02743632005-07-25 20:42:36 +00006353 * Expand a path into all matching files and/or directories. Handles "*",
6354 * "?", "[a-z]", "**", etc.
6355 * "path" has backslashes before chars that are not to be expanded.
6356 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006357 */
6358 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006359mch_expandpath(
6360 garray_T *gap,
6361 char_u *path,
6362 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363{
Bram Moolenaar02743632005-07-25 20:42:36 +00006364 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006365}
6366#endif
6367
6368/*
6369 * mch_expand_wildcards() - this code does wild-card pattern matching using
6370 * the shell
6371 *
6372 * return OK for success, FAIL for error (you may lose some memory) and put
6373 * an error message in *file.
6374 *
6375 * num_pat is number of input patterns
6376 * pat is array of pointers to input patterns
6377 * num_file is pointer to number of matched file names
6378 * file is pointer to array of pointers to matched file names
6379 */
6380
6381#ifndef SEEK_SET
6382# define SEEK_SET 0
6383#endif
6384#ifndef SEEK_END
6385# define SEEK_END 2
6386#endif
6387
Bram Moolenaar5555acc2006-04-07 21:33:12 +00006388#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00006389
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006391mch_expand_wildcards(
6392 int num_pat,
6393 char_u **pat,
6394 int *num_file,
6395 char_u ***file,
6396 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006397{
6398 int i;
6399 size_t len;
Bram Moolenaar85325f82017-03-30 21:18:45 +02006400 long llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 char_u *p;
6402 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403
Bram Moolenaarc7247912008-01-13 12:54:11 +00006404 /*
6405 * This is the non-OS/2 implementation (really Unix).
6406 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006407 int j;
6408 char_u *tempname;
6409 char_u *command;
6410 FILE *fd;
6411 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006412#define STYLE_ECHO 0 /* use "echo", the default */
6413#define STYLE_GLOB 1 /* use "glob", for csh */
6414#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
6415#define STYLE_PRINT 3 /* use "print -N", for zsh */
6416#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
6417 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 int shell_style = STYLE_ECHO;
6419 int check_spaces;
6420 static int did_find_nul = FALSE;
6421 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006422 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006423 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424
6425 *num_file = 0; /* default: no files found */
6426 *file = NULL;
6427
6428 /*
6429 * If there are no wildcards, just copy the names to allocated memory.
6430 * Saves a lot of time, because we don't have to start a new shell.
6431 */
6432 if (!have_wildcard(num_pat, pat))
6433 return save_patterns(num_pat, pat, num_file, file);
6434
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006435# ifdef HAVE_SANDBOX
6436 /* Don't allow any shell command in the sandbox. */
6437 if (sandbox != 0 && check_secure())
6438 return FAIL;
6439# endif
6440
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441 /*
6442 * Don't allow the use of backticks in secure and restricted mode.
6443 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006444 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445 for (i = 0; i < num_pat; ++i)
6446 if (vim_strchr(pat[i], '`') != NULL
6447 && (check_restricted() || check_secure()))
6448 return FAIL;
6449
6450 /*
6451 * get a name for the temp file
6452 */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02006453 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006455 emsg(_(e_notmp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456 return FAIL;
6457 }
6458
6459 /*
6460 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00006461 * file.
6462 * STYLE_BT: NL separated
6463 * If expanding `cmd` execute it directly.
6464 * STYLE_GLOB: NUL separated
6465 * If we use *csh, "glob" will work better than "echo".
6466 * STYLE_PRINT: NL or NUL separated
6467 * If we use *zsh, "print -N" will work better than "glob".
6468 * STYLE_VIMGLOB: NL separated
6469 * If we use *sh*, we define "vimglob()".
6470 * STYLE_ECHO: space separated.
6471 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006472 */
6473 if (num_pat == 1 && *pat[0] == '`'
6474 && (len = STRLEN(pat[0])) > 2
6475 && *(pat[0] + len - 1) == '`')
6476 shell_style = STYLE_BT;
6477 else if ((len = STRLEN(p_sh)) >= 3)
6478 {
6479 if (STRCMP(p_sh + len - 3, "csh") == 0)
6480 shell_style = STYLE_GLOB;
6481 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
6482 shell_style = STYLE_PRINT;
6483 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006484 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
6485 "sh") != NULL)
6486 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006487
Bram Moolenaarc7247912008-01-13 12:54:11 +00006488 /* Compute the length of the command. We need 2 extra bytes: for the
6489 * optional '&' and for the NUL.
6490 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006491 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006492 if (shell_style == STYLE_VIMGLOB)
6493 len += STRLEN(sh_vimglob_func);
6494
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006495 for (i = 0; i < num_pat; ++i)
6496 {
6497 /* Count the length of the patterns in the same way as they are put in
6498 * "command" below. */
6499#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006501#else
6502 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006503 for (j = 0; pat[i][j] != NUL; ++j)
6504 {
6505 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
6506 ++len; /* may add a backslash */
6507 ++len;
6508 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006509#endif
6510 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006511 command = alloc(len);
6512 if (command == NULL)
6513 {
6514 /* out of memory */
6515 vim_free(tempname);
6516 return FAIL;
6517 }
6518
6519 /*
6520 * Build the shell command:
6521 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
6522 * recognizes this).
6523 * - Add the shell command to print the expanded names.
6524 * - Add the temp file name.
6525 * - Add the file name patterns.
6526 */
6527 if (shell_style == STYLE_BT)
6528 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00006529 /* change `command; command& ` to (command; command ) */
6530 STRCPY(command, "(");
6531 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006532 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006533 *p-- = ')'; /* remove last backtick */
Bram Moolenaar1c465442017-03-12 20:10:05 +01006534 while (p > command && VIM_ISWHITE(*p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535 --p;
6536 if (*p == '&') /* remove trailing '&' */
6537 {
6538 ampersent = TRUE;
6539 *p = ' ';
6540 }
6541 STRCAT(command, ">");
6542 }
6543 else
6544 {
6545 if (flags & EW_NOTFOUND)
6546 STRCPY(command, "set nonomatch; ");
6547 else
6548 STRCPY(command, "unset nonomatch; ");
6549 if (shell_style == STYLE_GLOB)
6550 STRCAT(command, "glob >");
6551 else if (shell_style == STYLE_PRINT)
6552 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00006553 else if (shell_style == STYLE_VIMGLOB)
6554 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006555 else
6556 STRCAT(command, "echo >");
6557 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006558
Bram Moolenaar071d4272004-06-13 20:20:40 +00006559 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00006560
Bram Moolenaar071d4272004-06-13 20:20:40 +00006561 if (shell_style != STYLE_BT)
6562 for (i = 0; i < num_pat; ++i)
6563 {
6564 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00006565 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006566 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567#ifdef USE_SYSTEM
6568 STRCAT(command, " \"");
6569 STRCAT(command, pat[i]);
6570 STRCAT(command, "\"");
6571#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00006572 int intick = FALSE;
6573
Bram Moolenaar071d4272004-06-13 20:20:40 +00006574 p = command + STRLEN(command);
6575 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00006576 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00006577 {
6578 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00006579 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006580 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
6581 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006582 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00006583 * backslash inside backticks, before a special character
6584 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006585 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00006586 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
6587 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006588 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006589 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006590 }
Bram Moolenaare4df1642014-08-29 12:58:44 +02006591 else if (!intick
6592 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$')
6593 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00006594 /* Put a backslash before a special character, but not
Bram Moolenaare4df1642014-08-29 12:58:44 +02006595 * when inside ``. And not for $var when EW_KEEPDOLLAR is
6596 * set. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006597 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006598
6599 /* Copy one character. */
6600 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00006601 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602 *p = NUL;
6603#endif
6604 }
6605 if (flags & EW_SILENT)
6606 show_shell_mess = FALSE;
6607 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00006608 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609
6610 /*
6611 * Using zsh -G: If a pattern has no matches, it is just deleted from
6612 * the argument list, otherwise zsh gives an error message and doesn't
6613 * expand any other pattern.
6614 */
6615 if (shell_style == STYLE_PRINT)
6616 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
6617
6618 /*
6619 * If we use -f then shell variables set in .cshrc won't get expanded.
6620 * vi can do it, so we will too, but it is only necessary if there is a "$"
6621 * in one of the patterns, otherwise we can still use the fast option.
6622 */
6623 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
6624 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
6625
6626 /*
6627 * execute the shell command
6628 */
6629 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6630
6631 /* When running in the background, give it some time to create the temp
6632 * file, but don't wait for it to finish. */
6633 if (ampersent)
6634 mch_delay(10L, TRUE);
6635
6636 extra_shell_arg = NULL; /* cleanup */
6637 show_shell_mess = TRUE;
6638 vim_free(command);
6639
Bram Moolenaarc7247912008-01-13 12:54:11 +00006640 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006641 {
6642 mch_remove(tempname);
6643 vim_free(tempname);
6644 /*
6645 * With interactive completion, the error message is not printed.
6646 * However with USE_SYSTEM, I don't know how to turn off error messages
6647 * from the shell, so screen may still get messed up -- webb.
6648 */
6649#ifndef USE_SYSTEM
6650 if (!(flags & EW_SILENT))
6651#endif
6652 {
6653 redraw_later_clear(); /* probably messed up screen */
6654 msg_putchar('\n'); /* clear bottom line quickly */
6655 cmdline_row = Rows - 1; /* continue on last line */
6656#ifdef USE_SYSTEM
6657 if (!(flags & EW_SILENT))
6658#endif
6659 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006660 msg(_(e_wildexpand));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661 msg_start(); /* don't overwrite this message */
6662 }
6663 }
6664 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
6665 * EW_NOTFOUND is given */
6666 if (shell_style == STYLE_BT)
6667 return FAIL;
6668 goto notfound;
6669 }
6670
6671 /*
6672 * read the names from the file into memory
6673 */
6674 fd = fopen((char *)tempname, READBIN);
6675 if (fd == NULL)
6676 {
6677 /* Something went wrong, perhaps a file name with a special char. */
6678 if (!(flags & EW_SILENT))
6679 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006680 msg(_(e_wildexpand));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006681 msg_start(); /* don't overwrite this message */
6682 }
6683 vim_free(tempname);
6684 goto notfound;
6685 }
6686 fseek(fd, 0L, SEEK_END);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006687 llen = ftell(fd); /* get size of temp file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006688 fseek(fd, 0L, SEEK_SET);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006689 if (llen < 0)
6690 /* just in case ftell() would fail */
6691 buffer = NULL;
6692 else
6693 buffer = alloc(llen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694 if (buffer == NULL)
6695 {
6696 /* out of memory */
6697 mch_remove(tempname);
6698 vim_free(tempname);
6699 fclose(fd);
6700 return FAIL;
6701 }
Bram Moolenaar85325f82017-03-30 21:18:45 +02006702 len = llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006703 i = fread((char *)buffer, 1, len, fd);
6704 fclose(fd);
6705 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00006706 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006707 {
6708 /* unexpected read error */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006709 semsg(_(e_notread), tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006710 vim_free(tempname);
6711 vim_free(buffer);
6712 return FAIL;
6713 }
6714 vim_free(tempname);
6715
Bram Moolenaarc7247912008-01-13 12:54:11 +00006716# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006717 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
6718 p = buffer;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02006719 for (i = 0; i < (int)len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
6721 *p++ = buffer[i];
6722 len = p - buffer;
6723# endif
6724
6725
6726 /* file names are separated with Space */
6727 if (shell_style == STYLE_ECHO)
6728 {
6729 buffer[len] = '\n'; /* make sure the buffer ends in NL */
6730 p = buffer;
6731 for (i = 0; *p != '\n'; ++i) /* count number of entries */
6732 {
6733 while (*p != ' ' && *p != '\n')
6734 ++p;
6735 p = skipwhite(p); /* skip to next entry */
6736 }
6737 }
6738 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006739 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740 {
6741 buffer[len] = NUL; /* make sure the buffer ends in NUL */
6742 p = buffer;
6743 for (i = 0; *p != NUL; ++i) /* count number of entries */
6744 {
6745 while (*p != '\n' && *p != NUL)
6746 ++p;
6747 if (*p != NUL)
6748 ++p;
6749 p = skipwhite(p); /* skip leading white space */
6750 }
6751 }
6752 /* file names are separated with NUL */
6753 else
6754 {
6755 /*
6756 * Some versions of zsh use spaces instead of NULs to separate
6757 * results. Only do this when there is no NUL before the end of the
6758 * buffer, otherwise we would never be able to use file names with
6759 * embedded spaces when zsh does use NULs.
6760 * When we found a NUL once, we know zsh is OK, set did_find_nul and
6761 * don't check for spaces again.
6762 */
6763 check_spaces = FALSE;
6764 if (shell_style == STYLE_PRINT && !did_find_nul)
6765 {
6766 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02006767 buffer[len] = NUL;
Bram Moolenaarb011af92013-12-11 13:21:51 +01006768 if (len && (int)STRLEN(buffer) < (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769 did_find_nul = TRUE;
6770 else
6771 check_spaces = TRUE;
6772 }
6773
6774 /*
6775 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
6776 * already is one, for STYLE_GLOB it needs to be added.
6777 */
6778 if (len && buffer[len - 1] == NUL)
6779 --len;
6780 else
6781 buffer[len] = NUL;
6782 i = 0;
6783 for (p = buffer; p < buffer + len; ++p)
6784 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
6785 {
6786 ++i;
6787 *p = NUL;
6788 }
6789 if (len)
6790 ++i; /* count last entry */
6791 }
6792 if (i == 0)
6793 {
6794 /*
6795 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
6796 * /bin/sh will happily expand it to nothing rather than returning an
6797 * error; and hey, it's good to check anyway -- webb.
6798 */
6799 vim_free(buffer);
6800 goto notfound;
6801 }
6802 *num_file = i;
6803 *file = (char_u **)alloc(sizeof(char_u *) * i);
6804 if (*file == NULL)
6805 {
6806 /* out of memory */
6807 vim_free(buffer);
6808 return FAIL;
6809 }
6810
6811 /*
6812 * Isolate the individual file names.
6813 */
6814 p = buffer;
6815 for (i = 0; i < *num_file; ++i)
6816 {
6817 (*file)[i] = p;
6818 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006819 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
6820 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00006822 while (!(shell_style == STYLE_ECHO && *p == ' ')
6823 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006824 ++p;
6825 if (p == buffer + len) /* last entry */
6826 *p = NUL;
6827 else
6828 {
6829 *p++ = NUL;
6830 p = skipwhite(p); /* skip to next entry */
6831 }
6832 }
6833 else /* NUL separates */
6834 {
6835 while (*p && p < buffer + len) /* skip entry */
6836 ++p;
6837 ++p; /* skip NUL */
6838 }
6839 }
6840
6841 /*
6842 * Move the file names to allocated memory.
6843 */
6844 for (j = 0, i = 0; i < *num_file; ++i)
6845 {
6846 /* Require the files to exist. Helps when using /bin/sh */
6847 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6848 continue;
6849
6850 /* check if this entry should be included */
6851 dir = (mch_isdir((*file)[i]));
6852 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6853 continue;
6854
Bram Moolenaara2031822006-03-07 22:29:51 +00006855 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006856 if (!dir && (flags & EW_EXEC)
6857 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006858 continue;
6859
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
6861 if (p)
6862 {
6863 STRCPY(p, (*file)[i]);
6864 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00006865 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866 (*file)[j++] = p;
6867 }
6868 }
6869 vim_free(buffer);
6870 *num_file = j;
6871
6872 if (*num_file == 0) /* rejected all entries */
6873 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01006874 VIM_CLEAR(*file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875 goto notfound;
6876 }
6877
6878 return OK;
6879
6880notfound:
6881 if (flags & EW_NOTFOUND)
6882 return save_patterns(num_pat, pat, num_file, file);
6883 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006884}
6885
6886#endif /* VMS */
6887
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006889save_patterns(
6890 int num_pat,
6891 char_u **pat,
6892 int *num_file,
6893 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006894{
6895 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006896 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897
6898 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
6899 if (*file == NULL)
6900 return FAIL;
6901 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00006902 {
6903 s = vim_strsave(pat[i]);
6904 if (s != NULL)
6905 /* Be compatible with expand_filename(): halve the number of
6906 * backslashes. */
6907 backslash_halve(s);
6908 (*file)[i] = s;
6909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006910 *num_file = num_pat;
6911 return OK;
6912}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913
Bram Moolenaar071d4272004-06-13 20:20:40 +00006914/*
6915 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
6916 * expand.
6917 */
6918 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006919mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006920{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006921 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006922 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006923 if (*p == '\\' && p[1] != NUL)
6924 ++p;
6925 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 if (vim_strchr((char_u *)
6927#ifdef VMS
6928 "*?%"
6929#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930 "*?[{'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006931#endif
6932 , *p) != NULL)
6933 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006934 }
6935 return FALSE;
6936}
6937
6938/*
6939 * Return TRUE if the string "p" contains a wildcard.
6940 * Don't recognize '~' at the end as a wildcard.
6941 */
6942 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006943mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006944{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006945 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006946 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006947 if (*p == '\\' && p[1] != NUL)
6948 ++p;
6949 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 if (vim_strchr((char_u *)
6951#ifdef VMS
6952 "*?%$"
6953#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954 "*?[{`'$"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006955#endif
6956 , *p) != NULL
6957 || (*p == '~' && p[1] != NUL))
6958 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959 }
6960 return FALSE;
6961}
6962
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006964have_wildcard(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006965{
6966 int i;
6967
6968 for (i = 0; i < num; i++)
6969 if (mch_has_wildcard(file[i]))
6970 return 1;
6971 return 0;
6972}
6973
6974 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006975have_dollars(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006976{
6977 int i;
6978
6979 for (i = 0; i < num; i++)
6980 if (vim_strchr(file[i], '$') != NULL)
6981 return TRUE;
6982 return FALSE;
6983}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006984
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006985#if !defined(HAVE_RENAME) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986/*
6987 * Scaled-down version of rename(), which is missing in Xenix.
6988 * This version can only move regular files and will fail if the
6989 * destination exists.
6990 */
6991 int
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006992mch_rename(const char *src, const char *dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993{
6994 struct stat st;
6995
6996 if (stat(dest, &st) >= 0) /* fail if destination exists */
6997 return -1;
6998 if (link(src, dest) != 0) /* link file to new name */
6999 return -1;
7000 if (mch_remove(src) == 0) /* delete link to old name */
7001 return 0;
7002 return -1;
7003}
7004#endif /* !HAVE_RENAME */
7005
7006#ifdef FEAT_MOUSE_GPM
7007/*
7008 * Initializes connection with gpm (if it isn't already opened)
7009 * Return 1 if succeeded (or connection already opened), 0 if failed
7010 */
7011 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007012gpm_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013{
7014 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
7015
7016 if (!gpm_flag)
7017 {
7018 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
7019 gpm_connect.defaultMask = ~GPM_HARD;
7020 /* Default handling for mouse move*/
7021 gpm_connect.minMod = 0; /* Handle any modifier keys */
7022 gpm_connect.maxMod = 0xffff;
7023 if (Gpm_Open(&gpm_connect, 0) > 0)
7024 {
7025 /* gpm library tries to handling TSTP causes
7026 * problems. Anyways, we close connection to Gpm whenever
7027 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00007028 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00007030# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007031 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00007032# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033 return 1; /* succeed */
7034 }
7035 if (gpm_fd == -2)
7036 Gpm_Close(); /* We don't want to talk to xterm via gpm */
7037 return 0;
7038 }
7039 return 1; /* already open */
7040}
7041
7042/*
7043 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00007044 */
7045 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007046gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047{
7048 if (gpm_flag && gpm_fd >= 0) /* if Open */
7049 Gpm_Close();
7050}
7051
7052/* Reads gpm event and adds special keys to input buf. Returns length of
7053 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02007054 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007055 */
7056 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007057mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058{
7059 int button;
7060 static Gpm_Event gpm_event;
7061 char_u string[6];
7062 int_u vim_modifiers;
7063 int row,col;
7064 unsigned char buttons_mask;
7065 unsigned char gpm_modifiers;
7066 static unsigned char old_buttons = 0;
7067
7068 Gpm_GetEvent(&gpm_event);
7069
7070#ifdef FEAT_GUI
7071 /* Don't put events in the input queue now. */
7072 if (hold_gui_events)
7073 return 0;
7074#endif
7075
7076 row = gpm_event.y - 1;
7077 col = gpm_event.x - 1;
7078
7079 string[0] = ESC; /* Our termcode */
7080 string[1] = 'M';
7081 string[2] = 'G';
7082 switch (GPM_BARE_EVENTS(gpm_event.type))
7083 {
7084 case GPM_DRAG:
7085 string[3] = MOUSE_DRAG;
7086 break;
7087 case GPM_DOWN:
7088 buttons_mask = gpm_event.buttons & ~old_buttons;
7089 old_buttons = gpm_event.buttons;
7090 switch (buttons_mask)
7091 {
7092 case GPM_B_LEFT:
7093 button = MOUSE_LEFT;
7094 break;
7095 case GPM_B_MIDDLE:
7096 button = MOUSE_MIDDLE;
7097 break;
7098 case GPM_B_RIGHT:
7099 button = MOUSE_RIGHT;
7100 break;
7101 default:
7102 return 0;
7103 /*Don't know what to do. Can more than one button be
7104 * reported in one event? */
7105 }
7106 string[3] = (char_u)(button | 0x20);
7107 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
7108 break;
7109 case GPM_UP:
7110 string[3] = MOUSE_RELEASE;
7111 old_buttons &= ~gpm_event.buttons;
7112 break;
7113 default:
7114 return 0;
7115 }
7116 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
7117 gpm_modifiers = gpm_event.modifiers;
7118 vim_modifiers = 0x0;
7119 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
7120 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
7121 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
7122 */
7123 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
7124 vim_modifiers |= MOUSE_SHIFT;
7125
7126 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
7127 vim_modifiers |= MOUSE_CTRL;
7128 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
7129 vim_modifiers |= MOUSE_ALT;
7130 string[3] |= vim_modifiers;
7131 string[4] = (char_u)(col + ' ' + 1);
7132 string[5] = (char_u)(row + ' ' + 1);
7133 add_to_input_buf(string, 6);
7134 return 6;
7135}
7136#endif /* FEAT_MOUSE_GPM */
7137
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007138#ifdef FEAT_SYSMOUSE
7139/*
7140 * Initialize connection with sysmouse.
7141 * Let virtual console inform us with SIGUSR2 for pending sysmouse
7142 * output, any sysmouse output than will be processed via sig_sysmouse().
7143 * Return OK if succeeded, FAIL if failed.
7144 */
7145 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007146sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007147{
7148 struct mouse_info mouse;
7149
7150 mouse.operation = MOUSE_MODE;
7151 mouse.u.mode.mode = 0;
7152 mouse.u.mode.signal = SIGUSR2;
7153 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
7154 {
7155 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
7156 mouse.operation = MOUSE_SHOW;
7157 ioctl(1, CONS_MOUSECTL, &mouse);
7158 return OK;
7159 }
7160 return FAIL;
7161}
7162
7163/*
7164 * Stop processing SIGUSR2 signals, and also make sure that
7165 * virtual console do not send us any sysmouse related signal.
7166 */
7167 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007168sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007169{
7170 struct mouse_info mouse;
7171
7172 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
7173 mouse.operation = MOUSE_MODE;
7174 mouse.u.mode.mode = 0;
7175 mouse.u.mode.signal = 0;
7176 ioctl(1, CONS_MOUSECTL, &mouse);
7177}
7178
7179/*
7180 * Gets info from sysmouse and adds special keys to input buf.
7181 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007182 static RETSIGTYPE
7183sig_sysmouse SIGDEFARG(sigarg)
7184{
7185 struct mouse_info mouse;
7186 struct video_info video;
7187 char_u string[6];
7188 int row, col;
7189 int button;
7190 int buttons;
7191 static int oldbuttons = 0;
7192
7193#ifdef FEAT_GUI
7194 /* Don't put events in the input queue now. */
7195 if (hold_gui_events)
7196 return;
7197#endif
7198
7199 mouse.operation = MOUSE_GETINFO;
7200 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
7201 && ioctl(1, FBIO_MODEINFO, &video) != -1
7202 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
7203 && video.vi_cheight > 0 && video.vi_cwidth > 0)
7204 {
7205 row = mouse.u.data.y / video.vi_cheight;
7206 col = mouse.u.data.x / video.vi_cwidth;
7207 buttons = mouse.u.data.buttons;
7208 string[0] = ESC; /* Our termcode */
7209 string[1] = 'M';
7210 string[2] = 'S';
7211 if (oldbuttons == buttons && buttons != 0)
7212 {
7213 button = MOUSE_DRAG;
7214 }
7215 else
7216 {
7217 switch (buttons)
7218 {
7219 case 0:
7220 button = MOUSE_RELEASE;
7221 break;
7222 case 1:
7223 button = MOUSE_LEFT;
7224 break;
7225 case 2:
7226 button = MOUSE_MIDDLE;
7227 break;
7228 case 4:
7229 button = MOUSE_RIGHT;
7230 break;
7231 default:
7232 return;
7233 }
7234 oldbuttons = buttons;
7235 }
7236 string[3] = (char_u)(button);
7237 string[4] = (char_u)(col + ' ' + 1);
7238 string[5] = (char_u)(row + ' ' + 1);
7239 add_to_input_buf(string, 6);
7240 }
7241 return;
7242}
7243#endif /* FEAT_SYSMOUSE */
7244
Bram Moolenaar071d4272004-06-13 20:20:40 +00007245#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01007246typedef char_u * (*STRPROCSTR)(char_u *);
7247typedef char_u * (*INTPROCSTR)(int);
7248typedef int (*STRPROCINT)(char_u *);
7249typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007250
7251/*
7252 * Call a DLL routine which takes either a string or int param
7253 * and returns an allocated string.
7254 */
7255 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007256mch_libcall(
7257 char_u *libname,
7258 char_u *funcname,
7259 char_u *argstring, /* NULL when using a argint */
7260 int argint,
7261 char_u **string_result,/* NULL when using number_result */
7262 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007263{
7264# if defined(USE_DLOPEN)
7265 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007266 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007267# else
7268 shl_t hinstLib;
7269# endif
7270 STRPROCSTR ProcAdd;
7271 INTPROCSTR ProcAddI;
7272 char_u *retval_str = NULL;
7273 int retval_int = 0;
7274 int success = FALSE;
7275
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007276 /*
7277 * Get a handle to the DLL module.
7278 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007279# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007280 /* First clear any error, it's not cleared by the dlopen() call. */
7281 (void)dlerror();
7282
Bram Moolenaar071d4272004-06-13 20:20:40 +00007283 hinstLib = dlopen((char *)libname, RTLD_LAZY
7284# ifdef RTLD_LOCAL
7285 | RTLD_LOCAL
7286# endif
7287 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007288 if (hinstLib == NULL)
7289 {
7290 /* "dlerr" must be used before dlclose() */
7291 dlerr = (char *)dlerror();
7292 if (dlerr != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007293 semsg(_("dlerror = \"%s\""), dlerr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007294 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007295# else
7296 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
7297# endif
7298
7299 /* If the handle is valid, try to get the function address. */
7300 if (hinstLib != NULL)
7301 {
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007302# ifdef USING_SETJMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007303 /*
7304 * Catch a crash when calling the library function. For example when
7305 * using a number where a string pointer is expected.
7306 */
7307 mch_startjmp();
7308 if (SETJMP(lc_jump_env) != 0)
7309 {
7310 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007311# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007312 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007313# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007314 mch_didjmp();
7315 }
7316 else
7317# endif
7318 {
7319 retval_str = NULL;
7320 retval_int = 0;
7321
7322 if (argstring != NULL)
7323 {
7324# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007325 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007326 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007327# else
7328 if (shl_findsym(&hinstLib, (const char *)funcname,
7329 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
7330 ProcAdd = NULL;
7331# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007332 if ((success = (ProcAdd != NULL
7333# if defined(USE_DLOPEN)
7334 && dlerr == NULL
7335# endif
7336 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007337 {
7338 if (string_result == NULL)
7339 retval_int = ((STRPROCINT)ProcAdd)(argstring);
7340 else
7341 retval_str = (ProcAdd)(argstring);
7342 }
7343 }
7344 else
7345 {
7346# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007347 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007348 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007349# else
7350 if (shl_findsym(&hinstLib, (const char *)funcname,
7351 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
7352 ProcAddI = NULL;
7353# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007354 if ((success = (ProcAddI != NULL
7355# if defined(USE_DLOPEN)
7356 && dlerr == NULL
7357# endif
7358 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007359 {
7360 if (string_result == NULL)
7361 retval_int = ((INTPROCINT)ProcAddI)(argint);
7362 else
7363 retval_str = (ProcAddI)(argint);
7364 }
7365 }
7366
7367 /* Save the string before we free the library. */
7368 /* Assume that a "1" or "-1" result is an illegal pointer. */
7369 if (string_result == NULL)
7370 *number_result = retval_int;
7371 else if (retval_str != NULL
7372 && retval_str != (char_u *)1
7373 && retval_str != (char_u *)-1)
7374 *string_result = vim_strsave(retval_str);
7375 }
7376
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007377# ifdef USING_SETJMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007378 mch_endjmp();
7379# ifdef SIGHASARG
7380 if (lc_signal != 0)
7381 {
7382 int i;
7383
7384 /* try to find the name of this signal */
7385 for (i = 0; signal_info[i].sig != -1; i++)
7386 if (lc_signal == signal_info[i].sig)
7387 break;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007388 semsg("E368: got SIG%s in libcall()", signal_info[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007389 }
7390# endif
7391# endif
7392
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007394 /* "dlerr" must be used before dlclose() */
7395 if (dlerr != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007396 semsg(_("dlerror = \"%s\""), dlerr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007397
7398 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007399 (void)dlclose(hinstLib);
7400# else
7401 (void)shl_unload(hinstLib);
7402# endif
7403 }
7404
7405 if (!success)
7406 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007407 semsg(_(e_libcall), funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007408 return FAIL;
7409 }
7410
7411 return OK;
7412}
7413#endif
7414
7415#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
7416static int xterm_trace = -1; /* default: disabled */
7417static int xterm_button;
7418
7419/*
7420 * Setup a dummy window for X selections in a terminal.
7421 */
7422 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007423setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007424{
7425 int z = 0;
7426 char *strp = "";
7427 Widget AppShell;
7428
7429 if (!x_connect_to_server())
7430 return;
7431
7432 open_app_context();
7433 if (app_context != NULL && xterm_Shell == (Widget)0)
7434 {
7435 int (*oldhandler)();
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007436# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007437 int (*oldIOhandler)();
Bram Moolenaaredce7422019-01-20 18:39:30 +01007438# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007439# ifdef ELAPSED_FUNC
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01007440 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007441
7442 if (p_verbose > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007443 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007444# endif
7445
7446 /* Ignore X errors while opening the display */
7447 oldhandler = XSetErrorHandler(x_error_check);
7448
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007449# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450 /* Ignore X IO errors while opening the display */
7451 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7452 mch_startjmp();
7453 if (SETJMP(lc_jump_env) != 0)
7454 {
7455 mch_didjmp();
7456 xterm_dpy = NULL;
7457 }
7458 else
Bram Moolenaaredce7422019-01-20 18:39:30 +01007459# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007460 {
7461 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7462 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007463 if (xterm_dpy != NULL)
7464 xterm_dpy_retry_count = 0;
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007465# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007466 mch_endjmp();
Bram Moolenaaredce7422019-01-20 18:39:30 +01007467# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007468 }
7469
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007470# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007471 /* Now handle X IO errors normally. */
7472 (void)XSetIOErrorHandler(oldIOhandler);
Bram Moolenaaredce7422019-01-20 18:39:30 +01007473# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 /* Now handle X errors normally. */
7475 (void)XSetErrorHandler(oldhandler);
7476
7477 if (xterm_dpy == NULL)
7478 {
7479 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007480 verb_msg(_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007481 return;
7482 }
7483
7484 /* Catch terminating error of the X server connection. */
7485 (void)XSetIOErrorHandler(x_IOerror_handler);
7486
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007487# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00007488 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007489 {
7490 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007491 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007492 verbose_leave();
7493 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007494# endif
7495
7496 /* Create a Shell to make converters work. */
7497 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7498 applicationShellWidgetClass, xterm_dpy,
7499 NULL);
7500 if (AppShell == (Widget)0)
7501 return;
7502 xterm_Shell = XtVaCreatePopupShell("VIM",
7503 topLevelShellWidgetClass, AppShell,
7504 XtNmappedWhenManaged, 0,
7505 XtNwidth, 1,
7506 XtNheight, 1,
7507 NULL);
7508 if (xterm_Shell == (Widget)0)
7509 return;
7510
7511 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007512 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007513 if (x11_display == NULL)
7514 x11_display = xterm_dpy;
7515
7516 XtRealizeWidget(xterm_Shell);
7517 XSync(xterm_dpy, False);
7518 xterm_update();
7519 }
7520 if (xterm_Shell != (Widget)0)
7521 {
7522 clip_init(TRUE);
7523 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7524 x11_window = (Window)atol(strp);
7525 /* Check if $WINDOWID is valid. */
7526 if (test_x11_window(xterm_dpy) == FAIL)
7527 x11_window = 0;
7528 if (x11_window != 0)
7529 xterm_trace = 0;
7530 }
7531}
7532
7533 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007534start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007535{
7536 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7537 return;
7538 xterm_trace = 1;
7539 xterm_button = button;
7540 do_xterm_trace();
7541}
7542
7543
7544 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007545stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007546{
7547 if (xterm_trace < 0)
7548 return;
7549 xterm_trace = 0;
7550}
7551
7552/*
7553 * Query the xterm pointer and generate mouse termcodes if necessary
7554 * return TRUE if dragging is active, else FALSE
7555 */
7556 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007557do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558{
7559 Window root, child;
7560 int root_x, root_y;
7561 int win_x, win_y;
7562 int row, col;
7563 int_u mask_return;
7564 char_u buf[50];
7565 char_u *strp;
7566 long got_hints;
7567 static char_u *mouse_code;
7568 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7569 static int prev_row = 0, prev_col = 0;
7570 static XSizeHints xterm_hints;
7571
7572 if (xterm_trace <= 0)
7573 return FALSE;
7574
7575 if (xterm_trace == 1)
7576 {
7577 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007578 * have changed recently. */
7579 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7580 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007581 || xterm_hints.width_inc <= 1
7582 || xterm_hints.height_inc <= 1)
7583 {
7584 xterm_trace = -1; /* Not enough data -- disable tracing */
7585 return FALSE;
7586 }
7587
7588 /* Rely on the same mouse code for the duration of this */
7589 mouse_code = find_termcode(mouse_name);
7590 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007591 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007592 xterm_trace = 2;
7593
7594 /* Find the offset of the chars, there might be a scrollbar on the
7595 * left of the window and/or a menu on the top (eterm etc.) */
7596 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7597 &win_x, &win_y, &mask_return);
7598 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7599 - (xterm_hints.height_inc / 2);
7600 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7601 xterm_hints.y = 2;
7602 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7603 - (xterm_hints.width_inc / 2);
7604 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7605 xterm_hints.x = 2;
7606 return TRUE;
7607 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007608 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007609 {
7610 xterm_trace = 0;
7611 return FALSE;
7612 }
7613
7614 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7615 &win_x, &win_y, &mask_return);
7616
7617 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7618 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7619 if (row == prev_row && col == prev_col)
7620 return TRUE;
7621
7622 STRCPY(buf, mouse_code);
7623 strp = buf + STRLEN(buf);
7624 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7625 *strp++ = (char_u)(col + ' ' + 1);
7626 *strp++ = (char_u)(row + ' ' + 1);
7627 *strp = 0;
7628 add_to_input_buf(buf, STRLEN(buf));
7629
7630 prev_row = row;
7631 prev_col = col;
7632 return TRUE;
7633}
7634
7635# if defined(FEAT_GUI) || defined(PROTO)
7636/*
7637 * Destroy the display, window and app_context. Required for GTK.
7638 */
7639 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007640clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641{
7642 if (xterm_Shell != (Widget)0)
7643 {
7644 XtDestroyWidget(xterm_Shell);
7645 xterm_Shell = (Widget)0;
7646 }
7647 if (xterm_dpy != NULL)
7648 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007649# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007650 /* Lesstif and Solaris crash here, lose some memory */
7651 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007652# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007653 if (x11_display == xterm_dpy)
7654 x11_display = NULL;
7655 xterm_dpy = NULL;
7656 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007657# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007658 if (app_context != (XtAppContext)NULL)
7659 {
7660 /* Lesstif and Solaris crash here, lose some memory */
7661 XtDestroyApplicationContext(app_context);
7662 app_context = (XtAppContext)NULL;
7663 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007664# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007665}
7666# endif
7667
7668/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007669 * Catch up with GUI or X events.
7670 */
7671 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007672clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007673{
7674# ifdef FEAT_GUI
7675 if (gui.in_use)
7676 gui_mch_update();
7677 else
7678# endif
7679 if (xterm_Shell != (Widget)0)
7680 xterm_update();
7681}
7682
7683/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007684 * Catch up with any queued X events. This may put keyboard input into the
7685 * input buffer, call resize call-backs, trigger timers etc. If there is
7686 * nothing in the X event queue (& no timers pending), then we return
7687 * immediately.
7688 */
7689 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007690xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007691{
7692 XEvent event;
7693
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007694 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007695 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007696 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007697
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007698 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007699 break;
7700
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007701 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007702 {
7703 /* There is an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007704 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007705#ifdef FEAT_CLIENTSERVER
7706 {
7707 XPropertyEvent *e = (XPropertyEvent *)&event;
7708
7709 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007710 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007711 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007712 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007713#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007714 XtDispatchEvent(&event);
7715 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007716 else
7717 {
7718 /* There is something else than an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007719 XtAppProcessEvent(app_context, mask);
7720 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007721 }
7722}
7723
7724 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007725clip_xterm_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007726{
7727 if (xterm_Shell != (Widget)0)
7728 return clip_x11_own_selection(xterm_Shell, cbd);
7729 return FAIL;
7730}
7731
7732 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007733clip_xterm_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007734{
7735 if (xterm_Shell != (Widget)0)
7736 clip_x11_lose_selection(xterm_Shell, cbd);
7737}
7738
7739 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007740clip_xterm_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007741{
7742 if (xterm_Shell != (Widget)0)
7743 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7744}
7745
7746 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007747clip_xterm_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007748{
7749 clip_x11_set_selection(cbd);
7750}
7751#endif
7752
7753
7754#if defined(USE_XSMP) || defined(PROTO)
7755/*
7756 * Code for X Session Management Protocol.
7757 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007758
7759# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007760/*
7761 * This is our chance to ask the user if they want to save,
7762 * or abort the logout
7763 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007764 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007765xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007766{
7767 cmdmod_T save_cmdmod;
7768 int cancel_shutdown = False;
7769
7770 save_cmdmod = cmdmod;
7771 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007772 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007773 /* Mustn't logout */
7774 cancel_shutdown = True;
7775 cmdmod = save_cmdmod;
7776 setcursor(); /* position cursor */
7777 out_flush();
7778
7779 /* Done interaction */
7780 SmcInteractDone(smc_conn, cancel_shutdown);
7781
7782 /* Finish off
7783 * Only end save-yourself here if we're not cancelling shutdown;
7784 * we'll get a cancelled callback later in which we'll end it.
7785 * Hopefully get around glitchy SMs (like GNOME-1)
7786 */
7787 if (!cancel_shutdown)
7788 {
7789 xsmp.save_yourself = False;
7790 SmcSaveYourselfDone(smc_conn, True);
7791 }
7792}
7793# endif
7794
7795/*
7796 * Callback that starts save-yourself.
7797 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007798 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007799xsmp_handle_save_yourself(
7800 SmcConn smc_conn,
7801 SmPointer client_data UNUSED,
7802 int save_type UNUSED,
7803 Bool shutdown,
7804 int interact_style UNUSED,
7805 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007806{
7807 /* Handle already being in saveyourself */
7808 if (xsmp.save_yourself)
7809 SmcSaveYourselfDone(smc_conn, True);
7810 xsmp.save_yourself = True;
7811 xsmp.shutdown = shutdown;
7812
7813 /* First up, preserve all files */
7814 out_flush();
7815 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
7816
7817 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007818 verb_msg(_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007819
7820# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
7821 /* Now see if we can ask about unsaved files */
7822 if (shutdown && !fast && gui.in_use)
7823 /* Need to interact with user, but need SM's permission */
7824 SmcInteractRequest(smc_conn, SmDialogError,
7825 xsmp_handle_interaction, client_data);
7826 else
7827# endif
7828 {
7829 /* Can stop the cycle here */
7830 SmcSaveYourselfDone(smc_conn, True);
7831 xsmp.save_yourself = False;
7832 }
7833}
7834
7835
7836/*
7837 * Callback to warn us of imminent death.
7838 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007839 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007840xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007841{
7842 xsmp_close();
7843
7844 /* quit quickly leaving swapfiles for modified buffers behind */
7845 getout_preserve_modified(0);
7846}
7847
7848
7849/*
7850 * Callback to tell us that save-yourself has completed.
7851 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007852 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007853xsmp_save_complete(
7854 SmcConn smc_conn UNUSED,
7855 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007856{
7857 xsmp.save_yourself = False;
7858}
7859
7860
7861/*
7862 * Callback to tell us that an instigated shutdown was cancelled
7863 * (maybe even by us)
7864 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007865 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007866xsmp_shutdown_cancelled(
7867 SmcConn smc_conn,
7868 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007869{
7870 if (xsmp.save_yourself)
7871 SmcSaveYourselfDone(smc_conn, True);
7872 xsmp.save_yourself = False;
7873 xsmp.shutdown = False;
7874}
7875
7876
7877/*
7878 * Callback to tell us that a new ICE connection has been established.
7879 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007880 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007881xsmp_ice_connection(
7882 IceConn iceConn,
7883 IcePointer clientData UNUSED,
7884 Bool opening,
7885 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007886{
7887 /* Intercept creation of ICE connection fd */
7888 if (opening)
7889 {
7890 xsmp_icefd = IceConnectionNumber(iceConn);
7891 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7892 }
7893}
7894
7895
7896/* Handle any ICE processing that's required; return FAIL if SM lost */
7897 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007898xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007899{
7900 Bool rep;
7901
7902 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7903 == IceProcessMessagesIOError)
7904 {
7905 /* Lost ICE */
7906 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007907 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007908 xsmp_close();
7909 return FAIL;
7910 }
7911 else
7912 return OK;
7913}
7914
7915static int dummy;
7916
7917/* Set up X Session Management Protocol */
7918 void
7919xsmp_init(void)
7920{
7921 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007922 SmcCallbacks smcallbacks;
7923#if 0
7924 SmPropValue smname;
7925 SmProp smnameprop;
7926 SmProp *smprops[1];
7927#endif
7928
7929 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007930 verb_msg(_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007931
7932 xsmp.save_yourself = xsmp.shutdown = False;
7933
7934 /* Set up SM callbacks - must have all, even if they're not used */
7935 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7936 smcallbacks.save_yourself.client_data = NULL;
7937 smcallbacks.die.callback = xsmp_die;
7938 smcallbacks.die.client_data = NULL;
7939 smcallbacks.save_complete.callback = xsmp_save_complete;
7940 smcallbacks.save_complete.client_data = NULL;
7941 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
7942 smcallbacks.shutdown_cancelled.client_data = NULL;
7943
7944 /* Set up a watch on ICE connection creations. The "dummy" argument is
7945 * apparently required for FreeBSD (we get a BUS error when using NULL). */
7946 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
7947 {
7948 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007949 verb_msg(_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007950 return;
7951 }
7952
7953 /* Create an SM connection */
7954 xsmp.smcconn = SmcOpenConnection(
7955 NULL,
7956 NULL,
7957 SmProtoMajor,
7958 SmProtoMinor,
7959 SmcSaveYourselfProcMask | SmcDieProcMask
7960 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
7961 &smcallbacks,
7962 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00007963 &xsmp.clientid,
Bram Moolenaar4841a7c2018-09-22 14:08:49 +02007964 sizeof(errorstring) - 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007965 errorstring);
7966 if (xsmp.smcconn == NULL)
7967 {
7968 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00007969
Bram Moolenaar071d4272004-06-13 20:20:40 +00007970 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007971 {
7972 vim_snprintf(errorreport, sizeof(errorreport),
7973 _("XSMP SmcOpenConnection failed: %s"), errorstring);
Bram Moolenaar32526b32019-01-19 17:43:09 +01007974 verb_msg(errorreport);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007976 return;
7977 }
7978 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
7979
7980#if 0
7981 /* ID ourselves */
7982 smname.value = "vim";
7983 smname.length = 3;
7984 smnameprop.name = "SmProgram";
7985 smnameprop.type = "SmARRAY8";
7986 smnameprop.num_vals = 1;
7987 smnameprop.vals = &smname;
7988
7989 smprops[0] = &smnameprop;
7990 SmcSetProperties(xsmp.smcconn, 1, smprops);
7991#endif
7992}
7993
7994
7995/* Shut down XSMP comms. */
7996 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007997xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007998{
7999 if (xsmp_icefd != -1)
8000 {
8001 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00008002 if (xsmp.clientid != NULL)
8003 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00008004 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008005 xsmp_icefd = -1;
8006 }
8007}
8008#endif /* USE_XSMP */
8009
8010
8011#ifdef EBCDIC
8012/* Translate character to its CTRL- value */
8013char CtrlTable[] =
8014{
8015/* 00 - 5E */
8016 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8017 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8018 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8019 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8020 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8021 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8022/* ^ */ 0x1E,
8023/* - */ 0x1F,
8024/* 61 - 6C */
8025 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8026/* _ */ 0x1F,
8027/* 6E - 80 */
8028 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8029/* a */ 0x01,
8030/* b */ 0x02,
8031/* c */ 0x03,
8032/* d */ 0x37,
8033/* e */ 0x2D,
8034/* f */ 0x2E,
8035/* g */ 0x2F,
8036/* h */ 0x16,
8037/* i */ 0x05,
8038/* 8A - 90 */
8039 0, 0, 0, 0, 0, 0, 0,
8040/* j */ 0x15,
8041/* k */ 0x0B,
8042/* l */ 0x0C,
8043/* m */ 0x0D,
8044/* n */ 0x0E,
8045/* o */ 0x0F,
8046/* p */ 0x10,
8047/* q */ 0x11,
8048/* r */ 0x12,
8049/* 9A - A1 */
8050 0, 0, 0, 0, 0, 0, 0, 0,
8051/* s */ 0x13,
8052/* t */ 0x3C,
8053/* u */ 0x3D,
8054/* v */ 0x32,
8055/* w */ 0x26,
8056/* x */ 0x18,
8057/* y */ 0x19,
8058/* z */ 0x3F,
8059/* AA - AC */
8060 0, 0, 0,
8061/* [ */ 0x27,
8062/* AE - BC */
8063 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8064/* ] */ 0x1D,
8065/* BE - C0 */ 0, 0, 0,
8066/* A */ 0x01,
8067/* B */ 0x02,
8068/* C */ 0x03,
8069/* D */ 0x37,
8070/* E */ 0x2D,
8071/* F */ 0x2E,
8072/* G */ 0x2F,
8073/* H */ 0x16,
8074/* I */ 0x05,
8075/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
8076/* J */ 0x15,
8077/* K */ 0x0B,
8078/* L */ 0x0C,
8079/* M */ 0x0D,
8080/* N */ 0x0E,
8081/* O */ 0x0F,
8082/* P */ 0x10,
8083/* Q */ 0x11,
8084/* R */ 0x12,
8085/* DA - DF */ 0, 0, 0, 0, 0, 0,
8086/* \ */ 0x1C,
8087/* E1 */ 0,
8088/* S */ 0x13,
8089/* T */ 0x3C,
8090/* U */ 0x3D,
8091/* V */ 0x32,
8092/* W */ 0x26,
8093/* X */ 0x18,
8094/* Y */ 0x19,
8095/* Z */ 0x3F,
8096/* EA - FF*/ 0, 0, 0, 0, 0, 0,
8097 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8098};
8099
8100char MetaCharTable[]=
8101{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8102 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
8103 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
8104 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
8105 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
8106};
8107
8108
8109/* TODO: Use characters NOT numbers!!! */
8110char CtrlCharTable[]=
8111{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8112 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
8113 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
8114 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
8115 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
8116};
8117
8118
8119#endif