blob: e8fe90a1c087f019943cd1904193e0d4dff6d637 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 * OS/2 port by Paul Slootman
5 * VMS merge by Zoltan Arpadffy
6 *
7 * Do ":help uganda" in Vim to read copying and usage conditions.
8 * Do ":help credits" in Vim to see a list of people who contributed.
9 * See README.txt for an overview of the Vim source code.
10 */
11
12/*
13 * os_unix.c -- code for all flavors of Unix (BSD, SYSV, SVR4, POSIX, ...)
14 * Also for OS/2, using the excellent EMX package!!!
15 * Also for BeOS and Atari MiNT.
16 *
17 * A lot of this file was originally written by Juergen Weigert and later
18 * changed beyond recognition.
19 */
20
Bram Moolenaar071d4272004-06-13 20:20:40 +000021#include "vim.h"
22
Bram Moolenaar325b7a22004-07-05 15:58:32 +000023#ifdef FEAT_MZSCHEME
24# include "if_mzsch.h"
25#endif
26
Bram Moolenaar071d4272004-06-13 20:20:40 +000027#include "os_unixx.h" /* unix includes for os_unix.c only */
28
29#ifdef USE_XSMP
30# include <X11/SM/SMlib.h>
31#endif
32
Bram Moolenaar588ebeb2008-05-07 17:09:24 +000033#ifdef HAVE_SELINUX
34# include <selinux/selinux.h>
35static int selinux_enabled = -1;
36#endif
37
Bram Moolenaar5bd32f42014-04-02 14:05:38 +020038#ifdef HAVE_SMACK
39# include <attr/xattr.h>
40# include <linux/xattr.h>
41# ifndef SMACK_LABEL_LEN
42# define SMACK_LABEL_LEN 1024
43# endif
44#endif
45
Bram Moolenaar643b6142018-09-12 20:29:09 +020046#ifdef __BEOS__
Bram Moolenaar311d9822007-02-27 15:48:28 +000047# undef select
Bram Moolenaar643b6142018-09-12 20:29:09 +020048# define select beos_select
Bram Moolenaar071d4272004-06-13 20:20:40 +000049#endif
50
Bram Moolenaara2442432007-04-26 14:26:37 +000051#ifdef __CYGWIN__
Bram Moolenaar4f974752019-02-17 17:44:42 +010052# ifndef MSWIN
Bram Moolenaar0d1498e2008-06-29 12:00:49 +000053# include <cygwin/version.h>
54# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
55 * for cygwin_conv_path() */
Bram Moolenaar693e40c2013-02-26 14:56:42 +010056# ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
57# define WIN32_LEAN_AND_MEAN
58# include <windows.h>
59# include "winclip.pro"
60# endif
Bram Moolenaara2442432007-04-26 14:26:37 +000061# endif
62#endif
63
Bram Moolenaar071d4272004-06-13 20:20:40 +000064#ifdef FEAT_MOUSE_GPM
65# include <gpm.h>
66/* <linux/keyboard.h> contains defines conflicting with "keymap.h",
67 * I just copied relevant defines here. A cleaner solution would be to put gpm
68 * code into separate file and include there linux/keyboard.h
69 */
70/* #include <linux/keyboard.h> */
71# define KG_SHIFT 0
72# define KG_CTRL 2
73# define KG_ALT 3
74# define KG_ALTGR 1
75# define KG_SHIFTL 4
76# define KG_SHIFTR 5
77# define KG_CTRLL 6
78# define KG_CTRLR 7
79# define KG_CAPSSHIFT 8
80
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010081static void gpm_close(void);
82static int gpm_open(void);
83static int mch_gpm_process(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000084#endif
85
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000086#ifdef FEAT_SYSMOUSE
87# include <sys/consio.h>
88# include <sys/fbio.h>
89
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010090static int sysmouse_open(void);
91static void sysmouse_close(void);
Bram Moolenaard99df422016-01-29 23:20:40 +010092static RETSIGTYPE sig_sysmouse SIGPROTOARG;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000093#endif
94
Bram Moolenaar071d4272004-06-13 20:20:40 +000095/*
96 * end of autoconf section. To be extended...
97 */
98
99/* Are the following #ifdefs still required? And why? Is that for X11? */
100
101#if defined(ESIX) || defined(M_UNIX) && !defined(SCO)
102# ifdef SIGWINCH
103# undef SIGWINCH
104# endif
105# ifdef TIOCGWINSZ
106# undef TIOCGWINSZ
107# endif
108#endif
109
110#if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */
111# define SIGWINCH SIGWINDOW
112#endif
113
114#ifdef FEAT_X11
115# include <X11/Xlib.h>
116# include <X11/Xutil.h>
117# include <X11/Xatom.h>
118# ifdef FEAT_XCLIPBOARD
119# include <X11/Intrinsic.h>
120# include <X11/Shell.h>
121# include <X11/StringDefs.h>
122static Widget xterm_Shell = (Widget)0;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100123static void clip_update(void);
124static void xterm_update(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125# endif
126
127# if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)
128Window x11_window = 0;
129# endif
130Display *x11_display = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000131#endif
132
133#ifdef FEAT_TITLE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100134static int get_x11_title(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000135
136static char_u *oldtitle = NULL;
Bram Moolenaar8e82c052018-08-21 19:47:48 +0200137static volatile sig_atomic_t oldtitle_outdated = FALSE;
Bram Moolenaardac13472019-09-16 21:06:21 +0200138static int unix_did_set_title = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139static 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
Bram Moolenaar32aa1022019-11-02 22:54:41 +0100880// Caught signal number, 0 when no signal was caught; used for mch_libcall().
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100881// Volatile because it is used in signal handlers.
882static volatile sig_atomic_t lc_signal;
883# endif
884
885// TRUE when lc_jump_env is valid.
886// Volatile because it is used in signal handler deathtrap().
887static volatile sig_atomic_t lc_active INIT(= FALSE);
888
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889/*
890 * A simplistic version of setjmp() that only allows one level of using.
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100891 * Used to protect areas where we could crash.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 * Don't call twice before calling mch_endjmp()!.
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100893 *
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 * Usage:
895 * mch_startjmp();
896 * if (SETJMP(lc_jump_env) != 0)
897 * {
898 * mch_didjmp();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100899 * emsg("crash!");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900 * }
901 * else
902 * {
903 * do_the_work;
904 * mch_endjmp();
905 * }
906 * Note: Can't move SETJMP() here, because a function calling setjmp() must
907 * not return before the saved environment is used.
908 * Returns OK for normal return, FAIL when the protected code caused a
909 * problem and LONGJMP() was used.
910 */
Bram Moolenaar113e1072019-01-20 15:30:40 +0100911 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100912mch_startjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000913{
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100914# ifdef SIGHASARG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 lc_signal = 0;
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100916# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917 lc_active = TRUE;
918}
919
Bram Moolenaar113e1072019-01-20 15:30:40 +0100920 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100921mch_endjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922{
923 lc_active = FALSE;
924}
925
Bram Moolenaar113e1072019-01-20 15:30:40 +0100926 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100927mch_didjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000928{
929# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100930 // On FreeBSD the signal stack has to be reset after using siglongjmp(),
931 // otherwise catching the signal only works once.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 init_signal_stack();
933# endif
934}
935#endif
936
937/*
938 * This function handles deadly signals.
Bram Moolenaarbec9c202013-09-05 21:41:39 +0200939 * It tries to preserve any swap files and exit properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000940 * (partly from Elvis).
Bram Moolenaarbec9c202013-09-05 21:41:39 +0200941 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in
942 * a deadlock.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 */
944 static RETSIGTYPE
945deathtrap SIGDEFARG(sigarg)
946{
947 static int entered = 0; /* count the number of times we got here.
948 Note: when memory has been corrupted
949 this may get an arbitrary value! */
950#ifdef SIGHASARG
951 int i;
952#endif
953
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100954#if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000955 /*
956 * Catch a crash in protected code.
957 * Restores the environment saved in lc_jump_env, which looks like
958 * SETJMP() returns 1.
959 */
960 if (lc_active)
961 {
962# if defined(SIGHASARG)
963 lc_signal = sigarg;
964# endif
965 lc_active = FALSE; /* don't jump again */
966 LONGJMP(lc_jump_env, 1);
967 /* NOTREACHED */
968 }
969#endif
970
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000971#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000972# ifdef SIGQUIT
973 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
974 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
975 * pressing CTRL-\, but we don't want Vim to exit then. */
976 if (in_mch_delay && sigarg == SIGQUIT)
977 SIGRETURN;
978# endif
979
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000980 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
981 * here. This avoids that a non-reentrant function is interrupted, e.g.,
982 * free(). Calling free() again may then cause a crash. */
983 if (entered == 0
984 && (0
985# ifdef SIGHUP
986 || sigarg == SIGHUP
987# endif
988# ifdef SIGQUIT
989 || sigarg == SIGQUIT
990# endif
991# ifdef SIGTERM
992 || sigarg == SIGTERM
993# endif
994# ifdef SIGPWR
995 || sigarg == SIGPWR
996# endif
997# ifdef SIGUSR1
998 || sigarg == SIGUSR1
999# endif
1000# ifdef SIGUSR2
1001 || sigarg == SIGUSR2
1002# endif
1003 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001004 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001005 SIGRETURN;
1006#endif
1007
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 /* Remember how often we have been called. */
1009 ++entered;
1010
Bram Moolenaare429e702016-06-10 19:49:14 +02001011 /* Executing autocommands is likely to use more stack space than we have
1012 * available in the signal stack. */
1013 block_autocmds();
Bram Moolenaare429e702016-06-10 19:49:14 +02001014
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015#ifdef FEAT_EVAL
1016 /* Set the v:dying variable. */
1017 set_vim_var_nr(VV_DYING, (long)entered);
1018#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001019 v_dying = entered;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001021#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 /* Since we are now using the signal stack, need to reset the stack
1023 * limit. Otherwise using a regexp will fail. */
1024 get_stack_limit();
1025#endif
1026
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001027#if 0
1028 /* This is for opening gdb the moment Vim crashes.
1029 * You need to manually adjust the file name and Vim executable name.
1030 * Suggested by SungHyun Nam. */
1031 {
1032# define VI_GDB_FILE "/tmp/vimgdb"
1033# define VIM_NAME "/usr/bin/vim"
1034 FILE *fp = fopen(VI_GDB_FILE, "w");
1035 if (fp)
1036 {
1037 fprintf(fp,
1038 "file %s\n"
1039 "attach %d\n"
1040 "set height 1000\n"
1041 "bt full\n"
1042 , VIM_NAME, getpid());
1043 fclose(fp);
1044 system("xterm -e gdb -x "VI_GDB_FILE);
1045 unlink(VI_GDB_FILE);
1046 }
1047 }
1048#endif
1049
Bram Moolenaar071d4272004-06-13 20:20:40 +00001050#ifdef SIGHASARG
1051 /* try to find the name of this signal */
1052 for (i = 0; signal_info[i].sig != -1; i++)
1053 if (sigarg == signal_info[i].sig)
1054 break;
1055 deadly_signal = sigarg;
1056#endif
1057
1058 full_screen = FALSE; /* don't write message to the GUI, it might be
1059 * part of the problem... */
1060 /*
1061 * If something goes wrong after entering here, we may get here again.
1062 * When this happens, give a message and try to exit nicely (resetting the
1063 * terminal mode, etc.)
1064 * When this happens twice, just exit, don't even try to give a message,
1065 * stack may be corrupt or something weird.
1066 * When this still happens again (or memory was corrupted in such a way
1067 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1068 */
1069 if (entered >= 3)
1070 {
1071 reset_signals(); /* don't catch any signals anymore */
1072 may_core_dump();
1073 if (entered >= 4)
1074 _exit(8);
1075 exit(7);
1076 }
1077 if (entered == 2)
1078 {
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001079 /* No translation, it may call malloc(). */
1080 OUT_STR("Vim: Double signal, exiting\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001081 out_flush();
1082 getout(1);
1083 }
1084
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001085 /* No translation, it may call malloc(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001086#ifdef SIGHASARG
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001087 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 signal_info[i].name);
1089#else
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001090 sprintf((char *)IObuff, "Vim: Caught deadly signal\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091#endif
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001092
1093 /* Preserve files and exit. This sets the really_exiting flag to prevent
1094 * calling free(). */
1095 preserve_exit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096
Bram Moolenaare429e702016-06-10 19:49:14 +02001097 /* NOTREACHED */
1098
Bram Moolenaar009b2592004-10-24 19:18:58 +00001099#ifdef NBDEBUG
1100 reset_signals();
1101 may_core_dump();
1102 abort();
1103#endif
1104
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 SIGRETURN;
1106}
1107
Bram Moolenaar071d4272004-06-13 20:20:40 +00001108/*
Bram Moolenaar2e310482018-08-21 13:09:10 +02001109 * Invoked after receiving SIGCONT. We don't know what happened while
1110 * sleeping, deal with part of that.
1111 */
1112 static void
1113after_sigcont(void)
1114{
1115# ifdef FEAT_TITLE
1116 // Don't change "oldtitle" in a signal handler, set a flag to obtain it
1117 // again later.
1118 oldtitle_outdated = TRUE;
1119# endif
1120 settmode(TMODE_RAW);
1121 need_check_timestamps = TRUE;
1122 did_check_timestamps = FALSE;
1123}
1124
1125#if defined(SIGCONT)
1126static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar8e82c052018-08-21 19:47:48 +02001127static volatile sig_atomic_t in_mch_suspend = FALSE;
Bram Moolenaar2e310482018-08-21 13:09:10 +02001128
1129/*
1130 * With multi-threading, suspending might not work immediately. Catch the
1131 * SIGCONT signal, which will be used as an indication whether the suspending
1132 * has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001133 *
1134 * On Linux, signal is not always handled immediately either.
1135 * See https://bugs.launchpad.net/bugs/291373
Bram Moolenaar2e310482018-08-21 13:09:10 +02001136 * Probably because the signal is handled in another thread.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001137 *
Bram Moolenaarb292a2a2011-02-09 18:47:40 +01001138 * volatile because it is used in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 */
Bram Moolenaar8e82c052018-08-21 19:47:48 +02001140static volatile sig_atomic_t sigcont_received;
Bram Moolenaarf1883472018-08-20 21:58:57 +02001141static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142
1143/*
1144 * signal handler for SIGCONT
1145 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 static RETSIGTYPE
1147sigcont_handler SIGDEFARG(sigarg)
1148{
Bram Moolenaar2e310482018-08-21 13:09:10 +02001149 if (in_mch_suspend)
1150 {
1151 sigcont_received = TRUE;
1152 }
1153 else
1154 {
1155 // We didn't suspend ourselves, assume we were stopped by a SIGSTOP
1156 // signal (which can't be intercepted) and get a SIGCONT. Need to get
1157 // back to a sane mode. We should redraw, but we can't really do that
1158 // in a signal handler, do a redraw later.
1159 after_sigcont();
1160 redraw_later(CLEAR);
1161 cursor_on_force();
1162 out_flush();
1163 }
1164
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 SIGRETURN;
1166}
1167#endif
1168
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02001169#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001170# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001171static void *clip_star_save = NULL;
1172static void *clip_plus_save = NULL;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001173# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001174
1175/*
1176 * Called when Vim is going to sleep or execute a shell command.
1177 * We can't respond to requests for the X selections. Lose them, otherwise
1178 * other applications will hang. But first copy the text to cut buffer 0.
1179 */
1180 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001181loose_clipboard(void)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001182{
1183 if (clip_star.owned || clip_plus.owned)
1184 {
1185 x11_export_final_selection();
1186 if (clip_star.owned)
1187 clip_lose_selection(&clip_star);
1188 if (clip_plus.owned)
1189 clip_lose_selection(&clip_plus);
1190 if (x11_display != NULL)
1191 XFlush(x11_display);
1192 }
1193}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001194
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001195# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001196/*
1197 * Save clipboard text to restore later.
1198 */
1199 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001200save_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001201{
1202 if (clip_star.owned)
1203 clip_star_save = get_register('*', TRUE);
1204 if (clip_plus.owned)
1205 clip_plus_save = get_register('+', TRUE);
1206}
1207
1208/*
1209 * Restore clipboard text if no one own the X selection.
1210 */
1211 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001212restore_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001213{
1214 if (clip_star_save != NULL)
1215 {
1216 if (!clip_gen_owner_exists(&clip_star))
1217 put_register('*', clip_star_save);
1218 else
1219 free_register(clip_star_save);
1220 clip_star_save = NULL;
1221 }
1222 if (clip_plus_save != NULL)
1223 {
1224 if (!clip_gen_owner_exists(&clip_plus))
1225 put_register('+', clip_plus_save);
1226 else
1227 free_register(clip_plus_save);
1228 clip_plus_save = NULL;
1229 }
1230}
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001231# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001232#endif
1233
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234/*
1235 * If the machine has job control, use it to suspend the program,
1236 * otherwise fake it by starting a new shell.
1237 */
1238 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001239mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240{
1241 /* BeOS does have SIGTSTP, but it doesn't work. */
1242#if defined(SIGTSTP) && !defined(__BEOS__)
Bram Moolenaar2e310482018-08-21 13:09:10 +02001243 in_mch_suspend = TRUE;
1244
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 out_flush(); /* needed to make cursor visible on some systems */
1246 settmode(TMODE_COOK);
1247 out_flush(); /* needed to disable mouse on some systems */
1248
1249# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001250 loose_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251# endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001252# if defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 sigcont_received = FALSE;
1254# endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001255
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 kill(0, SIGTSTP); /* send ourselves a STOP signal */
Bram Moolenaar2e310482018-08-21 13:09:10 +02001257
1258# if defined(SIGCONT)
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001259 /*
1260 * Wait for the SIGCONT signal to be handled. It generally happens
Bram Moolenaar2e310482018-08-21 13:09:10 +02001261 * immediately, but somehow not all the time, probably because it's handled
1262 * in another thread. Do not call pause() because there would be race
1263 * condition which would hang Vim if signal happened in between the test of
1264 * sigcont_received and the call to pause(). If signal is not yet received,
1265 * sleep 0, 1, 2, 3 ms. Don't bother waiting further if signal is not
1266 * received after 1+2+3 ms (not expected to happen).
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001267 */
1268 {
Bram Moolenaar262735e2009-07-14 10:20:22 +00001269 long wait_time;
Bram Moolenaar2e310482018-08-21 13:09:10 +02001270
Bram Moolenaar262735e2009-07-14 10:20:22 +00001271 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
Bram Moolenaar262735e2009-07-14 10:20:22 +00001272 mch_delay(wait_time, FALSE);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001273 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274# endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001275 in_mch_suspend = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276
Bram Moolenaar2e310482018-08-21 13:09:10 +02001277 after_sigcont();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278#else
1279 suspend_shell();
1280#endif
1281}
1282
1283 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001284mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285{
1286 Columns = 80;
1287 Rows = 24;
1288
1289 out_flush();
1290 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001291
Bram Moolenaar56718732006-03-15 22:53:57 +00001292#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001293 mac_conv_init();
1294#endif
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001295#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
1296 win_clip_init();
1297#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298}
1299
1300 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001301set_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302{
1303#if defined(SIGWINCH)
1304 /*
1305 * WINDOW CHANGE signal is handled with sig_winch().
1306 */
1307 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1308#endif
1309
1310 /*
1311 * We want the STOP signal to work, to make mch_suspend() work.
1312 * For "rvim" the STOP signal is ignored.
1313 */
1314#ifdef SIGTSTP
1315 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1316#endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001317#if defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 signal(SIGCONT, sigcont_handler);
1319#endif
1320
1321 /*
1322 * We want to ignore breaking of PIPEs.
1323 */
1324#ifdef SIGPIPE
1325 signal(SIGPIPE, SIG_IGN);
1326#endif
1327
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001329 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330#endif
1331
1332 /*
1333 * Ignore alarm signals (Perl's alarm() generates it).
1334 */
1335#ifdef SIGALRM
1336 signal(SIGALRM, SIG_IGN);
1337#endif
1338
1339 /*
1340 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1341 * work will be lost.
1342 */
1343#ifdef SIGPWR
1344 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1345#endif
1346
1347 /*
1348 * Arrange for other signals to gracefully shutdown Vim.
1349 */
1350 catch_signals(deathtrap, SIG_ERR);
1351
1352#if defined(FEAT_GUI) && defined(SIGHUP)
1353 /*
1354 * When the GUI is running, ignore the hangup signal.
1355 */
1356 if (gui.in_use)
1357 signal(SIGHUP, SIG_IGN);
1358#endif
1359}
1360
Bram Moolenaardf177f62005-02-22 08:39:57 +00001361#if defined(SIGINT) || defined(PROTO)
1362/*
1363 * Catch CTRL-C (only works while in Cooked mode).
1364 */
1365 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001366catch_int_signal(void)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001367{
1368 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1369}
1370#endif
1371
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001373reset_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001374{
1375 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar2e310482018-08-21 13:09:10 +02001376#if defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 /* SIGCONT isn't in the list, because its default action is ignore */
1378 signal(SIGCONT, SIG_DFL);
1379#endif
1380}
1381
1382 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001383catch_signals(
1384 RETSIGTYPE (*func_deadly)(),
1385 RETSIGTYPE (*func_other)())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386{
1387 int i;
1388
1389 for (i = 0; signal_info[i].sig != -1; i++)
1390 if (signal_info[i].deadly)
1391 {
1392#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1393 struct sigaction sa;
1394
1395 /* Setup to use the alternate stack for the signal function. */
1396 sa.sa_handler = func_deadly;
1397 sigemptyset(&sa.sa_mask);
1398# if defined(__linux__) && defined(_REENTRANT)
1399 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1400 * thread handling in combination with using the alternate stack:
1401 * pthread library functions try to use the stack pointer to
1402 * identify the current thread, causing a SEGV signal, which
1403 * recursively calls deathtrap() and hangs. */
1404 sa.sa_flags = 0;
1405# else
1406 sa.sa_flags = SA_ONSTACK;
1407# endif
1408 sigaction(signal_info[i].sig, &sa, NULL);
1409#else
1410# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1411 struct sigvec sv;
1412
1413 /* Setup to use the alternate stack for the signal function. */
1414 sv.sv_handler = func_deadly;
1415 sv.sv_mask = 0;
1416 sv.sv_flags = SV_ONSTACK;
1417 sigvec(signal_info[i].sig, &sv, NULL);
1418# else
1419 signal(signal_info[i].sig, func_deadly);
1420# endif
1421#endif
1422 }
1423 else if (func_other != SIG_ERR)
1424 signal(signal_info[i].sig, func_other);
1425}
1426
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02001427#ifdef HAVE_SIGPROCMASK
1428 static void
1429block_signals(sigset_t *set)
1430{
1431 sigset_t newset;
1432 int i;
1433
1434 sigemptyset(&newset);
1435
1436 for (i = 0; signal_info[i].sig != -1; i++)
1437 sigaddset(&newset, signal_info[i].sig);
1438
Bram Moolenaar2e310482018-08-21 13:09:10 +02001439# if defined(SIGCONT)
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02001440 /* SIGCONT isn't in the list, because its default action is ignore */
1441 sigaddset(&newset, SIGCONT);
1442# endif
1443
1444 sigprocmask(SIG_BLOCK, &newset, set);
1445}
1446
1447 static void
1448unblock_signals(sigset_t *set)
1449{
1450 sigprocmask(SIG_SETMASK, set, NULL);
1451}
1452#endif
1453
Bram Moolenaar071d4272004-06-13 20:20:40 +00001454/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001455 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001456 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1457 * return TRUE
1458 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1459 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
Bram Moolenaar67c53842010-05-22 18:28:27 +02001460 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001461 * Returns TRUE when Vim should exit.
1462 */
1463 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001464vim_handle_signal(int sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001465{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001466 static int got_signal = 0;
1467 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001468
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001469 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001470 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001471 case SIGNAL_BLOCK: blocked = TRUE;
1472 break;
1473
1474 case SIGNAL_UNBLOCK: blocked = FALSE;
1475 if (got_signal != 0)
1476 {
1477 kill(getpid(), got_signal);
1478 got_signal = 0;
1479 }
1480 break;
1481
1482 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001483 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001484 got_signal = sig;
1485#ifdef SIGPWR
1486 if (sig != SIGPWR)
1487#endif
1488 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001489 break;
1490 }
1491 return FALSE;
1492}
1493
1494/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 * Check_win checks whether we have an interactive stdout.
1496 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001498mch_check_win(int argc UNUSED, char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500 if (isatty(1))
1501 return OK;
1502 return FAIL;
1503}
1504
1505/*
1506 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1507 */
1508 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001509mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510{
1511 if (isatty(read_cmd_fd))
1512 return TRUE;
1513 return FALSE;
1514}
1515
1516#ifdef FEAT_X11
1517
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001518# if defined(ELAPSED_TIMEVAL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1520
Bram Moolenaar071d4272004-06-13 20:20:40 +00001521/*
1522 * Give a message about the elapsed time for opening the X window.
1523 */
1524 static void
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001525xopen_message(long elapsed_msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001527 smsg(_("Opening the X display took %ld msec"), elapsed_msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528}
1529# endif
1530#endif
1531
1532#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1533/*
1534 * A few functions shared by X11 title and clipboard code.
1535 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001536
1537static int got_x_error = FALSE;
1538
1539/*
1540 * X Error handler, otherwise X just exits! (very rude) -- webb
1541 */
1542 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001543x_error_handler(Display *dpy, XErrorEvent *error_event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001544{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001545 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 STRCAT(IObuff, _("\nVim: Got X error\n"));
1547
1548 /* We cannot print a message and continue, because no X calls are allowed
1549 * here (causes my system to hang). Silently continuing might be an
1550 * alternative... */
1551 preserve_exit(); /* preserve files and exit */
1552
1553 return 0; /* NOTREACHED */
1554}
1555
1556/*
1557 * Another X Error handler, just used to check for errors.
1558 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001560x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561{
1562 got_x_error = TRUE;
1563 return 0;
1564}
1565
Bram Moolenaarc0c75492018-12-29 11:03:23 +01001566/*
1567 * Return TRUE when connection to the X server is desired.
1568 */
1569 static int
1570x_connect_to_server(void)
1571{
1572 // No point in connecting if we are exiting or dying.
1573 if (exiting || v_dying)
1574 return FALSE;
1575
1576#if defined(FEAT_CLIENTSERVER)
1577 if (x_force_connect)
1578 return TRUE;
1579#endif
1580 if (x_no_connect)
1581 return FALSE;
1582
Bram Moolenaara8bfa172018-12-29 22:28:46 +01001583 // Check for a match with "exclude:" from 'clipboard'.
Bram Moolenaarc0c75492018-12-29 11:03:23 +01001584 if (clip_exclude_prog != NULL)
1585 {
Bram Moolenaara8bfa172018-12-29 22:28:46 +01001586 // Just in case we get called recursively, return FALSE. This could
1587 // happen if vpeekc() is used while executing the prog and it causes a
1588 // related callback to be invoked.
1589 if (regprog_in_use(clip_exclude_prog))
1590 return FALSE;
1591
Bram Moolenaarc0c75492018-12-29 11:03:23 +01001592 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0))
1593 return FALSE;
1594 }
1595 return TRUE;
1596}
1597
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaarb2148f52019-01-20 23:43:57 +01001599# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600/*
1601 * An X IO Error handler, used to catch error while opening the display.
1602 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001604x_IOerror_check(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605{
1606 /* This function should not return, it causes exit(). Longjump instead. */
1607 LONGJMP(lc_jump_env, 1);
Bram Moolenaar1eed5322019-02-26 17:03:54 +01001608# if defined(VMS) || defined(__CYGWIN__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001609 return 0; /* avoid the compiler complains about missing return value */
1610# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611}
1612# endif
1613
1614/*
1615 * An X IO Error handler, used to catch terminal errors.
1616 */
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001617static int xterm_dpy_retry_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001620x_IOerror_handler(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621{
1622 xterm_dpy = NULL;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001623 xterm_dpy_retry_count = 5; // Try reconnecting five times
Bram Moolenaar071d4272004-06-13 20:20:40 +00001624 x11_window = 0;
1625 x11_display = NULL;
1626 xterm_Shell = (Widget)0;
1627
1628 /* This function should not return, it causes exit(). Longjump instead. */
1629 LONGJMP(x_jump_env, 1);
Bram Moolenaar1eed5322019-02-26 17:03:54 +01001630# if defined(VMS) || defined(__CYGWIN__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001631 return 0; /* avoid the compiler complains about missing return value */
1632# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633}
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001634
1635/*
1636 * If the X11 connection was lost try to restore it.
1637 * Helps when the X11 server was stopped and restarted while Vim was inactive
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01001638 * (e.g. through tmux).
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001639 */
1640 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001641may_restore_clipboard(void)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001642{
Bram Moolenaar01e51e52018-12-29 13:09:46 +01001643 // No point in restoring the connecting if we are exiting or dying.
1644 if (!exiting && !v_dying && xterm_dpy_retry_count > 0)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001645 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001646 --xterm_dpy_retry_count;
Bram Moolenaar527a6782014-12-17 17:59:31 +01001647
1648# ifndef LESSTIF_VERSION
1649 /* This has been reported to avoid Vim getting stuck. */
1650 if (app_context != (XtAppContext)NULL)
1651 {
1652 XtDestroyApplicationContext(app_context);
1653 app_context = (XtAppContext)NULL;
1654 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
1655 }
1656# endif
1657
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001658 setup_term_clip();
1659 get_x11_title(FALSE);
1660 }
1661}
Bram Moolenaard4aa83a2019-05-09 18:59:31 +02001662
1663 void
1664ex_xrestore(exarg_T *eap)
1665{
1666 if (eap->arg != NULL && STRLEN(eap->arg) > 0)
1667 {
1668 if (xterm_display_allocated)
1669 vim_free(xterm_display);
1670 xterm_display = (char *)vim_strsave(eap->arg);
1671 xterm_display_allocated = TRUE;
1672 }
1673 smsg(_("restoring display %s"), xterm_display == NULL
1674 ? (char *)mch_getenv("DISPLAY") : xterm_display);
1675
1676 clear_xterm_clip();
1677 x11_window = 0;
1678 xterm_dpy_retry_count = 5; // Try reconnecting five times
1679 may_restore_clipboard();
1680}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001681#endif
1682
1683/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 * Test if "dpy" and x11_window are valid by getting the window title.
1685 * I don't actually want it yet, so there may be a simpler call to use, but
1686 * this will cause the error handler x_error_check() to be called if anything
1687 * is wrong, such as the window pointer being invalid (as can happen when the
1688 * user changes his DISPLAY, but not his WINDOWID) -- webb
1689 */
1690 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001691test_x11_window(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001692{
1693 int (*old_handler)();
1694 XTextProperty text_prop;
1695
1696 old_handler = XSetErrorHandler(x_error_check);
1697 got_x_error = FALSE;
1698 if (XGetWMName(dpy, x11_window, &text_prop))
1699 XFree((void *)text_prop.value);
1700 XSync(dpy, False);
1701 (void)XSetErrorHandler(old_handler);
1702
1703 if (p_verbose > 0 && got_x_error)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001704 verb_msg(_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001705
1706 return (got_x_error ? FAIL : OK);
1707}
1708#endif
1709
1710#ifdef FEAT_TITLE
1711
1712#ifdef FEAT_X11
1713
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001714static int get_x11_thing(int get_title, int test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001715
1716/*
1717 * try to get x11 window and display
1718 *
1719 * return FAIL for failure, OK otherwise
1720 */
1721 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001722get_x11_windis(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723{
1724 char *winid;
1725 static int result = -1;
1726#define XD_NONE 0 /* x11_display not set here */
1727#define XD_HERE 1 /* x11_display opened here */
1728#define XD_GUI 2 /* x11_display used from gui.dpy */
1729#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1730 static int x11_display_from = XD_NONE;
1731 static int did_set_error_handler = FALSE;
1732
1733 if (!did_set_error_handler)
1734 {
1735 /* X just exits if it finds an error otherwise! */
1736 (void)XSetErrorHandler(x_error_handler);
1737 did_set_error_handler = TRUE;
1738 }
1739
Bram Moolenaar9372a112005-12-06 19:59:18 +00001740#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 if (gui.in_use)
1742 {
1743 /*
1744 * If the X11 display was opened here before, for the window where Vim
1745 * was started, close that one now to avoid a memory leak.
1746 */
1747 if (x11_display_from == XD_HERE && x11_display != NULL)
1748 {
1749 XCloseDisplay(x11_display);
1750 x11_display_from = XD_NONE;
1751 }
1752 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1753 {
1754 x11_display_from = XD_GUI;
1755 return OK;
1756 }
1757 x11_display = NULL;
1758 return FAIL;
1759 }
1760 else if (x11_display_from == XD_GUI)
1761 {
1762 /* GUI must have stopped somehow, clear x11_display */
1763 x11_window = 0;
1764 x11_display = NULL;
1765 x11_display_from = XD_NONE;
1766 }
1767#endif
1768
1769 /* When started with the "-X" argument, don't try connecting. */
1770 if (!x_connect_to_server())
1771 return FAIL;
1772
1773 /*
1774 * If WINDOWID not set, should try another method to find out
1775 * what the current window number is. The only code I know for
1776 * this is very complicated.
1777 * We assume that zero is invalid for WINDOWID.
1778 */
1779 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1780 x11_window = (Window)atol(winid);
1781
1782#ifdef FEAT_XCLIPBOARD
Bram Moolenaard4aa83a2019-05-09 18:59:31 +02001783 if (xterm_dpy == x11_display)
1784 // x11_display may have been set to xterm_dpy elsewhere
1785 x11_display_from = XD_XTERM;
1786
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 if (xterm_dpy != NULL && x11_window != 0)
1788 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001789 /* We may have checked it already, but Gnome terminal can move us to
1790 * another window, so we need to check every time. */
1791 if (x11_display_from != XD_XTERM)
1792 {
1793 /*
1794 * If the X11 display was opened here before, for the window where
1795 * Vim was started, close that one now to avoid a memory leak.
1796 */
1797 if (x11_display_from == XD_HERE && x11_display != NULL)
1798 XCloseDisplay(x11_display);
1799 x11_display = xterm_dpy;
1800 x11_display_from = XD_XTERM;
1801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001802 if (test_x11_window(x11_display) == FAIL)
1803 {
1804 /* probably bad $WINDOWID */
1805 x11_window = 0;
1806 x11_display = NULL;
1807 x11_display_from = XD_NONE;
1808 return FAIL;
1809 }
1810 return OK;
1811 }
1812#endif
1813
1814 if (x11_window == 0 || x11_display == NULL)
1815 result = -1;
1816
1817 if (result != -1) /* Have already been here and set this */
1818 return result; /* Don't do all these X calls again */
1819
1820 if (x11_window != 0 && x11_display == NULL)
1821 {
1822#ifdef SET_SIG_ALARM
1823 RETSIGTYPE (*sig_save)();
1824#endif
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01001825#ifdef ELAPSED_FUNC
1826 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001827
1828 if (p_verbose > 0)
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01001829 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830#endif
1831
1832#ifdef SET_SIG_ALARM
1833 /*
1834 * Opening the Display may hang if the DISPLAY setting is wrong, or
1835 * the network connection is bad. Set an alarm timer to get out.
1836 */
1837 sig_alarm_called = FALSE;
1838 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1839 (RETSIGTYPE (*)())sig_alarm);
1840 alarm(2);
1841#endif
1842 x11_display = XOpenDisplay(NULL);
1843
1844#ifdef SET_SIG_ALARM
1845 alarm(0);
1846 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1847 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaar563bbea2019-01-22 21:45:40 +01001848 verb_msg(_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849#endif
1850 if (x11_display != NULL)
1851 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001852# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001853 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001854 {
1855 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001856 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001857 verbose_leave();
1858 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859# endif
1860 if (test_x11_window(x11_display) == FAIL)
1861 {
1862 /* Maybe window id is bad */
1863 x11_window = 0;
1864 XCloseDisplay(x11_display);
1865 x11_display = NULL;
1866 }
1867 else
1868 x11_display_from = XD_HERE;
1869 }
1870 }
1871 if (x11_window == 0 || x11_display == NULL)
1872 return (result = FAIL);
Bram Moolenaar727c8762010-10-20 19:17:48 +02001873
1874# ifdef FEAT_EVAL
1875 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
1876# endif
1877
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 return (result = OK);
1879}
1880
1881/*
1882 * Determine original x11 Window Title
1883 */
1884 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001885get_x11_title(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001887 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888}
1889
1890/*
1891 * Determine original x11 Window icon
1892 */
1893 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001894get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895{
1896 int retval = FALSE;
1897
1898 retval = get_x11_thing(FALSE, test_only);
1899
1900 /* could not get old icon, use terminal name */
1901 if (oldicon == NULL && !test_only)
1902 {
1903 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001904 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001906 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 }
1908
1909 return retval;
1910}
1911
1912 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001913get_x11_thing(
1914 int get_title, /* get title string */
1915 int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916{
1917 XTextProperty text_prop;
1918 int retval = FALSE;
1919 Status status;
1920
1921 if (get_x11_windis() == OK)
1922 {
1923 /* Get window/icon name if any */
1924 if (get_title)
1925 status = XGetWMName(x11_display, x11_window, &text_prop);
1926 else
1927 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1928
1929 /*
1930 * If terminal is xterm, then x11_window may be a child window of the
1931 * outer xterm window that actually contains the window/icon name, so
1932 * keep traversing up the tree until a window with a title/icon is
1933 * found.
1934 */
1935 /* Previously this was only done for xterm and alikes. I don't see a
1936 * reason why it would fail for other terminal emulators.
1937 * if (term_is_xterm) */
1938 {
1939 Window root;
1940 Window parent;
1941 Window win = x11_window;
1942 Window *children;
1943 unsigned int num_children;
1944
1945 while (!status || text_prop.value == NULL)
1946 {
1947 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1948 &num_children))
1949 break;
1950 if (children)
1951 XFree((void *)children);
1952 if (parent == root || parent == 0)
1953 break;
1954
1955 win = parent;
1956 if (get_title)
1957 status = XGetWMName(x11_display, win, &text_prop);
1958 else
1959 status = XGetWMIconName(x11_display, win, &text_prop);
1960 }
1961 }
1962 if (status && text_prop.value != NULL)
1963 {
1964 retval = TRUE;
1965 if (!test_only)
1966 {
Bram Moolenaara12a1612019-01-24 16:39:02 +01001967 if (text_prop.encoding == XA_STRING && !has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 if (get_title)
1970 oldtitle = vim_strsave((char_u *)text_prop.value);
1971 else
1972 oldicon = vim_strsave((char_u *)text_prop.value);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 }
1974 else
1975 {
1976 char **cl;
1977 Status transform_status;
1978 int n = 0;
1979
1980 transform_status = XmbTextPropertyToTextList(x11_display,
1981 &text_prop,
1982 &cl, &n);
1983 if (transform_status >= Success && n > 0 && cl[0])
1984 {
1985 if (get_title)
1986 oldtitle = vim_strsave((char_u *) cl[0]);
1987 else
1988 oldicon = vim_strsave((char_u *) cl[0]);
1989 XFreeStringList(cl);
1990 }
1991 else
1992 {
1993 if (get_title)
1994 oldtitle = vim_strsave((char_u *)text_prop.value);
1995 else
1996 oldicon = vim_strsave((char_u *)text_prop.value);
1997 }
1998 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 }
2000 XFree((void *)text_prop.value);
2001 }
2002 }
2003 return retval;
2004}
2005
Bram Moolenaarb2148f52019-01-20 23:43:57 +01002006/* Xutf8 functions are not available on older systems. Note that on some
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002007 * systems X_HAVE_UTF8_STRING may be defined in a header file but
2008 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for
2009 * that and defines HAVE_XUTF8SETWMPROPERTIES. */
Bram Moolenaara12a1612019-01-24 16:39:02 +01002010#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002011# if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012# define USE_UTF8_STRING
2013# endif
2014#endif
2015
2016/*
2017 * Set x11 Window Title
2018 *
2019 * get_x11_windis() must be called before this and have returned OK
2020 */
2021 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002022set_x11_title(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023{
2024 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
2025 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
2026 * supported everywhere and STRING doesn't work for multi-byte titles.
2027 */
2028#ifdef USE_UTF8_STRING
2029 if (enc_utf8)
2030 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
2031 NULL, NULL, 0, NULL, NULL, NULL);
2032 else
2033#endif
2034 {
2035#if XtSpecificationRelease >= 4
2036# ifdef FEAT_XFONTSET
2037 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
2038 NULL, NULL, 0, NULL, NULL, NULL);
2039# else
2040 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002041 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042
2043 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002044 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 XSetWMProperties(x11_display, x11_window, &text_prop,
2046 NULL, NULL, 0, NULL, NULL, NULL);
2047# endif
2048#else
2049 XStoreName(x11_display, x11_window, (char *)title);
2050#endif
2051 }
2052 XFlush(x11_display);
2053}
2054
2055/*
2056 * Set x11 Window icon
2057 *
2058 * get_x11_windis() must be called before this and have returned OK
2059 */
2060 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002061set_x11_icon(char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062{
2063 /* See above for comments about using X*SetWMProperties(). */
2064#ifdef USE_UTF8_STRING
2065 if (enc_utf8)
2066 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2067 NULL, 0, NULL, NULL, NULL);
2068 else
2069#endif
2070 {
2071#if XtSpecificationRelease >= 4
2072# ifdef FEAT_XFONTSET
2073 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2074 NULL, 0, NULL, NULL, NULL);
2075# else
2076 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002077 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002079 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
2081 NULL, 0, NULL, NULL, NULL);
2082# endif
2083#else
2084 XSetIconName(x11_display, x11_window, (char *)icon);
2085#endif
2086 }
2087 XFlush(x11_display);
2088}
2089
2090#else /* FEAT_X11 */
2091
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002093get_x11_title(int test_only UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094{
2095 return FALSE;
2096}
2097
2098 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002099get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100{
2101 if (!test_only)
2102 {
2103 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002104 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002106 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 }
2108 return FALSE;
2109}
2110
2111#endif /* FEAT_X11 */
2112
2113 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002114mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115{
2116 return get_x11_title(TRUE);
2117}
2118
2119 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002120mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121{
2122 return get_x11_icon(TRUE);
2123}
2124
2125/*
2126 * Set the window title and icon.
2127 */
2128 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002129mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130{
2131 int type = 0;
2132 static int recursive = 0;
2133
2134 if (T_NAME == NULL) /* no terminal name (yet) */
2135 return;
2136 if (title == NULL && icon == NULL) /* nothing to do */
2137 return;
2138
2139 /* When one of the X11 functions causes a deadly signal, we get here again
2140 * recursively. Avoid hanging then (something is probably locked). */
2141 if (recursive)
2142 return;
2143 ++recursive;
2144
2145 /*
2146 * if the window ID and the display is known, we may use X11 calls
2147 */
2148#ifdef FEAT_X11
2149 if (get_x11_windis() == OK)
2150 type = 1;
2151#else
2152# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
2153 if (gui.in_use)
2154 type = 1;
2155# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156#endif
2157
2158 /*
Bram Moolenaarf82bac32010-07-25 22:30:20 +02002159 * Note: if "t_ts" is set, title is set with escape sequence rather
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 * than x11 calls, because the x11 calls don't always work
2161 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 if ((type || *T_TS != NUL) && title != NULL)
2163 {
Bram Moolenaard8f0cef2018-08-19 22:20:16 +02002164 if (oldtitle_outdated)
2165 {
2166 oldtitle_outdated = FALSE;
2167 VIM_CLEAR(oldtitle);
2168 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 if (oldtitle == NULL
2170#ifdef FEAT_GUI
2171 && !gui.in_use
2172#endif
2173 ) /* first call but not in GUI, save title */
2174 (void)get_x11_title(FALSE);
2175
2176 if (*T_TS != NUL) /* it's OK if t_fs is empty */
2177 term_settitle(title);
2178#ifdef FEAT_X11
2179 else
2180# ifdef FEAT_GUI_GTK
2181 if (!gui.in_use) /* don't do this if GTK+ is running */
2182# endif
2183 set_x11_title(title); /* x11 */
2184#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002185#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2187 else
2188 gui_mch_settitle(title, icon);
2189#endif
Bram Moolenaardac13472019-09-16 21:06:21 +02002190 unix_did_set_title = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 }
2192
2193 if ((type || *T_CIS != NUL) && icon != NULL)
2194 {
2195 if (oldicon == NULL
2196#ifdef FEAT_GUI
2197 && !gui.in_use
2198#endif
2199 ) /* first call, save icon */
2200 get_x11_icon(FALSE);
2201
2202 if (*T_CIS != NUL)
2203 {
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02002204 out_str(T_CIS); // set icon start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 out_str_nf(icon);
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02002206 out_str(T_CIE); // set icon end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207 out_flush();
2208 }
2209#ifdef FEAT_X11
2210 else
2211# ifdef FEAT_GUI_GTK
2212 if (!gui.in_use) /* don't do this if GTK+ is running */
2213# endif
2214 set_x11_icon(icon); /* x11 */
2215#endif
2216 did_set_icon = TRUE;
2217 }
2218 --recursive;
2219}
2220
2221/*
2222 * Restore the window/icon title.
2223 * "which" is one of:
Bram Moolenaar40385db2018-08-07 22:31:44 +02002224 * SAVE_RESTORE_TITLE only restore title
2225 * SAVE_RESTORE_ICON only restore icon
2226 * SAVE_RESTORE_BOTH restore title and icon
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 */
2228 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002229mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230{
Bram Moolenaardac13472019-09-16 21:06:21 +02002231 int do_push_pop = unix_did_set_title || did_set_icon;
Bram Moolenaare5c83282019-05-03 23:15:37 +02002232
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 /* only restore the title or icon when it has been set */
Bram Moolenaardac13472019-09-16 21:06:21 +02002234 mch_settitle(((which & SAVE_RESTORE_TITLE) && unix_did_set_title) ?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 (oldtitle ? oldtitle : p_titleold) : NULL,
Bram Moolenaar40385db2018-08-07 22:31:44 +02002236 ((which & SAVE_RESTORE_ICON) && did_set_icon) ? oldicon : NULL);
2237
Bram Moolenaare5c83282019-05-03 23:15:37 +02002238 if (do_push_pop)
2239 {
2240 // pop and push from/to the stack
2241 term_pop_title(which);
2242 term_push_title(which);
2243 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002244}
2245
2246#endif /* FEAT_TITLE */
2247
2248/*
2249 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002250 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 */
2252 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002253vim_is_xterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254{
2255 if (name == NULL)
2256 return FALSE;
2257 return (STRNICMP(name, "xterm", 5) == 0
2258 || STRNICMP(name, "nxterm", 6) == 0
2259 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002260 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 || STRNICMP(name, "rxvt", 4) == 0
Bram Moolenaar995e4af2017-09-01 20:24:03 +02002262 || STRNICMP(name, "screen.xterm", 12) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002263 || STRCMP(name, "builtin_xterm") == 0);
2264}
2265
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002266#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2267/*
2268 * Return TRUE if "name" appears to be that of a terminal
2269 * known to support the xterm-style mouse protocol.
2270 * Relies on term_is_xterm having been set to its correct value.
2271 */
2272 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002273use_xterm_like_mouse(char_u *name)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002274{
2275 return (name != NULL
Bram Moolenaare56132b2016-08-14 18:23:21 +02002276 && (term_is_xterm
2277 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002278 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaare56132b2016-08-14 18:23:21 +02002279 || STRICMP(name, "st") == 0
2280 || STRNICMP(name, "st-", 3) == 0
2281 || STRNICMP(name, "stterm", 6) == 0));
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002282}
2283#endif
2284
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285/*
2286 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2287 * Return 1 for "xterm".
2288 * Return 2 for "xterm2".
Bram Moolenaarc8427482011-10-20 21:09:35 +02002289 * Return 3 for "urxvt".
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002290 * Return 4 for "sgr".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 */
2292 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002293use_xterm_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294{
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002295 if (ttym_flags == TTYM_SGR)
2296 return 4;
Bram Moolenaarc8427482011-10-20 21:09:35 +02002297 if (ttym_flags == TTYM_URXVT)
2298 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002299 if (ttym_flags == TTYM_XTERM2)
2300 return 2;
2301 if (ttym_flags == TTYM_XTERM)
2302 return 1;
2303 return 0;
2304}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305
2306 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002307vim_is_iris(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308{
2309 if (name == NULL)
2310 return FALSE;
2311 return (STRNICMP(name, "iris-ansi", 9) == 0
2312 || STRCMP(name, "builtin_iris-ansi") == 0);
2313}
2314
2315 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002316vim_is_vt300(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317{
2318 if (name == NULL)
2319 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002320 /* catch VT100 - VT5xx */
2321 return ((STRNICMP(name, "vt", 2) == 0
2322 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 || STRCMP(name, "builtin_vt320") == 0);
2324}
2325
2326/*
2327 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2328 * This should include all windowed terminal emulators.
2329 */
2330 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002331vim_is_fastterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332{
2333 if (name == NULL)
2334 return FALSE;
2335 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2336 return TRUE;
2337 return ( STRNICMP(name, "hpterm", 6) == 0
2338 || STRNICMP(name, "sun-cmd", 7) == 0
2339 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002340 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 || STRNICMP(name, "dtterm", 6) == 0);
2342}
2343
2344/*
2345 * Insert user name in s[len].
2346 * Return OK if a name found.
2347 */
2348 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002349mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002350{
2351#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002352 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 return OK;
2354#else
2355 return mch_get_uname(getuid(), s, len);
2356#endif
2357}
2358
2359/*
2360 * Insert user name for "uid" in s[len].
2361 * Return OK if a name found.
2362 */
2363 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002364mch_get_uname(uid_t uid, char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365{
2366#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2367 struct passwd *pw;
2368
2369 if ((pw = getpwuid(uid)) != NULL
2370 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2371 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002372 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373 return OK;
2374 }
2375#endif
2376 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2377 return FAIL; /* a number is not a name */
2378}
2379
2380/*
2381 * Insert host name is s[len].
2382 */
2383
2384#ifdef HAVE_SYS_UTSNAME_H
2385 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002386mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387{
2388 struct utsname vutsname;
2389
2390 if (uname(&vutsname) < 0)
2391 *s = NUL;
2392 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002393 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394}
2395#else /* HAVE_SYS_UTSNAME_H */
2396
2397# ifdef HAVE_SYS_SYSTEMINFO_H
2398# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2399# endif
2400
2401 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002402mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403{
2404# ifdef VAXC
2405 vaxc$gethostname((char *)s, len);
2406# else
2407 gethostname((char *)s, len);
2408# endif
2409 s[len - 1] = NUL; /* make sure it's terminated */
2410}
2411#endif /* HAVE_SYS_UTSNAME_H */
2412
2413/*
2414 * return process ID
2415 */
2416 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002417mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418{
2419 return (long)getpid();
2420}
2421
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002422/*
2423 * return TRUE if process "pid" is still running
2424 */
2425 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002426mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002427{
2428 // EMX kill() not working correctly, it seems
2429 return kill(pid, 0) == 0;
2430}
2431
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 static char *
Bram Moolenaar05540972016-01-30 20:31:25 +01002434strerror(int err)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435{
2436 extern int sys_nerr;
2437 extern char *sys_errlist[];
2438 static char er[20];
2439
2440 if (err > 0 && err < sys_nerr)
2441 return (sys_errlist[err]);
2442 sprintf(er, "Error %d", err);
2443 return er;
2444}
2445#endif
2446
2447/*
Bram Moolenaar964b3742019-05-24 18:54:09 +02002448 * Get name of current directory into buffer "buf" of length "len" bytes.
2449 * "len" must be at least PATH_MAX.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 * Return OK for success, FAIL for failure.
2451 */
2452 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002453mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454{
2455#if defined(USE_GETCWD)
2456 if (getcwd((char *)buf, len) == NULL)
2457 {
2458 STRCPY(buf, strerror(errno));
2459 return FAIL;
2460 }
2461 return OK;
2462#else
2463 return (getwd((char *)buf) != NULL ? OK : FAIL);
2464#endif
2465}
2466
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002468 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 *
2470 * return FAIL for failure, OK for success
2471 */
2472 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002473mch_FullName(
2474 char_u *fname,
2475 char_u *buf,
2476 int len,
2477 int force) /* also expand when already absolute path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002478{
2479 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002480#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 int fd = -1;
2482 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002483#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 char_u olddir[MAXPATHL];
2485 char_u *p;
2486 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002487#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002488 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2489 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002490#endif
2491
Bram Moolenaar38323e42007-03-06 19:22:53 +00002492#ifdef VMS
2493 fname = vms_fixfilename(fname);
2494#endif
2495
Bram Moolenaara2442432007-04-26 14:26:37 +00002496#ifdef __CYGWIN__
2497 /*
2498 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2499 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002500# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaar06b07342015-12-31 22:26:28 +01002501 /* Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in
2502 * a forward slash. */
2503 cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE,
2504 fname, posix_fname, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002505# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002506 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002507# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002508 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002509#endif
2510
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002511 /* Expand it if forced or not an absolute path.
2512 * Do not do it for "/file", the result is always "/". */
2513 if ((force || !mch_isFullName(fname))
2514 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002515 {
2516 /*
2517 * If the file name has a path, change to that directory for a moment,
Bram Moolenaar964b3742019-05-24 18:54:09 +02002518 * and then get the directory (and get back to where we were).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002519 * This will get the correct path name with "../" things.
2520 */
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002521 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002523#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 /*
2525 * Use fchdir() if possible, it's said to be faster and more
2526 * reliable. But on SunOS 4 it might not work. Check this by
2527 * doing a fchdir() right now.
2528 */
2529 if (!dont_fchdir)
2530 {
2531 fd = open(".", O_RDONLY | O_EXTRA, 0);
2532 if (fd >= 0 && fchdir(fd) < 0)
2533 {
2534 close(fd);
2535 fd = -1;
2536 dont_fchdir = TRUE; /* don't try again */
2537 }
2538 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002539#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540
2541 /* Only change directory when we are sure we can return to where
2542 * we are now. After doing "su" chdir(".") might not work. */
2543 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002544#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002546#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 (mch_dirname(olddir, MAXPATHL) == FAIL
2548 || mch_chdir((char *)olddir) != 0))
2549 {
2550 p = NULL; /* can't get current dir: don't chdir */
2551 retval = FAIL;
2552 }
2553 else
2554 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002555 /* The directory is copied into buf[], to be able to remove
2556 * the file name without changing it (could be a string in
2557 * read-only memory) */
2558 if (p - fname >= len)
2559 retval = FAIL;
2560 else
2561 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002562 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563 if (mch_chdir((char *)buf))
2564 retval = FAIL;
2565 else
2566 fname = p + 1;
2567 *buf = NUL;
2568 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 }
2570 }
2571 if (mch_dirname(buf, len) == FAIL)
2572 {
2573 retval = FAIL;
2574 *buf = NUL;
2575 }
2576 if (p != NULL)
2577 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002578#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 if (fd >= 0)
2580 {
Bram Moolenaar25724922009-07-14 15:38:41 +00002581 if (p_verbose >= 5)
2582 {
2583 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002584 msg("fchdir() to previous dir");
Bram Moolenaar25724922009-07-14 15:38:41 +00002585 verbose_leave();
2586 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 l = fchdir(fd);
2588 close(fd);
2589 }
2590 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002591#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 l = mch_chdir((char *)olddir);
2593 if (l != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002594 emsg(_(e_prev_dir));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 }
2596
2597 l = STRLEN(buf);
Bram Moolenaardac75692012-10-14 04:35:45 +02002598 if (l >= len - 1)
2599 retval = FAIL; /* no space for trailing "/" */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002600#ifndef VMS
Bram Moolenaardac75692012-10-14 04:35:45 +02002601 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 && STRCMP(fname, ".") != 0)
Bram Moolenaardac75692012-10-14 04:35:45 +02002603 STRCAT(buf, "/");
Bram Moolenaar38323e42007-03-06 19:22:53 +00002604#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002606
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 /* Catch file names which are too long. */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002608 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002609 return FAIL;
2610
2611 /* Do not append ".", "/dir/." is equal to "/dir". */
2612 if (STRCMP(fname, ".") != 0)
2613 STRCAT(buf, fname);
2614
2615 return OK;
2616}
2617
2618/*
2619 * Return TRUE if "fname" does not depend on the current directory.
2620 */
2621 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002622mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002624#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625 return ( fname[0] == '/' || fname[0] == '.' ||
2626 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2627 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2628 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002629#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002630 return (*fname == '/' || *fname == '~');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631#endif
2632}
2633
Bram Moolenaar24552be2005-12-10 20:17:30 +00002634#if defined(USE_FNAME_CASE) || defined(PROTO)
2635/*
2636 * Set the case of the file name, if it already exists. This will cause the
2637 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002638 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002639 */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002640 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002641fname_case(
2642 char_u *name,
2643 int len UNUSED) /* buffer size, only used when name gets longer */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002644{
2645 struct stat st;
2646 char_u *slash, *tail;
2647 DIR *dirp;
2648 struct dirent *dp;
2649
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002650 if (mch_lstat((char *)name, &st) >= 0)
Bram Moolenaar24552be2005-12-10 20:17:30 +00002651 {
2652 /* Open the directory where the file is located. */
2653 slash = vim_strrchr(name, '/');
2654 if (slash == NULL)
2655 {
2656 dirp = opendir(".");
2657 tail = name;
2658 }
2659 else
2660 {
2661 *slash = NUL;
2662 dirp = opendir((char *)name);
2663 *slash = '/';
2664 tail = slash + 1;
2665 }
2666
2667 if (dirp != NULL)
2668 {
2669 while ((dp = readdir(dirp)) != NULL)
2670 {
2671 /* Only accept names that differ in case and are the same byte
2672 * length. TODO: accept different length name. */
2673 if (STRICMP(tail, dp->d_name) == 0
2674 && STRLEN(tail) == STRLEN(dp->d_name))
2675 {
2676 char_u newname[MAXPATHL + 1];
2677 struct stat st2;
2678
2679 /* Verify the inode is equal. */
2680 vim_strncpy(newname, name, MAXPATHL);
2681 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2682 MAXPATHL - (tail - name));
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002683 if (mch_lstat((char *)newname, &st2) >= 0
Bram Moolenaar24552be2005-12-10 20:17:30 +00002684 && st.st_ino == st2.st_ino
2685 && st.st_dev == st2.st_dev)
2686 {
2687 STRCPY(tail, dp->d_name);
2688 break;
2689 }
2690 }
2691 }
2692
2693 closedir(dirp);
2694 }
2695 }
2696}
2697#endif
2698
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699/*
2700 * Get file permissions for 'name'.
2701 * Returns -1 when it doesn't exist.
2702 */
2703 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002704mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002705{
2706 struct stat statb;
2707
2708 /* Keep the #ifdef outside of stat(), it may be a macro. */
2709#ifdef VMS
2710 if (stat((char *)vms_fixfilename(name), &statb))
2711#else
2712 if (stat((char *)name, &statb))
2713#endif
2714 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002715#ifdef __INTERIX
2716 /* The top bit makes the value negative, which means the file doesn't
2717 * exist. Remove the bit, we don't use it. */
2718 return statb.st_mode & ~S_ADDACE;
2719#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002721#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722}
2723
2724/*
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002725 * Set file permission for "name" to "perm".
2726 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002727 */
2728 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002729mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730{
2731 return (chmod((char *)
2732#ifdef VMS
2733 vms_fixfilename(name),
2734#else
2735 name,
2736#endif
2737 (mode_t)perm) == 0 ? OK : FAIL);
2738}
2739
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002740#if defined(HAVE_FCHMOD) || defined(PROTO)
2741/*
2742 * Set file permission for open file "fd" to "perm".
2743 * Return FAIL for failure, OK otherwise.
2744 */
2745 int
2746mch_fsetperm(int fd, long perm)
2747{
2748 return (fchmod(fd, (mode_t)perm) == 0 ? OK : FAIL);
2749}
2750#endif
2751
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752#if defined(HAVE_ACL) || defined(PROTO)
2753# ifdef HAVE_SYS_ACL_H
2754# include <sys/acl.h>
2755# endif
2756# ifdef HAVE_SYS_ACCESS_H
2757# include <sys/access.h>
2758# endif
2759
2760# ifdef HAVE_SOLARIS_ACL
2761typedef struct vim_acl_solaris_T {
2762 int acl_cnt;
2763 aclent_t *acl_entry;
2764} vim_acl_solaris_T;
2765# endif
2766
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002767#if defined(HAVE_SELINUX) || defined(PROTO)
2768/*
2769 * Copy security info from "from_file" to "to_file".
2770 */
2771 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002772mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002773{
2774 if (from_file == NULL)
2775 return;
2776
2777 if (selinux_enabled == -1)
2778 selinux_enabled = is_selinux_enabled();
2779
2780 if (selinux_enabled > 0)
2781 {
2782 security_context_t from_context = NULL;
2783 security_context_t to_context = NULL;
2784
2785 if (getfilecon((char *)from_file, &from_context) < 0)
2786 {
2787 /* If the filesystem doesn't support extended attributes,
2788 the original had no special security context and the
2789 target cannot have one either. */
2790 if (errno == EOPNOTSUPP)
2791 return;
2792
Bram Moolenaar32526b32019-01-19 17:43:09 +01002793 msg_puts(_("\nCould not get security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002794 msg_outtrans(from_file);
2795 msg_putchar('\n');
2796 return;
2797 }
2798 if (getfilecon((char *)to_file, &to_context) < 0)
2799 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002800 msg_puts(_("\nCould not get security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002801 msg_outtrans(to_file);
2802 msg_putchar('\n');
2803 freecon (from_context);
2804 return ;
2805 }
2806 if (strcmp(from_context, to_context) != 0)
2807 {
2808 if (setfilecon((char *)to_file, from_context) < 0)
2809 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002810 msg_puts(_("\nCould not set security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002811 msg_outtrans(to_file);
2812 msg_putchar('\n');
2813 }
2814 }
2815 freecon(to_context);
2816 freecon(from_context);
2817 }
2818}
2819#endif /* HAVE_SELINUX */
2820
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002821#if defined(HAVE_SMACK) && !defined(PROTO)
2822/*
2823 * Copy security info from "from_file" to "to_file".
2824 */
2825 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002826mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002827{
Bram Moolenaar62f167f2014-04-23 12:52:40 +02002828 static const char * const smack_copied_attributes[] =
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002829 {
2830 XATTR_NAME_SMACK,
2831 XATTR_NAME_SMACKEXEC,
2832 XATTR_NAME_SMACKMMAP
2833 };
2834
2835 char buffer[SMACK_LABEL_LEN];
2836 const char *name;
2837 int index;
2838 int ret;
2839 ssize_t size;
2840
2841 if (from_file == NULL)
2842 return;
2843
2844 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes)
2845 / sizeof(smack_copied_attributes)[0]) ; index++)
2846 {
2847 /* get the name of the attribute to copy */
2848 name = smack_copied_attributes[index];
2849
2850 /* get the value of the attribute in buffer */
2851 size = getxattr((char*)from_file, name, buffer, sizeof(buffer));
2852 if (size >= 0)
2853 {
2854 /* copy the attribute value of buffer */
2855 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0);
2856 if (ret < 0)
2857 {
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002858 vim_snprintf((char *)IObuff, IOSIZE,
2859 _("Could not set security context %s for %s"),
2860 name, to_file);
2861 msg_outtrans(IObuff);
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002862 msg_putchar('\n');
2863 }
2864 }
2865 else
2866 {
2867 /* what reason of not having the attribute value? */
2868 switch (errno)
2869 {
2870 case ENOTSUP:
2871 /* extended attributes aren't supported or enabled */
2872 /* should a message be echoed? not sure... */
Bram Moolenaarb2148f52019-01-20 23:43:57 +01002873 return; /* leave because it isn't useful to continue */
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002874
2875 case ERANGE:
2876 default:
2877 /* no enough size OR unexpected error */
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002878 vim_snprintf((char *)IObuff, IOSIZE,
2879 _("Could not get security context %s for %s. Removing it!"),
2880 name, from_file);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002881 msg_puts((char *)IObuff);
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002882 msg_putchar('\n');
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002883 /* FALLTHROUGH to remove the attribute */
2884
2885 case ENODATA:
2886 /* no attribute of this name */
2887 ret = removexattr((char*)to_file, name);
Bram Moolenaar57a728d2014-04-02 23:09:26 +02002888 /* Silently ignore errors, apparently this happens when
2889 * smack is not actually being used. */
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002890 break;
2891 }
2892 }
2893 }
2894}
2895#endif /* HAVE_SMACK */
2896
Bram Moolenaar071d4272004-06-13 20:20:40 +00002897/*
2898 * Return a pointer to the ACL of file "fname" in allocated memory.
2899 * Return NULL if the ACL is not available for whatever reason.
2900 */
2901 vim_acl_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002902mch_get_acl(char_u *fname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002903{
2904 vim_acl_T ret = NULL;
2905#ifdef HAVE_POSIX_ACL
2906 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2907#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002908#ifdef HAVE_SOLARIS_ZFS_ACL
2909 acl_t *aclent;
2910
2911 if (acl_get((char *)fname, 0, &aclent) < 0)
2912 return NULL;
2913 ret = (vim_acl_T)aclent;
2914#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002915#ifdef HAVE_SOLARIS_ACL
2916 vim_acl_solaris_T *aclent;
2917
2918 aclent = malloc(sizeof(vim_acl_solaris_T));
2919 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2920 {
2921 free(aclent);
2922 return NULL;
2923 }
2924 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2925 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2926 {
2927 free(aclent->acl_entry);
2928 free(aclent);
2929 return NULL;
2930 }
2931 ret = (vim_acl_T)aclent;
2932#else
2933#if defined(HAVE_AIX_ACL)
2934 int aclsize;
2935 struct acl *aclent;
2936
2937 aclsize = sizeof(struct acl);
2938 aclent = malloc(aclsize);
2939 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2940 {
2941 if (errno == ENOSPC)
2942 {
2943 aclsize = aclent->acl_len;
2944 aclent = realloc(aclent, aclsize);
2945 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2946 {
2947 free(aclent);
2948 return NULL;
2949 }
2950 }
2951 else
2952 {
2953 free(aclent);
2954 return NULL;
2955 }
2956 }
2957 ret = (vim_acl_T)aclent;
2958#endif /* HAVE_AIX_ACL */
2959#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002960#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002961#endif /* HAVE_POSIX_ACL */
2962 return ret;
2963}
2964
2965/*
2966 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2967 */
2968 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002969mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970{
2971 if (aclent == NULL)
2972 return;
2973#ifdef HAVE_POSIX_ACL
2974 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2975#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002976#ifdef HAVE_SOLARIS_ZFS_ACL
2977 acl_set((char *)fname, (acl_t *)aclent);
2978#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979#ifdef HAVE_SOLARIS_ACL
2980 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2981 ((vim_acl_solaris_T *)aclent)->acl_entry);
2982#else
2983#ifdef HAVE_AIX_ACL
2984 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2985#endif /* HAVE_AIX_ACL */
2986#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002987#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988#endif /* HAVE_POSIX_ACL */
2989}
2990
2991 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002992mch_free_acl(vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993{
2994 if (aclent == NULL)
2995 return;
2996#ifdef HAVE_POSIX_ACL
2997 acl_free((acl_t)aclent);
2998#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002999#ifdef HAVE_SOLARIS_ZFS_ACL
3000 acl_free((acl_t *)aclent);
3001#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002#ifdef HAVE_SOLARIS_ACL
3003 free(((vim_acl_solaris_T *)aclent)->acl_entry);
3004 free(aclent);
3005#else
3006#ifdef HAVE_AIX_ACL
3007 free(aclent);
3008#endif /* HAVE_AIX_ACL */
3009#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01003010#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011#endif /* HAVE_POSIX_ACL */
3012}
3013#endif
3014
3015/*
3016 * Set hidden flag for "name".
3017 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003019mch_hide(char_u *name UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020{
3021 /* can't hide a file */
3022}
3023
3024/*
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003025 * return TRUE if "name" is a directory or a symlink to a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003026 * return FALSE if "name" is not a directory
3027 * return FALSE for error
3028 */
3029 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003030mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003031{
3032 struct stat statb;
3033
3034 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3035 return FALSE;
3036 if (stat((char *)name, &statb))
3037 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003039}
3040
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003041/*
3042 * return TRUE if "name" is a directory, NOT a symlink to a directory
3043 * return FALSE if "name" is not a directory
3044 * return FALSE for error
3045 */
3046 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003047mch_isrealdir(char_u *name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003048{
3049 struct stat statb;
3050
3051 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3052 return FALSE;
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01003053 if (mch_lstat((char *)name, &statb))
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003054 return FALSE;
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003055 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003056}
3057
Bram Moolenaar071d4272004-06-13 20:20:40 +00003058/*
3059 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
3060 */
3061 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003062executable_file(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063{
3064 struct stat st;
3065
3066 if (stat((char *)name, &st))
3067 return 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003068#ifdef VMS
3069 /* Like on Unix system file can have executable rights but not necessarily
Bram Moolenaar32aa1022019-11-02 22:54:41 +01003070 * be an executable, but on Unix is not a default for an ordinary file to
Bram Moolenaar206f0112014-03-12 16:51:55 +01003071 * have an executable flag - on VMS it is in most cases.
3072 * Therefore, this check does not have any sense - let keep us to the
3073 * conventions instead:
3074 * *.COM and *.EXE files are the executables - the rest are not. This is
3075 * not ideal but better then it was.
3076 */
3077 int vms_executable = 0;
3078 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0)
3079 {
3080 if (strstr(vms_tolower((char*)name),".exe") != NULL
3081 || strstr(vms_tolower((char*)name),".com")!= NULL)
3082 vms_executable = 1;
3083 }
3084 return vms_executable;
3085#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003087#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088}
3089
3090/*
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01003091 * Return TRUE if "name" can be found in $PATH and executed, FALSE if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +01003092 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 * Return -1 if unknown.
3094 */
3095 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003096mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097{
3098 char_u *buf;
3099 char_u *p, *e;
3100 int retval;
3101
Bram Moolenaarb5971142015-03-21 17:32:19 +01003102 /* When "use_path" is false and if it's an absolute or relative path don't
3103 * need to use $PATH. */
Bram Moolenaard08b8c42019-07-24 14:59:45 +02003104 if (!use_path || gettail(name) != name)
Bram Moolenaar206f0112014-03-12 16:51:55 +01003105 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01003106 /* There must be a path separator, files in the current directory
3107 * can't be executed. */
Bram Moolenaard08b8c42019-07-24 14:59:45 +02003108 if ((use_path || gettail(name) != name) && executable_file(name))
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003109 {
3110 if (path != NULL)
3111 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003112 if (name[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003113 *path = FullName_save(name, TRUE);
3114 else
3115 *path = vim_strsave(name);
3116 }
3117 return TRUE;
3118 }
3119 return FALSE;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003120 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121
3122 p = (char_u *)getenv("PATH");
3123 if (p == NULL || *p == NUL)
3124 return -1;
Bram Moolenaar964b3742019-05-24 18:54:09 +02003125 buf = alloc(STRLEN(name) + STRLEN(p) + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003126 if (buf == NULL)
3127 return -1;
3128
3129 /*
3130 * Walk through all entries in $PATH to check if "name" exists there and
3131 * is an executable file.
3132 */
3133 for (;;)
3134 {
3135 e = (char_u *)strchr((char *)p, ':');
3136 if (e == NULL)
3137 e = p + STRLEN(p);
3138 if (e - p <= 1) /* empty entry means current dir */
3139 STRCPY(buf, "./");
3140 else
3141 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003142 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 add_pathsep(buf);
3144 }
3145 STRCAT(buf, name);
3146 retval = executable_file(buf);
3147 if (retval == 1)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003148 {
3149 if (path != NULL)
3150 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003151 if (buf[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003152 *path = FullName_save(buf, TRUE);
3153 else
3154 *path = vim_strsave(buf);
3155 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 break;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003157 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158
3159 if (*e != ':')
3160 break;
3161 p = e + 1;
3162 }
3163
3164 vim_free(buf);
3165 return retval;
3166}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167
3168/*
3169 * Check what "name" is:
3170 * NODE_NORMAL: file or directory (or doesn't exist)
3171 * NODE_WRITABLE: writable device, socket, fifo, etc.
3172 * NODE_OTHER: non-writable things
3173 */
3174 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003175mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176{
3177 struct stat st;
3178
3179 if (stat((char *)name, &st))
3180 return NODE_NORMAL;
3181 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
3182 return NODE_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
3184 return NODE_OTHER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185 /* Everything else is writable? */
3186 return NODE_WRITABLE;
3187}
3188
3189 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003190mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191{
3192#ifdef HAVE_CHECK_STACK_GROWTH
3193 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 check_stack_growth((char *)&i);
3196
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003197# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003198 get_stack_limit();
3199# endif
3200
3201#endif
3202
3203 /*
3204 * Setup an alternative stack for signals. Helps to catch signals when
3205 * running out of stack space.
3206 * Use of sigaltstack() is preferred, it's more portable.
3207 * Ignore any errors.
3208 */
3209#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003210 signal_stack = alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003211 init_signal_stack();
3212#endif
3213}
3214
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003215#if defined(EXITFREE) || defined(PROTO)
3216 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003217mch_free_mem(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003218{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003219# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
3220 if (clip_star.owned)
3221 clip_lose_selection(&clip_star);
3222 if (clip_plus.owned)
3223 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003224# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00003225# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003226 if (xterm_Shell != (Widget)0)
3227 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00003228# ifndef LESSTIF_VERSION
3229 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003230 if (xterm_dpy != NULL)
3231 XtCloseDisplay(xterm_dpy);
3232 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00003233 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003234 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00003235# ifdef FEAT_X11
3236 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
3237# endif
3238 }
3239# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003240# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003241# if defined(FEAT_X11)
Bram Moolenaare8208012008-06-20 09:59:25 +00003242 if (x11_display != NULL
3243# ifdef FEAT_XCLIPBOARD
3244 && x11_display != xterm_dpy
3245# endif
3246 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003247 XCloseDisplay(x11_display);
3248# endif
3249# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaard23a8232018-02-10 18:45:26 +01003250 VIM_CLEAR(signal_stack);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003251# endif
3252# ifdef FEAT_TITLE
3253 vim_free(oldtitle);
3254 vim_free(oldicon);
3255# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003256}
3257#endif
3258
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259/*
3260 * Output a newline when exiting.
3261 * Make sure the newline goes to the same stream as the text.
3262 */
3263 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003264exit_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003266 if (silent_mode)
3267 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 if (newline_on_exit || msg_didout)
3269 {
3270 if (msg_use_printf())
3271 {
3272 if (info_message)
3273 mch_msg("\n");
3274 else
3275 mch_errmsg("\r\n");
3276 }
3277 else
3278 out_char('\n');
3279 }
3280 else
3281 {
3282 restore_cterm_colors(); /* get original colors back */
3283 msg_clr_eos_force(); /* clear the rest of the display */
3284 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3285 }
3286}
3287
3288 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003289mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003290{
3291 exiting = TRUE;
3292
3293#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3294 x11_export_final_selection();
3295#endif
3296
3297#ifdef FEAT_GUI
3298 if (!gui.in_use)
3299#endif
3300 {
3301 settmode(TMODE_COOK);
3302#ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02003303 // restore xterm title and icon name
3304 mch_restore_title(SAVE_RESTORE_BOTH);
3305 term_pop_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003306#endif
3307 /*
3308 * When t_ti is not empty but it doesn't cause swapping terminal
3309 * pages, need to output a newline when msg_didout is set. But when
3310 * t_ti does swap pages it should not go to the shell page. Do this
3311 * before stoptermcap().
3312 */
3313 if (swapping_screen() && !newline_on_exit)
3314 exit_scroll();
3315
3316 /* Stop termcap: May need to check for T_CRV response, which
3317 * requires RAW mode. */
3318 stoptermcap();
3319
3320 /*
3321 * A newline is only required after a message in the alternate screen.
3322 * This is set to TRUE by wait_return().
3323 */
3324 if (!swapping_screen() || newline_on_exit)
3325 exit_scroll();
3326
3327 /* Cursor may have been switched off without calling starttermcap()
3328 * when doing "vim -u vimrc" and vimrc contains ":q". */
3329 if (full_screen)
3330 cursor_on();
3331 }
3332 out_flush();
3333 ml_close_all(TRUE); /* remove all memfiles */
3334 may_core_dump();
3335#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003337 gui_exit(r);
3338#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003339
Bram Moolenaar56718732006-03-15 22:53:57 +00003340#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003341 mac_conv_cleanup();
3342#endif
3343
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344#ifdef __QNX__
3345 /* A core dump won't be created if the signal handler
3346 * doesn't return, so we can't call exit() */
3347 if (deadly_signal != 0)
3348 return;
3349#endif
3350
Bram Moolenaar009b2592004-10-24 19:18:58 +00003351#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003352 netbeans_send_disconnect();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003353#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003354
3355#ifdef EXITFREE
3356 free_all_mem();
3357#endif
3358
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359 exit(r);
3360}
3361
3362 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003363may_core_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364{
3365 if (deadly_signal != 0)
3366 {
3367 signal(deadly_signal, SIG_DFL);
3368 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3369 }
3370}
3371
3372#ifndef VMS
3373
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003374/*
3375 * Get the file descriptor to use for tty operations.
3376 */
3377 static int
3378get_tty_fd(int fd)
3379{
3380 int tty_fd = fd;
3381
3382#if defined(HAVE_SVR4_PTYS) && defined(SUN_SYSTEM)
3383 // On SunOS: Get the terminal parameters from "fd", or the slave device of
3384 // "fd" when it is a master device.
3385 if (mch_isatty(fd) > 1)
3386 {
3387 char *name;
3388
3389 name = ptsname(fd);
3390 if (name == NULL)
3391 return -1;
3392
3393 tty_fd = open(name, O_RDONLY | O_NOCTTY | O_EXTRA, 0);
3394 if (tty_fd < 0)
3395 return -1;
3396 }
3397#endif
3398 return tty_fd;
3399}
3400
3401 static int
3402mch_tcgetattr(int fd, void *term)
3403{
3404 int tty_fd;
3405 int retval = -1;
3406
3407 tty_fd = get_tty_fd(fd);
3408 if (tty_fd >= 0)
3409 {
3410#ifdef NEW_TTY_SYSTEM
3411# ifdef HAVE_TERMIOS_H
3412 retval = tcgetattr(tty_fd, (struct termios *)term);
3413# else
3414 retval = ioctl(tty_fd, TCGETA, (struct termio *)term);
3415# endif
3416#else
3417 // for "old" tty systems
3418 retval = ioctl(tty_fd, TIOCGETP, (struct sgttyb *)term);
3419#endif
3420 if (tty_fd != fd)
3421 close(tty_fd);
3422 }
3423 return retval;
3424}
3425
Bram Moolenaar071d4272004-06-13 20:20:40 +00003426 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003427mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428{
3429 static int first = TRUE;
3430
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003431#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432# ifdef HAVE_TERMIOS_H
3433 static struct termios told;
3434 struct termios tnew;
3435# else
3436 static struct termio told;
3437 struct termio tnew;
3438# endif
3439
3440 if (first)
3441 {
3442 first = FALSE;
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003443 mch_tcgetattr(read_cmd_fd, &told);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003444 }
3445
3446 tnew = told;
3447 if (tmode == TMODE_RAW)
3448 {
3449 /*
3450 * ~ICRNL enables typing ^V^M
3451 */
3452 tnew.c_iflag &= ~ICRNL;
3453 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3454# if defined(IEXTEN) && !defined(__MINT__)
3455 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3456 /* but it breaks function keys on MINT */
3457# endif
3458 );
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02003459# ifdef ONLCR
3460 // Don't map NL -> CR NL, we do it ourselves.
3461 // Also disable expanding tabs if possible.
3462# ifdef XTABS
3463 tnew.c_oflag &= ~(ONLCR | XTABS);
3464# else
3465# ifdef TAB3
3466 tnew.c_oflag &= ~(ONLCR | TAB3);
3467# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468 tnew.c_oflag &= ~ONLCR;
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02003469# endif
3470# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471# endif
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02003472 tnew.c_cc[VMIN] = 1; // return after 1 char
3473 tnew.c_cc[VTIME] = 0; // don't wait
Bram Moolenaar071d4272004-06-13 20:20:40 +00003474 }
3475 else if (tmode == TMODE_SLEEP)
Bram Moolenaar40de4562016-07-01 15:03:46 +02003476 {
3477 /* Also reset ICANON here, otherwise on Solaris select() won't see
3478 * typeahead characters. */
3479 tnew.c_lflag &= ~(ICANON | ECHO);
3480 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3481 tnew.c_cc[VTIME] = 0; /* don't wait */
3482 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483
3484# if defined(HAVE_TERMIOS_H)
3485 {
3486 int n = 10;
3487
3488 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3489 * few times. */
3490 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3491 && errno == EINTR && n > 0)
3492 --n;
3493 }
3494# else
3495 ioctl(read_cmd_fd, TCSETA, &tnew);
3496# endif
3497
3498#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 /*
3500 * for "old" tty systems
3501 */
3502# ifndef TIOCSETN
3503# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3504# endif
3505 static struct sgttyb ttybold;
3506 struct sgttyb ttybnew;
3507
3508 if (first)
3509 {
3510 first = FALSE;
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003511 mch_tcgetattr(read_cmd_fd, &ttybold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003512 }
3513
3514 ttybnew = ttybold;
3515 if (tmode == TMODE_RAW)
3516 {
3517 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3518 ttybnew.sg_flags |= RAW;
3519 }
3520 else if (tmode == TMODE_SLEEP)
3521 ttybnew.sg_flags &= ~(ECHO);
3522 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3523#endif
3524 curr_tmode = tmode;
3525}
3526
3527/*
3528 * Try to get the code for "t_kb" from the stty setting
3529 *
3530 * Even if termcap claims a backspace key, the user's setting *should*
3531 * prevail. stty knows more about reality than termcap does, and if
3532 * somebody's usual erase key is DEL (which, for most BSD users, it will
3533 * be), they're going to get really annoyed if their erase key starts
3534 * doing forward deletes for no reason. (Eric Fischer)
3535 */
3536 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003537get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003538{
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003539 ttyinfo_T info;
3540 char_u buf[2];
3541 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003542
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003543 if (get_tty_info(read_cmd_fd, &info) == OK)
3544 {
3545 intr_char = info.interrupt;
3546 buf[0] = info.backspace;
3547 buf[1] = NUL;
3548 add_termcode((char_u *)"kb", buf, FALSE);
3549
3550 /* If <BS> and <DEL> are now the same, redefine <DEL>. */
3551 p = find_termcode((char_u *)"kD");
3552 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3553 do_fixdel(NULL);
3554 }
3555}
3556
3557/*
3558 * Obtain the characters that Backspace and Enter produce on "fd".
3559 * Returns OK or FAIL.
3560 */
3561 int
3562get_tty_info(int fd, ttyinfo_T *info)
3563{
3564#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565# ifdef HAVE_TERMIOS_H
3566 struct termios keys;
3567# else
3568 struct termio keys;
3569# endif
3570
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003571 if (mch_tcgetattr(fd, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003572 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003573 info->backspace = keys.c_cc[VERASE];
3574 info->interrupt = keys.c_cc[VINTR];
3575 if (keys.c_iflag & ICRNL)
3576 info->enter = NL;
3577 else
3578 info->enter = CAR;
3579 if (keys.c_oflag & ONLCR)
3580 info->nl_does_cr = TRUE;
3581 else
3582 info->nl_does_cr = FALSE;
3583 return OK;
3584 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585#else
3586 /* for "old" tty systems */
3587 struct sgttyb keys;
3588
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003589 if (mch_tcgetattr(fd, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003591 info->backspace = keys.sg_erase;
3592 info->interrupt = keys.sg_kill;
3593 info->enter = CAR;
3594 info->nl_does_cr = TRUE;
3595 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597#endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003598 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599}
3600
3601#endif /* VMS */
3602
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003603static int mouse_ison = FALSE;
3604
Bram Moolenaar071d4272004-06-13 20:20:40 +00003605/*
3606 * Set mouse clicks on or off.
3607 */
3608 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003609mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003610{
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003611#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003612 static int bevalterm_ison = FALSE;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003613#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003614 int xterm_mouse_vers;
3615
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003616#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaara06afc72018-08-27 23:24:16 +02003617 if (!on)
3618 // Make sure not tracing mouse movements. Important when a button-down
3619 // was received but no release yet.
3620 stop_xterm_trace();
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003621#endif
Bram Moolenaara06afc72018-08-27 23:24:16 +02003622
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003623 if (on == mouse_ison
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003624#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003625 && p_bevalterm == bevalterm_ison
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003626#endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003627 )
3628 /* return quickly if nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003629 return;
3630
3631 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003632
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003633#ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003634 if (ttym_flags == TTYM_URXVT)
3635 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003636 out_str_nf((char_u *)
3637 (on
3638 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3639 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003640 mouse_ison = on;
Bram Moolenaarc8427482011-10-20 21:09:35 +02003641 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003642#endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003643
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003644 if (ttym_flags == TTYM_SGR)
3645 {
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003646 /* SGR mode supports columns above 223 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003647 out_str_nf((char_u *)
3648 (on
3649 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3650 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003651 mouse_ison = on;
3652 }
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003653
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003654#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003655 if (bevalterm_ison != (p_bevalterm && on))
3656 {
3657 bevalterm_ison = (p_bevalterm && on);
3658 if (xterm_mouse_vers > 1 && !bevalterm_ison)
3659 /* disable mouse movement events, enabling is below */
3660 out_str_nf((char_u *)
3661 (IF_EB("\033[?1003l", ESC_STR "[?1003l")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003662 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003663#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003664
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 if (xterm_mouse_vers > 0)
3666 {
3667 if (on) /* enable mouse events, use mouse tracking if available */
3668 out_str_nf((char_u *)
3669 (xterm_mouse_vers > 1
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003670 ? (
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003671#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003672 bevalterm_ison
3673 ? IF_EB("\033[?1003h", ESC_STR "[?1003h") :
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003674#endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003675 IF_EB("\033[?1002h", ESC_STR "[?1002h"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3677 else /* disable mouse events, could probably always send the same */
3678 out_str_nf((char_u *)
3679 (xterm_mouse_vers > 1
3680 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3681 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003682 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 }
3684
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003685#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 else if (ttym_flags == TTYM_DEC)
3687 {
3688 if (on) /* enable mouse events */
3689 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3690 else /* disable mouse events */
3691 out_str_nf((char_u *)"\033['z");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003692 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003694#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003696#ifdef FEAT_MOUSE_GPM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697 else
3698 {
3699 if (on)
3700 {
3701 if (gpm_open())
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003702 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003703 }
3704 else
3705 {
3706 gpm_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003707 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 }
3709 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003710#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003712#ifdef FEAT_SYSMOUSE
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003713 else
3714 {
3715 if (on)
3716 {
3717 if (sysmouse_open() == OK)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003718 mouse_ison = TRUE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003719 }
3720 else
3721 {
3722 sysmouse_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003723 mouse_ison = FALSE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003724 }
3725 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003726#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003727
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003728#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00003729 else
3730 {
3731 if (on)
3732 {
3733 /* D - Enable Mouse up/down messages
3734 * L - Enable Left Button Reporting
3735 * M - Enable Middle Button Reporting
3736 * R - Enable Right Button Reporting
3737 * K - Enable SHIFT and CTRL key Reporting
3738 * + - Enable Advanced messaging of mouse moves and up/down messages
3739 * Q - Quiet No Ack
3740 * # - Numeric value of mouse pointer required
3741 * 0 = Multiview 2000 cursor, used as standard
3742 * 1 = Windows Arrow
3743 * 2 = Windows I Beam
3744 * 3 = Windows Hour Glass
3745 * 4 = Windows Cross Hair
3746 * 5 = Windows UP Arrow
3747 */
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003748# ifdef JSBTERM_MOUSE_NONADVANCED
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003749 /* Disables full feedback of pointer movements */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003750 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3751 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003752# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3754 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003755# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003756 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003757 }
3758 else
3759 {
3760 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3761 ESC_STR "[0~ZwQ" ESC_STR "\\"));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003762 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 }
3764 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003765#endif
3766#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 else
3768 {
3769 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3770 if (on)
3771 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3772 else
3773 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003774 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003776#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003777}
3778
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003779#if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003780/*
3781 * Called when 'balloonevalterm' changed.
3782 */
3783 void
3784mch_bevalterm_changed(void)
3785{
3786 mch_setmouse(mouse_ison);
3787}
3788#endif
3789
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790/*
3791 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3792 */
3793 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003794check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795{
3796# ifdef FEAT_MOUSE_XTERM
3797 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003798# ifdef FEAT_MOUSE_URXVT
3799 && use_xterm_mouse() != 3
3800# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003801# ifdef FEAT_GUI
3802 && !gui.in_use
3803# endif
3804 )
3805 {
3806 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003807 ? IF_EB("\233M", CSI_STR "M")
3808 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 if (*p_mouse != NUL)
3810 {
3811 /* force mouse off and maybe on to send possibly new mouse
3812 * activation sequence to the xterm, with(out) drag tracing. */
3813 mch_setmouse(FALSE);
3814 setmouse();
3815 }
3816 }
3817 else
3818 del_mouse_termcode(KS_MOUSE);
3819# endif
3820
3821# ifdef FEAT_MOUSE_GPM
3822 if (!use_xterm_mouse()
3823# ifdef FEAT_GUI
3824 && !gui.in_use
3825# endif
3826 )
Bram Moolenaarbedf0912019-05-04 16:58:45 +02003827 set_mouse_termcode(KS_GPM_MOUSE,
3828 (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3829 else
3830 del_mouse_termcode(KS_GPM_MOUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831# endif
3832
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003833# ifdef FEAT_SYSMOUSE
3834 if (!use_xterm_mouse()
3835# ifdef FEAT_GUI
3836 && !gui.in_use
3837# endif
3838 )
3839 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3840# endif
3841
Bram Moolenaar071d4272004-06-13 20:20:40 +00003842# ifdef FEAT_MOUSE_JSB
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003843 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 if (!use_xterm_mouse()
3845# ifdef FEAT_GUI
3846 && !gui.in_use
3847# endif
3848 )
3849 set_mouse_termcode(KS_JSBTERM_MOUSE,
3850 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3851 else
3852 del_mouse_termcode(KS_JSBTERM_MOUSE);
3853# endif
3854
3855# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003856 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 * define it in the GUI or when using an xterm. */
3858 if (!use_xterm_mouse()
3859# ifdef FEAT_GUI
3860 && !gui.in_use
3861# endif
3862 )
3863 set_mouse_termcode(KS_NETTERM_MOUSE,
3864 (char_u *)IF_EB("\033}", ESC_STR "}"));
3865 else
3866 del_mouse_termcode(KS_NETTERM_MOUSE);
3867# endif
3868
3869# ifdef FEAT_MOUSE_DEC
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003870 /* Conflicts with xterm mouse: "\033[" and "\033[M" */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003871 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872# ifdef FEAT_GUI
3873 && !gui.in_use
3874# endif
3875 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003876 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3877 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003878 else
3879 del_mouse_termcode(KS_DEC_MOUSE);
3880# endif
3881# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003882 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003883 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884# ifdef FEAT_GUI
3885 && !gui.in_use
3886# endif
3887 )
3888 set_mouse_termcode(KS_PTERM_MOUSE,
3889 (char_u *) IF_EB("\033[", ESC_STR "["));
3890 else
3891 del_mouse_termcode(KS_PTERM_MOUSE);
3892# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003893# ifdef FEAT_MOUSE_URXVT
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003894 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003895# ifdef FEAT_GUI
3896 && !gui.in_use
3897# endif
3898 )
3899 {
3900 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003901 ? IF_EB("\233*M", CSI_STR "*M")
3902 : IF_EB("\033[*M", ESC_STR "[*M")));
Bram Moolenaarc8427482011-10-20 21:09:35 +02003903
3904 if (*p_mouse != NUL)
3905 {
3906 mch_setmouse(FALSE);
3907 setmouse();
3908 }
3909 }
3910 else
3911 del_mouse_termcode(KS_URXVT_MOUSE);
3912# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003913 if (use_xterm_mouse() == 4
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01003914# ifdef FEAT_GUI
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003915 && !gui.in_use
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01003916# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003917 )
3918 {
3919 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003920 ? IF_EB("\233<*M", CSI_STR "<*M")
3921 : IF_EB("\033[<*M", ESC_STR "[<*M")));
3922
3923 set_mouse_termcode(KS_SGR_MOUSE_RELEASE, (char_u *)(term_is_8bit(T_NAME)
3924 ? IF_EB("\233<*m", CSI_STR "<*m")
3925 : IF_EB("\033[<*m", ESC_STR "[<*m")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003926
3927 if (*p_mouse != NUL)
3928 {
3929 mch_setmouse(FALSE);
3930 setmouse();
3931 }
3932 }
3933 else
Bram Moolenaara529ce02017-06-22 22:37:57 +02003934 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003935 del_mouse_termcode(KS_SGR_MOUSE);
Bram Moolenaara529ce02017-06-22 22:37:57 +02003936 del_mouse_termcode(KS_SGR_MOUSE_RELEASE);
3937 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939
3940/*
3941 * set screen mode, always fails.
3942 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003944mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003946 emsg(_(e_screenmode));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 return FAIL;
3948}
3949
3950#ifndef VMS
3951
3952/*
3953 * Try to get the current window size:
3954 * 1. with an ioctl(), most accurate method
3955 * 2. from the environment variables LINES and COLUMNS
3956 * 3. from the termcap
3957 * 4. keep using the old values
3958 * Return OK when size could be determined, FAIL otherwise.
3959 */
3960 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003961mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962{
3963 long rows = 0;
3964 long columns = 0;
3965 char_u *p;
3966
3967 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 * 1. try using an ioctl. It is the most accurate method.
3969 *
3970 * Try using TIOCGWINSZ first, some systems that have it also define
3971 * TIOCGSIZE but don't have a struct ttysize.
3972 */
3973# ifdef TIOCGWINSZ
3974 {
3975 struct winsize ws;
3976 int fd = 1;
3977
3978 /* When stdout is not a tty, use stdin for the ioctl(). */
3979 if (!isatty(fd) && isatty(read_cmd_fd))
3980 fd = read_cmd_fd;
3981 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3982 {
3983 columns = ws.ws_col;
3984 rows = ws.ws_row;
3985 }
3986 }
3987# else /* TIOCGWINSZ */
3988# ifdef TIOCGSIZE
3989 {
3990 struct ttysize ts;
3991 int fd = 1;
3992
3993 /* When stdout is not a tty, use stdin for the ioctl(). */
3994 if (!isatty(fd) && isatty(read_cmd_fd))
3995 fd = read_cmd_fd;
3996 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3997 {
3998 columns = ts.ts_cols;
3999 rows = ts.ts_lines;
4000 }
4001 }
4002# endif /* TIOCGSIZE */
4003# endif /* TIOCGWINSZ */
4004
4005 /*
4006 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004007 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
4008 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004010 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 {
4012 if ((p = (char_u *)getenv("LINES")))
4013 rows = atoi((char *)p);
4014 if ((p = (char_u *)getenv("COLUMNS")))
4015 columns = atoi((char *)p);
4016 }
4017
4018#ifdef HAVE_TGETENT
4019 /*
4020 * 3. try reading "co" and "li" entries from termcap
4021 */
4022 if (columns == 0 || rows == 0)
4023 getlinecol(&columns, &rows);
4024#endif
4025
4026 /*
4027 * 4. If everything fails, use the old values
4028 */
4029 if (columns <= 0 || rows <= 0)
4030 return FAIL;
4031
4032 Rows = rows;
4033 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02004034 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035 return OK;
4036}
4037
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004038#if defined(FEAT_TERMINAL) || defined(PROTO)
4039/*
4040 * Report the windows size "rows" and "cols" to tty "fd".
4041 */
4042 int
4043mch_report_winsize(int fd, int rows, int cols)
4044{
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004045 int tty_fd;
4046 int retval = -1;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004047
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004048 tty_fd = get_tty_fd(fd);
4049 if (tty_fd >= 0)
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004050 {
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004051# if defined(TIOCSWINSZ)
4052 struct winsize ws;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004053
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004054 ws.ws_col = cols;
4055 ws.ws_row = rows;
4056 ws.ws_xpixel = cols * 5;
4057 ws.ws_ypixel = rows * 10;
4058 retval = ioctl(tty_fd, TIOCSWINSZ, &ws);
4059 ch_log(NULL, "ioctl(TIOCSWINSZ) %s",
4060 retval == 0 ? "success" : "failed");
4061# elif defined(TIOCSSIZE)
4062 struct ttysize ts;
4063
4064 ts.ts_cols = cols;
4065 ts.ts_lines = rows;
4066 retval = ioctl(tty_fd, TIOCSSIZE, &ts);
4067 ch_log(NULL, "ioctl(TIOCSSIZE) %s",
4068 retval == 0 ? "success" : "failed");
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004069# endif
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004070 if (tty_fd != fd)
4071 close(tty_fd);
4072 }
4073 return retval == 0 ? OK : FAIL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004074}
4075#endif
4076
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077/*
4078 * Try to set the window size to Rows and Columns.
4079 */
4080 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004081mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004082{
4083 if (*T_CWS)
4084 {
4085 /*
4086 * NOTE: if you get an error here that term_set_winsize() is
4087 * undefined, check the output of configure. It could probably not
4088 * find a ncurses, termcap or termlib library.
4089 */
4090 term_set_winsize((int)Rows, (int)Columns);
4091 out_flush();
4092 screen_start(); /* don't know where cursor is now */
4093 }
4094}
4095
4096#endif /* VMS */
4097
4098/*
4099 * Rows and/or Columns has changed.
4100 */
4101 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004102mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004103{
4104 /* Nothing to do. */
4105}
4106
Bram Moolenaar205b8862011-09-07 15:04:31 +02004107/*
4108 * Wait for process "child" to end.
4109 * Return "child" if it exited properly, <= 0 on error.
4110 */
4111 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01004112wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02004113{
4114 pid_t wait_pid = 0;
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004115 long delay_msec = 1;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004116
4117 while (wait_pid != child)
4118 {
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004119 /* When compiled with Python threads are probably used, in which case
4120 * wait() sometimes hangs for no obvious reason. Use waitpid()
4121 * instead and loop (like the GUI). Also needed for other interfaces,
4122 * they might call system(). */
4123# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004124 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004125# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02004126 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004127# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02004128 if (wait_pid == 0)
4129 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004130 /* Wait for 1 to 10 msec before trying again. */
4131 mch_delay(delay_msec, TRUE);
4132 if (++delay_msec > 10)
4133 delay_msec = 10;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004134 continue;
4135 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004136 if (wait_pid <= 0
4137# ifdef ECHILD
4138 && errno == ECHILD
4139# endif
4140 )
4141 break;
4142 }
4143 return wait_pid;
4144}
4145
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004146#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar7da34602017-08-01 17:14:21 +02004147/*
4148 * Set the environment for a child process.
4149 */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004150 static void
Bram Moolenaar493359e2018-06-12 20:25:52 +02004151set_child_environment(
4152 long rows,
4153 long columns,
4154 char *term,
4155 int is_terminal UNUSED)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004156{
4157# ifdef HAVE_SETENV
4158 char envbuf[50];
4159# else
Bram Moolenaar5f7e7bd2017-07-22 14:08:43 +02004160 static char envbuf_Term[30];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004161 static char envbuf_Rows[20];
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004162 static char envbuf_Lines[20];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004163 static char envbuf_Columns[20];
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004164 static char envbuf_Colors[20];
Bram Moolenaar493359e2018-06-12 20:25:52 +02004165# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02004166 static char envbuf_Version[20];
Bram Moolenaar493359e2018-06-12 20:25:52 +02004167# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004168# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004169 static char envbuf_Servername[60];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004170# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004171# endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004172 long colors =
4173# ifdef FEAT_GUI
4174 gui.in_use ? 256*256*256 :
4175# endif
4176 t_colors;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004177
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004178# ifdef HAVE_SETENV
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004179 setenv("TERM", term, 1);
4180 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004181 setenv("ROWS", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004182 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004183 setenv("LINES", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004184 sprintf((char *)envbuf, "%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004185 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004186 sprintf((char *)envbuf, "%ld", colors);
4187 setenv("COLORS", (char *)envbuf, 1);
Bram Moolenaar493359e2018-06-12 20:25:52 +02004188# ifdef FEAT_TERMINAL
4189 if (is_terminal)
4190 {
Bram Moolenaar5ecdf962018-06-13 20:49:50 +02004191 sprintf((char *)envbuf, "%ld", (long)get_vim_var_nr(VV_VERSION));
Bram Moolenaar493359e2018-06-12 20:25:52 +02004192 setenv("VIM_TERMINAL", (char *)envbuf, 1);
4193 }
4194# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004195# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004196 setenv("VIM_SERVERNAME", serverName == NULL ? "" : (char *)serverName, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004197# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004198# else
4199 /*
4200 * Putenv does not copy the string, it has to remain valid.
4201 * Use a static array to avoid losing allocated memory.
Bram Moolenaar7da34602017-08-01 17:14:21 +02004202 * This won't work well when running multiple children...
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004203 */
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004204 vim_snprintf(envbuf_Term, sizeof(envbuf_Term), "TERM=%s", term);
4205 putenv(envbuf_Term);
4206 vim_snprintf(envbuf_Rows, sizeof(envbuf_Rows), "ROWS=%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004207 putenv(envbuf_Rows);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004208 vim_snprintf(envbuf_Lines, sizeof(envbuf_Lines), "LINES=%ld", rows);
4209 putenv(envbuf_Lines);
4210 vim_snprintf(envbuf_Columns, sizeof(envbuf_Columns),
4211 "COLUMNS=%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004212 putenv(envbuf_Columns);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004213 vim_snprintf(envbuf_Colors, sizeof(envbuf_Colors), "COLORS=%ld", colors);
4214 putenv(envbuf_Colors);
Bram Moolenaar493359e2018-06-12 20:25:52 +02004215# ifdef FEAT_TERMINAL
4216 if (is_terminal)
4217 {
4218 vim_snprintf(envbuf_Version, sizeof(envbuf_Version),
Bram Moolenaar5ecdf962018-06-13 20:49:50 +02004219 "VIM_TERMINAL=%ld", (long)get_vim_var_nr(VV_VERSION));
Bram Moolenaar493359e2018-06-12 20:25:52 +02004220 putenv(envbuf_Version);
4221 }
4222# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004223# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004224 vim_snprintf(envbuf_Servername, sizeof(envbuf_Servername),
4225 "VIM_SERVERNAME=%s", serverName == NULL ? "" : (char *)serverName);
4226 putenv(envbuf_Servername);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004227# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004228# endif
4229}
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004230
4231 static void
Bram Moolenaar493359e2018-06-12 20:25:52 +02004232set_default_child_environment(int is_terminal)
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004233{
Bram Moolenaar493359e2018-06-12 20:25:52 +02004234 set_child_environment(Rows, Columns, "dumb", is_terminal);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004235}
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004236#endif
4237
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004238#if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004239/*
4240 * Open a PTY, with FD for the master and slave side.
4241 * When failing "pty_master_fd" and "pty_slave_fd" are -1.
Bram Moolenaar59386482019-02-10 22:43:46 +01004242 * When successful both file descriptors are stored and the allocated pty name
4243 * is stored in both "*name1" and "*name2".
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004244 */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004245 static void
Bram Moolenaar59386482019-02-10 22:43:46 +01004246open_pty(int *pty_master_fd, int *pty_slave_fd, char_u **name1, char_u **name2)
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004247{
4248 char *tty_name;
4249
Bram Moolenaar59386482019-02-10 22:43:46 +01004250 if (name1 != NULL)
4251 *name1 = NULL;
4252 if (name2 != NULL)
4253 *name2 = NULL;
4254
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004255 *pty_master_fd = mch_openpty(&tty_name); // open pty
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004256 if (*pty_master_fd >= 0)
4257 {
4258 /* Leaving out O_NOCTTY may lead to waitpid() always returning
4259 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4260 * adding O_NOCTTY always works when defined. */
4261#ifdef O_NOCTTY
4262 *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4263#else
4264 *pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4265#endif
4266 if (*pty_slave_fd < 0)
4267 {
4268 close(*pty_master_fd);
4269 *pty_master_fd = -1;
4270 }
Bram Moolenaar59386482019-02-10 22:43:46 +01004271 else
4272 {
4273 if (name1 != NULL)
4274 *name1 = vim_strsave((char_u *)tty_name);
4275 if (name2 != NULL)
4276 *name2 = vim_strsave((char_u *)tty_name);
4277 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004278 }
4279}
4280#endif
4281
Bram Moolenaarfae42832017-08-01 22:24:26 +02004282/*
4283 * Send SIGINT to a child process if "c" is an interrupt character.
4284 */
Bram Moolenaar840d16f2019-09-10 21:27:18 +02004285 static void
Bram Moolenaarfae42832017-08-01 22:24:26 +02004286may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED)
4287{
4288# ifdef SIGINT
4289 if (c == Ctrl_C || c == intr_char)
4290 {
4291# ifdef HAVE_SETSID
4292 kill(-pid, SIGINT);
4293# else
4294 kill(0, SIGINT);
4295# endif
4296 if (wpid > 0)
4297 kill(wpid, SIGINT);
4298 }
4299# endif
4300}
4301
Bram Moolenaar13568252018-03-16 20:46:58 +01004302#if !defined(USE_SYSTEM) || (defined(FEAT_GUI) && defined(FEAT_TERMINAL))
4303
4304 static int
4305build_argv(
4306 char_u *cmd,
4307 char ***argvp,
4308 char_u **sh_tofree,
4309 char_u **shcf_tofree)
4310{
4311 char **argv = NULL;
4312 int argc;
4313
4314 *sh_tofree = vim_strsave(p_sh);
4315 if (*sh_tofree == NULL) /* out of memory */
4316 return FAIL;
4317
4318 if (mch_parse_cmd(*sh_tofree, TRUE, &argv, &argc) == FAIL)
4319 return FAIL;
4320 *argvp = argv;
4321
4322 if (cmd != NULL)
4323 {
4324 char_u *s;
4325 char_u *p;
4326
4327 if (extra_shell_arg != NULL)
4328 argv[argc++] = (char *)extra_shell_arg;
4329
4330 /* Break 'shellcmdflag' into white separated parts. This doesn't
4331 * handle quoted strings, they are very unlikely to appear. */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004332 *shcf_tofree = alloc(STRLEN(p_shcf) + 1);
Bram Moolenaar13568252018-03-16 20:46:58 +01004333 if (*shcf_tofree == NULL) /* out of memory */
4334 return FAIL;
4335 s = *shcf_tofree;
4336 p = p_shcf;
4337 while (*p != NUL)
4338 {
4339 argv[argc++] = (char *)s;
4340 while (*p && *p != ' ' && *p != TAB)
4341 *s++ = *p++;
4342 *s++ = NUL;
4343 p = skipwhite(p);
4344 }
4345
4346 argv[argc++] = (char *)cmd;
4347 }
4348 argv[argc] = NULL;
4349 return OK;
4350}
4351#endif
4352
4353#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4354/*
4355 * Use a terminal window to run a shell command in.
4356 */
4357 static int
4358mch_call_shell_terminal(
4359 char_u *cmd,
4360 int options UNUSED) /* SHELL_*, see vim.h */
4361{
4362 jobopt_T opt;
4363 char **argv = NULL;
4364 char_u *tofree1 = NULL;
4365 char_u *tofree2 = NULL;
4366 int retval = -1;
4367 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004368 job_T *job;
Bram Moolenaar13568252018-03-16 20:46:58 +01004369 aco_save_T aco;
4370 oparg_T oa; /* operator arguments */
4371
4372 if (build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
4373 goto theend;
4374
4375 init_job_options(&opt);
4376 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4377 buf = term_start(NULL, argv, &opt, TERM_START_SYSTEM);
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004378 if (buf == NULL)
4379 goto theend;
4380
4381 job = term_getjob(buf->b_term);
4382 ++job->jv_refcount;
Bram Moolenaar13568252018-03-16 20:46:58 +01004383
4384 /* Find a window to make "buf" curbuf. */
4385 aucmd_prepbuf(&aco, buf);
4386
4387 clear_oparg(&oa);
4388 while (term_use_loop())
4389 {
4390 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4391 {
4392 /* If terminal_loop() returns OK we got a key that is handled
4393 * in Normal model. We don't do redrawing anyway. */
4394 if (terminal_loop(TRUE) == OK)
4395 normal_cmd(&oa, TRUE);
4396 }
4397 else
4398 normal_cmd(&oa, TRUE);
4399 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004400 retval = job->jv_exitval;
Bram Moolenaar13568252018-03-16 20:46:58 +01004401 ch_log(NULL, "system command finished");
4402
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004403 job_unref(job);
4404
Bram Moolenaar13568252018-03-16 20:46:58 +01004405 /* restore curwin/curbuf and a few other things */
4406 aucmd_restbuf(&aco);
4407
4408 wait_return(TRUE);
4409 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4410
4411theend:
4412 vim_free(argv);
4413 vim_free(tofree1);
4414 vim_free(tofree2);
4415 return retval;
4416}
4417#endif
4418
4419#ifdef USE_SYSTEM
4420/*
4421 * Use system() to start the shell: simple but slow.
4422 */
4423 static int
4424mch_call_shell_system(
Bram Moolenaar05540972016-01-30 20:31:25 +01004425 char_u *cmd,
4426 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427{
4428#ifdef VMS
4429 char *ifn = NULL;
4430 char *ofn = NULL;
4431#endif
4432 int tmode = cur_tmode;
Bram Moolenaarb2b050a2016-07-16 21:52:46 +02004433 char_u *newcmd; /* only needed for unix */
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01004434 int x;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435
4436 out_flush();
4437
4438 if (options & SHELL_COOKED)
4439 settmode(TMODE_COOK); /* set to normal mode */
4440
Bram Moolenaar62b42182010-09-21 22:09:37 +02004441# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004442 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004443 loose_clipboard();
4444# endif
4445
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446 if (cmd == NULL)
4447 x = system((char *)p_sh);
4448 else
4449 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004450# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 if (ofn = strchr((char *)cmd, '>'))
4452 *ofn++ = '\0';
4453 if (ifn = strchr((char *)cmd, '<'))
4454 {
4455 char *p;
4456
4457 *ifn++ = '\0';
4458 p = strchr(ifn,' '); /* chop off any trailing spaces */
4459 if (p)
4460 *p = '\0';
4461 }
4462 if (ofn)
4463 x = vms_sys((char *)cmd, ofn, ifn);
4464 else
4465 x = system((char *)cmd);
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004466# else
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004467 newcmd = alloc(STRLEN(p_sh)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004469 + STRLEN(p_shcf) + STRLEN(cmd) + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004470 if (newcmd == NULL)
4471 x = 0;
4472 else
4473 {
4474 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4475 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4476 (char *)p_shcf,
4477 (char *)cmd);
4478 x = system((char *)newcmd);
4479 vim_free(newcmd);
4480 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004481# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482 }
4483# ifdef VMS
4484 x = vms_sys_status(x);
4485# endif
4486 if (emsg_silent)
4487 ;
4488 else if (x == 127)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004489 msg_puts(_("\nCannot execute shell sh\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 else if (x && !(options & SHELL_SILENT))
4491 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004492 msg_puts(_("\nshell returned "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 msg_outnum((long)x);
4494 msg_putchar('\n');
4495 }
4496
4497 if (tmode == TMODE_RAW)
4498 settmode(TMODE_RAW); /* set to raw mode */
4499# ifdef FEAT_TITLE
4500 resettitle();
4501# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004502# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4503 restore_clipboard();
4504# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004505 return x;
Bram Moolenaar13568252018-03-16 20:46:58 +01004506}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004507
Bram Moolenaar13568252018-03-16 20:46:58 +01004508#else /* USE_SYSTEM */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509
Bram Moolenaardf177f62005-02-22 08:39:57 +00004510# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
4511 127, some shells use that already */
Bram Moolenaarb109bb42017-08-21 21:07:29 +02004512# define OPEN_NULL_FAILED 123 /* Exit code if /dev/null can't be opened */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513
Bram Moolenaar13568252018-03-16 20:46:58 +01004514/*
4515 * Don't use system(), use fork()/exec().
4516 */
4517 static int
4518mch_call_shell_fork(
4519 char_u *cmd,
4520 int options) /* SHELL_*, see vim.h */
4521{
4522 int tmode = cur_tmode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004523 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004524 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 pid_t wait_pid = 0;
4526# ifdef HAVE_UNION_WAIT
4527 union wait status;
4528# else
4529 int status = -1;
4530# endif
4531 int retval = -1;
4532 char **argv = NULL;
Bram Moolenaar13568252018-03-16 20:46:58 +01004533 char_u *tofree1 = NULL;
4534 char_u *tofree2 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004537# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 int pty_slave_fd = -1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004539# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004540 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 int fd_fromshell[2];
4542 int pipe_error = FALSE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004543 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004544
4545 out_flush();
4546 if (options & SHELL_COOKED)
4547 settmode(TMODE_COOK); /* set to normal mode */
4548
Bram Moolenaar13568252018-03-16 20:46:58 +01004549 if (build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
Bram Moolenaar835dc632016-02-07 14:27:38 +01004550 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004551
Bram Moolenaar071d4272004-06-13 20:20:40 +00004552 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004553 * For the GUI, when writing the output into the buffer and when reading
4554 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4555 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004556 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004557 if ((options & (SHELL_READ|SHELL_WRITE))
4558# ifdef FEAT_GUI
4559 || (gui.in_use && show_shell_mess)
4560# endif
4561 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004563# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004564 /*
4565 * Try to open a master pty.
4566 * If this works, open the slave pty.
4567 * If the slave can't be opened, close the master pty.
4568 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004569 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar59386482019-02-10 22:43:46 +01004570 open_pty(&pty_master_fd, &pty_slave_fd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 /*
4572 * If not opening a pty or it didn't work, try using pipes.
4573 */
4574 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004575# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004576 {
4577 pipe_error = (pipe(fd_toshell) < 0);
4578 if (!pipe_error) /* pipe create OK */
4579 {
4580 pipe_error = (pipe(fd_fromshell) < 0);
4581 if (pipe_error) /* pipe create failed */
4582 {
4583 close(fd_toshell[0]);
4584 close(fd_toshell[1]);
4585 }
4586 }
4587 if (pipe_error)
4588 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004589 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 out_flush();
4591 }
4592 }
4593 }
4594
4595 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004596 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004597 SIGSET_DECL(curset)
4598
Bram Moolenaar071d4272004-06-13 20:20:40 +00004599# ifdef __BEOS__
4600 beos_cleanup_read_thread();
4601# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004602
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004603 BLOCK_SIGNALS(&curset);
4604 pid = fork(); /* maybe we should use vfork() */
4605 if (pid == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004607 UNBLOCK_SIGNALS(&curset);
4608
Bram Moolenaar32526b32019-01-19 17:43:09 +01004609 msg_puts(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004610 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004611# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004612 || (gui.in_use && show_shell_mess)
4613# endif
4614 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004616# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617 if (pty_master_fd >= 0) /* close the pseudo tty */
4618 {
4619 close(pty_master_fd);
4620 close(pty_slave_fd);
4621 }
4622 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004623# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 {
4625 close(fd_toshell[0]);
4626 close(fd_toshell[1]);
4627 close(fd_fromshell[0]);
4628 close(fd_fromshell[1]);
4629 }
4630 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004631 }
4632 else if (pid == 0) /* child */
4633 {
4634 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004635 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636
Bram Moolenaar819524702018-02-27 19:10:00 +01004637# ifdef FEAT_JOB_CHANNEL
4638 if (ch_log_active())
4639 /* close the log file in the child */
4640 ch_logfile((char_u *)"", (char_u *)"");
4641# endif
4642
Bram Moolenaar071d4272004-06-13 20:20:40 +00004643 if (!show_shell_mess || (options & SHELL_EXPAND))
4644 {
4645 int fd;
4646
4647 /*
4648 * Don't want to show any message from the shell. Can't just
4649 * close stdout and stderr though, because some systems will
4650 * break if you try to write to them after that, so we must
4651 * use dup() to replace them with something else -- webb
4652 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4653 * waiting for input.
4654 */
4655 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4656 fclose(stdin);
4657 fclose(stdout);
4658 fclose(stderr);
4659
4660 /*
4661 * If any of these open()'s and dup()'s fail, we just continue
4662 * anyway. It's not fatal, and on most systems it will make
4663 * no difference at all. On a few it will cause the execvp()
4664 * to exit with a non-zero status even when the completion
4665 * could be done, which is nothing too serious. If the open()
4666 * or dup() failed we'd just do the same thing ourselves
4667 * anyway -- webb
4668 */
4669 if (fd >= 0)
4670 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02004671 vim_ignored = dup(fd); /* To replace stdin (fd 0) */
4672 vim_ignored = dup(fd); /* To replace stdout (fd 1) */
4673 vim_ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674
4675 /* Don't need this now that we've duplicated it */
4676 close(fd);
4677 }
4678 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004679 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004681 || gui.in_use
4682# endif
4683 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 {
4685
Bram Moolenaardf177f62005-02-22 08:39:57 +00004686# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004687 /* Create our own process group, so that the child and all its
4688 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004689 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004690 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004691 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004692 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004693# if defined(SIGHUP)
4694 /* When doing "!xterm&" and 'shell' is bash: the shell
4695 * will exit and send SIGHUP to all processes in its
4696 * group, killing the just started process. Ignore SIGHUP
4697 * to avoid that. (suggested by Simon Schubert)
4698 */
4699 signal(SIGHUP, SIG_IGN);
4700# endif
4701 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004702# endif
4703# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004704 if (pty_slave_fd >= 0)
4705 {
4706 /* push stream discipline modules */
4707 if (options & SHELL_COOKED)
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004708 setup_slavepty(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004710 /* Try to become controlling tty (probably doesn't work,
4711 * unless run by root) */
4712 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004714 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004715# endif
Bram Moolenaar493359e2018-06-12 20:25:52 +02004716 set_default_child_environment(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717
Bram Moolenaara5792f52005-11-23 21:25:05 +00004718 /*
4719 * stderr is only redirected when using the GUI, so that a
4720 * program like gpg can still access the terminal to get a
4721 * passphrase using stderr.
4722 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004723# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 if (pty_master_fd >= 0)
4725 {
4726 close(pty_master_fd); /* close master side of pty */
4727
4728 /* set up stdin/stdout/stderr for the child */
4729 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004730 vim_ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 close(1);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004732 vim_ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004733 if (gui.in_use)
4734 {
4735 close(2);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004736 vim_ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004737 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738
4739 close(pty_slave_fd); /* has been dupped, close it now */
4740 }
4741 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004742# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 {
4744 /* set up stdin for the child */
4745 close(fd_toshell[1]);
4746 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004747 vim_ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 close(fd_toshell[0]);
4749
4750 /* set up stdout for the child */
4751 close(fd_fromshell[0]);
4752 close(1);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004753 vim_ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 close(fd_fromshell[1]);
4755
Bram Moolenaara5792f52005-11-23 21:25:05 +00004756# ifdef FEAT_GUI
4757 if (gui.in_use)
4758 {
4759 /* set up stderr for the child */
4760 close(2);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004761 vim_ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004762 }
4763# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004764 }
4765 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004766
Bram Moolenaar071d4272004-06-13 20:20:40 +00004767 /*
4768 * There is no type cast for the argv, because the type may be
4769 * different on different machines. This may cause a warning
4770 * message with strict compilers, don't worry about it.
4771 * Call _exit() instead of exit() to avoid closing the connection
4772 * to the X server (esp. with GTK, which uses atexit()).
4773 */
4774 execvp(argv[0], argv);
4775 _exit(EXEC_FAILED); /* exec failed, return failure code */
4776 }
4777 else /* parent */
4778 {
4779 /*
4780 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004781 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 */
4783 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004784 catch_int_signal();
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004785 UNBLOCK_SIGNALS(&curset);
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01004786# ifdef FEAT_JOB_CHANNEL
4787 ++dont_check_job_ended;
4788# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 /*
4790 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004791 * This is also used to pipe stdin/stdout to/from the external
4792 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004794 if ((options & (SHELL_READ|SHELL_WRITE))
4795# ifdef FEAT_GUI
4796 || (gui.in_use && show_shell_mess)
4797# endif
4798 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004800# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004801 char_u buffer[BUFLEN + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4804 int ta_len = 0; /* valid bytes in ta_buf[] */
4805 int len;
4806 int p_more_save;
4807 int old_State;
4808 int c;
4809 int toshell_fd;
4810 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004811 garray_T ga;
4812 int noread_cnt;
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01004813# ifdef ELAPSED_FUNC
4814 elapsed_T start_tv;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004815# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816
Bram Moolenaardf177f62005-02-22 08:39:57 +00004817# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 if (pty_master_fd >= 0)
4819 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004820 fromshell_fd = pty_master_fd;
4821 toshell_fd = dup(pty_master_fd);
4822 }
4823 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004824# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825 {
4826 close(fd_toshell[0]);
4827 close(fd_fromshell[1]);
4828 toshell_fd = fd_toshell[1];
4829 fromshell_fd = fd_fromshell[0];
4830 }
4831
4832 /*
4833 * Write to the child if there are typed characters.
4834 * Read from the child if there are characters available.
4835 * Repeat the reading a few times if more characters are
4836 * available. Need to check for typed keys now and then, but
4837 * not too often (delays when no chars are available).
4838 * This loop is quit if no characters can be read from the pty
4839 * (WaitForChar detected special condition), or there are no
4840 * characters available and the child has exited.
4841 * Only check if the child has exited when there is no more
4842 * output. The child may exit before all the output has
4843 * been printed.
4844 *
4845 * Currently this busy loops!
4846 * This can probably dead-lock when the write blocks!
4847 */
4848 p_more_save = p_more;
4849 p_more = FALSE;
4850 old_State = State;
4851 State = EXTERNCMD; /* don't redraw at window resize */
4852
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004853 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004854 {
4855 /* Fork a process that will write the lines to the
4856 * external program. */
4857 if ((wpid = fork()) == -1)
4858 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004859 msg_puts(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004860 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004861 else if (wpid == 0) /* child */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004862 {
4863 linenr_T lnum = curbuf->b_op_start.lnum;
4864 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004865 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004866 size_t l;
4867
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004868 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004869 for (;;)
4870 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004871 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004872 if (l == 0)
4873 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004874 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004875 /* NL -> NUL translation */
4876 len = write(toshell_fd, "", (size_t)1);
4877 else
4878 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004879 char_u *s = vim_strchr(lp + written, NL);
4880
Bram Moolenaar89d40322006-08-29 15:30:07 +00004881 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004882 s == NULL ? l
4883 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004884 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004885 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004886 {
4887 /* Finished a line, add a NL, unless this line
4888 * should not have one. */
4889 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004890 || (!curbuf->b_p_bin
4891 && curbuf->b_p_fixeol)
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004892 || (lnum != curbuf->b_no_eol_lnum
Bram Moolenaardf177f62005-02-22 08:39:57 +00004893 && (lnum !=
4894 curbuf->b_ml.ml_line_count
4895 || curbuf->b_p_eol)))
Bram Moolenaar42335f52018-09-13 15:33:43 +02004896 vim_ignored = write(toshell_fd, "\n",
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004897 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004898 ++lnum;
4899 if (lnum > curbuf->b_op_end.lnum)
4900 {
4901 /* finished all the lines, close pipe */
4902 close(toshell_fd);
4903 toshell_fd = -1;
4904 break;
4905 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004906 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004907 written = 0;
4908 }
4909 else if (len > 0)
4910 written += len;
4911 }
4912 _exit(0);
4913 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004914 else /* parent */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004915 {
4916 close(toshell_fd);
4917 toshell_fd = -1;
4918 }
4919 }
4920
4921 if (options & SHELL_READ)
4922 ga_init2(&ga, 1, BUFLEN);
4923
4924 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004925# ifdef ELAPSED_FUNC
4926 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004927# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 for (;;)
4929 {
4930 /*
4931 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004932 * if there are any.
4933 * Don't do this if we are expanding wild cards (would eat
4934 * typeahead).
4935 * Don't do this when filtering and terminal is in cooked
4936 * mode, the shell command will handle the I/O. Avoids
4937 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004938 * Don't get characters when the child has already
4939 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004940 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004941 * while (noread_cnt > 4), avoids that ":r !ls" eats
4942 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 */
4944 len = 0;
4945 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004946 && ((options &
4947 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4948 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004949# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004950 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004951# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004952 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004953 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004954 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004956 if (ta_len == 0)
4957 {
4958 /* Get extra characters when we don't have any.
4959 * Reset the counter and timer. */
4960 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004961# ifdef ELAPSED_FUNC
4962 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004963# endif
4964 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4965 }
4966 if (ta_len > 0 || len > 0)
4967 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 /*
4969 * For pipes:
4970 * Check for CTRL-C: send interrupt signal to child.
4971 * Check for CTRL-D: EOF, close pipe to child.
4972 */
4973 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4974 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975 /*
4976 * Send SIGINT to the child's group or all
4977 * processes in our group.
4978 */
Bram Moolenaarfae42832017-08-01 22:24:26 +02004979 may_send_sigint(ta_buf[ta_len], pid, wpid);
4980
Bram Moolenaar071d4272004-06-13 20:20:40 +00004981 if (pty_master_fd < 0 && toshell_fd >= 0
4982 && ta_buf[ta_len] == Ctrl_D)
4983 {
4984 close(toshell_fd);
4985 toshell_fd = -1;
4986 }
4987 }
4988
4989 /* replace K_BS by <BS> and K_DEL by <DEL> */
4990 for (i = ta_len; i < ta_len + len; ++i)
4991 {
4992 if (ta_buf[i] == CSI && len - i > 2)
4993 {
4994 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4995 if (c == K_DEL || c == K_KDEL || c == K_BS)
4996 {
4997 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4998 (size_t)(len - i - 2));
4999 if (c == K_DEL || c == K_KDEL)
5000 ta_buf[i] = DEL;
5001 else
5002 ta_buf[i] = Ctrl_H;
5003 len -= 2;
5004 }
5005 }
5006 else if (ta_buf[i] == '\r')
5007 ta_buf[i] = '\n';
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 if (has_mbyte)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00005009 i += (*mb_ptr2len_len)(ta_buf + i,
5010 ta_len + len - i) - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 }
5012
5013 /*
5014 * For pipes: echo the typed characters.
5015 * For a pty this does not seem to work.
5016 */
5017 if (pty_master_fd < 0)
5018 {
5019 for (i = ta_len; i < ta_len + len; ++i)
5020 {
5021 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
5022 msg_putchar(ta_buf[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 else if (has_mbyte)
5024 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005025 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026
5027 msg_outtrans_len(ta_buf + i, l);
5028 i += l - 1;
5029 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 else
5031 msg_outtrans_len(ta_buf + i, 1);
5032 }
5033 windgoto(msg_row, msg_col);
5034 out_flush();
5035 }
5036
5037 ta_len += len;
5038
5039 /*
5040 * Write the characters to the child, unless EOF has
5041 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00005042 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005043 * When writing buffer lines, drop the typed
5044 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005046 if (options & SHELL_WRITE)
5047 ta_len = 0;
5048 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 {
5050 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
5051 if (len > 0)
5052 {
5053 ta_len -= len;
5054 mch_memmove(ta_buf, ta_buf + len, ta_len);
5055 }
5056 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005057 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 }
5059
Bram Moolenaardf177f62005-02-22 08:39:57 +00005060 if (got_int)
5061 {
5062 /* CTRL-C sends a signal to the child, we ignore it
5063 * ourselves */
5064# ifdef HAVE_SETSID
5065 kill(-pid, SIGINT);
5066# else
5067 kill(0, SIGINT);
5068# endif
5069 if (wpid > 0)
5070 kill(wpid, SIGINT);
5071 got_int = FALSE;
5072 }
5073
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 /*
5075 * Check if the child has any characters to be printed.
5076 * Read them and write them to our window. Repeat this as
5077 * long as there is something to do, avoid the 10ms wait
5078 * for mch_inchar(), or sending typeahead characters to
5079 * the external process.
5080 * TODO: This should handle escape sequences, compatible
5081 * to some terminal (vt52?).
5082 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005083 ++noread_cnt;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005084 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01005086 len = read_eintr(fromshell_fd, buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 );
5089 if (len <= 0) /* end of file or error */
5090 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005091
5092 noread_cnt = 0;
5093 if (options & SHELL_READ)
5094 {
5095 /* Do NUL -> NL translation, append NL separated
5096 * lines to the current buffer. */
5097 for (i = 0; i < len; ++i)
5098 {
5099 if (buffer[i] == NL)
5100 append_ga_line(&ga);
5101 else if (buffer[i] == NUL)
5102 ga_append(&ga, NL);
5103 else
5104 ga_append(&ga, buffer[i]);
5105 }
5106 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005107 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 {
5109 int l;
Bram Moolenaara2150ac2018-03-17 13:15:17 +01005110 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005111
Bram Moolenaardf177f62005-02-22 08:39:57 +00005112 len += buffer_off;
5113 buffer[len] = NUL;
5114
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 /* Check if the last character in buffer[] is
5116 * incomplete, keep these bytes for the next
5117 * round. */
5118 for (p = buffer; p < buffer + len; p += l)
5119 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02005120 l = MB_CPTR2LEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 if (l == 0)
5122 l = 1; /* NUL byte? */
5123 else if (MB_BYTE2LEN(*p) != l)
5124 break;
5125 }
5126 if (p == buffer) /* no complete character */
5127 {
5128 /* avoid getting stuck at an illegal byte */
5129 if (len >= 12)
5130 ++p;
5131 else
5132 {
5133 buffer_off = len;
5134 continue;
5135 }
5136 }
5137 c = *p;
5138 *p = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01005139 msg_puts((char *)buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005140 if (p < buffer + len)
5141 {
5142 *p = c;
5143 buffer_off = (buffer + len) - p;
5144 mch_memmove(buffer, p, buffer_off);
5145 continue;
5146 }
5147 buffer_off = 0;
5148 }
5149 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 {
5151 buffer[len] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01005152 msg_puts((char *)buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 }
5154
5155 windgoto(msg_row, msg_col);
5156 cursor_on();
5157 out_flush();
5158 if (got_int)
5159 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005160
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005161# ifdef ELAPSED_FUNC
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005162 if (wait_pid == 0)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005163 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005164 long msec = ELAPSED_FUNC(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005165
5166 /* Avoid that we keep looping here without
5167 * checking for a CTRL-C for a long time. Don't
5168 * break out too often to avoid losing typeahead. */
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005169 if (msec > 2000)
5170 {
5171 noread_cnt = 5;
5172 break;
5173 }
5174 }
5175# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 }
5177
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005178 /* If we already detected the child has finished, continue
5179 * reading output for a short while. Some text may be
5180 * buffered. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005181 if (wait_pid == pid)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005182 {
5183 if (noread_cnt < 5)
5184 continue;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005185 break;
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005186 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005187
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 /*
5189 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00005190 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005192# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02005193 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005194# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005196# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5198 || (wait_pid == pid && WIFEXITED(status)))
5199 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005200 /* Don't break the loop yet, try reading more
5201 * characters from "fromshell_fd" first. When using
5202 * pipes there might still be something to read and
5203 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005204 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005206 else
5207 wait_pid = 0;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005208
Bram Moolenaar95a51352013-03-21 22:53:50 +01005209# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005210 /* Handle any X events, e.g. serving the clipboard. */
5211 clip_update();
5212# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 }
5214finished:
5215 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005216 if (options & SHELL_READ)
5217 {
5218 if (ga.ga_len > 0)
5219 {
5220 append_ga_line(&ga);
5221 /* remember that the NL was missing */
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005222 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005223 }
5224 else
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005225 curbuf->b_no_eol_lnum = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005226 ga_clear(&ga);
5227 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228
Bram Moolenaar071d4272004-06-13 20:20:40 +00005229 /*
5230 * Give all typeahead that wasn't used back to ui_inchar().
5231 */
5232 if (ta_len)
5233 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005234 State = old_State;
5235 if (toshell_fd >= 0)
5236 close(toshell_fd);
5237 close(fromshell_fd);
5238 }
Bram Moolenaar95a51352013-03-21 22:53:50 +01005239# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005240 else
5241 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005242 long delay_msec = 1;
5243
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005244 /*
5245 * Similar to the loop above, but only handle X events, no
5246 * I/O.
5247 */
5248 for (;;)
5249 {
5250 if (got_int)
5251 {
5252 /* CTRL-C sends a signal to the child, we ignore it
5253 * ourselves */
5254# ifdef HAVE_SETSID
5255 kill(-pid, SIGINT);
5256# else
5257 kill(0, SIGINT);
5258# endif
5259 got_int = FALSE;
5260 }
5261# ifdef __NeXT__
5262 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
5263# else
5264 wait_pid = waitpid(pid, &status, WNOHANG);
5265# endif
5266 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5267 || (wait_pid == pid && WIFEXITED(status)))
5268 {
5269 wait_pid = pid;
5270 break;
5271 }
5272
5273 /* Handle any X events, e.g. serving the clipboard. */
5274 clip_update();
5275
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005276 /* Wait for 1 to 10 msec. 1 is faster but gives the child
5277 * less time. */
5278 mch_delay(delay_msec, TRUE);
5279 if (++delay_msec > 10)
5280 delay_msec = 10;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005281 }
5282 }
5283# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284
5285 /*
5286 * Wait until our child has exited.
5287 * Ignore wait() returning pids of other children and returning
5288 * because of some signal like SIGWINCH.
5289 * Don't wait if wait_pid was already set above, indicating the
5290 * child already exited.
5291 */
Bram Moolenaar205b8862011-09-07 15:04:31 +02005292 if (wait_pid != pid)
5293 wait_pid = wait4pid(pid, &status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005294
Bram Moolenaar624891f2010-10-13 16:22:09 +02005295# ifdef FEAT_GUI
5296 /* Close slave side of pty. Only do this after the child has
5297 * exited, otherwise the child may hang when it tries to write on
5298 * the pty. */
5299 if (pty_master_fd >= 0)
5300 close(pty_slave_fd);
5301# endif
5302
Bram Moolenaardf177f62005-02-22 08:39:57 +00005303 /* Make sure the child that writes to the external program is
5304 * dead. */
5305 if (wpid > 0)
Bram Moolenaar205b8862011-09-07 15:04:31 +02005306 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005307 kill(wpid, SIGKILL);
Bram Moolenaar205b8862011-09-07 15:04:31 +02005308 wait4pid(wpid, NULL);
5309 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005310
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005311# ifdef FEAT_JOB_CHANNEL
5312 --dont_check_job_ended;
5313# endif
5314
Bram Moolenaar071d4272004-06-13 20:20:40 +00005315 /*
5316 * Set to raw mode right now, otherwise a CTRL-C after
5317 * catch_signals() will kill Vim.
5318 */
5319 if (tmode == TMODE_RAW)
5320 settmode(TMODE_RAW);
5321 did_settmode = TRUE;
5322 set_signals();
5323
5324 if (WIFEXITED(status))
5325 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00005326 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327 retval = WEXITSTATUS(status);
Bram Moolenaar75676462013-01-30 14:55:42 +01005328 if (retval != 0 && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005329 {
5330 if (retval == EXEC_FAILED)
5331 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005332 msg_puts(_("\nCannot execute shell "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005333 msg_outtrans(p_sh);
5334 msg_putchar('\n');
5335 }
5336 else if (!(options & SHELL_SILENT))
5337 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005338 msg_puts(_("\nshell returned "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 msg_outnum((long)retval);
5340 msg_putchar('\n');
5341 }
5342 }
5343 }
5344 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005345 msg_puts(_("\nCommand terminated\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346 }
5347 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005348
5349error:
5350 if (!did_settmode)
5351 if (tmode == TMODE_RAW)
5352 settmode(TMODE_RAW); /* set to raw mode */
5353# ifdef FEAT_TITLE
5354 resettitle();
5355# endif
Bram Moolenaar13568252018-03-16 20:46:58 +01005356 vim_free(argv);
5357 vim_free(tofree1);
5358 vim_free(tofree2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005359
5360 return retval;
Bram Moolenaar13568252018-03-16 20:46:58 +01005361}
Bram Moolenaar071d4272004-06-13 20:20:40 +00005362#endif /* USE_SYSTEM */
Bram Moolenaar13568252018-03-16 20:46:58 +01005363
5364 int
5365mch_call_shell(
5366 char_u *cmd,
5367 int options) /* SHELL_*, see vim.h */
5368{
5369#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
5370 if (gui.in_use && vim_strchr(p_go, GO_TERMINAL) != NULL)
5371 return mch_call_shell_terminal(cmd, options);
5372#endif
5373#ifdef USE_SYSTEM
5374 return mch_call_shell_system(cmd, options);
5375#else
5376 return mch_call_shell_fork(cmd, options);
5377#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378}
5379
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005380#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005381 void
Bram Moolenaar493359e2018-06-12 20:25:52 +02005382mch_job_start(char **argv, job_T *job, jobopt_T *options, int is_terminal)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005383{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005384 pid_t pid;
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02005385 int fd_in[2] = {-1, -1}; /* for stdin */
5386 int fd_out[2] = {-1, -1}; /* for stdout */
5387 int fd_err[2] = {-1, -1}; /* for stderr */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005388 int pty_master_fd = -1;
5389 int pty_slave_fd = -1;
Bram Moolenaar16eb4f82016-02-14 23:02:34 +01005390 channel_T *channel = NULL;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005391 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5392 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5393 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005394 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005395 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5396 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
Bram Moolenaarb2412082017-08-20 18:09:14 +02005397 int use_buffer_for_in = options->jo_io[PART_IN] == JIO_BUFFER;
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005398 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005399 SIGSET_DECL(curset)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005400
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005401 if (use_out_for_err && use_null_for_out)
5402 use_null_for_err = TRUE;
5403
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005404 /* default is to fail */
5405 job->jv_status = JOB_FAILED;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005406
Bram Moolenaarb2412082017-08-20 18:09:14 +02005407 if (options->jo_pty
5408 && (!(use_file_for_in || use_null_for_in)
Bram Moolenaar59386482019-02-10 22:43:46 +01005409 || !(use_file_for_out || use_null_for_out)
Bram Moolenaarb2412082017-08-20 18:09:14 +02005410 || !(use_out_for_err || use_file_for_err || use_null_for_err)))
Bram Moolenaar59386482019-02-10 22:43:46 +01005411 open_pty(&pty_master_fd, &pty_slave_fd,
5412 &job->jv_tty_out, &job->jv_tty_in);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005413
Bram Moolenaar12dcf022016-02-15 23:09:04 +01005414 /* TODO: without the channel feature connect the child to /dev/null? */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005415 /* Open pipes for stdin, stdout, stderr. */
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005416 if (use_file_for_in)
5417 {
5418 char_u *fname = options->jo_io_name[PART_IN];
5419
5420 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0);
5421 if (fd_in[0] < 0)
5422 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005423 semsg(_(e_notopen), fname);
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005424 goto failed;
5425 }
5426 }
Bram Moolenaarb2412082017-08-20 18:09:14 +02005427 else
5428 /* When writing buffer lines to the input don't use the pty, so that
5429 * the pipe can be closed when all lines were written. */
5430 if (!use_null_for_in && (pty_master_fd < 0 || use_buffer_for_in)
5431 && pipe(fd_in) < 0)
5432 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005433
5434 if (use_file_for_out)
5435 {
5436 char_u *fname = options->jo_io_name[PART_OUT];
5437
5438 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
5439 if (fd_out[1] < 0)
5440 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005441 semsg(_(e_notopen), fname);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005442 goto failed;
5443 }
5444 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005445 else if (!use_null_for_out && pty_master_fd < 0 && pipe(fd_out) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005446 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005447
5448 if (use_file_for_err)
5449 {
5450 char_u *fname = options->jo_io_name[PART_ERR];
5451
5452 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
5453 if (fd_err[1] < 0)
5454 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005455 semsg(_(e_notopen), fname);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005456 goto failed;
5457 }
5458 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005459 else if (!use_out_for_err && !use_null_for_err
5460 && pty_master_fd < 0 && pipe(fd_err) < 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005461 goto failed;
5462
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005463 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5464 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005465 if (options->jo_set & JO_CHANNEL)
5466 {
5467 channel = options->jo_channel;
5468 if (channel != NULL)
5469 ++channel->ch_refcount;
5470 }
5471 else
5472 channel = add_channel();
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005473 if (channel == NULL)
5474 goto failed;
Bram Moolenaarf3360612017-10-01 16:21:31 +02005475 if (job->jv_tty_out != NULL)
5476 ch_log(channel, "using pty %s on fd %d",
5477 job->jv_tty_out, pty_master_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005478 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005479
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005480 BLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005481 pid = fork(); /* maybe we should use vfork() */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005482 if (pid == -1)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005483 {
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005484 /* failed to fork */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005485 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005486 goto failed;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005487 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005488 if (pid == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005489 {
Bram Moolenaar4694a172016-04-21 14:05:23 +02005490 int null_fd = -1;
5491 int stderr_works = TRUE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005492
Bram Moolenaar835dc632016-02-07 14:27:38 +01005493 /* child */
5494 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005495 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005496
Bram Moolenaar819524702018-02-27 19:10:00 +01005497# ifdef FEAT_JOB_CHANNEL
5498 if (ch_log_active())
5499 /* close the log file in the child */
5500 ch_logfile((char_u *)"", (char_u *)"");
5501# endif
5502
Bram Moolenaar835dc632016-02-07 14:27:38 +01005503# ifdef HAVE_SETSID
5504 /* Create our own process group, so that the child and all its
5505 * children can be kill()ed. Don't do this when using pipes,
5506 * because stdin is not a tty, we would lose /dev/tty. */
5507 (void)setsid();
5508# endif
5509
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005510# ifdef FEAT_TERMINAL
5511 if (options->jo_term_rows > 0)
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005512 {
5513 char *term = (char *)T_NAME;
5514
5515#ifdef FEAT_GUI
5516 if (term_is_gui(T_NAME))
5517 /* In the GUI 'term' is not what we want, use $TERM. */
5518 term = getenv("TERM");
5519#endif
5520 /* Use 'term' or $TERM if it starts with "xterm", otherwise fall
5521 * back to "xterm". */
5522 if (term == NULL || *term == NUL || STRNCMP(term, "xterm", 5) != 0)
5523 term = "xterm";
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005524 set_child_environment(
5525 (long)options->jo_term_rows,
5526 (long)options->jo_term_cols,
Bram Moolenaar493359e2018-06-12 20:25:52 +02005527 term,
5528 is_terminal);
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005529 }
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005530 else
5531# endif
Bram Moolenaar493359e2018-06-12 20:25:52 +02005532 set_default_child_environment(is_terminal);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005533
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005534 if (options->jo_env != NULL)
5535 {
5536 dict_T *dict = options->jo_env;
5537 hashitem_T *hi;
5538 int todo = (int)dict->dv_hashtab.ht_used;
5539
5540 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
5541 if (!HASHITEM_EMPTY(hi))
5542 {
5543 typval_T *item = &dict_lookup(hi)->di_tv;
5544
Bram Moolenaard155d7a2018-12-21 16:04:21 +01005545 vim_setenv((char_u*)hi->hi_key, tv_get_string(item));
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005546 --todo;
5547 }
5548 }
5549
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005550 if (use_null_for_in || use_null_for_out || use_null_for_err)
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005551 {
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005552 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005553 if (null_fd < 0)
5554 {
5555 perror("opening /dev/null failed");
5556 _exit(OPEN_NULL_FAILED);
5557 }
5558 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005559
Bram Moolenaar223896d2017-08-02 22:33:28 +02005560 if (pty_slave_fd >= 0)
5561 {
5562 /* push stream discipline modules */
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01005563 setup_slavepty(pty_slave_fd);
Bram Moolenaar223896d2017-08-02 22:33:28 +02005564# ifdef TIOCSCTTY
5565 /* Try to become controlling tty (probably doesn't work,
5566 * unless run by root) */
5567 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
5568# endif
5569 }
5570
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005571 /* set up stdin for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005572 close(0);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005573 if (use_null_for_in && null_fd >= 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005574 vim_ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005575 else if (fd_in[0] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005576 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005577 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005578 vim_ignored = dup(fd_in[0]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005579
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005580 /* set up stderr for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005581 close(2);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005582 if (use_null_for_err && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005583 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02005584 vim_ignored = dup(null_fd);
Bram Moolenaar4694a172016-04-21 14:05:23 +02005585 stderr_works = FALSE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005586 }
5587 else if (use_out_for_err)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005588 vim_ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005589 else if (fd_err[1] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005590 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005591 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005592 vim_ignored = dup(fd_err[1]);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005593
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005594 /* set up stdout for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005595 close(1);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005596 if (use_null_for_out && null_fd >= 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005597 vim_ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005598 else if (fd_out[1] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005599 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005600 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005601 vim_ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005602
5603 if (fd_in[0] >= 0)
5604 close(fd_in[0]);
5605 if (fd_in[1] >= 0)
5606 close(fd_in[1]);
5607 if (fd_out[0] >= 0)
5608 close(fd_out[0]);
5609 if (fd_out[1] >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005610 close(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005611 if (fd_err[0] >= 0)
5612 close(fd_err[0]);
5613 if (fd_err[1] >= 0)
5614 close(fd_err[1]);
5615 if (pty_master_fd >= 0)
5616 {
Bram Moolenaar223896d2017-08-02 22:33:28 +02005617 close(pty_master_fd); /* not used in the child */
5618 close(pty_slave_fd); /* was duped above */
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005619 }
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005620
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005621 if (null_fd >= 0)
5622 close(null_fd);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005623
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005624 if (options->jo_cwd != NULL && mch_chdir((char *)options->jo_cwd) != 0)
5625 _exit(EXEC_FAILED);
5626
Bram Moolenaar835dc632016-02-07 14:27:38 +01005627 /* See above for type of argv. */
5628 execvp(argv[0], argv);
5629
Bram Moolenaar4694a172016-04-21 14:05:23 +02005630 if (stderr_works)
5631 perror("executing job failed");
Bram Moolenaarfae42832017-08-01 22:24:26 +02005632# ifdef EXITFREE
Bram Moolenaarcda77642016-06-04 13:32:35 +02005633 /* calling free_all_mem() here causes problems. Ignore valgrind
5634 * reporting possibly leaked memory. */
Bram Moolenaarfae42832017-08-01 22:24:26 +02005635# endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005636 _exit(EXEC_FAILED); /* exec failed, return failure code */
5637 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005638
5639 /* parent */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005640 UNBLOCK_SIGNALS(&curset);
5641
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005642 job->jv_pid = pid;
5643 job->jv_status = JOB_STARTED;
Bram Moolenaarde279892016-03-11 22:19:44 +01005644 job->jv_channel = channel; /* ch_refcount was set above */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005645
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005646 if (pty_master_fd >= 0)
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005647 close(pty_slave_fd); /* not used in the parent */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005648 /* close child stdin, stdout and stderr */
Bram Moolenaar819524702018-02-27 19:10:00 +01005649 if (fd_in[0] >= 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005650 close(fd_in[0]);
Bram Moolenaar819524702018-02-27 19:10:00 +01005651 if (fd_out[1] >= 0)
Bram Moolenaare98d1212016-03-08 15:37:41 +01005652 close(fd_out[1]);
Bram Moolenaar819524702018-02-27 19:10:00 +01005653 if (fd_err[1] >= 0)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005654 close(fd_err[1]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005655 if (channel != NULL)
5656 {
Bram Moolenaar652de232019-04-04 20:13:09 +02005657 int in_fd = INVALID_FD;
5658 int out_fd = INVALID_FD;
5659 int err_fd = INVALID_FD;
5660
5661 if (!(use_file_for_in || use_null_for_in))
5662 in_fd = fd_in[1] >= 0 ? fd_in[1] : pty_master_fd;
5663
5664 if (!(use_file_for_out || use_null_for_out))
5665 out_fd = fd_out[0] >= 0 ? fd_out[0] : pty_master_fd;
5666
5667 // When using pty_master_fd only set it for stdout, do not duplicate
5668 // it for stderr, it only needs to be read once.
5669 if (!(use_out_for_err || use_file_for_err || use_null_for_err))
5670 {
5671 if (fd_err[0] >= 0)
5672 err_fd = fd_err[0];
5673 else if (out_fd != pty_master_fd)
5674 err_fd = pty_master_fd;
5675 }
Bram Moolenaar4e9d4432018-04-24 20:54:07 +02005676
5677 channel_set_pipes(channel, in_fd, out_fd, err_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005678 channel_set_job(channel, job, options);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005679 }
Bram Moolenaar979e8c52017-08-01 15:08:07 +02005680 else
5681 {
5682 if (fd_in[1] >= 0)
5683 close(fd_in[1]);
5684 if (fd_out[0] >= 0)
5685 close(fd_out[0]);
5686 if (fd_err[0] >= 0)
5687 close(fd_err[0]);
5688 if (pty_master_fd >= 0)
5689 close(pty_master_fd);
5690 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005691
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005692 /* success! */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005693 return;
5694
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005695failed:
Bram Moolenaarde279892016-03-11 22:19:44 +01005696 channel_unref(channel);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005697 if (fd_in[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005698 close(fd_in[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005699 if (fd_in[1] >= 0)
5700 close(fd_in[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005701 if (fd_out[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005702 close(fd_out[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005703 if (fd_out[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005704 close(fd_out[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005705 if (fd_err[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005706 close(fd_err[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005707 if (fd_err[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005708 close(fd_err[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005709 if (pty_master_fd >= 0)
5710 close(pty_master_fd);
5711 if (pty_slave_fd >= 0)
5712 close(pty_slave_fd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005713}
5714
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005715 static char_u *
5716get_signal_name(int sig)
5717{
5718 int i;
5719 char_u numbuf[NUMBUFLEN];
5720
5721 if (sig == SIGKILL)
5722 return vim_strsave((char_u *)"kill");
5723
5724 for (i = 0; signal_info[i].sig != -1; i++)
5725 if (sig == signal_info[i].sig)
5726 return strlow_save((char_u *)signal_info[i].name);
5727
5728 vim_snprintf((char *)numbuf, NUMBUFLEN, "%d", sig);
5729 return vim_strsave(numbuf);
5730}
5731
Bram Moolenaar835dc632016-02-07 14:27:38 +01005732 char *
5733mch_job_status(job_T *job)
5734{
5735# ifdef HAVE_UNION_WAIT
5736 union wait status;
5737# else
5738 int status = -1;
5739# endif
5740 pid_t wait_pid = 0;
5741
5742# ifdef __NeXT__
5743 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0);
5744# else
5745 wait_pid = waitpid(job->jv_pid, &status, WNOHANG);
5746# endif
5747 if (wait_pid == -1)
5748 {
5749 /* process must have exited */
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005750 if (job->jv_status < JOB_ENDED)
5751 ch_log(job->jv_channel, "Job no longer exists: %s",
5752 strerror(errno));
Bram Moolenaar97792de2016-10-15 18:36:49 +02005753 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005754 }
5755 if (wait_pid == 0)
5756 return "run";
5757 if (WIFEXITED(status))
5758 {
5759 /* LINTED avoid "bitwise operation on signed value" */
5760 job->jv_exitval = WEXITSTATUS(status);
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005761 if (job->jv_status < JOB_ENDED)
5762 ch_log(job->jv_channel, "Job exited with %d", job->jv_exitval);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005763 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005764 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005765 if (WIFSIGNALED(status))
5766 {
5767 job->jv_exitval = -1;
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005768 job->jv_termsig = get_signal_name(WTERMSIG(status));
5769 if (job->jv_status < JOB_ENDED && job->jv_termsig != NULL)
5770 ch_log(job->jv_channel, "Job terminated by signal \"%s\"",
5771 job->jv_termsig);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005772 goto return_dead;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005773 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01005774 return "run";
Bram Moolenaar97792de2016-10-15 18:36:49 +02005775
5776return_dead:
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005777 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005778 job->jv_status = JOB_ENDED;
Bram Moolenaar97792de2016-10-15 18:36:49 +02005779 return "dead";
5780}
5781
5782 job_T *
5783mch_detect_ended_job(job_T *job_list)
5784{
5785# ifdef HAVE_UNION_WAIT
5786 union wait status;
5787# else
5788 int status = -1;
5789# endif
5790 pid_t wait_pid = 0;
5791 job_T *job;
5792
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005793# ifndef USE_SYSTEM
5794 /* Do not do this when waiting for a shell command to finish, we would get
5795 * the exit value here (and discard it), the exit value obtained there
5796 * would then be wrong. */
5797 if (dont_check_job_ended > 0)
5798 return NULL;
5799# endif
5800
Bram Moolenaar97792de2016-10-15 18:36:49 +02005801# ifdef __NeXT__
5802 wait_pid = wait4(-1, &status, WNOHANG, (struct rusage *)0);
5803# else
5804 wait_pid = waitpid(-1, &status, WNOHANG);
5805# endif
5806 if (wait_pid <= 0)
5807 /* no process ended */
5808 return NULL;
5809 for (job = job_list; job != NULL; job = job->jv_next)
5810 {
5811 if (job->jv_pid == wait_pid)
5812 {
5813 if (WIFEXITED(status))
5814 /* LINTED avoid "bitwise operation on signed value" */
5815 job->jv_exitval = WEXITSTATUS(status);
5816 else if (WIFSIGNALED(status))
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005817 {
Bram Moolenaar97792de2016-10-15 18:36:49 +02005818 job->jv_exitval = -1;
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005819 job->jv_termsig = get_signal_name(WTERMSIG(status));
5820 }
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005821 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005822 {
5823 ch_log(job->jv_channel, "Job ended");
5824 job->jv_status = JOB_ENDED;
5825 }
5826 return job;
5827 }
5828 }
5829 return NULL;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005830}
5831
Bram Moolenaar3a117e12016-10-30 21:57:52 +01005832/*
5833 * Send a (deadly) signal to "job".
5834 * Return FAIL if "how" is not a valid name.
5835 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01005836 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005837mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005838{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005839 int sig = -1;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005840
Bram Moolenaar923d9262016-02-25 20:56:01 +01005841 if (*how == NUL || STRCMP(how, "term") == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005842 sig = SIGTERM;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005843 else if (STRCMP(how, "hup") == 0)
5844 sig = SIGHUP;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005845 else if (STRCMP(how, "quit") == 0)
5846 sig = SIGQUIT;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005847 else if (STRCMP(how, "int") == 0)
5848 sig = SIGINT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005849 else if (STRCMP(how, "kill") == 0)
5850 sig = SIGKILL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02005851#ifdef SIGWINCH
5852 else if (STRCMP(how, "winch") == 0)
5853 sig = SIGWINCH;
5854#endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005855 else if (isdigit(*how))
5856 sig = atoi((char *)how);
5857 else
5858 return FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005859
Bram Moolenaar76ab4fd2018-12-08 14:39:05 +01005860 // Never kill ourselves!
5861 if (job->jv_pid != 0)
5862 {
5863 // TODO: have an option to only kill the process, not the group?
5864 kill(-job->jv_pid, sig);
5865 kill(job->jv_pid, sig);
5866 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005867
Bram Moolenaar835dc632016-02-07 14:27:38 +01005868 return OK;
5869}
Bram Moolenaar76467df2016-02-12 19:30:26 +01005870
5871/*
5872 * Clear the data related to "job".
5873 */
5874 void
5875mch_clear_job(job_T *job)
5876{
5877 /* call waitpid because child process may become zombie */
5878# ifdef __NeXT__
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005879 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005880# else
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005881 (void)waitpid(job->jv_pid, NULL, WNOHANG);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005882# endif
5883}
Bram Moolenaar835dc632016-02-07 14:27:38 +01005884#endif
5885
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005886#if defined(FEAT_TERMINAL) || defined(PROTO)
5887 int
5888mch_create_pty_channel(job_T *job, jobopt_T *options)
5889{
5890 int pty_master_fd = -1;
5891 int pty_slave_fd = -1;
5892 channel_T *channel;
5893
Bram Moolenaar59386482019-02-10 22:43:46 +01005894 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_out, &job->jv_tty_in);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005895 close(pty_slave_fd);
5896
5897 channel = add_channel();
5898 if (channel == NULL)
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005899 {
5900 close(pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005901 return FAIL;
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005902 }
Bram Moolenaarf3360612017-10-01 16:21:31 +02005903 if (job->jv_tty_out != NULL)
5904 ch_log(channel, "using pty %s on fd %d",
5905 job->jv_tty_out, pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005906 job->jv_channel = channel; /* ch_refcount was set by add_channel() */
5907 channel->ch_keep_open = TRUE;
5908
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005909 /* Only set the pty_master_fd for stdout, do not duplicate it for stderr,
5910 * it only needs to be read once. */
5911 channel_set_pipes(channel, pty_master_fd, pty_master_fd, INVALID_FD);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005912 channel_set_job(channel, job, options);
5913 return OK;
5914}
5915#endif
5916
Bram Moolenaar071d4272004-06-13 20:20:40 +00005917/*
5918 * Check for CTRL-C typed by reading all available characters.
5919 * In cooked mode we should get SIGINT, no need to check.
5920 */
5921 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005922mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005924 if ((curr_tmode == TMODE_RAW || force)
5925 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005926 fill_input_buf(FALSE);
5927}
5928
5929/*
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005930 * Wait "msec" msec until a character is available from the mouse, keyboard,
5931 * from inbuf[].
5932 * "msec" == -1 will block forever.
5933 * Invokes timer callbacks when needed.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005934 * When "ignore_input" is TRUE even check for pending input when input is
5935 * already available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005936 * "interrupted" (if not NULL) is set to TRUE when no character is available
5937 * but something else needs to be done.
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005938 * Returns TRUE when a character is available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005939 * When a GUI is being used, this will never get called -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940 */
5941 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005942WaitForChar(long msec, int *interrupted, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943{
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005944#ifdef FEAT_TIMERS
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01005945 return ui_wait_for_chars_or_timer(
5946 msec, WaitForCharOrMouse, interrupted, ignore_input) == OK;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005947#else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005948 return WaitForCharOrMouse(msec, interrupted, ignore_input);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005949#endif
5950}
5951
5952/*
5953 * Wait "msec" msec until a character is available from the mouse or keyboard
5954 * or from inbuf[].
5955 * "msec" == -1 will block forever.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005956 * for "ignore_input" see WaitForCharOr().
Bram Moolenaarcda77642016-06-04 13:32:35 +02005957 * "interrupted" (if not NULL) is set to TRUE when no character is available
5958 * but something else needs to be done.
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005959 * When a GUI is being used, this will never get called -- webb
5960 */
5961 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005962WaitForCharOrMouse(long msec, int *interrupted, int ignore_input)
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005963{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005964#ifdef FEAT_MOUSE_GPM
5965 int gpm_process_wanted;
5966#endif
5967#ifdef FEAT_XCLIPBOARD
5968 int rest;
5969#endif
5970 int avail;
5971
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005972 if (!ignore_input && input_available()) /* something in inbuf[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973 return 1;
5974
5975#if defined(FEAT_MOUSE_DEC)
5976 /* May need to query the mouse position. */
5977 if (WantQueryMouse)
5978 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005979 WantQueryMouse = FALSE;
Bram Moolenaar92fd5992019-05-02 23:00:22 +02005980 if (!no_query_mouse_for_testing)
5981 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982 }
5983#endif
5984
5985 /*
5986 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
5987 * events. This is a bit complicated, because they might both be defined.
5988 */
5989#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
5990# ifdef FEAT_XCLIPBOARD
5991 rest = 0;
5992 if (do_xterm_trace())
5993 rest = msec;
5994# endif
5995 do
5996 {
5997# ifdef FEAT_XCLIPBOARD
5998 if (rest != 0)
5999 {
6000 msec = XT_TRACE_DELAY;
6001 if (rest >= 0 && rest < XT_TRACE_DELAY)
6002 msec = rest;
6003 if (rest >= 0)
6004 rest -= msec;
6005 }
6006# endif
Bram Moolenaar28e67e02019-08-15 23:05:49 +02006007# ifdef FEAT_SOUND_CANBERRA
6008 // Invoke any pending sound callbacks.
6009 if (has_sound_callback_in_queue())
6010 invoke_sound_callback();
6011# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006012# ifdef FEAT_MOUSE_GPM
6013 gpm_process_wanted = 0;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01006014 avail = RealWaitForChar(read_cmd_fd, msec,
Bram Moolenaarcda77642016-06-04 13:32:35 +02006015 &gpm_process_wanted, interrupted);
Bram Moolenaarb5432d82019-08-30 19:28:25 +02006016 if (!avail && !gpm_process_wanted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006017# else
Bram Moolenaarcda77642016-06-04 13:32:35 +02006018 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 if (!avail)
Bram Moolenaarb5432d82019-08-30 19:28:25 +02006020# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006021 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02006022 if (!ignore_input && input_available())
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023 return 1;
6024# ifdef FEAT_XCLIPBOARD
6025 if (rest == 0 || !do_xterm_trace())
6026# endif
6027 break;
6028 }
6029 }
6030 while (FALSE
6031# ifdef FEAT_MOUSE_GPM
6032 || (gpm_process_wanted && mch_gpm_process() == 0)
6033# endif
6034# ifdef FEAT_XCLIPBOARD
6035 || (!avail && rest != 0)
6036# endif
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01006037 )
6038 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039
6040#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02006041 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006042#endif
6043 return avail;
6044}
6045
Bram Moolenaar4ffa0702013-12-11 17:12:37 +01006046#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00006047/*
6048 * Wait "msec" msec until a character is available from file descriptor "fd".
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006049 * "msec" == 0 will check for characters once.
6050 * "msec" == -1 will block until a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051 * When a GUI is being used, this will not be used for input -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052 * Or when a Linux GPM mouse event is waiting.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006053 * Or when a clientserver message is on the queue.
Bram Moolenaarcda77642016-06-04 13:32:35 +02006054 * "interrupted" (if not NULL) is set to TRUE when no character is available
6055 * but something else needs to be done.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057#if defined(__BEOS__)
6058 int
6059#else
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006060 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00006061#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006062RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063{
6064 int ret;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006065 int result;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006066#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006067 static int busy = FALSE;
6068
6069 /* May retry getting characters after an event was handled. */
6070# define MAY_LOOP
6071
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006072# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073 /* Remember at what time we started, so that we know how much longer we
6074 * should wait after being interrupted. */
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01006075 long start_msec = msec;
6076 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02006078 if (msec > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006079 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006080# endif
6081
6082 /* Handle being called recursively. This may happen for the session
6083 * manager stuff, it may save the file, which does a breakcheck. */
6084 if (busy)
6085 return 0;
6086#endif
6087
6088#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00006089 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090#endif
6091 {
6092#ifdef MAY_LOOP
6093 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006094# ifdef FEAT_MZSCHEME
6095 int mzquantum_used = FALSE;
6096# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006097#endif
6098#ifndef HAVE_SELECT
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006099 /* each channel may use in, out and err */
6100 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101 int nfd;
6102# ifdef FEAT_XCLIPBOARD
6103 int xterm_idx = -1;
6104# endif
6105# ifdef FEAT_MOUSE_GPM
6106 int gpm_idx = -1;
6107# endif
6108# ifdef USE_XSMP
6109 int xsmp_idx = -1;
6110# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006111 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006112
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006113# ifdef FEAT_MZSCHEME
6114 mzvim_check_threads();
6115 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6116 {
6117 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
6118 mzquantum_used = TRUE;
6119 }
6120# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006121 fds[0].fd = fd;
6122 fds[0].events = POLLIN;
6123 nfd = 1;
6124
Bram Moolenaar071d4272004-06-13 20:20:40 +00006125# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006126 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006127 if (xterm_Shell != (Widget)0)
6128 {
6129 xterm_idx = nfd;
6130 fds[nfd].fd = ConnectionNumber(xterm_dpy);
6131 fds[nfd].events = POLLIN;
6132 nfd++;
6133 }
6134# endif
6135# ifdef FEAT_MOUSE_GPM
6136 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6137 {
6138 gpm_idx = nfd;
6139 fds[nfd].fd = gpm_fd;
6140 fds[nfd].events = POLLIN;
6141 nfd++;
6142 }
6143# endif
6144# ifdef USE_XSMP
6145 if (xsmp_icefd != -1)
6146 {
6147 xsmp_idx = nfd;
6148 fds[nfd].fd = xsmp_icefd;
6149 fds[nfd].events = POLLIN;
6150 nfd++;
6151 }
6152# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006153#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006154 nfd = channel_poll_setup(nfd, &fds, &towait);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006155#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006156 if (interrupted != NULL)
6157 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006158
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006159 ret = poll(fds, nfd, towait);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006160
6161 result = ret > 0 && (fds[0].revents & POLLIN);
Bram Moolenaarcda77642016-06-04 13:32:35 +02006162 if (result == 0 && interrupted != NULL && ret > 0)
6163 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006164
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006165# ifdef FEAT_MZSCHEME
6166 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006167 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006168 finished = FALSE;
6169# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170
Bram Moolenaar071d4272004-06-13 20:20:40 +00006171# ifdef FEAT_XCLIPBOARD
6172 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
6173 {
6174 xterm_update(); /* Maybe we should hand out clipboard */
6175 if (--ret == 0 && !input_available())
6176 /* Try again */
6177 finished = FALSE;
6178 }
6179# endif
6180# ifdef FEAT_MOUSE_GPM
6181 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006182 *check_for_gpm = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006183# endif
6184# ifdef USE_XSMP
6185 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
6186 {
6187 if (fds[xsmp_idx].revents & POLLIN)
6188 {
6189 busy = TRUE;
6190 xsmp_handle_requests();
6191 busy = FALSE;
6192 }
6193 else if (fds[xsmp_idx].revents & POLLHUP)
6194 {
6195 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006196 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 xsmp_close();
6198 }
6199 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006200 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006201 }
6202# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006203#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar2c519cf2019-03-21 21:45:34 +01006204 // also call when ret == 0, we may be polling a keep-open channel
Bram Moolenaarf3360612017-10-01 16:21:31 +02006205 if (ret >= 0)
Bram Moolenaar2c519cf2019-03-21 21:45:34 +01006206 channel_poll_check(ret, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006208
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209#else /* HAVE_SELECT */
6210
6211 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006212 struct timeval *tvp;
Bram Moolenaar61fb8d82018-11-12 21:45:08 +01006213 // These are static because they can take 8 Kbyte each and cause the
6214 // signal stack to run out with -O3.
6215 static fd_set rfds, wfds, efds;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006216 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006217 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006218
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006219# ifdef FEAT_MZSCHEME
6220 mzvim_check_threads();
6221 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6222 {
6223 towait = p_mzq; /* don't wait longer than 'mzquantum' */
6224 mzquantum_used = TRUE;
6225 }
6226# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006228 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006230 tv.tv_sec = towait / 1000;
6231 tv.tv_usec = (towait % 1000) * (1000000/1000);
6232 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006233 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006234 else
6235 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006236
6237 /*
6238 * Select on ready for reading and exceptional condition (end of file).
6239 */
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006240select_eintr:
6241 FD_ZERO(&rfds);
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006242 FD_ZERO(&wfds);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 FD_ZERO(&efds);
6244 FD_SET(fd, &rfds);
6245# if !defined(__QNX__) && !defined(__CYGWIN32__)
6246 /* For QNX select() always returns 1 if this is set. Why? */
6247 FD_SET(fd, &efds);
6248# endif
6249 maxfd = fd;
6250
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006252 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006253 if (xterm_Shell != (Widget)0)
6254 {
6255 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
6256 if (maxfd < ConnectionNumber(xterm_dpy))
6257 maxfd = ConnectionNumber(xterm_dpy);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006258
6259 /* An event may have already been read but not handled. In
6260 * particulary, XFlush may cause this. */
6261 xterm_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006262 }
6263# endif
6264# ifdef FEAT_MOUSE_GPM
6265 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6266 {
6267 FD_SET(gpm_fd, &rfds);
6268 FD_SET(gpm_fd, &efds);
6269 if (maxfd < gpm_fd)
6270 maxfd = gpm_fd;
6271 }
6272# endif
6273# ifdef USE_XSMP
6274 if (xsmp_icefd != -1)
6275 {
6276 FD_SET(xsmp_icefd, &rfds);
6277 FD_SET(xsmp_icefd, &efds);
6278 if (maxfd < xsmp_icefd)
6279 maxfd = xsmp_icefd;
6280 }
6281# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006282# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006283 maxfd = channel_select_setup(maxfd, &rfds, &wfds, &tv, &tvp);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006284# endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006285 if (interrupted != NULL)
6286 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006287
Bram Moolenaar643b6142018-09-12 20:29:09 +02006288 ret = select(maxfd + 1, SELECT_TYPE_ARG234 &rfds,
6289 SELECT_TYPE_ARG234 &wfds, SELECT_TYPE_ARG234 &efds, tvp);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006290 result = ret > 0 && FD_ISSET(fd, &rfds);
6291 if (result)
6292 --ret;
Bram Moolenaarcda77642016-06-04 13:32:35 +02006293 else if (interrupted != NULL && ret > 0)
6294 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006295
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006296# ifdef EINTR
6297 if (ret == -1 && errno == EINTR)
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006298 {
6299 /* Check whether window has been resized, EINTR may be caused by
6300 * SIGWINCH. */
6301 if (do_resize)
6302 handle_resize();
6303
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006304 /* Interrupted by a signal, need to try again. We ignore msec
6305 * here, because we do want to check even after a timeout if
6306 * characters are available. Needed for reading output of an
6307 * external command after the process has finished. */
6308 goto select_eintr;
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006309 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006310# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00006311# ifdef __TANDEM
6312 if (ret == -1 && errno == ENOTSUP)
6313 {
6314 FD_ZERO(&rfds);
6315 FD_ZERO(&efds);
6316 ret = 0;
6317 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006318# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006319# ifdef FEAT_MZSCHEME
6320 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006321 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006322 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006323# endif
6324
Bram Moolenaar071d4272004-06-13 20:20:40 +00006325# ifdef FEAT_XCLIPBOARD
6326 if (ret > 0 && xterm_Shell != (Widget)0
6327 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
6328 {
6329 xterm_update(); /* Maybe we should hand out clipboard */
6330 /* continue looping when we only got the X event and the input
6331 * buffer is empty */
6332 if (--ret == 0 && !input_available())
6333 {
6334 /* Try again */
6335 finished = FALSE;
6336 }
6337 }
6338# endif
6339# ifdef FEAT_MOUSE_GPM
6340 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
6341 {
6342 if (FD_ISSET(gpm_fd, &efds))
6343 gpm_close();
6344 else if (FD_ISSET(gpm_fd, &rfds))
6345 *check_for_gpm = 1;
6346 }
6347# endif
6348# ifdef USE_XSMP
6349 if (ret > 0 && xsmp_icefd != -1)
6350 {
6351 if (FD_ISSET(xsmp_icefd, &efds))
6352 {
6353 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006354 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006355 xsmp_close();
6356 if (--ret == 0)
6357 finished = FALSE; /* keep going if event was only one */
6358 }
6359 else if (FD_ISSET(xsmp_icefd, &rfds))
6360 {
6361 busy = TRUE;
6362 xsmp_handle_requests();
6363 busy = FALSE;
6364 if (--ret == 0)
6365 finished = FALSE; /* keep going if event was only one */
6366 }
6367 }
6368# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006369#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006370 /* also call when ret == 0, we may be polling a keep-open channel */
6371 if (ret >= 0)
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006372 ret = channel_select_check(ret, &rfds, &wfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006373#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374
6375#endif /* HAVE_SELECT */
6376
6377#ifdef MAY_LOOP
6378 if (finished || msec == 0)
6379 break;
6380
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006381# ifdef FEAT_CLIENTSERVER
6382 if (server_waiting())
6383 break;
6384# endif
6385
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386 /* We're going to loop around again, find out for how long */
6387 if (msec > 0)
6388 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006389# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 /* Compute remaining wait time. */
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006391 msec = start_msec - ELAPSED_FUNC(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392# else
6393 /* Guess we got interrupted halfway. */
6394 msec = msec / 2;
6395# endif
6396 if (msec <= 0)
6397 break; /* waited long enough */
6398 }
6399#endif
6400 }
6401
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006402 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006403}
6404
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405/*
Bram Moolenaar02743632005-07-25 20:42:36 +00006406 * Expand a path into all matching files and/or directories. Handles "*",
6407 * "?", "[a-z]", "**", etc.
6408 * "path" has backslashes before chars that are not to be expanded.
6409 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006410 */
6411 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006412mch_expandpath(
6413 garray_T *gap,
6414 char_u *path,
6415 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006416{
Bram Moolenaar02743632005-07-25 20:42:36 +00006417 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006419
6420/*
6421 * mch_expand_wildcards() - this code does wild-card pattern matching using
6422 * the shell
6423 *
6424 * return OK for success, FAIL for error (you may lose some memory) and put
6425 * an error message in *file.
6426 *
6427 * num_pat is number of input patterns
6428 * pat is array of pointers to input patterns
6429 * num_file is pointer to number of matched file names
6430 * file is pointer to array of pointers to matched file names
6431 */
6432
6433#ifndef SEEK_SET
6434# define SEEK_SET 0
6435#endif
6436#ifndef SEEK_END
6437# define SEEK_END 2
6438#endif
6439
Bram Moolenaar5555acc2006-04-07 21:33:12 +00006440#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00006441
Bram Moolenaar071d4272004-06-13 20:20:40 +00006442 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006443mch_expand_wildcards(
6444 int num_pat,
6445 char_u **pat,
6446 int *num_file,
6447 char_u ***file,
6448 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449{
6450 int i;
6451 size_t len;
Bram Moolenaar85325f82017-03-30 21:18:45 +02006452 long llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 char_u *p;
6454 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455
Bram Moolenaarc7247912008-01-13 12:54:11 +00006456 /*
6457 * This is the non-OS/2 implementation (really Unix).
6458 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006459 int j;
6460 char_u *tempname;
6461 char_u *command;
6462 FILE *fd;
6463 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006464#define STYLE_ECHO 0 /* use "echo", the default */
6465#define STYLE_GLOB 1 /* use "glob", for csh */
6466#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
6467#define STYLE_PRINT 3 /* use "print -N", for zsh */
6468#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
6469 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006470 int shell_style = STYLE_ECHO;
6471 int check_spaces;
6472 static int did_find_nul = FALSE;
Bram Moolenaarbdace832019-03-02 10:13:42 +01006473 int ampersand = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006474 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006475 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006476
6477 *num_file = 0; /* default: no files found */
6478 *file = NULL;
6479
6480 /*
6481 * If there are no wildcards, just copy the names to allocated memory.
6482 * Saves a lot of time, because we don't have to start a new shell.
6483 */
6484 if (!have_wildcard(num_pat, pat))
6485 return save_patterns(num_pat, pat, num_file, file);
6486
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006487# ifdef HAVE_SANDBOX
6488 /* Don't allow any shell command in the sandbox. */
6489 if (sandbox != 0 && check_secure())
6490 return FAIL;
6491# endif
6492
Bram Moolenaar071d4272004-06-13 20:20:40 +00006493 /*
6494 * Don't allow the use of backticks in secure and restricted mode.
6495 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006496 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006497 for (i = 0; i < num_pat; ++i)
6498 if (vim_strchr(pat[i], '`') != NULL
6499 && (check_restricted() || check_secure()))
6500 return FAIL;
6501
6502 /*
6503 * get a name for the temp file
6504 */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02006505 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006506 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006507 emsg(_(e_notmp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006508 return FAIL;
6509 }
6510
6511 /*
6512 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00006513 * file.
6514 * STYLE_BT: NL separated
6515 * If expanding `cmd` execute it directly.
6516 * STYLE_GLOB: NUL separated
6517 * If we use *csh, "glob" will work better than "echo".
6518 * STYLE_PRINT: NL or NUL separated
6519 * If we use *zsh, "print -N" will work better than "glob".
6520 * STYLE_VIMGLOB: NL separated
6521 * If we use *sh*, we define "vimglob()".
6522 * STYLE_ECHO: space separated.
6523 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006524 */
6525 if (num_pat == 1 && *pat[0] == '`'
6526 && (len = STRLEN(pat[0])) > 2
6527 && *(pat[0] + len - 1) == '`')
6528 shell_style = STYLE_BT;
6529 else if ((len = STRLEN(p_sh)) >= 3)
6530 {
6531 if (STRCMP(p_sh + len - 3, "csh") == 0)
6532 shell_style = STYLE_GLOB;
6533 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
6534 shell_style = STYLE_PRINT;
6535 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006536 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
6537 "sh") != NULL)
6538 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539
Bram Moolenaarc7247912008-01-13 12:54:11 +00006540 /* Compute the length of the command. We need 2 extra bytes: for the
6541 * optional '&' and for the NUL.
6542 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006544 if (shell_style == STYLE_VIMGLOB)
6545 len += STRLEN(sh_vimglob_func);
6546
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006547 for (i = 0; i < num_pat; ++i)
6548 {
6549 /* Count the length of the patterns in the same way as they are put in
6550 * "command" below. */
6551#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00006552 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006553#else
6554 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006555 for (j = 0; pat[i][j] != NUL; ++j)
6556 {
6557 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
6558 ++len; /* may add a backslash */
6559 ++len;
6560 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006561#endif
6562 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563 command = alloc(len);
6564 if (command == NULL)
6565 {
6566 /* out of memory */
6567 vim_free(tempname);
6568 return FAIL;
6569 }
6570
6571 /*
6572 * Build the shell command:
6573 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
6574 * recognizes this).
6575 * - Add the shell command to print the expanded names.
6576 * - Add the temp file name.
6577 * - Add the file name patterns.
6578 */
6579 if (shell_style == STYLE_BT)
6580 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00006581 /* change `command; command& ` to (command; command ) */
6582 STRCPY(command, "(");
6583 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006584 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006585 *p-- = ')'; /* remove last backtick */
Bram Moolenaar1c465442017-03-12 20:10:05 +01006586 while (p > command && VIM_ISWHITE(*p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587 --p;
6588 if (*p == '&') /* remove trailing '&' */
6589 {
Bram Moolenaarbdace832019-03-02 10:13:42 +01006590 ampersand = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591 *p = ' ';
6592 }
6593 STRCAT(command, ">");
6594 }
6595 else
6596 {
6597 if (flags & EW_NOTFOUND)
6598 STRCPY(command, "set nonomatch; ");
6599 else
6600 STRCPY(command, "unset nonomatch; ");
6601 if (shell_style == STYLE_GLOB)
6602 STRCAT(command, "glob >");
6603 else if (shell_style == STYLE_PRINT)
6604 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00006605 else if (shell_style == STYLE_VIMGLOB)
6606 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006607 else
6608 STRCAT(command, "echo >");
6609 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006610
Bram Moolenaar071d4272004-06-13 20:20:40 +00006611 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00006612
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 if (shell_style != STYLE_BT)
6614 for (i = 0; i < num_pat; ++i)
6615 {
6616 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00006617 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006618 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619#ifdef USE_SYSTEM
6620 STRCAT(command, " \"");
6621 STRCAT(command, pat[i]);
6622 STRCAT(command, "\"");
6623#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00006624 int intick = FALSE;
6625
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626 p = command + STRLEN(command);
6627 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00006628 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00006629 {
6630 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00006631 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006632 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
6633 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006634 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00006635 * backslash inside backticks, before a special character
6636 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006637 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00006638 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
6639 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006640 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006641 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006642 }
Bram Moolenaare4df1642014-08-29 12:58:44 +02006643 else if (!intick
6644 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$')
6645 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00006646 /* Put a backslash before a special character, but not
Bram Moolenaare4df1642014-08-29 12:58:44 +02006647 * when inside ``. And not for $var when EW_KEEPDOLLAR is
6648 * set. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006649 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006650
6651 /* Copy one character. */
6652 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00006653 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006654 *p = NUL;
6655#endif
6656 }
6657 if (flags & EW_SILENT)
6658 show_shell_mess = FALSE;
Bram Moolenaarbdace832019-03-02 10:13:42 +01006659 if (ampersand)
Bram Moolenaarc7247912008-01-13 12:54:11 +00006660 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006661
6662 /*
6663 * Using zsh -G: If a pattern has no matches, it is just deleted from
6664 * the argument list, otherwise zsh gives an error message and doesn't
6665 * expand any other pattern.
6666 */
6667 if (shell_style == STYLE_PRINT)
6668 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
6669
6670 /*
6671 * If we use -f then shell variables set in .cshrc won't get expanded.
6672 * vi can do it, so we will too, but it is only necessary if there is a "$"
6673 * in one of the patterns, otherwise we can still use the fast option.
6674 */
6675 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
6676 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
6677
6678 /*
6679 * execute the shell command
6680 */
6681 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6682
6683 /* When running in the background, give it some time to create the temp
6684 * file, but don't wait for it to finish. */
Bram Moolenaarbdace832019-03-02 10:13:42 +01006685 if (ampersand)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006686 mch_delay(10L, TRUE);
6687
6688 extra_shell_arg = NULL; /* cleanup */
6689 show_shell_mess = TRUE;
6690 vim_free(command);
6691
Bram Moolenaarc7247912008-01-13 12:54:11 +00006692 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006693 {
6694 mch_remove(tempname);
6695 vim_free(tempname);
6696 /*
6697 * With interactive completion, the error message is not printed.
6698 * However with USE_SYSTEM, I don't know how to turn off error messages
6699 * from the shell, so screen may still get messed up -- webb.
6700 */
6701#ifndef USE_SYSTEM
6702 if (!(flags & EW_SILENT))
6703#endif
6704 {
6705 redraw_later_clear(); /* probably messed up screen */
6706 msg_putchar('\n'); /* clear bottom line quickly */
6707 cmdline_row = Rows - 1; /* continue on last line */
6708#ifdef USE_SYSTEM
6709 if (!(flags & EW_SILENT))
6710#endif
6711 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006712 msg(_(e_wildexpand));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006713 msg_start(); /* don't overwrite this message */
6714 }
6715 }
6716 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
6717 * EW_NOTFOUND is given */
6718 if (shell_style == STYLE_BT)
6719 return FAIL;
6720 goto notfound;
6721 }
6722
6723 /*
6724 * read the names from the file into memory
6725 */
6726 fd = fopen((char *)tempname, READBIN);
6727 if (fd == NULL)
6728 {
6729 /* Something went wrong, perhaps a file name with a special char. */
6730 if (!(flags & EW_SILENT))
6731 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006732 msg(_(e_wildexpand));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006733 msg_start(); /* don't overwrite this message */
6734 }
6735 vim_free(tempname);
6736 goto notfound;
6737 }
6738 fseek(fd, 0L, SEEK_END);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006739 llen = ftell(fd); /* get size of temp file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740 fseek(fd, 0L, SEEK_SET);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006741 if (llen < 0)
6742 /* just in case ftell() would fail */
6743 buffer = NULL;
6744 else
6745 buffer = alloc(llen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 if (buffer == NULL)
6747 {
6748 /* out of memory */
6749 mch_remove(tempname);
6750 vim_free(tempname);
6751 fclose(fd);
6752 return FAIL;
6753 }
Bram Moolenaar85325f82017-03-30 21:18:45 +02006754 len = llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006755 i = fread((char *)buffer, 1, len, fd);
6756 fclose(fd);
6757 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00006758 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006759 {
6760 /* unexpected read error */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006761 semsg(_(e_notread), tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006762 vim_free(tempname);
6763 vim_free(buffer);
6764 return FAIL;
6765 }
6766 vim_free(tempname);
6767
Bram Moolenaar1eed5322019-02-26 17:03:54 +01006768# ifdef __CYGWIN__
Bram Moolenaar071d4272004-06-13 20:20:40 +00006769 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
6770 p = buffer;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02006771 for (i = 0; i < (int)len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
6773 *p++ = buffer[i];
6774 len = p - buffer;
6775# endif
6776
6777
6778 /* file names are separated with Space */
6779 if (shell_style == STYLE_ECHO)
6780 {
6781 buffer[len] = '\n'; /* make sure the buffer ends in NL */
6782 p = buffer;
6783 for (i = 0; *p != '\n'; ++i) /* count number of entries */
6784 {
6785 while (*p != ' ' && *p != '\n')
6786 ++p;
6787 p = skipwhite(p); /* skip to next entry */
6788 }
6789 }
6790 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006791 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792 {
6793 buffer[len] = NUL; /* make sure the buffer ends in NUL */
6794 p = buffer;
6795 for (i = 0; *p != NUL; ++i) /* count number of entries */
6796 {
6797 while (*p != '\n' && *p != NUL)
6798 ++p;
6799 if (*p != NUL)
6800 ++p;
6801 p = skipwhite(p); /* skip leading white space */
6802 }
6803 }
6804 /* file names are separated with NUL */
6805 else
6806 {
6807 /*
6808 * Some versions of zsh use spaces instead of NULs to separate
6809 * results. Only do this when there is no NUL before the end of the
6810 * buffer, otherwise we would never be able to use file names with
6811 * embedded spaces when zsh does use NULs.
6812 * When we found a NUL once, we know zsh is OK, set did_find_nul and
6813 * don't check for spaces again.
6814 */
6815 check_spaces = FALSE;
6816 if (shell_style == STYLE_PRINT && !did_find_nul)
6817 {
6818 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02006819 buffer[len] = NUL;
Bram Moolenaarb011af92013-12-11 13:21:51 +01006820 if (len && (int)STRLEN(buffer) < (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 did_find_nul = TRUE;
6822 else
6823 check_spaces = TRUE;
6824 }
6825
6826 /*
6827 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
6828 * already is one, for STYLE_GLOB it needs to be added.
6829 */
6830 if (len && buffer[len - 1] == NUL)
6831 --len;
6832 else
6833 buffer[len] = NUL;
6834 i = 0;
6835 for (p = buffer; p < buffer + len; ++p)
6836 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
6837 {
6838 ++i;
6839 *p = NUL;
6840 }
6841 if (len)
6842 ++i; /* count last entry */
6843 }
6844 if (i == 0)
6845 {
6846 /*
6847 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
6848 * /bin/sh will happily expand it to nothing rather than returning an
6849 * error; and hey, it's good to check anyway -- webb.
6850 */
6851 vim_free(buffer);
6852 goto notfound;
6853 }
6854 *num_file = i;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006855 *file = ALLOC_MULT(char_u *, i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006856 if (*file == NULL)
6857 {
6858 /* out of memory */
6859 vim_free(buffer);
6860 return FAIL;
6861 }
6862
6863 /*
6864 * Isolate the individual file names.
6865 */
6866 p = buffer;
6867 for (i = 0; i < *num_file; ++i)
6868 {
6869 (*file)[i] = p;
6870 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006871 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
6872 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006873 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00006874 while (!(shell_style == STYLE_ECHO && *p == ' ')
6875 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006876 ++p;
6877 if (p == buffer + len) /* last entry */
6878 *p = NUL;
6879 else
6880 {
6881 *p++ = NUL;
6882 p = skipwhite(p); /* skip to next entry */
6883 }
6884 }
6885 else /* NUL separates */
6886 {
6887 while (*p && p < buffer + len) /* skip entry */
6888 ++p;
6889 ++p; /* skip NUL */
6890 }
6891 }
6892
6893 /*
6894 * Move the file names to allocated memory.
6895 */
6896 for (j = 0, i = 0; i < *num_file; ++i)
6897 {
6898 /* Require the files to exist. Helps when using /bin/sh */
6899 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6900 continue;
6901
6902 /* check if this entry should be included */
6903 dir = (mch_isdir((*file)[i]));
6904 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6905 continue;
6906
Bram Moolenaara2031822006-03-07 22:29:51 +00006907 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006908 if (!dir && (flags & EW_EXEC)
6909 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006910 continue;
6911
Bram Moolenaar964b3742019-05-24 18:54:09 +02006912 p = alloc(STRLEN((*file)[i]) + 1 + dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006913 if (p)
6914 {
6915 STRCPY(p, (*file)[i]);
6916 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00006917 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006918 (*file)[j++] = p;
6919 }
6920 }
6921 vim_free(buffer);
6922 *num_file = j;
6923
6924 if (*num_file == 0) /* rejected all entries */
6925 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01006926 VIM_CLEAR(*file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927 goto notfound;
6928 }
6929
6930 return OK;
6931
6932notfound:
6933 if (flags & EW_NOTFOUND)
6934 return save_patterns(num_pat, pat, num_file, file);
6935 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936}
6937
6938#endif /* VMS */
6939
Bram Moolenaar071d4272004-06-13 20:20:40 +00006940 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006941save_patterns(
6942 int num_pat,
6943 char_u **pat,
6944 int *num_file,
6945 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006946{
6947 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006948 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006949
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006950 *file = ALLOC_MULT(char_u *, num_pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006951 if (*file == NULL)
6952 return FAIL;
6953 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00006954 {
6955 s = vim_strsave(pat[i]);
6956 if (s != NULL)
6957 /* Be compatible with expand_filename(): halve the number of
6958 * backslashes. */
6959 backslash_halve(s);
6960 (*file)[i] = s;
6961 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962 *num_file = num_pat;
6963 return OK;
6964}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006965
Bram Moolenaar071d4272004-06-13 20:20:40 +00006966/*
6967 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
6968 * expand.
6969 */
6970 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006971mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006972{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006973 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006975 if (*p == '\\' && p[1] != NUL)
6976 ++p;
6977 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006978 if (vim_strchr((char_u *)
6979#ifdef VMS
6980 "*?%"
6981#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006982 "*?[{'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006983#endif
6984 , *p) != NULL)
6985 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986 }
6987 return FALSE;
6988}
6989
6990/*
6991 * Return TRUE if the string "p" contains a wildcard.
6992 * Don't recognize '~' at the end as a wildcard.
6993 */
6994 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006995mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006996{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006997 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006998 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999 if (*p == '\\' && p[1] != NUL)
7000 ++p;
7001 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007002 if (vim_strchr((char_u *)
7003#ifdef VMS
7004 "*?%$"
7005#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006 "*?[{`'$"
Bram Moolenaar071d4272004-06-13 20:20:40 +00007007#endif
7008 , *p) != NULL
7009 || (*p == '~' && p[1] != NUL))
7010 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007011 }
7012 return FALSE;
7013}
7014
Bram Moolenaar071d4272004-06-13 20:20:40 +00007015 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007016have_wildcard(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007017{
7018 int i;
7019
7020 for (i = 0; i < num; i++)
7021 if (mch_has_wildcard(file[i]))
7022 return 1;
7023 return 0;
7024}
7025
7026 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007027have_dollars(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028{
7029 int i;
7030
7031 for (i = 0; i < num; i++)
7032 if (vim_strchr(file[i], '$') != NULL)
7033 return TRUE;
7034 return FALSE;
7035}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007036
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01007037#if !defined(HAVE_RENAME) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007038/*
7039 * Scaled-down version of rename(), which is missing in Xenix.
7040 * This version can only move regular files and will fail if the
7041 * destination exists.
7042 */
7043 int
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01007044mch_rename(const char *src, const char *dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007045{
7046 struct stat st;
7047
7048 if (stat(dest, &st) >= 0) /* fail if destination exists */
7049 return -1;
7050 if (link(src, dest) != 0) /* link file to new name */
7051 return -1;
7052 if (mch_remove(src) == 0) /* delete link to old name */
7053 return 0;
7054 return -1;
7055}
7056#endif /* !HAVE_RENAME */
7057
Bram Moolenaar4b8366b2019-05-04 17:34:34 +02007058#if defined(FEAT_MOUSE_GPM) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059/*
7060 * Initializes connection with gpm (if it isn't already opened)
7061 * Return 1 if succeeded (or connection already opened), 0 if failed
7062 */
7063 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007064gpm_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007065{
7066 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
7067
7068 if (!gpm_flag)
7069 {
7070 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
7071 gpm_connect.defaultMask = ~GPM_HARD;
7072 /* Default handling for mouse move*/
7073 gpm_connect.minMod = 0; /* Handle any modifier keys */
7074 gpm_connect.maxMod = 0xffff;
7075 if (Gpm_Open(&gpm_connect, 0) > 0)
7076 {
7077 /* gpm library tries to handling TSTP causes
7078 * problems. Anyways, we close connection to Gpm whenever
7079 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00007080 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00007081 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00007082# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007083 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00007084# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085 return 1; /* succeed */
7086 }
7087 if (gpm_fd == -2)
7088 Gpm_Close(); /* We don't want to talk to xterm via gpm */
7089 return 0;
7090 }
7091 return 1; /* already open */
7092}
7093
7094/*
Bram Moolenaar4b8366b2019-05-04 17:34:34 +02007095 * Returns TRUE if the GPM mouse is enabled.
7096 */
7097 int
7098gpm_enabled(void)
7099{
7100 return gpm_flag && gpm_fd >= 0;
7101}
7102
7103/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00007105 */
7106 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007107gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007108{
Bram Moolenaar4b8366b2019-05-04 17:34:34 +02007109 if (gpm_enabled())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007110 Gpm_Close();
7111}
7112
Bram Moolenaarbedf0912019-05-04 16:58:45 +02007113/*
7114 * Reads gpm event and adds special keys to input buf. Returns length of
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02007116 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 */
7118 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007119mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120{
7121 int button;
7122 static Gpm_Event gpm_event;
7123 char_u string[6];
7124 int_u vim_modifiers;
7125 int row,col;
7126 unsigned char buttons_mask;
7127 unsigned char gpm_modifiers;
7128 static unsigned char old_buttons = 0;
7129
7130 Gpm_GetEvent(&gpm_event);
7131
7132#ifdef FEAT_GUI
7133 /* Don't put events in the input queue now. */
7134 if (hold_gui_events)
7135 return 0;
7136#endif
7137
7138 row = gpm_event.y - 1;
7139 col = gpm_event.x - 1;
7140
7141 string[0] = ESC; /* Our termcode */
7142 string[1] = 'M';
7143 string[2] = 'G';
7144 switch (GPM_BARE_EVENTS(gpm_event.type))
7145 {
7146 case GPM_DRAG:
7147 string[3] = MOUSE_DRAG;
7148 break;
7149 case GPM_DOWN:
7150 buttons_mask = gpm_event.buttons & ~old_buttons;
7151 old_buttons = gpm_event.buttons;
7152 switch (buttons_mask)
7153 {
7154 case GPM_B_LEFT:
7155 button = MOUSE_LEFT;
7156 break;
7157 case GPM_B_MIDDLE:
7158 button = MOUSE_MIDDLE;
7159 break;
7160 case GPM_B_RIGHT:
7161 button = MOUSE_RIGHT;
7162 break;
7163 default:
7164 return 0;
7165 /*Don't know what to do. Can more than one button be
7166 * reported in one event? */
7167 }
7168 string[3] = (char_u)(button | 0x20);
7169 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
7170 break;
7171 case GPM_UP:
7172 string[3] = MOUSE_RELEASE;
7173 old_buttons &= ~gpm_event.buttons;
7174 break;
7175 default:
7176 return 0;
7177 }
7178 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
7179 gpm_modifiers = gpm_event.modifiers;
7180 vim_modifiers = 0x0;
7181 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
7182 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
7183 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
7184 */
7185 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
7186 vim_modifiers |= MOUSE_SHIFT;
7187
7188 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
7189 vim_modifiers |= MOUSE_CTRL;
7190 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
7191 vim_modifiers |= MOUSE_ALT;
7192 string[3] |= vim_modifiers;
7193 string[4] = (char_u)(col + ' ' + 1);
7194 string[5] = (char_u)(row + ' ' + 1);
7195 add_to_input_buf(string, 6);
7196 return 6;
7197}
7198#endif /* FEAT_MOUSE_GPM */
7199
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007200#ifdef FEAT_SYSMOUSE
7201/*
7202 * Initialize connection with sysmouse.
7203 * Let virtual console inform us with SIGUSR2 for pending sysmouse
7204 * output, any sysmouse output than will be processed via sig_sysmouse().
7205 * Return OK if succeeded, FAIL if failed.
7206 */
7207 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007208sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007209{
7210 struct mouse_info mouse;
7211
7212 mouse.operation = MOUSE_MODE;
7213 mouse.u.mode.mode = 0;
7214 mouse.u.mode.signal = SIGUSR2;
7215 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
7216 {
7217 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
7218 mouse.operation = MOUSE_SHOW;
7219 ioctl(1, CONS_MOUSECTL, &mouse);
7220 return OK;
7221 }
7222 return FAIL;
7223}
7224
7225/*
7226 * Stop processing SIGUSR2 signals, and also make sure that
7227 * virtual console do not send us any sysmouse related signal.
7228 */
7229 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007230sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007231{
7232 struct mouse_info mouse;
7233
7234 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
7235 mouse.operation = MOUSE_MODE;
7236 mouse.u.mode.mode = 0;
7237 mouse.u.mode.signal = 0;
7238 ioctl(1, CONS_MOUSECTL, &mouse);
7239}
7240
7241/*
7242 * Gets info from sysmouse and adds special keys to input buf.
7243 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007244 static RETSIGTYPE
7245sig_sysmouse SIGDEFARG(sigarg)
7246{
7247 struct mouse_info mouse;
7248 struct video_info video;
7249 char_u string[6];
7250 int row, col;
7251 int button;
7252 int buttons;
7253 static int oldbuttons = 0;
7254
7255#ifdef FEAT_GUI
7256 /* Don't put events in the input queue now. */
7257 if (hold_gui_events)
7258 return;
7259#endif
7260
7261 mouse.operation = MOUSE_GETINFO;
7262 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
7263 && ioctl(1, FBIO_MODEINFO, &video) != -1
7264 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
7265 && video.vi_cheight > 0 && video.vi_cwidth > 0)
7266 {
7267 row = mouse.u.data.y / video.vi_cheight;
7268 col = mouse.u.data.x / video.vi_cwidth;
7269 buttons = mouse.u.data.buttons;
7270 string[0] = ESC; /* Our termcode */
7271 string[1] = 'M';
7272 string[2] = 'S';
7273 if (oldbuttons == buttons && buttons != 0)
7274 {
7275 button = MOUSE_DRAG;
7276 }
7277 else
7278 {
7279 switch (buttons)
7280 {
7281 case 0:
7282 button = MOUSE_RELEASE;
7283 break;
7284 case 1:
7285 button = MOUSE_LEFT;
7286 break;
7287 case 2:
7288 button = MOUSE_MIDDLE;
7289 break;
7290 case 4:
7291 button = MOUSE_RIGHT;
7292 break;
7293 default:
7294 return;
7295 }
7296 oldbuttons = buttons;
7297 }
7298 string[3] = (char_u)(button);
7299 string[4] = (char_u)(col + ' ' + 1);
7300 string[5] = (char_u)(row + ' ' + 1);
7301 add_to_input_buf(string, 6);
7302 }
7303 return;
7304}
7305#endif /* FEAT_SYSMOUSE */
7306
Bram Moolenaar071d4272004-06-13 20:20:40 +00007307#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01007308typedef char_u * (*STRPROCSTR)(char_u *);
7309typedef char_u * (*INTPROCSTR)(int);
7310typedef int (*STRPROCINT)(char_u *);
7311typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007312
7313/*
7314 * Call a DLL routine which takes either a string or int param
7315 * and returns an allocated string.
7316 */
7317 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007318mch_libcall(
7319 char_u *libname,
7320 char_u *funcname,
7321 char_u *argstring, /* NULL when using a argint */
7322 int argint,
7323 char_u **string_result,/* NULL when using number_result */
7324 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007325{
7326# if defined(USE_DLOPEN)
7327 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007328 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007329# else
7330 shl_t hinstLib;
7331# endif
7332 STRPROCSTR ProcAdd;
7333 INTPROCSTR ProcAddI;
7334 char_u *retval_str = NULL;
7335 int retval_int = 0;
7336 int success = FALSE;
7337
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007338 /*
7339 * Get a handle to the DLL module.
7340 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007342 /* First clear any error, it's not cleared by the dlopen() call. */
7343 (void)dlerror();
7344
Bram Moolenaar071d4272004-06-13 20:20:40 +00007345 hinstLib = dlopen((char *)libname, RTLD_LAZY
7346# ifdef RTLD_LOCAL
7347 | RTLD_LOCAL
7348# endif
7349 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007350 if (hinstLib == NULL)
7351 {
7352 /* "dlerr" must be used before dlclose() */
7353 dlerr = (char *)dlerror();
7354 if (dlerr != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007355 semsg(_("dlerror = \"%s\""), dlerr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007356 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007357# else
7358 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
7359# endif
7360
7361 /* If the handle is valid, try to get the function address. */
7362 if (hinstLib != NULL)
7363 {
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007364# ifdef USING_SETJMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007365 /*
7366 * Catch a crash when calling the library function. For example when
7367 * using a number where a string pointer is expected.
7368 */
7369 mch_startjmp();
7370 if (SETJMP(lc_jump_env) != 0)
7371 {
7372 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007373# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007374 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007375# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007376 mch_didjmp();
7377 }
7378 else
7379# endif
7380 {
7381 retval_str = NULL;
7382 retval_int = 0;
7383
7384 if (argstring != NULL)
7385 {
7386# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007387 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007388 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007389# else
7390 if (shl_findsym(&hinstLib, (const char *)funcname,
7391 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
7392 ProcAdd = NULL;
7393# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007394 if ((success = (ProcAdd != NULL
7395# if defined(USE_DLOPEN)
7396 && dlerr == NULL
7397# endif
7398 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007399 {
7400 if (string_result == NULL)
7401 retval_int = ((STRPROCINT)ProcAdd)(argstring);
7402 else
7403 retval_str = (ProcAdd)(argstring);
7404 }
7405 }
7406 else
7407 {
7408# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007409 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007410 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007411# else
7412 if (shl_findsym(&hinstLib, (const char *)funcname,
7413 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
7414 ProcAddI = NULL;
7415# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007416 if ((success = (ProcAddI != NULL
7417# if defined(USE_DLOPEN)
7418 && dlerr == NULL
7419# endif
7420 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421 {
7422 if (string_result == NULL)
7423 retval_int = ((INTPROCINT)ProcAddI)(argint);
7424 else
7425 retval_str = (ProcAddI)(argint);
7426 }
7427 }
7428
7429 /* Save the string before we free the library. */
7430 /* Assume that a "1" or "-1" result is an illegal pointer. */
7431 if (string_result == NULL)
7432 *number_result = retval_int;
7433 else if (retval_str != NULL
7434 && retval_str != (char_u *)1
7435 && retval_str != (char_u *)-1)
7436 *string_result = vim_strsave(retval_str);
7437 }
7438
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007439# ifdef USING_SETJMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007440 mch_endjmp();
7441# ifdef SIGHASARG
7442 if (lc_signal != 0)
7443 {
7444 int i;
7445
7446 /* try to find the name of this signal */
7447 for (i = 0; signal_info[i].sig != -1; i++)
7448 if (lc_signal == signal_info[i].sig)
7449 break;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007450 semsg("E368: got SIG%s in libcall()", signal_info[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007451 }
7452# endif
7453# endif
7454
Bram Moolenaar071d4272004-06-13 20:20:40 +00007455# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007456 /* "dlerr" must be used before dlclose() */
7457 if (dlerr != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007458 semsg(_("dlerror = \"%s\""), dlerr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007459
7460 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461 (void)dlclose(hinstLib);
7462# else
7463 (void)shl_unload(hinstLib);
7464# endif
7465 }
7466
7467 if (!success)
7468 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007469 semsg(_(e_libcall), funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007470 return FAIL;
7471 }
7472
7473 return OK;
7474}
7475#endif
7476
7477#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
7478static int xterm_trace = -1; /* default: disabled */
7479static int xterm_button;
7480
7481/*
7482 * Setup a dummy window for X selections in a terminal.
7483 */
7484 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007485setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007486{
7487 int z = 0;
7488 char *strp = "";
7489 Widget AppShell;
7490
7491 if (!x_connect_to_server())
7492 return;
7493
7494 open_app_context();
7495 if (app_context != NULL && xterm_Shell == (Widget)0)
7496 {
7497 int (*oldhandler)();
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007498# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007499 int (*oldIOhandler)();
Bram Moolenaaredce7422019-01-20 18:39:30 +01007500# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007501# ifdef ELAPSED_FUNC
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01007502 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007503
7504 if (p_verbose > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007505 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007506# endif
7507
7508 /* Ignore X errors while opening the display */
7509 oldhandler = XSetErrorHandler(x_error_check);
7510
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007511# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007512 /* Ignore X IO errors while opening the display */
7513 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7514 mch_startjmp();
7515 if (SETJMP(lc_jump_env) != 0)
7516 {
7517 mch_didjmp();
7518 xterm_dpy = NULL;
7519 }
7520 else
Bram Moolenaaredce7422019-01-20 18:39:30 +01007521# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007522 {
7523 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7524 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007525 if (xterm_dpy != NULL)
7526 xterm_dpy_retry_count = 0;
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007527# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007528 mch_endjmp();
Bram Moolenaaredce7422019-01-20 18:39:30 +01007529# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007530 }
7531
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007532# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007533 /* Now handle X IO errors normally. */
7534 (void)XSetIOErrorHandler(oldIOhandler);
Bram Moolenaaredce7422019-01-20 18:39:30 +01007535# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007536 /* Now handle X errors normally. */
7537 (void)XSetErrorHandler(oldhandler);
7538
7539 if (xterm_dpy == NULL)
7540 {
7541 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007542 verb_msg(_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007543 return;
7544 }
7545
7546 /* Catch terminating error of the X server connection. */
7547 (void)XSetIOErrorHandler(x_IOerror_handler);
7548
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007549# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00007550 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007551 {
7552 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007553 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007554 verbose_leave();
7555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007556# endif
7557
7558 /* Create a Shell to make converters work. */
7559 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7560 applicationShellWidgetClass, xterm_dpy,
7561 NULL);
7562 if (AppShell == (Widget)0)
7563 return;
7564 xterm_Shell = XtVaCreatePopupShell("VIM",
7565 topLevelShellWidgetClass, AppShell,
7566 XtNmappedWhenManaged, 0,
7567 XtNwidth, 1,
7568 XtNheight, 1,
7569 NULL);
7570 if (xterm_Shell == (Widget)0)
7571 return;
7572
7573 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007574 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007575 if (x11_display == NULL)
7576 x11_display = xterm_dpy;
7577
7578 XtRealizeWidget(xterm_Shell);
7579 XSync(xterm_dpy, False);
7580 xterm_update();
7581 }
7582 if (xterm_Shell != (Widget)0)
7583 {
7584 clip_init(TRUE);
7585 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7586 x11_window = (Window)atol(strp);
7587 /* Check if $WINDOWID is valid. */
7588 if (test_x11_window(xterm_dpy) == FAIL)
7589 x11_window = 0;
7590 if (x11_window != 0)
7591 xterm_trace = 0;
7592 }
7593}
7594
7595 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007596start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007597{
7598 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7599 return;
7600 xterm_trace = 1;
7601 xterm_button = button;
7602 do_xterm_trace();
7603}
7604
7605
7606 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007607stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007608{
7609 if (xterm_trace < 0)
7610 return;
7611 xterm_trace = 0;
7612}
7613
7614/*
7615 * Query the xterm pointer and generate mouse termcodes if necessary
7616 * return TRUE if dragging is active, else FALSE
7617 */
7618 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007619do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007620{
7621 Window root, child;
7622 int root_x, root_y;
7623 int win_x, win_y;
7624 int row, col;
7625 int_u mask_return;
7626 char_u buf[50];
7627 char_u *strp;
7628 long got_hints;
7629 static char_u *mouse_code;
7630 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7631 static int prev_row = 0, prev_col = 0;
7632 static XSizeHints xterm_hints;
7633
7634 if (xterm_trace <= 0)
7635 return FALSE;
7636
7637 if (xterm_trace == 1)
7638 {
7639 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007640 * have changed recently. */
7641 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7642 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007643 || xterm_hints.width_inc <= 1
7644 || xterm_hints.height_inc <= 1)
7645 {
7646 xterm_trace = -1; /* Not enough data -- disable tracing */
7647 return FALSE;
7648 }
7649
7650 /* Rely on the same mouse code for the duration of this */
7651 mouse_code = find_termcode(mouse_name);
7652 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007653 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007654 xterm_trace = 2;
7655
7656 /* Find the offset of the chars, there might be a scrollbar on the
7657 * left of the window and/or a menu on the top (eterm etc.) */
7658 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7659 &win_x, &win_y, &mask_return);
7660 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7661 - (xterm_hints.height_inc / 2);
7662 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7663 xterm_hints.y = 2;
7664 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7665 - (xterm_hints.width_inc / 2);
7666 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7667 xterm_hints.x = 2;
7668 return TRUE;
7669 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007670 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007671 {
7672 xterm_trace = 0;
7673 return FALSE;
7674 }
7675
7676 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7677 &win_x, &win_y, &mask_return);
7678
7679 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7680 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7681 if (row == prev_row && col == prev_col)
7682 return TRUE;
7683
7684 STRCPY(buf, mouse_code);
7685 strp = buf + STRLEN(buf);
7686 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7687 *strp++ = (char_u)(col + ' ' + 1);
7688 *strp++ = (char_u)(row + ' ' + 1);
7689 *strp = 0;
7690 add_to_input_buf(buf, STRLEN(buf));
7691
7692 prev_row = row;
7693 prev_col = col;
7694 return TRUE;
7695}
7696
Bram Moolenaard4aa83a2019-05-09 18:59:31 +02007697# if defined(FEAT_GUI) || defined(FEAT_XCLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007698/*
7699 * Destroy the display, window and app_context. Required for GTK.
7700 */
7701 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007702clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007703{
7704 if (xterm_Shell != (Widget)0)
7705 {
7706 XtDestroyWidget(xterm_Shell);
7707 xterm_Shell = (Widget)0;
7708 }
7709 if (xterm_dpy != NULL)
7710 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007711# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007712 /* Lesstif and Solaris crash here, lose some memory */
7713 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007714# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007715 if (x11_display == xterm_dpy)
7716 x11_display = NULL;
7717 xterm_dpy = NULL;
7718 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007719# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007720 if (app_context != (XtAppContext)NULL)
7721 {
7722 /* Lesstif and Solaris crash here, lose some memory */
7723 XtDestroyApplicationContext(app_context);
7724 app_context = (XtAppContext)NULL;
7725 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007726# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007727}
7728# endif
7729
7730/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007731 * Catch up with GUI or X events.
7732 */
7733 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007734clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007735{
7736# ifdef FEAT_GUI
7737 if (gui.in_use)
7738 gui_mch_update();
7739 else
7740# endif
7741 if (xterm_Shell != (Widget)0)
7742 xterm_update();
7743}
7744
7745/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007746 * Catch up with any queued X events. This may put keyboard input into the
7747 * input buffer, call resize call-backs, trigger timers etc. If there is
7748 * nothing in the X event queue (& no timers pending), then we return
7749 * immediately.
7750 */
7751 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007752xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007753{
7754 XEvent event;
7755
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007756 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007757 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007758 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007759
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007760 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007761 break;
7762
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007763 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007764 {
7765 /* There is an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007766 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007767#ifdef FEAT_CLIENTSERVER
7768 {
7769 XPropertyEvent *e = (XPropertyEvent *)&event;
7770
7771 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007772 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007773 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007774 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007775#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007776 XtDispatchEvent(&event);
7777 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007778 else
7779 {
7780 /* There is something else than an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007781 XtAppProcessEvent(app_context, mask);
7782 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007783 }
7784}
7785
7786 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007787clip_xterm_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007788{
7789 if (xterm_Shell != (Widget)0)
7790 return clip_x11_own_selection(xterm_Shell, cbd);
7791 return FAIL;
7792}
7793
7794 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007795clip_xterm_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007796{
7797 if (xterm_Shell != (Widget)0)
7798 clip_x11_lose_selection(xterm_Shell, cbd);
7799}
7800
7801 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007802clip_xterm_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007803{
7804 if (xterm_Shell != (Widget)0)
7805 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7806}
7807
7808 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007809clip_xterm_set_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007810{
7811 clip_x11_set_selection(cbd);
7812}
7813#endif
7814
7815
7816#if defined(USE_XSMP) || defined(PROTO)
7817/*
7818 * Code for X Session Management Protocol.
7819 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007820
7821# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007822/*
7823 * This is our chance to ask the user if they want to save,
7824 * or abort the logout
7825 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007826 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007827xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007828{
7829 cmdmod_T save_cmdmod;
7830 int cancel_shutdown = False;
7831
7832 save_cmdmod = cmdmod;
7833 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007834 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007835 /* Mustn't logout */
7836 cancel_shutdown = True;
7837 cmdmod = save_cmdmod;
7838 setcursor(); /* position cursor */
7839 out_flush();
7840
7841 /* Done interaction */
7842 SmcInteractDone(smc_conn, cancel_shutdown);
7843
7844 /* Finish off
7845 * Only end save-yourself here if we're not cancelling shutdown;
7846 * we'll get a cancelled callback later in which we'll end it.
7847 * Hopefully get around glitchy SMs (like GNOME-1)
7848 */
7849 if (!cancel_shutdown)
7850 {
7851 xsmp.save_yourself = False;
7852 SmcSaveYourselfDone(smc_conn, True);
7853 }
7854}
7855# endif
7856
7857/*
7858 * Callback that starts save-yourself.
7859 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007860 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007861xsmp_handle_save_yourself(
7862 SmcConn smc_conn,
7863 SmPointer client_data UNUSED,
7864 int save_type UNUSED,
7865 Bool shutdown,
7866 int interact_style UNUSED,
7867 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007868{
7869 /* Handle already being in saveyourself */
7870 if (xsmp.save_yourself)
7871 SmcSaveYourselfDone(smc_conn, True);
7872 xsmp.save_yourself = True;
7873 xsmp.shutdown = shutdown;
7874
7875 /* First up, preserve all files */
7876 out_flush();
7877 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
7878
7879 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007880 verb_msg(_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007881
7882# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
7883 /* Now see if we can ask about unsaved files */
7884 if (shutdown && !fast && gui.in_use)
7885 /* Need to interact with user, but need SM's permission */
7886 SmcInteractRequest(smc_conn, SmDialogError,
7887 xsmp_handle_interaction, client_data);
7888 else
7889# endif
7890 {
7891 /* Can stop the cycle here */
7892 SmcSaveYourselfDone(smc_conn, True);
7893 xsmp.save_yourself = False;
7894 }
7895}
7896
7897
7898/*
7899 * Callback to warn us of imminent death.
7900 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007901 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007902xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007903{
7904 xsmp_close();
7905
7906 /* quit quickly leaving swapfiles for modified buffers behind */
7907 getout_preserve_modified(0);
7908}
7909
7910
7911/*
7912 * Callback to tell us that save-yourself has completed.
7913 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007914 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007915xsmp_save_complete(
7916 SmcConn smc_conn UNUSED,
7917 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007918{
7919 xsmp.save_yourself = False;
7920}
7921
7922
7923/*
7924 * Callback to tell us that an instigated shutdown was cancelled
7925 * (maybe even by us)
7926 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007927 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007928xsmp_shutdown_cancelled(
7929 SmcConn smc_conn,
7930 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007931{
7932 if (xsmp.save_yourself)
7933 SmcSaveYourselfDone(smc_conn, True);
7934 xsmp.save_yourself = False;
7935 xsmp.shutdown = False;
7936}
7937
7938
7939/*
7940 * Callback to tell us that a new ICE connection has been established.
7941 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007942 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007943xsmp_ice_connection(
7944 IceConn iceConn,
7945 IcePointer clientData UNUSED,
7946 Bool opening,
7947 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007948{
7949 /* Intercept creation of ICE connection fd */
7950 if (opening)
7951 {
7952 xsmp_icefd = IceConnectionNumber(iceConn);
7953 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7954 }
7955}
7956
7957
7958/* Handle any ICE processing that's required; return FAIL if SM lost */
7959 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007960xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007961{
7962 Bool rep;
7963
7964 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7965 == IceProcessMessagesIOError)
7966 {
7967 /* Lost ICE */
7968 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007969 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007970 xsmp_close();
7971 return FAIL;
7972 }
7973 else
7974 return OK;
7975}
7976
7977static int dummy;
7978
7979/* Set up X Session Management Protocol */
7980 void
7981xsmp_init(void)
7982{
7983 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007984 SmcCallbacks smcallbacks;
7985#if 0
7986 SmPropValue smname;
7987 SmProp smnameprop;
7988 SmProp *smprops[1];
7989#endif
7990
7991 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007992 verb_msg(_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007993
7994 xsmp.save_yourself = xsmp.shutdown = False;
7995
7996 /* Set up SM callbacks - must have all, even if they're not used */
7997 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7998 smcallbacks.save_yourself.client_data = NULL;
7999 smcallbacks.die.callback = xsmp_die;
8000 smcallbacks.die.client_data = NULL;
8001 smcallbacks.save_complete.callback = xsmp_save_complete;
8002 smcallbacks.save_complete.client_data = NULL;
8003 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
8004 smcallbacks.shutdown_cancelled.client_data = NULL;
8005
8006 /* Set up a watch on ICE connection creations. The "dummy" argument is
8007 * apparently required for FreeBSD (we get a BUS error when using NULL). */
8008 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
8009 {
8010 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01008011 verb_msg(_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008012 return;
8013 }
8014
8015 /* Create an SM connection */
8016 xsmp.smcconn = SmcOpenConnection(
8017 NULL,
8018 NULL,
8019 SmProtoMajor,
8020 SmProtoMinor,
8021 SmcSaveYourselfProcMask | SmcDieProcMask
8022 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
8023 &smcallbacks,
8024 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00008025 &xsmp.clientid,
Bram Moolenaar4841a7c2018-09-22 14:08:49 +02008026 sizeof(errorstring) - 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008027 errorstring);
8028 if (xsmp.smcconn == NULL)
8029 {
8030 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00008031
Bram Moolenaar071d4272004-06-13 20:20:40 +00008032 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008033 {
8034 vim_snprintf(errorreport, sizeof(errorreport),
8035 _("XSMP SmcOpenConnection failed: %s"), errorstring);
Bram Moolenaar32526b32019-01-19 17:43:09 +01008036 verb_msg(errorreport);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008037 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008038 return;
8039 }
8040 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
8041
8042#if 0
8043 /* ID ourselves */
8044 smname.value = "vim";
8045 smname.length = 3;
8046 smnameprop.name = "SmProgram";
8047 smnameprop.type = "SmARRAY8";
8048 smnameprop.num_vals = 1;
8049 smnameprop.vals = &smname;
8050
8051 smprops[0] = &smnameprop;
8052 SmcSetProperties(xsmp.smcconn, 1, smprops);
8053#endif
8054}
8055
8056
8057/* Shut down XSMP comms. */
8058 void
Bram Moolenaar05540972016-01-30 20:31:25 +01008059xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008060{
8061 if (xsmp_icefd != -1)
8062 {
8063 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00008064 if (xsmp.clientid != NULL)
8065 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00008066 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008067 xsmp_icefd = -1;
8068 }
8069}
8070#endif /* USE_XSMP */
8071
8072
8073#ifdef EBCDIC
8074/* Translate character to its CTRL- value */
8075char CtrlTable[] =
8076{
8077/* 00 - 5E */
8078 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8079 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8080 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8081 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8082 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8083 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8084/* ^ */ 0x1E,
8085/* - */ 0x1F,
8086/* 61 - 6C */
8087 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8088/* _ */ 0x1F,
8089/* 6E - 80 */
8090 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8091/* a */ 0x01,
8092/* b */ 0x02,
8093/* c */ 0x03,
8094/* d */ 0x37,
8095/* e */ 0x2D,
8096/* f */ 0x2E,
8097/* g */ 0x2F,
8098/* h */ 0x16,
8099/* i */ 0x05,
8100/* 8A - 90 */
8101 0, 0, 0, 0, 0, 0, 0,
8102/* j */ 0x15,
8103/* k */ 0x0B,
8104/* l */ 0x0C,
8105/* m */ 0x0D,
8106/* n */ 0x0E,
8107/* o */ 0x0F,
8108/* p */ 0x10,
8109/* q */ 0x11,
8110/* r */ 0x12,
8111/* 9A - A1 */
8112 0, 0, 0, 0, 0, 0, 0, 0,
8113/* s */ 0x13,
8114/* t */ 0x3C,
8115/* u */ 0x3D,
8116/* v */ 0x32,
8117/* w */ 0x26,
8118/* x */ 0x18,
8119/* y */ 0x19,
8120/* z */ 0x3F,
8121/* AA - AC */
8122 0, 0, 0,
8123/* [ */ 0x27,
8124/* AE - BC */
8125 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8126/* ] */ 0x1D,
8127/* BE - C0 */ 0, 0, 0,
8128/* A */ 0x01,
8129/* B */ 0x02,
8130/* C */ 0x03,
8131/* D */ 0x37,
8132/* E */ 0x2D,
8133/* F */ 0x2E,
8134/* G */ 0x2F,
8135/* H */ 0x16,
8136/* I */ 0x05,
8137/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
8138/* J */ 0x15,
8139/* K */ 0x0B,
8140/* L */ 0x0C,
8141/* M */ 0x0D,
8142/* N */ 0x0E,
8143/* O */ 0x0F,
8144/* P */ 0x10,
8145/* Q */ 0x11,
8146/* R */ 0x12,
8147/* DA - DF */ 0, 0, 0, 0, 0, 0,
8148/* \ */ 0x1C,
8149/* E1 */ 0,
8150/* S */ 0x13,
8151/* T */ 0x3C,
8152/* U */ 0x3D,
8153/* V */ 0x32,
8154/* W */ 0x26,
8155/* X */ 0x18,
8156/* Y */ 0x19,
8157/* Z */ 0x3F,
8158/* EA - FF*/ 0, 0, 0, 0, 0, 0,
8159 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8160};
8161
8162char MetaCharTable[]=
8163{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8164 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
8165 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
8166 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
8167 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
8168};
8169
8170
8171/* TODO: Use characters NOT numbers!!! */
8172char CtrlCharTable[]=
8173{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8174 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
8175 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
8176 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
8177 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
8178};
8179
8180
8181#endif