blob: 90c5aed97d2de5ad8cc37a953aa74165e5584a51 [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 Moolenaar0f873732019-12-05 20:28:46 +010027#include "os_unixx.h" // unix includes for os_unix.c only
Bram Moolenaar071d4272004-06-13 20:20:40 +000028
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>
Bram Moolenaar0f873732019-12-05 20:28:46 +010054# 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>
Bram Moolenaar0f873732019-12-05 20:28:46 +010066// <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// #include <linux/keyboard.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +000070# define KG_SHIFT 0
71# define KG_CTRL 2
72# define KG_ALT 3
73# define KG_ALTGR 1
74# define KG_SHIFTL 4
75# define KG_SHIFTR 5
76# define KG_CTRLL 6
77# define KG_CTRLR 7
78# define KG_CAPSSHIFT 8
79
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010080static void gpm_close(void);
81static int gpm_open(void);
82static int mch_gpm_process(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000083#endif
84
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000085#ifdef FEAT_SYSMOUSE
86# include <sys/consio.h>
87# include <sys/fbio.h>
88
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010089static int sysmouse_open(void);
90static void sysmouse_close(void);
Bram Moolenaard99df422016-01-29 23:20:40 +010091static RETSIGTYPE sig_sysmouse SIGPROTOARG;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +000092#endif
93
Bram Moolenaar071d4272004-06-13 20:20:40 +000094/*
95 * end of autoconf section. To be extended...
96 */
97
Bram Moolenaar0f873732019-12-05 20:28:46 +010098// Are the following #ifdefs still required? And why? Is that for X11?
Bram Moolenaar071d4272004-06-13 20:20:40 +000099
100#if defined(ESIX) || defined(M_UNIX) && !defined(SCO)
101# ifdef SIGWINCH
102# undef SIGWINCH
103# endif
104# ifdef TIOCGWINSZ
105# undef TIOCGWINSZ
106# endif
107#endif
108
Bram Moolenaar0f873732019-12-05 20:28:46 +0100109#if defined(SIGWINDOW) && !defined(SIGWINCH) // hpux 9.01 has it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110# define SIGWINCH SIGWINDOW
111#endif
112
113#ifdef FEAT_X11
114# include <X11/Xlib.h>
115# include <X11/Xutil.h>
116# include <X11/Xatom.h>
117# ifdef FEAT_XCLIPBOARD
118# include <X11/Intrinsic.h>
119# include <X11/Shell.h>
120# include <X11/StringDefs.h>
121static Widget xterm_Shell = (Widget)0;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100122static void clip_update(void);
123static void xterm_update(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124# endif
125
126# if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)
127Window x11_window = 0;
128# endif
129Display *x11_display = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130#endif
131
132#ifdef FEAT_TITLE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100133static int get_x11_title(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134
135static char_u *oldtitle = NULL;
Bram Moolenaar8e82c052018-08-21 19:47:48 +0200136static volatile sig_atomic_t oldtitle_outdated = FALSE;
Bram Moolenaardac13472019-09-16 21:06:21 +0200137static int unix_did_set_title = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138static char_u *oldicon = NULL;
139static int did_set_icon = FALSE;
140#endif
141
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100142static void may_core_dump(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143
Bram Moolenaar205b8862011-09-07 15:04:31 +0200144#ifdef HAVE_UNION_WAIT
145typedef union wait waitstatus;
146#else
147typedef int waitstatus;
148#endif
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200149static int WaitForChar(long msec, int *interrupted, int ignore_input);
150static int WaitForCharOrMouse(long msec, int *interrupted, int ignore_input);
Bram Moolenaar4ffa0702013-12-11 17:12:37 +0100151#if defined(__BEOS__) || defined(VMS)
Bram Moolenaarcda77642016-06-04 13:32:35 +0200152int RealWaitForChar(int, long, int *, int *interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000153#else
Bram Moolenaarcda77642016-06-04 13:32:35 +0200154static int RealWaitForChar(int, long, int *, int *interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000155#endif
156
157#ifdef FEAT_XCLIPBOARD
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100158static int do_xterm_trace(void);
Bram Moolenaar0f873732019-12-05 20:28:46 +0100159# define XT_TRACE_DELAY 50 // delay for xterm tracing
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160#endif
161
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100162static void handle_resize(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000163
164#if defined(SIGWINCH)
Bram Moolenaard99df422016-01-29 23:20:40 +0100165static RETSIGTYPE sig_winch SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000166#endif
167#if defined(SIGINT)
Bram Moolenaard99df422016-01-29 23:20:40 +0100168static RETSIGTYPE catch_sigint SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000169#endif
170#if defined(SIGPWR)
Bram Moolenaard99df422016-01-29 23:20:40 +0100171static RETSIGTYPE catch_sigpwr SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172#endif
173#if defined(SIGALRM) && defined(FEAT_X11) \
174 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK)
175# define SET_SIG_ALARM
Bram Moolenaard99df422016-01-29 23:20:40 +0100176static RETSIGTYPE sig_alarm SIGPROTOARG;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100177// volatile because it is used in signal handler sig_alarm().
Bram Moolenaar8e82c052018-08-21 19:47:48 +0200178static volatile sig_atomic_t sig_alarm_called;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000179#endif
Bram Moolenaard99df422016-01-29 23:20:40 +0100180static RETSIGTYPE deathtrap SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100182static void catch_int_signal(void);
183static void set_signals(void);
184static void catch_signals(RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)());
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +0200185#ifdef HAVE_SIGPROCMASK
186# define SIGSET_DECL(set) sigset_t set;
187# define BLOCK_SIGNALS(set) block_signals(set)
188# define UNBLOCK_SIGNALS(set) unblock_signals(set)
189#else
190# define SIGSET_DECL(set)
191# define BLOCK_SIGNALS(set) do { /**/ } while (0)
192# define UNBLOCK_SIGNALS(set) do { /**/ } while (0)
193#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100194static int have_wildcard(int, char_u **);
195static int have_dollars(int, char_u **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000196
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100197static int save_patterns(int num_pat, char_u **pat, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198
199#ifndef SIG_ERR
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000200# define SIG_ERR ((RETSIGTYPE (*)())-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201#endif
202
Bram Moolenaar0f873732019-12-05 20:28:46 +0100203// volatile because it is used in signal handler sig_winch().
Bram Moolenaar8e82c052018-08-21 19:47:48 +0200204static volatile sig_atomic_t do_resize = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205static char_u *extra_shell_arg = NULL;
206static int show_shell_mess = TRUE;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100207// volatile because it is used in signal handler deathtrap().
208static volatile sig_atomic_t deadly_signal = 0; // The signal we caught
209// volatile because it is used in signal handler deathtrap().
210static volatile sig_atomic_t in_mch_delay = FALSE; // sleeping in mch_delay()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000211
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +0100212#if defined(FEAT_JOB_CHANNEL) && !defined(USE_SYSTEM)
213static int dont_check_job_ended = 0;
214#endif
215
Bram Moolenaar0f873732019-12-05 20:28:46 +0100216static int curr_tmode = TMODE_COOK; // contains current terminal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217
218#ifdef USE_XSMP
219typedef struct
220{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100221 SmcConn smcconn; // The SM connection ID
222 IceConn iceconn; // The ICE connection ID
223 char *clientid; // The client ID for the current smc session
224 Bool save_yourself; // If we're in the middle of a save_yourself
225 Bool shutdown; // If we're in shutdown mode
Bram Moolenaar071d4272004-06-13 20:20:40 +0000226} xsmp_config_T;
227
228static xsmp_config_T xsmp;
229#endif
230
231#ifdef SYS_SIGLIST_DECLARED
232/*
233 * I have seen
234 * extern char *_sys_siglist[NSIG];
235 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
236 * that describe the signals. That is nearly what we want here. But
237 * autoconf does only check for sys_siglist (without the underscore), I
238 * do not want to change everything today.... jw.
Bram Moolenaar3f7d0902016-11-12 21:13:42 +0100239 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.ac.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240 */
241#endif
242
243static struct signalinfo
244{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100245 int sig; // Signal number, eg. SIGSEGV etc
246 char *name; // Signal name (not char_u!).
247 char deadly; // Catch as a deadly signal?
Bram Moolenaar071d4272004-06-13 20:20:40 +0000248} signal_info[] =
249{
250#ifdef SIGHUP
251 {SIGHUP, "HUP", TRUE},
252#endif
253#ifdef SIGQUIT
254 {SIGQUIT, "QUIT", TRUE},
255#endif
256#ifdef SIGILL
257 {SIGILL, "ILL", TRUE},
258#endif
259#ifdef SIGTRAP
260 {SIGTRAP, "TRAP", TRUE},
261#endif
262#ifdef SIGABRT
263 {SIGABRT, "ABRT", TRUE},
264#endif
265#ifdef SIGEMT
266 {SIGEMT, "EMT", TRUE},
267#endif
268#ifdef SIGFPE
269 {SIGFPE, "FPE", TRUE},
270#endif
271#ifdef SIGBUS
272 {SIGBUS, "BUS", TRUE},
273#endif
Bram Moolenaar75676462013-01-30 14:55:42 +0100274#if defined(SIGSEGV) && !defined(FEAT_MZSCHEME)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100275 // MzScheme uses SEGV in its garbage collector
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276 {SIGSEGV, "SEGV", TRUE},
277#endif
278#ifdef SIGSYS
279 {SIGSYS, "SYS", TRUE},
280#endif
281#ifdef SIGALRM
Bram Moolenaar0f873732019-12-05 20:28:46 +0100282 {SIGALRM, "ALRM", FALSE}, // Perl's alarm() can trigger it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283#endif
284#ifdef SIGTERM
285 {SIGTERM, "TERM", TRUE},
286#endif
Bram Moolenaarb292a2a2011-02-09 18:47:40 +0100287#if defined(SIGVTALRM) && !defined(FEAT_RUBY)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288 {SIGVTALRM, "VTALRM", TRUE},
289#endif
Bram Moolenaar02f07e02008-03-12 12:17:28 +0000290#if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100291 // MzScheme uses SIGPROF for its own needs; On Linux with profiling
292 // this makes Vim exit. WE_ARE_PROFILING is defined in Makefile.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293 {SIGPROF, "PROF", TRUE},
294#endif
295#ifdef SIGXCPU
296 {SIGXCPU, "XCPU", TRUE},
297#endif
298#ifdef SIGXFSZ
299 {SIGXFSZ, "XFSZ", TRUE},
300#endif
301#ifdef SIGUSR1
302 {SIGUSR1, "USR1", TRUE},
303#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000304#if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100305 // Used for sysmouse handling
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 {SIGUSR2, "USR2", TRUE},
307#endif
308#ifdef SIGINT
309 {SIGINT, "INT", FALSE},
310#endif
311#ifdef SIGWINCH
312 {SIGWINCH, "WINCH", FALSE},
313#endif
314#ifdef SIGTSTP
315 {SIGTSTP, "TSTP", FALSE},
316#endif
317#ifdef SIGPIPE
318 {SIGPIPE, "PIPE", FALSE},
319#endif
320 {-1, "Unknown!", FALSE}
321};
322
Bram Moolenaar25724922009-07-14 15:38:41 +0000323 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100324mch_chdir(char *path)
Bram Moolenaar25724922009-07-14 15:38:41 +0000325{
326 if (p_verbose >= 5)
327 {
328 verbose_enter();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100329 smsg("chdir(%s)", path);
Bram Moolenaar25724922009-07-14 15:38:41 +0000330 verbose_leave();
331 }
332# ifdef VMS
333 return chdir(vms_fixfilename(path));
334# else
335 return chdir(path);
336# endif
337}
338
Bram Moolenaar0f873732019-12-05 20:28:46 +0100339// Why is NeXT excluded here (and not in os_unixx.h)?
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +0100340#if defined(ECHOE) && defined(ICANON) \
341 && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) \
342 && !defined(__NeXT__)
Bram Moolenaar4f44b882017-08-13 20:06:18 +0200343# define NEW_TTY_SYSTEM
344#endif
345
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000346/*
Bram Moolenaard23a8232018-02-10 18:45:26 +0100347 * Write s[len] to the screen (stdout).
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000348 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000349 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100350mch_write(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000351{
Bram Moolenaar42335f52018-09-13 15:33:43 +0200352 vim_ignored = (int)write(1, (char *)s, len);
Bram Moolenaar0f873732019-12-05 20:28:46 +0100353 if (p_wd) // Unix is too fast, slow down a bit more
Bram Moolenaar8fdd7212016-03-26 19:41:48 +0100354 RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000355}
356
357/*
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100358 * Function passed to inchar_loop() to handle window resizing.
359 * If "check_only" is TRUE: Return whether there was a resize.
360 * If "check_only" is FALSE: Deal with the window resized.
361 */
362 static int
363resize_func(int check_only)
364{
365 if (check_only)
366 return do_resize;
367 while (do_resize)
368 handle_resize();
369 return FALSE;
370}
371
372/*
Bram Moolenaarc2a27c32007-12-01 16:19:33 +0000373 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 * Get a characters from the keyboard.
375 * Return the number of characters that are available.
376 * If wtime == 0 do not wait for characters.
377 * If wtime == n wait a short time for characters.
378 * If wtime == -1 wait forever for characters.
379 */
380 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100381mch_inchar(
382 char_u *buf,
383 int maxlen,
Bram Moolenaar0f873732019-12-05 20:28:46 +0100384 long wtime, // don't use "time", MIPS cannot handle it
Bram Moolenaar05540972016-01-30 20:31:25 +0100385 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386{
Bram Moolenaare40b9d42019-01-27 16:55:47 +0100387 return inchar_loop(buf, maxlen, wtime, tb_change_cnt,
388 WaitForChar, resize_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389}
390
391 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100392handle_resize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393{
394 do_resize = FALSE;
395 shell_resized();
396}
397
398/*
Bram Moolenaar40b1b542016-04-20 20:18:23 +0200399 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000400 */
401 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100402mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403{
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200404 return WaitForChar(0L, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405}
406
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200407#if defined(FEAT_TERMINAL) || defined(PROTO)
408/*
409 * Check for any pending input or messages.
410 */
411 int
412mch_check_messages(void)
413{
414 return WaitForChar(0L, NULL, TRUE);
415}
416#endif
417
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418#if defined(HAVE_TOTAL_MEM) || defined(PROTO)
419# ifdef HAVE_SYS_RESOURCE_H
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000420# include <sys/resource.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421# endif
422# if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
423# include <sys/sysctl.h>
424# endif
425# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
426# include <sys/sysinfo.h>
427# endif
Bram Moolenaar362dc332018-03-05 21:59:37 +0100428# ifdef MACOS_X
Bram Moolenaar988615f2018-02-27 17:58:20 +0100429# include <mach/mach_host.h>
430# include <mach/mach_port.h>
Bram Moolenaar988615f2018-02-27 17:58:20 +0100431# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000432
433/*
Bram Moolenaar914572a2007-05-01 11:37:47 +0000434 * Return total amount of memory available in Kbyte.
435 * Doesn't change when memory has been allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000436 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 long_u
Bram Moolenaar05540972016-01-30 20:31:25 +0100438mch_total_mem(int special UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000439{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000440 long_u mem = 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +0100441 long_u shiftright = 10; // how much to shift "mem" right for Kbyte
Bram Moolenaar071d4272004-06-13 20:20:40 +0000442
Bram Moolenaar362dc332018-03-05 21:59:37 +0100443# ifdef MACOS_X
Bram Moolenaar988615f2018-02-27 17:58:20 +0100444 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100445 // Mac (Darwin) way of getting the amount of RAM available
Bram Moolenaar988615f2018-02-27 17:58:20 +0100446 mach_port_t host = mach_host_self();
447 kern_return_t kret;
448# ifdef HOST_VM_INFO64
449 struct vm_statistics64 vm_stat;
450 natural_t count = HOST_VM_INFO64_COUNT;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451
Bram Moolenaar988615f2018-02-27 17:58:20 +0100452 kret = host_statistics64(host, HOST_VM_INFO64,
453 (host_info64_t)&vm_stat, &count);
454# else
455 struct vm_statistics vm_stat;
456 natural_t count = HOST_VM_INFO_COUNT;
457
458 kret = host_statistics(host, HOST_VM_INFO,
459 (host_info_t)&vm_stat, &count);
460# endif
461 if (kret == KERN_SUCCESS)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100462 // get the amount of user memory by summing each usage
Bram Moolenaar988615f2018-02-27 17:58:20 +0100463 mem = (long_u)(vm_stat.free_count + vm_stat.active_count
464 + vm_stat.inactive_count
465# ifdef MAC_OS_X_VERSION_10_9
466 + vm_stat.compressor_page_count
467# endif
Bram Moolenaar62b7f6a2018-03-22 21:44:07 +0100468 ) * sysconf(_SC_PAGESIZE);
Bram Moolenaar988615f2018-02-27 17:58:20 +0100469 mach_port_deallocate(mach_task_self(), host);
470 }
471# endif
472
473# ifdef HAVE_SYSCTL
474 if (mem == 0)
475 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100476 // BSD way of getting the amount of RAM available.
Bram Moolenaar988615f2018-02-27 17:58:20 +0100477 int mib[2];
478 size_t len = sizeof(long_u);
479# ifdef HW_USERMEM64
480 long_u physmem;
481# else
Bram Moolenaar0f873732019-12-05 20:28:46 +0100482 // sysctl() may return 32 bit or 64 bit, accept both
Bram Moolenaar988615f2018-02-27 17:58:20 +0100483 union {
484 int_u u32;
485 long_u u64;
486 } physmem;
487# endif
488
489 mib[0] = CTL_HW;
490# ifdef HW_USERMEM64
491 mib[1] = HW_USERMEM64;
492# else
493 mib[1] = HW_USERMEM;
494# endif
495 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
496 {
497# ifdef HW_USERMEM64
498 mem = (long_u)physmem;
499# else
500 if (len == sizeof(physmem.u64))
501 mem = (long_u)physmem.u64;
502 else
503 mem = (long_u)physmem.u32;
504# endif
505 }
506 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200507# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000508
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200509# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000510 if (mem == 0)
511 {
512 struct sysinfo sinfo;
513
Bram Moolenaar0f873732019-12-05 20:28:46 +0100514 // Linux way of getting amount of RAM available
Bram Moolenaar071d4272004-06-13 20:20:40 +0000515 if (sysinfo(&sinfo) == 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000516 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200517# ifdef HAVE_SYSINFO_MEM_UNIT
Bram Moolenaar0f873732019-12-05 20:28:46 +0100518 // avoid overflow as much as possible
Bram Moolenaar914572a2007-05-01 11:37:47 +0000519 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
520 {
521 sinfo.mem_unit = sinfo.mem_unit >> 1;
522 --shiftright;
523 }
524 mem = sinfo.totalram * sinfo.mem_unit;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200525# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 mem = sinfo.totalram;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200527# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000528 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200530# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000531
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200532# ifdef HAVE_SYSCONF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533 if (mem == 0)
534 {
535 long pagesize, pagecount;
536
Bram Moolenaar0f873732019-12-05 20:28:46 +0100537 // Solaris way of getting amount of RAM available
Bram Moolenaar071d4272004-06-13 20:20:40 +0000538 pagesize = sysconf(_SC_PAGESIZE);
539 pagecount = sysconf(_SC_PHYS_PAGES);
540 if (pagesize > 0 && pagecount > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000541 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100542 // avoid overflow as much as possible
Bram Moolenaar914572a2007-05-01 11:37:47 +0000543 while (shiftright > 0 && (pagesize & 1) == 0)
544 {
Bram Moolenaar3d27a452007-05-10 17:44:18 +0000545 pagesize = (long_u)pagesize >> 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000546 --shiftright;
547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 mem = (long_u)pagesize * pagecount;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000549 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200551# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552
Bram Moolenaar0f873732019-12-05 20:28:46 +0100553 // Return the minimum of the physical memory and the user limit, because
554 // using more than the user limit may cause Vim to be terminated.
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200555# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000556 {
557 struct rlimit rlp;
558
559 if (getrlimit(RLIMIT_DATA, &rlp) == 0
560 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200561# ifdef RLIM_INFINITY
Bram Moolenaar071d4272004-06-13 20:20:40 +0000562 && rlp.rlim_cur != RLIM_INFINITY
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200563# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000564 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000565 )
Bram Moolenaar914572a2007-05-01 11:37:47 +0000566 {
567 mem = (long_u)rlp.rlim_cur;
568 shiftright = 10;
569 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200571# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572
573 if (mem > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000574 return mem >> shiftright;
575 return (long_u)0x1fffff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576}
577#endif
578
579 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100580mch_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000581{
582 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000583#ifdef FEAT_MZSCHEME
Bram Moolenaar0f873732019-12-05 20:28:46 +0100584 long total = msec; // remember original value
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000585#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000586
587 if (ignoreinput)
588 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100589 // Go to cooked mode without echo, to allow SIGINT interrupting us
590 // here. But we don't want QUIT to kill us (CTRL-\ used in a
591 // shell may produce SIGQUIT).
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000592 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000593 old_tmode = curr_tmode;
594 if (curr_tmode == TMODE_RAW)
595 settmode(TMODE_SLEEP);
596
597 /*
598 * Everybody sleeps in a different way...
599 * Prefer nanosleep(), some versions of usleep() can only sleep up to
600 * one second.
601 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000602#ifdef FEAT_MZSCHEME
603 do
604 {
Bram Moolenaar0f873732019-12-05 20:28:46 +0100605 // if total is large enough, wait by portions in p_mzq
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000606 if (total > p_mzq)
607 msec = p_mzq;
608 else
609 msec = total;
610 total -= msec;
611#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000612#ifdef HAVE_NANOSLEEP
613 {
614 struct timespec ts;
615
616 ts.tv_sec = msec / 1000;
617 ts.tv_nsec = (msec % 1000) * 1000000;
618 (void)nanosleep(&ts, NULL);
619 }
620#else
621# ifdef HAVE_USLEEP
622 while (msec >= 1000)
623 {
624 usleep((unsigned int)(999 * 1000));
625 msec -= 999;
626 }
627 usleep((unsigned int)(msec * 1000));
628# else
629# ifndef HAVE_SELECT
630 poll(NULL, 0, (int)msec);
631# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 {
633 struct timeval tv;
634
635 tv.tv_sec = msec / 1000;
636 tv.tv_usec = (msec % 1000) * 1000;
637 /*
638 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
639 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
640 */
641 select(0, NULL, NULL, NULL, &tv);
642 }
Bram Moolenaar0f873732019-12-05 20:28:46 +0100643# endif // HAVE_SELECT
644# endif // HAVE_NANOSLEEP
645#endif // HAVE_USLEEP
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000646#ifdef FEAT_MZSCHEME
647 }
648 while (total > 0);
649#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650
651 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000652 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000653 }
654 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200655 WaitForChar(msec, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656}
657
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000658#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
660# define HAVE_CHECK_STACK_GROWTH
661/*
662 * Support for checking for an almost-out-of-stack-space situation.
663 */
664
665/*
666 * Return a pointer to an item on the stack. Used to find out if the stack
667 * grows up or down.
668 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669static int stack_grows_downwards;
670
671/*
672 * Find out if the stack grows upwards or downwards.
673 * "p" points to a variable on the stack of the caller.
674 */
675 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100676check_stack_growth(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677{
678 int i;
679
680 stack_grows_downwards = (p > (char *)&i);
681}
682#endif
683
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000684#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685static char *stack_limit = NULL;
686
687#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
688# include <pthread.h>
689# include <pthread_np.h>
690#endif
691
692/*
693 * Find out until how var the stack can grow without getting into trouble.
694 * Called when starting up and when switching to the signal stack in
695 * deathtrap().
696 */
697 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100698get_stack_limit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699{
700 struct rlimit rlp;
701 int i;
702 long lim;
703
Bram Moolenaar0f873732019-12-05 20:28:46 +0100704 // Set the stack limit to 15/16 of the allowable size. Skip this when the
705 // limit doesn't fit in a long (rlim_cur might be "long long").
Bram Moolenaar071d4272004-06-13 20:20:40 +0000706 if (getrlimit(RLIMIT_STACK, &rlp) == 0
707 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
708# ifdef RLIM_INFINITY
709 && rlp.rlim_cur != RLIM_INFINITY
710# endif
711 )
712 {
713 lim = (long)rlp.rlim_cur;
714#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
715 {
716 pthread_attr_t attr;
717 size_t size;
718
Bram Moolenaar0f873732019-12-05 20:28:46 +0100719 // On FreeBSD the initial thread always has a fixed stack size, no
720 // matter what the limits are set to. Normally it's 1 Mbyte.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721 pthread_attr_init(&attr);
722 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
723 {
724 pthread_attr_getstacksize(&attr, &size);
725 if (lim > (long)size)
726 lim = (long)size;
727 }
728 pthread_attr_destroy(&attr);
729 }
730#endif
731 if (stack_grows_downwards)
732 {
733 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
734 if (stack_limit >= (char *)&i)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100735 // overflow, set to 1/16 of current stack position
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 stack_limit = (char *)((long)&i / 16L);
737 }
738 else
739 {
740 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
741 if (stack_limit <= (char *)&i)
Bram Moolenaar0f873732019-12-05 20:28:46 +0100742 stack_limit = NULL; // overflow
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 }
744 }
745}
746
747/*
748 * Return FAIL when running out of stack space.
749 * "p" must point to any variable local to the caller that's on the stack.
750 */
751 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100752mch_stackcheck(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753{
754 if (stack_limit != NULL)
755 {
756 if (stack_grows_downwards)
757 {
758 if (p < stack_limit)
759 return FAIL;
760 }
761 else if (p > stack_limit)
762 return FAIL;
763 }
764 return OK;
765}
766#endif
767
768#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
769/*
770 * Support for using the signal stack.
771 * This helps when we run out of stack space, which causes a SIGSEGV. The
772 * signal handler then must run on another stack, since the normal stack is
773 * completely full.
774 */
775
776#ifndef SIGSTKSZ
Bram Moolenaar0f873732019-12-05 20:28:46 +0100777# define SIGSTKSZ 8000 // just a guess of how much stack is needed...
Bram Moolenaar071d4272004-06-13 20:20:40 +0000778#endif
779
780# ifdef HAVE_SIGALTSTACK
Bram Moolenaar0f873732019-12-05 20:28:46 +0100781static stack_t sigstk; // for sigaltstack()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782# else
Bram Moolenaar0f873732019-12-05 20:28:46 +0100783static struct sigstack sigstk; // for sigstack()
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784# endif
785
Bram Moolenaar071d4272004-06-13 20:20:40 +0000786static char *signal_stack;
787
788 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100789init_signal_stack(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000790{
791 if (signal_stack != NULL)
792 {
793# ifdef HAVE_SIGALTSTACK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794# ifdef HAVE_SS_BASE
795 sigstk.ss_base = signal_stack;
796# else
797 sigstk.ss_sp = signal_stack;
798# endif
799 sigstk.ss_size = SIGSTKSZ;
800 sigstk.ss_flags = 0;
801 (void)sigaltstack(&sigstk, NULL);
802# else
803 sigstk.ss_sp = signal_stack;
804 if (stack_grows_downwards)
805 sigstk.ss_sp += SIGSTKSZ - 1;
806 sigstk.ss_onstack = 0;
807 (void)sigstack(&sigstk, NULL);
808# endif
809 }
810}
811#endif
812
813/*
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000814 * We need correct prototypes for a signal function, otherwise mean compilers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 * will barf when the second argument to signal() is ``wrong''.
816 * Let me try it with a few tricky defines from my own osdef.h (jw).
817 */
818#if defined(SIGWINCH)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 static RETSIGTYPE
820sig_winch SIGDEFARG(sigarg)
821{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100822 // this is not required on all systems, but it doesn't hurt anybody
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
824 do_resize = TRUE;
825 SIGRETURN;
826}
827#endif
828
829#if defined(SIGINT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 static RETSIGTYPE
831catch_sigint SIGDEFARG(sigarg)
832{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100833 // this is not required on all systems, but it doesn't hurt anybody
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
835 got_int = TRUE;
836 SIGRETURN;
837}
838#endif
839
840#if defined(SIGPWR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 static RETSIGTYPE
842catch_sigpwr SIGDEFARG(sigarg)
843{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100844 // this is not required on all systems, but it doesn't hurt anybody
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000845 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 /*
847 * I'm not sure we get the SIGPWR signal when the system is really going
848 * down or when the batteries are almost empty. Just preserve the swap
849 * files and don't exit, that can't do any harm.
850 */
851 ml_sync_all(FALSE, FALSE);
852 SIGRETURN;
853}
854#endif
855
856#ifdef SET_SIG_ALARM
857/*
858 * signal function for alarm().
859 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 static RETSIGTYPE
861sig_alarm SIGDEFARG(sigarg)
862{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100863 // doesn't do anything, just to break a system call
Bram Moolenaar071d4272004-06-13 20:20:40 +0000864 sig_alarm_called = TRUE;
865 SIGRETURN;
866}
867#endif
868
Bram Moolenaaredce7422019-01-20 18:39:30 +0100869#if (defined(HAVE_SETJMP_H) \
870 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
871 || defined(FEAT_LIBCALL))) \
872 || defined(PROTO)
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100873# define USING_SETJMP 1
Bram Moolenaaredce7422019-01-20 18:39:30 +0100874
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100875// argument to SETJMP()
876static JMP_BUF lc_jump_env;
877
878# ifdef SIGHASARG
Bram Moolenaar32aa1022019-11-02 22:54:41 +0100879// Caught signal number, 0 when no signal was caught; used for mch_libcall().
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100880// Volatile because it is used in signal handlers.
881static volatile sig_atomic_t lc_signal;
882# endif
883
884// TRUE when lc_jump_env is valid.
885// Volatile because it is used in signal handler deathtrap().
886static volatile sig_atomic_t lc_active INIT(= FALSE);
887
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888/*
889 * A simplistic version of setjmp() that only allows one level of using.
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100890 * Used to protect areas where we could crash.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891 * Don't call twice before calling mch_endjmp()!.
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100892 *
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893 * Usage:
894 * mch_startjmp();
895 * if (SETJMP(lc_jump_env) != 0)
896 * {
897 * mch_didjmp();
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100898 * emsg("crash!");
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 * }
900 * else
901 * {
902 * do_the_work;
903 * mch_endjmp();
904 * }
905 * Note: Can't move SETJMP() here, because a function calling setjmp() must
906 * not return before the saved environment is used.
907 * Returns OK for normal return, FAIL when the protected code caused a
908 * problem and LONGJMP() was used.
909 */
Bram Moolenaar113e1072019-01-20 15:30:40 +0100910 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100911mch_startjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000912{
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100913# ifdef SIGHASARG
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 lc_signal = 0;
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100915# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916 lc_active = TRUE;
917}
918
Bram Moolenaar113e1072019-01-20 15:30:40 +0100919 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100920mch_endjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921{
922 lc_active = FALSE;
923}
924
Bram Moolenaar113e1072019-01-20 15:30:40 +0100925 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100926mch_didjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000927{
928# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaarb7a7e032018-12-28 17:01:59 +0100929 // On FreeBSD the signal stack has to be reset after using siglongjmp(),
930 // otherwise catching the signal only works once.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000931 init_signal_stack();
932# endif
933}
934#endif
935
936/*
937 * This function handles deadly signals.
Bram Moolenaarbec9c202013-09-05 21:41:39 +0200938 * It tries to preserve any swap files and exit properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000939 * (partly from Elvis).
Bram Moolenaarbec9c202013-09-05 21:41:39 +0200940 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in
941 * a deadlock.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 */
943 static RETSIGTYPE
944deathtrap SIGDEFARG(sigarg)
945{
Bram Moolenaar0f873732019-12-05 20:28:46 +0100946 static int entered = 0; // count the number of times we got here.
947 // Note: when memory has been corrupted
948 // this may get an arbitrary value!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949#ifdef SIGHASARG
950 int i;
951#endif
952
Bram Moolenaarb2148f52019-01-20 23:43:57 +0100953#if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000954 /*
955 * Catch a crash in protected code.
956 * Restores the environment saved in lc_jump_env, which looks like
957 * SETJMP() returns 1.
958 */
959 if (lc_active)
960 {
961# if defined(SIGHASARG)
962 lc_signal = sigarg;
963# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +0100964 lc_active = FALSE; // don't jump again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 LONGJMP(lc_jump_env, 1);
Bram Moolenaar0f873732019-12-05 20:28:46 +0100966 // NOTREACHED
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 }
968#endif
969
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000970#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000971# ifdef SIGQUIT
Bram Moolenaar0f873732019-12-05 20:28:46 +0100972 // While in mch_delay() we go to cooked mode to allow a CTRL-C to
973 // interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
974 // pressing CTRL-\, but we don't want Vim to exit then.
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000975 if (in_mch_delay && sigarg == SIGQUIT)
976 SIGRETURN;
977# endif
978
Bram Moolenaar0f873732019-12-05 20:28:46 +0100979 // When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
980 // here. This avoids that a non-reentrant function is interrupted, e.g.,
981 // free(). Calling free() again may then cause a crash.
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000982 if (entered == 0
983 && (0
984# ifdef SIGHUP
985 || sigarg == SIGHUP
986# endif
987# ifdef SIGQUIT
988 || sigarg == SIGQUIT
989# endif
990# ifdef SIGTERM
991 || sigarg == SIGTERM
992# endif
993# ifdef SIGPWR
994 || sigarg == SIGPWR
995# endif
996# ifdef SIGUSR1
997 || sigarg == SIGUSR1
998# endif
999# ifdef SIGUSR2
1000 || sigarg == SIGUSR2
1001# endif
1002 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001003 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001004 SIGRETURN;
1005#endif
1006
Bram Moolenaar0f873732019-12-05 20:28:46 +01001007 // Remember how often we have been called.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008 ++entered;
1009
Bram Moolenaar0f873732019-12-05 20:28:46 +01001010 // Executing autocommands is likely to use more stack space than we have
1011 // available in the signal stack.
Bram Moolenaare429e702016-06-10 19:49:14 +02001012 block_autocmds();
Bram Moolenaare429e702016-06-10 19:49:14 +02001013
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014#ifdef FEAT_EVAL
Bram Moolenaar0f873732019-12-05 20:28:46 +01001015 // Set the v:dying variable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 set_vim_var_nr(VV_DYING, (long)entered);
1017#endif
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01001018 v_dying = entered;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001020#ifdef HAVE_STACK_LIMIT
Bram Moolenaar0f873732019-12-05 20:28:46 +01001021 // Since we are now using the signal stack, need to reset the stack
1022 // limit. Otherwise using a regexp will fail.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 get_stack_limit();
1024#endif
1025
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001026#if 0
Bram Moolenaar0f873732019-12-05 20:28:46 +01001027 // This is for opening gdb the moment Vim crashes.
1028 // You need to manually adjust the file name and Vim executable name.
1029 // Suggested by SungHyun Nam.
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001030 {
1031# define VI_GDB_FILE "/tmp/vimgdb"
1032# define VIM_NAME "/usr/bin/vim"
1033 FILE *fp = fopen(VI_GDB_FILE, "w");
1034 if (fp)
1035 {
1036 fprintf(fp,
1037 "file %s\n"
1038 "attach %d\n"
1039 "set height 1000\n"
1040 "bt full\n"
1041 , VIM_NAME, getpid());
1042 fclose(fp);
1043 system("xterm -e gdb -x "VI_GDB_FILE);
1044 unlink(VI_GDB_FILE);
1045 }
1046 }
1047#endif
1048
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049#ifdef SIGHASARG
Bram Moolenaar0f873732019-12-05 20:28:46 +01001050 // try to find the name of this signal
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 for (i = 0; signal_info[i].sig != -1; i++)
1052 if (sigarg == signal_info[i].sig)
1053 break;
1054 deadly_signal = sigarg;
1055#endif
1056
Bram Moolenaar0f873732019-12-05 20:28:46 +01001057 full_screen = FALSE; // don't write message to the GUI, it might be
1058 // part of the problem...
Bram Moolenaar071d4272004-06-13 20:20:40 +00001059 /*
1060 * If something goes wrong after entering here, we may get here again.
1061 * When this happens, give a message and try to exit nicely (resetting the
1062 * terminal mode, etc.)
1063 * When this happens twice, just exit, don't even try to give a message,
1064 * stack may be corrupt or something weird.
1065 * When this still happens again (or memory was corrupted in such a way
1066 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1067 */
1068 if (entered >= 3)
1069 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001070 reset_signals(); // don't catch any signals anymore
Bram Moolenaar071d4272004-06-13 20:20:40 +00001071 may_core_dump();
1072 if (entered >= 4)
1073 _exit(8);
1074 exit(7);
1075 }
1076 if (entered == 2)
1077 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001078 // No translation, it may call malloc().
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001079 OUT_STR("Vim: Double signal, exiting\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001080 out_flush();
1081 getout(1);
1082 }
1083
Bram Moolenaar0f873732019-12-05 20:28:46 +01001084 // No translation, it may call malloc().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085#ifdef SIGHASARG
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001086 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001087 signal_info[i].name);
1088#else
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001089 sprintf((char *)IObuff, "Vim: Caught deadly signal\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090#endif
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001091
Bram Moolenaar0f873732019-12-05 20:28:46 +01001092 // Preserve files and exit. This sets the really_exiting flag to prevent
1093 // calling free().
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001094 preserve_exit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095
Bram Moolenaar0f873732019-12-05 20:28:46 +01001096 // NOTREACHED
Bram Moolenaare429e702016-06-10 19:49:14 +02001097
Bram Moolenaar009b2592004-10-24 19:18:58 +00001098#ifdef NBDEBUG
1099 reset_signals();
1100 may_core_dump();
1101 abort();
1102#endif
1103
Bram Moolenaar071d4272004-06-13 20:20:40 +00001104 SIGRETURN;
1105}
1106
Bram Moolenaar071d4272004-06-13 20:20:40 +00001107/*
Bram Moolenaar2e310482018-08-21 13:09:10 +02001108 * Invoked after receiving SIGCONT. We don't know what happened while
1109 * sleeping, deal with part of that.
1110 */
1111 static void
1112after_sigcont(void)
1113{
1114# ifdef FEAT_TITLE
1115 // Don't change "oldtitle" in a signal handler, set a flag to obtain it
1116 // again later.
1117 oldtitle_outdated = TRUE;
1118# endif
1119 settmode(TMODE_RAW);
1120 need_check_timestamps = TRUE;
1121 did_check_timestamps = FALSE;
1122}
1123
1124#if defined(SIGCONT)
1125static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar8e82c052018-08-21 19:47:48 +02001126static volatile sig_atomic_t in_mch_suspend = FALSE;
Bram Moolenaar2e310482018-08-21 13:09:10 +02001127
1128/*
1129 * With multi-threading, suspending might not work immediately. Catch the
1130 * SIGCONT signal, which will be used as an indication whether the suspending
1131 * has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001132 *
1133 * On Linux, signal is not always handled immediately either.
1134 * See https://bugs.launchpad.net/bugs/291373
Bram Moolenaar2e310482018-08-21 13:09:10 +02001135 * Probably because the signal is handled in another thread.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001136 *
Bram Moolenaarb292a2a2011-02-09 18:47:40 +01001137 * volatile because it is used in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 */
Bram Moolenaar8e82c052018-08-21 19:47:48 +02001139static volatile sig_atomic_t sigcont_received;
Bram Moolenaarf1883472018-08-20 21:58:57 +02001140static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141
1142/*
1143 * signal handler for SIGCONT
1144 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145 static RETSIGTYPE
1146sigcont_handler SIGDEFARG(sigarg)
1147{
Bram Moolenaar2e310482018-08-21 13:09:10 +02001148 if (in_mch_suspend)
1149 {
1150 sigcont_received = TRUE;
1151 }
1152 else
1153 {
1154 // We didn't suspend ourselves, assume we were stopped by a SIGSTOP
1155 // signal (which can't be intercepted) and get a SIGCONT. Need to get
1156 // back to a sane mode. We should redraw, but we can't really do that
1157 // in a signal handler, do a redraw later.
1158 after_sigcont();
1159 redraw_later(CLEAR);
1160 cursor_on_force();
1161 out_flush();
1162 }
1163
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 SIGRETURN;
1165}
1166#endif
1167
Bram Moolenaar6dff58f2018-09-30 21:43:26 +02001168#if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001169# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001170static void *clip_star_save = NULL;
1171static void *clip_plus_save = NULL;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001172# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001173
1174/*
1175 * Called when Vim is going to sleep or execute a shell command.
1176 * We can't respond to requests for the X selections. Lose them, otherwise
1177 * other applications will hang. But first copy the text to cut buffer 0.
1178 */
1179 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001180loose_clipboard(void)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001181{
1182 if (clip_star.owned || clip_plus.owned)
1183 {
1184 x11_export_final_selection();
1185 if (clip_star.owned)
1186 clip_lose_selection(&clip_star);
1187 if (clip_plus.owned)
1188 clip_lose_selection(&clip_plus);
1189 if (x11_display != NULL)
1190 XFlush(x11_display);
1191 }
1192}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001193
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001194# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001195/*
1196 * Save clipboard text to restore later.
1197 */
1198 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001199save_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001200{
1201 if (clip_star.owned)
1202 clip_star_save = get_register('*', TRUE);
1203 if (clip_plus.owned)
1204 clip_plus_save = get_register('+', TRUE);
1205}
1206
1207/*
1208 * Restore clipboard text if no one own the X selection.
1209 */
1210 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001211restore_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001212{
1213 if (clip_star_save != NULL)
1214 {
1215 if (!clip_gen_owner_exists(&clip_star))
1216 put_register('*', clip_star_save);
1217 else
1218 free_register(clip_star_save);
1219 clip_star_save = NULL;
1220 }
1221 if (clip_plus_save != NULL)
1222 {
1223 if (!clip_gen_owner_exists(&clip_plus))
1224 put_register('+', clip_plus_save);
1225 else
1226 free_register(clip_plus_save);
1227 clip_plus_save = NULL;
1228 }
1229}
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001230# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001231#endif
1232
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233/*
1234 * If the machine has job control, use it to suspend the program,
1235 * otherwise fake it by starting a new shell.
1236 */
1237 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001238mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239{
Bram Moolenaar0f873732019-12-05 20:28:46 +01001240 // BeOS does have SIGTSTP, but it doesn't work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241#if defined(SIGTSTP) && !defined(__BEOS__)
Bram Moolenaar2e310482018-08-21 13:09:10 +02001242 in_mch_suspend = TRUE;
1243
Bram Moolenaar0f873732019-12-05 20:28:46 +01001244 out_flush(); // needed to make cursor visible on some systems
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 settmode(TMODE_COOK);
Bram Moolenaar0f873732019-12-05 20:28:46 +01001246 out_flush(); // needed to disable mouse on some systems
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247
1248# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001249 loose_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250# endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001251# if defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001252 sigcont_received = FALSE;
1253# endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001254
Bram Moolenaar0f873732019-12-05 20:28:46 +01001255 kill(0, SIGTSTP); // send ourselves a STOP signal
Bram Moolenaar2e310482018-08-21 13:09:10 +02001256
1257# if defined(SIGCONT)
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001258 /*
1259 * Wait for the SIGCONT signal to be handled. It generally happens
Bram Moolenaar2e310482018-08-21 13:09:10 +02001260 * immediately, but somehow not all the time, probably because it's handled
1261 * in another thread. Do not call pause() because there would be race
1262 * condition which would hang Vim if signal happened in between the test of
1263 * sigcont_received and the call to pause(). If signal is not yet received,
1264 * sleep 0, 1, 2, 3 ms. Don't bother waiting further if signal is not
1265 * received after 1+2+3 ms (not expected to happen).
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001266 */
1267 {
Bram Moolenaar262735e2009-07-14 10:20:22 +00001268 long wait_time;
Bram Moolenaar2e310482018-08-21 13:09:10 +02001269
Bram Moolenaar262735e2009-07-14 10:20:22 +00001270 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
Bram Moolenaar262735e2009-07-14 10:20:22 +00001271 mch_delay(wait_time, FALSE);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001272 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273# endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001274 in_mch_suspend = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275
Bram Moolenaar2e310482018-08-21 13:09:10 +02001276 after_sigcont();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277#else
1278 suspend_shell();
1279#endif
1280}
1281
1282 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001283mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284{
1285 Columns = 80;
1286 Rows = 24;
1287
1288 out_flush();
1289 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001290
Bram Moolenaar56718732006-03-15 22:53:57 +00001291#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001292 mac_conv_init();
1293#endif
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001294#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
1295 win_clip_init();
1296#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297}
1298
1299 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001300set_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001301{
1302#if defined(SIGWINCH)
1303 /*
1304 * WINDOW CHANGE signal is handled with sig_winch().
1305 */
1306 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1307#endif
1308
1309 /*
1310 * We want the STOP signal to work, to make mch_suspend() work.
1311 * For "rvim" the STOP signal is ignored.
1312 */
1313#ifdef SIGTSTP
1314 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1315#endif
Bram Moolenaar2e310482018-08-21 13:09:10 +02001316#if defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 signal(SIGCONT, sigcont_handler);
1318#endif
1319
1320 /*
1321 * We want to ignore breaking of PIPEs.
1322 */
1323#ifdef SIGPIPE
1324 signal(SIGPIPE, SIG_IGN);
1325#endif
1326
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001328 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329#endif
1330
1331 /*
1332 * Ignore alarm signals (Perl's alarm() generates it).
1333 */
1334#ifdef SIGALRM
1335 signal(SIGALRM, SIG_IGN);
1336#endif
1337
1338 /*
1339 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1340 * work will be lost.
1341 */
1342#ifdef SIGPWR
1343 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1344#endif
1345
1346 /*
1347 * Arrange for other signals to gracefully shutdown Vim.
1348 */
1349 catch_signals(deathtrap, SIG_ERR);
1350
1351#if defined(FEAT_GUI) && defined(SIGHUP)
1352 /*
1353 * When the GUI is running, ignore the hangup signal.
1354 */
1355 if (gui.in_use)
1356 signal(SIGHUP, SIG_IGN);
1357#endif
1358}
1359
Bram Moolenaardf177f62005-02-22 08:39:57 +00001360#if defined(SIGINT) || defined(PROTO)
1361/*
1362 * Catch CTRL-C (only works while in Cooked mode).
1363 */
1364 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001365catch_int_signal(void)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001366{
1367 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1368}
1369#endif
1370
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001372reset_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373{
1374 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar2e310482018-08-21 13:09:10 +02001375#if defined(SIGCONT)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001376 // SIGCONT isn't in the list, because its default action is ignore
Bram Moolenaar071d4272004-06-13 20:20:40 +00001377 signal(SIGCONT, SIG_DFL);
1378#endif
1379}
1380
1381 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001382catch_signals(
1383 RETSIGTYPE (*func_deadly)(),
1384 RETSIGTYPE (*func_other)())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385{
1386 int i;
1387
1388 for (i = 0; signal_info[i].sig != -1; i++)
1389 if (signal_info[i].deadly)
1390 {
1391#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1392 struct sigaction sa;
1393
Bram Moolenaar0f873732019-12-05 20:28:46 +01001394 // Setup to use the alternate stack for the signal function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001395 sa.sa_handler = func_deadly;
1396 sigemptyset(&sa.sa_mask);
1397# if defined(__linux__) && defined(_REENTRANT)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001398 // On Linux, with glibc compiled for kernel 2.2, there is a bug in
1399 // thread handling in combination with using the alternate stack:
1400 // pthread library functions try to use the stack pointer to
1401 // identify the current thread, causing a SEGV signal, which
1402 // recursively calls deathtrap() and hangs.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 sa.sa_flags = 0;
1404# else
1405 sa.sa_flags = SA_ONSTACK;
1406# endif
1407 sigaction(signal_info[i].sig, &sa, NULL);
1408#else
1409# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1410 struct sigvec sv;
1411
Bram Moolenaar0f873732019-12-05 20:28:46 +01001412 // Setup to use the alternate stack for the signal function.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001413 sv.sv_handler = func_deadly;
1414 sv.sv_mask = 0;
1415 sv.sv_flags = SV_ONSTACK;
1416 sigvec(signal_info[i].sig, &sv, NULL);
1417# else
1418 signal(signal_info[i].sig, func_deadly);
1419# endif
1420#endif
1421 }
1422 else if (func_other != SIG_ERR)
1423 signal(signal_info[i].sig, func_other);
1424}
1425
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02001426#ifdef HAVE_SIGPROCMASK
1427 static void
1428block_signals(sigset_t *set)
1429{
1430 sigset_t newset;
1431 int i;
1432
1433 sigemptyset(&newset);
1434
1435 for (i = 0; signal_info[i].sig != -1; i++)
1436 sigaddset(&newset, signal_info[i].sig);
1437
Bram Moolenaar2e310482018-08-21 13:09:10 +02001438# if defined(SIGCONT)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001439 // SIGCONT isn't in the list, because its default action is ignore
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02001440 sigaddset(&newset, SIGCONT);
1441# endif
1442
1443 sigprocmask(SIG_BLOCK, &newset, set);
1444}
1445
1446 static void
1447unblock_signals(sigset_t *set)
1448{
1449 sigprocmask(SIG_SETMASK, set, NULL);
1450}
1451#endif
1452
Bram Moolenaar071d4272004-06-13 20:20:40 +00001453/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001454 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001455 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1456 * return TRUE
1457 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1458 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
Bram Moolenaar67c53842010-05-22 18:28:27 +02001459 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001460 * Returns TRUE when Vim should exit.
1461 */
1462 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001463vim_handle_signal(int sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001464{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001465 static int got_signal = 0;
1466 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001467
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001468 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001469 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001470 case SIGNAL_BLOCK: blocked = TRUE;
1471 break;
1472
1473 case SIGNAL_UNBLOCK: blocked = FALSE;
1474 if (got_signal != 0)
1475 {
1476 kill(getpid(), got_signal);
1477 got_signal = 0;
1478 }
1479 break;
1480
1481 default: if (!blocked)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001482 return TRUE; // exit!
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001483 got_signal = sig;
1484#ifdef SIGPWR
1485 if (sig != SIGPWR)
1486#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01001487 got_int = TRUE; // break any loops
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001488 break;
1489 }
1490 return FALSE;
1491}
1492
1493/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 * Check_win checks whether we have an interactive stdout.
1495 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001497mch_check_win(int argc UNUSED, char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499 if (isatty(1))
1500 return OK;
1501 return FAIL;
1502}
1503
1504/*
1505 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1506 */
1507 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001508mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509{
1510 if (isatty(read_cmd_fd))
1511 return TRUE;
1512 return FALSE;
1513}
1514
1515#ifdef FEAT_X11
1516
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001517# if defined(ELAPSED_TIMEVAL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1519
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520/*
1521 * Give a message about the elapsed time for opening the X window.
1522 */
1523 static void
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001524xopen_message(long elapsed_msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001526 smsg(_("Opening the X display took %ld msec"), elapsed_msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527}
1528# endif
1529#endif
1530
1531#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1532/*
1533 * A few functions shared by X11 title and clipboard code.
1534 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001535
1536static int got_x_error = FALSE;
1537
1538/*
1539 * X Error handler, otherwise X just exits! (very rude) -- webb
1540 */
1541 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001542x_error_handler(Display *dpy, XErrorEvent *error_event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001544 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 STRCAT(IObuff, _("\nVim: Got X error\n"));
1546
Bram Moolenaar0f873732019-12-05 20:28:46 +01001547 // We cannot print a message and continue, because no X calls are allowed
1548 // here (causes my system to hang). Silently continuing might be an
1549 // alternative...
1550 preserve_exit(); // preserve files and exit
Bram Moolenaar071d4272004-06-13 20:20:40 +00001551
Bram Moolenaar0f873732019-12-05 20:28:46 +01001552 return 0; // NOTREACHED
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553}
1554
1555/*
1556 * Another X Error handler, just used to check for errors.
1557 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001558 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001559x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560{
1561 got_x_error = TRUE;
1562 return 0;
1563}
1564
Bram Moolenaarc0c75492018-12-29 11:03:23 +01001565/*
1566 * Return TRUE when connection to the X server is desired.
1567 */
1568 static int
1569x_connect_to_server(void)
1570{
1571 // No point in connecting if we are exiting or dying.
1572 if (exiting || v_dying)
1573 return FALSE;
1574
1575#if defined(FEAT_CLIENTSERVER)
1576 if (x_force_connect)
1577 return TRUE;
1578#endif
1579 if (x_no_connect)
1580 return FALSE;
1581
Bram Moolenaara8bfa172018-12-29 22:28:46 +01001582 // Check for a match with "exclude:" from 'clipboard'.
Bram Moolenaarc0c75492018-12-29 11:03:23 +01001583 if (clip_exclude_prog != NULL)
1584 {
Bram Moolenaara8bfa172018-12-29 22:28:46 +01001585 // Just in case we get called recursively, return FALSE. This could
1586 // happen if vpeekc() is used while executing the prog and it causes a
1587 // related callback to be invoked.
1588 if (regprog_in_use(clip_exclude_prog))
1589 return FALSE;
1590
Bram Moolenaarc0c75492018-12-29 11:03:23 +01001591 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0))
1592 return FALSE;
1593 }
1594 return TRUE;
1595}
1596
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaarb2148f52019-01-20 23:43:57 +01001598# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001599/*
1600 * An X IO Error handler, used to catch error while opening the display.
1601 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001603x_IOerror_check(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604{
Bram Moolenaar0f873732019-12-05 20:28:46 +01001605 // This function should not return, it causes exit(). Longjump instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001606 LONGJMP(lc_jump_env, 1);
Bram Moolenaar1eed5322019-02-26 17:03:54 +01001607# if defined(VMS) || defined(__CYGWIN__)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001608 return 0; // avoid the compiler complains about missing return value
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001609# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610}
1611# endif
1612
1613/*
1614 * An X IO Error handler, used to catch terminal errors.
1615 */
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001616static int xterm_dpy_retry_count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001617
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001619x_IOerror_handler(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620{
1621 xterm_dpy = NULL;
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001622 xterm_dpy_retry_count = 5; // Try reconnecting five times
Bram Moolenaar071d4272004-06-13 20:20:40 +00001623 x11_window = 0;
1624 x11_display = NULL;
1625 xterm_Shell = (Widget)0;
1626
Bram Moolenaar0f873732019-12-05 20:28:46 +01001627 // This function should not return, it causes exit(). Longjump instead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 LONGJMP(x_jump_env, 1);
Bram Moolenaar1eed5322019-02-26 17:03:54 +01001629# if defined(VMS) || defined(__CYGWIN__)
Bram Moolenaar0f873732019-12-05 20:28:46 +01001630 return 0; // avoid the compiler complains about missing return value
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001631# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632}
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001633
1634/*
1635 * If the X11 connection was lost try to restore it.
1636 * Helps when the X11 server was stopped and restarted while Vim was inactive
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01001637 * (e.g. through tmux).
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001638 */
1639 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001640may_restore_clipboard(void)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001641{
Bram Moolenaar01e51e52018-12-29 13:09:46 +01001642 // No point in restoring the connecting if we are exiting or dying.
1643 if (!exiting && !v_dying && xterm_dpy_retry_count > 0)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001644 {
Bram Moolenaard155d7a2018-12-21 16:04:21 +01001645 --xterm_dpy_retry_count;
Bram Moolenaar527a6782014-12-17 17:59:31 +01001646
1647# ifndef LESSTIF_VERSION
Bram Moolenaar0f873732019-12-05 20:28:46 +01001648 // This has been reported to avoid Vim getting stuck.
Bram Moolenaar527a6782014-12-17 17:59:31 +01001649 if (app_context != (XtAppContext)NULL)
1650 {
1651 XtDestroyApplicationContext(app_context);
1652 app_context = (XtAppContext)NULL;
Bram Moolenaar0f873732019-12-05 20:28:46 +01001653 x11_display = NULL; // freed by XtDestroyApplicationContext()
Bram Moolenaar527a6782014-12-17 17:59:31 +01001654 }
1655# endif
1656
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001657 setup_term_clip();
1658 get_x11_title(FALSE);
1659 }
1660}
Bram Moolenaard4aa83a2019-05-09 18:59:31 +02001661
1662 void
1663ex_xrestore(exarg_T *eap)
1664{
1665 if (eap->arg != NULL && STRLEN(eap->arg) > 0)
1666 {
1667 if (xterm_display_allocated)
1668 vim_free(xterm_display);
1669 xterm_display = (char *)vim_strsave(eap->arg);
1670 xterm_display_allocated = TRUE;
1671 }
1672 smsg(_("restoring display %s"), xterm_display == NULL
Bram Moolenaar0c5c3fa2019-11-30 22:38:16 +01001673 ? (char *)mch_getenv((char_u *)"DISPLAY") : xterm_display);
Bram Moolenaard4aa83a2019-05-09 18:59:31 +02001674
1675 clear_xterm_clip();
1676 x11_window = 0;
1677 xterm_dpy_retry_count = 5; // Try reconnecting five times
1678 may_restore_clipboard();
1679}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001680#endif
1681
1682/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 * Test if "dpy" and x11_window are valid by getting the window title.
1684 * I don't actually want it yet, so there may be a simpler call to use, but
1685 * this will cause the error handler x_error_check() to be called if anything
1686 * is wrong, such as the window pointer being invalid (as can happen when the
1687 * user changes his DISPLAY, but not his WINDOWID) -- webb
1688 */
1689 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001690test_x11_window(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691{
1692 int (*old_handler)();
1693 XTextProperty text_prop;
1694
1695 old_handler = XSetErrorHandler(x_error_check);
1696 got_x_error = FALSE;
1697 if (XGetWMName(dpy, x11_window, &text_prop))
1698 XFree((void *)text_prop.value);
1699 XSync(dpy, False);
1700 (void)XSetErrorHandler(old_handler);
1701
1702 if (p_verbose > 0 && got_x_error)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001703 verb_msg(_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001704
1705 return (got_x_error ? FAIL : OK);
1706}
1707#endif
1708
1709#ifdef FEAT_TITLE
1710
1711#ifdef FEAT_X11
1712
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001713static int get_x11_thing(int get_title, int test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001714
1715/*
1716 * try to get x11 window and display
1717 *
1718 * return FAIL for failure, OK otherwise
1719 */
1720 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001721get_x11_windis(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722{
1723 char *winid;
1724 static int result = -1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01001725#define XD_NONE 0 // x11_display not set here
1726#define XD_HERE 1 // x11_display opened here
1727#define XD_GUI 2 // x11_display used from gui.dpy
1728#define XD_XTERM 3 // x11_display used from xterm_dpy
Bram Moolenaar071d4272004-06-13 20:20:40 +00001729 static int x11_display_from = XD_NONE;
1730 static int did_set_error_handler = FALSE;
1731
1732 if (!did_set_error_handler)
1733 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001734 // X just exits if it finds an error otherwise!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 (void)XSetErrorHandler(x_error_handler);
1736 did_set_error_handler = TRUE;
1737 }
1738
Bram Moolenaar9372a112005-12-06 19:59:18 +00001739#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001740 if (gui.in_use)
1741 {
1742 /*
1743 * If the X11 display was opened here before, for the window where Vim
1744 * was started, close that one now to avoid a memory leak.
1745 */
1746 if (x11_display_from == XD_HERE && x11_display != NULL)
1747 {
1748 XCloseDisplay(x11_display);
1749 x11_display_from = XD_NONE;
1750 }
1751 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1752 {
1753 x11_display_from = XD_GUI;
1754 return OK;
1755 }
1756 x11_display = NULL;
1757 return FAIL;
1758 }
1759 else if (x11_display_from == XD_GUI)
1760 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001761 // GUI must have stopped somehow, clear x11_display
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 x11_window = 0;
1763 x11_display = NULL;
1764 x11_display_from = XD_NONE;
1765 }
1766#endif
1767
Bram Moolenaar0f873732019-12-05 20:28:46 +01001768 // When started with the "-X" argument, don't try connecting.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 if (!x_connect_to_server())
1770 return FAIL;
1771
1772 /*
1773 * If WINDOWID not set, should try another method to find out
1774 * what the current window number is. The only code I know for
1775 * this is very complicated.
1776 * We assume that zero is invalid for WINDOWID.
1777 */
1778 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1779 x11_window = (Window)atol(winid);
1780
1781#ifdef FEAT_XCLIPBOARD
Bram Moolenaard4aa83a2019-05-09 18:59:31 +02001782 if (xterm_dpy == x11_display)
1783 // x11_display may have been set to xterm_dpy elsewhere
1784 x11_display_from = XD_XTERM;
1785
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 if (xterm_dpy != NULL && x11_window != 0)
1787 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001788 // We may have checked it already, but Gnome terminal can move us to
1789 // another window, so we need to check every time.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001790 if (x11_display_from != XD_XTERM)
1791 {
1792 /*
1793 * If the X11 display was opened here before, for the window where
1794 * Vim was started, close that one now to avoid a memory leak.
1795 */
1796 if (x11_display_from == XD_HERE && x11_display != NULL)
1797 XCloseDisplay(x11_display);
1798 x11_display = xterm_dpy;
1799 x11_display_from = XD_XTERM;
1800 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 if (test_x11_window(x11_display) == FAIL)
1802 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001803 // probably bad $WINDOWID
Bram Moolenaar071d4272004-06-13 20:20:40 +00001804 x11_window = 0;
1805 x11_display = NULL;
1806 x11_display_from = XD_NONE;
1807 return FAIL;
1808 }
1809 return OK;
1810 }
1811#endif
1812
1813 if (x11_window == 0 || x11_display == NULL)
1814 result = -1;
1815
Bram Moolenaar0f873732019-12-05 20:28:46 +01001816 if (result != -1) // Have already been here and set this
1817 return result; // Don't do all these X calls again
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818
1819 if (x11_window != 0 && x11_display == NULL)
1820 {
1821#ifdef SET_SIG_ALARM
1822 RETSIGTYPE (*sig_save)();
1823#endif
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01001824#ifdef ELAPSED_FUNC
1825 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826
1827 if (p_verbose > 0)
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01001828 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829#endif
1830
1831#ifdef SET_SIG_ALARM
1832 /*
1833 * Opening the Display may hang if the DISPLAY setting is wrong, or
1834 * the network connection is bad. Set an alarm timer to get out.
1835 */
1836 sig_alarm_called = FALSE;
1837 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1838 (RETSIGTYPE (*)())sig_alarm);
1839 alarm(2);
1840#endif
1841 x11_display = XOpenDisplay(NULL);
1842
1843#ifdef SET_SIG_ALARM
1844 alarm(0);
1845 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1846 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaar563bbea2019-01-22 21:45:40 +01001847 verb_msg(_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001848#endif
1849 if (x11_display != NULL)
1850 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001851# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001852 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001853 {
1854 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001855 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001856 verbose_leave();
1857 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858# endif
1859 if (test_x11_window(x11_display) == FAIL)
1860 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001861 // Maybe window id is bad
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 x11_window = 0;
1863 XCloseDisplay(x11_display);
1864 x11_display = NULL;
1865 }
1866 else
1867 x11_display_from = XD_HERE;
1868 }
1869 }
1870 if (x11_window == 0 || x11_display == NULL)
1871 return (result = FAIL);
Bram Moolenaar727c8762010-10-20 19:17:48 +02001872
1873# ifdef FEAT_EVAL
1874 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
1875# endif
1876
Bram Moolenaar071d4272004-06-13 20:20:40 +00001877 return (result = OK);
1878}
1879
1880/*
1881 * Determine original x11 Window Title
1882 */
1883 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001884get_x11_title(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001886 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887}
1888
1889/*
1890 * Determine original x11 Window icon
1891 */
1892 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001893get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894{
1895 int retval = FALSE;
1896
1897 retval = get_x11_thing(FALSE, test_only);
1898
Bram Moolenaar0f873732019-12-05 20:28:46 +01001899 // could not get old icon, use terminal name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 if (oldicon == NULL && !test_only)
1901 {
1902 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001903 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001905 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001906 }
1907
1908 return retval;
1909}
1910
1911 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001912get_x11_thing(
Bram Moolenaar0f873732019-12-05 20:28:46 +01001913 int get_title, // get title string
Bram Moolenaar05540972016-01-30 20:31:25 +01001914 int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915{
1916 XTextProperty text_prop;
1917 int retval = FALSE;
1918 Status status;
1919
1920 if (get_x11_windis() == OK)
1921 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01001922 // Get window/icon name if any
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 if (get_title)
1924 status = XGetWMName(x11_display, x11_window, &text_prop);
1925 else
1926 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1927
1928 /*
1929 * If terminal is xterm, then x11_window may be a child window of the
1930 * outer xterm window that actually contains the window/icon name, so
1931 * keep traversing up the tree until a window with a title/icon is
1932 * found.
1933 */
Bram Moolenaar0f873732019-12-05 20:28:46 +01001934 // Previously this was only done for xterm and alikes. I don't see a
1935 // reason why it would fail for other terminal emulators.
1936 // if (term_is_xterm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 {
1938 Window root;
1939 Window parent;
1940 Window win = x11_window;
1941 Window *children;
1942 unsigned int num_children;
1943
1944 while (!status || text_prop.value == NULL)
1945 {
1946 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1947 &num_children))
1948 break;
1949 if (children)
1950 XFree((void *)children);
1951 if (parent == root || parent == 0)
1952 break;
1953
1954 win = parent;
1955 if (get_title)
1956 status = XGetWMName(x11_display, win, &text_prop);
1957 else
1958 status = XGetWMIconName(x11_display, win, &text_prop);
1959 }
1960 }
1961 if (status && text_prop.value != NULL)
1962 {
1963 retval = TRUE;
1964 if (!test_only)
1965 {
Bram Moolenaara12a1612019-01-24 16:39:02 +01001966 if (text_prop.encoding == XA_STRING && !has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 if (get_title)
1969 oldtitle = vim_strsave((char_u *)text_prop.value);
1970 else
1971 oldicon = vim_strsave((char_u *)text_prop.value);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 }
1973 else
1974 {
1975 char **cl;
1976 Status transform_status;
1977 int n = 0;
1978
1979 transform_status = XmbTextPropertyToTextList(x11_display,
1980 &text_prop,
1981 &cl, &n);
1982 if (transform_status >= Success && n > 0 && cl[0])
1983 {
1984 if (get_title)
1985 oldtitle = vim_strsave((char_u *) cl[0]);
1986 else
1987 oldicon = vim_strsave((char_u *) cl[0]);
1988 XFreeStringList(cl);
1989 }
1990 else
1991 {
1992 if (get_title)
1993 oldtitle = vim_strsave((char_u *)text_prop.value);
1994 else
1995 oldicon = vim_strsave((char_u *)text_prop.value);
1996 }
1997 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 }
1999 XFree((void *)text_prop.value);
2000 }
2001 }
2002 return retval;
2003}
2004
Bram Moolenaar0f873732019-12-05 20:28:46 +01002005// Xutf8 functions are not available on older systems. Note that on some
2006// systems X_HAVE_UTF8_STRING may be defined in a header file but
2007// Xutf8SetWMProperties() is not in the X11 library. Configure checks for
2008// that and defines HAVE_XUTF8SETWMPROPERTIES.
Bram Moolenaara12a1612019-01-24 16:39:02 +01002009#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002010# if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011# define USE_UTF8_STRING
2012# endif
2013#endif
2014
2015/*
2016 * Set x11 Window Title
2017 *
2018 * get_x11_windis() must be called before this and have returned OK
2019 */
2020 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002021set_x11_title(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002023 // XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
2024 // when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
2025 // supported everywhere and STRING doesn't work for multi-byte titles.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026#ifdef USE_UTF8_STRING
2027 if (enc_utf8)
2028 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
2029 NULL, NULL, 0, NULL, NULL, NULL);
2030 else
2031#endif
2032 {
2033#if XtSpecificationRelease >= 4
2034# ifdef FEAT_XFONTSET
2035 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
2036 NULL, NULL, 0, NULL, NULL, NULL);
2037# else
2038 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002039 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040
Bram Moolenaar0f873732019-12-05 20:28:46 +01002041 // directly from example 3-18 "basicwin" of Xlib Programming Manual
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002042 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 XSetWMProperties(x11_display, x11_window, &text_prop,
2044 NULL, NULL, 0, NULL, NULL, NULL);
2045# endif
2046#else
2047 XStoreName(x11_display, x11_window, (char *)title);
2048#endif
2049 }
2050 XFlush(x11_display);
2051}
2052
2053/*
2054 * Set x11 Window icon
2055 *
2056 * get_x11_windis() must be called before this and have returned OK
2057 */
2058 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002059set_x11_icon(char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002061 // See above for comments about using X*SetWMProperties().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062#ifdef USE_UTF8_STRING
2063 if (enc_utf8)
2064 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2065 NULL, 0, NULL, NULL, NULL);
2066 else
2067#endif
2068 {
2069#if XtSpecificationRelease >= 4
2070# ifdef FEAT_XFONTSET
2071 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2072 NULL, 0, NULL, NULL, NULL);
2073# else
2074 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002075 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002077 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
2079 NULL, 0, NULL, NULL, NULL);
2080# endif
2081#else
2082 XSetIconName(x11_display, x11_window, (char *)icon);
2083#endif
2084 }
2085 XFlush(x11_display);
2086}
2087
Bram Moolenaar0f873732019-12-05 20:28:46 +01002088#else // FEAT_X11
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089
Bram Moolenaar071d4272004-06-13 20:20:40 +00002090 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002091get_x11_title(int test_only UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092{
2093 return FALSE;
2094}
2095
2096 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002097get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098{
2099 if (!test_only)
2100 {
2101 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002102 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002104 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105 }
2106 return FALSE;
2107}
2108
Bram Moolenaar0f873732019-12-05 20:28:46 +01002109#endif // FEAT_X11
Bram Moolenaar071d4272004-06-13 20:20:40 +00002110
2111 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002112mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002113{
2114 return get_x11_title(TRUE);
2115}
2116
2117 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002118mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002119{
2120 return get_x11_icon(TRUE);
2121}
2122
2123/*
2124 * Set the window title and icon.
2125 */
2126 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002127mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128{
2129 int type = 0;
2130 static int recursive = 0;
2131
Bram Moolenaar0f873732019-12-05 20:28:46 +01002132 if (T_NAME == NULL) // no terminal name (yet)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 return;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002134 if (title == NULL && icon == NULL) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002135 return;
2136
Bram Moolenaar0f873732019-12-05 20:28:46 +01002137 // When one of the X11 functions causes a deadly signal, we get here again
2138 // recursively. Avoid hanging then (something is probably locked).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 if (recursive)
2140 return;
2141 ++recursive;
2142
2143 /*
2144 * if the window ID and the display is known, we may use X11 calls
2145 */
2146#ifdef FEAT_X11
2147 if (get_x11_windis() == OK)
2148 type = 1;
2149#else
2150# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
2151 if (gui.in_use)
2152 type = 1;
2153# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154#endif
2155
2156 /*
Bram Moolenaarf82bac32010-07-25 22:30:20 +02002157 * Note: if "t_ts" is set, title is set with escape sequence rather
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 * than x11 calls, because the x11 calls don't always work
2159 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002160 if ((type || *T_TS != NUL) && title != NULL)
2161 {
Bram Moolenaard8f0cef2018-08-19 22:20:16 +02002162 if (oldtitle_outdated)
2163 {
2164 oldtitle_outdated = FALSE;
2165 VIM_CLEAR(oldtitle);
2166 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 if (oldtitle == NULL
2168#ifdef FEAT_GUI
2169 && !gui.in_use
2170#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002171 ) // first call but not in GUI, save title
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 (void)get_x11_title(FALSE);
2173
Bram Moolenaar0f873732019-12-05 20:28:46 +01002174 if (*T_TS != NUL) // it's OK if t_fs is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 term_settitle(title);
2176#ifdef FEAT_X11
2177 else
2178# ifdef FEAT_GUI_GTK
Bram Moolenaar0f873732019-12-05 20:28:46 +01002179 if (!gui.in_use) // don't do this if GTK+ is running
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002181 set_x11_title(title); // x11
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002183#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2185 else
2186 gui_mch_settitle(title, icon);
2187#endif
Bram Moolenaardac13472019-09-16 21:06:21 +02002188 unix_did_set_title = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 }
2190
2191 if ((type || *T_CIS != NUL) && icon != NULL)
2192 {
2193 if (oldicon == NULL
2194#ifdef FEAT_GUI
2195 && !gui.in_use
2196#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002197 ) // first call, save icon
Bram Moolenaar071d4272004-06-13 20:20:40 +00002198 get_x11_icon(FALSE);
2199
2200 if (*T_CIS != NUL)
2201 {
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02002202 out_str(T_CIS); // set icon start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 out_str_nf(icon);
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02002204 out_str(T_CIE); // set icon end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 out_flush();
2206 }
2207#ifdef FEAT_X11
2208 else
2209# ifdef FEAT_GUI_GTK
Bram Moolenaar0f873732019-12-05 20:28:46 +01002210 if (!gui.in_use) // don't do this if GTK+ is running
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002212 set_x11_icon(icon); // x11
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213#endif
2214 did_set_icon = TRUE;
2215 }
2216 --recursive;
2217}
2218
2219/*
2220 * Restore the window/icon title.
2221 * "which" is one of:
Bram Moolenaar40385db2018-08-07 22:31:44 +02002222 * SAVE_RESTORE_TITLE only restore title
2223 * SAVE_RESTORE_ICON only restore icon
2224 * SAVE_RESTORE_BOTH restore title and icon
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 */
2226 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002227mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228{
Bram Moolenaardac13472019-09-16 21:06:21 +02002229 int do_push_pop = unix_did_set_title || did_set_icon;
Bram Moolenaare5c83282019-05-03 23:15:37 +02002230
Bram Moolenaar0f873732019-12-05 20:28:46 +01002231 // only restore the title or icon when it has been set
Bram Moolenaardac13472019-09-16 21:06:21 +02002232 mch_settitle(((which & SAVE_RESTORE_TITLE) && unix_did_set_title) ?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233 (oldtitle ? oldtitle : p_titleold) : NULL,
Bram Moolenaar40385db2018-08-07 22:31:44 +02002234 ((which & SAVE_RESTORE_ICON) && did_set_icon) ? oldicon : NULL);
2235
Bram Moolenaare5c83282019-05-03 23:15:37 +02002236 if (do_push_pop)
2237 {
2238 // pop and push from/to the stack
2239 term_pop_title(which);
2240 term_push_title(which);
2241 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242}
2243
Bram Moolenaar0f873732019-12-05 20:28:46 +01002244#endif // FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245
2246/*
2247 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002248 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 */
2250 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002251vim_is_xterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252{
2253 if (name == NULL)
2254 return FALSE;
2255 return (STRNICMP(name, "xterm", 5) == 0
2256 || STRNICMP(name, "nxterm", 6) == 0
2257 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002258 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002259 || STRNICMP(name, "rxvt", 4) == 0
Bram Moolenaar995e4af2017-09-01 20:24:03 +02002260 || STRNICMP(name, "screen.xterm", 12) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 || STRCMP(name, "builtin_xterm") == 0);
2262}
2263
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002264#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2265/*
2266 * Return TRUE if "name" appears to be that of a terminal
2267 * known to support the xterm-style mouse protocol.
2268 * Relies on term_is_xterm having been set to its correct value.
2269 */
2270 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002271use_xterm_like_mouse(char_u *name)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002272{
2273 return (name != NULL
Bram Moolenaare56132b2016-08-14 18:23:21 +02002274 && (term_is_xterm
2275 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002276 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaare56132b2016-08-14 18:23:21 +02002277 || STRICMP(name, "st") == 0
2278 || STRNICMP(name, "st-", 3) == 0
2279 || STRNICMP(name, "stterm", 6) == 0));
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002280}
2281#endif
2282
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283/*
2284 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2285 * Return 1 for "xterm".
2286 * Return 2 for "xterm2".
Bram Moolenaarc8427482011-10-20 21:09:35 +02002287 * Return 3 for "urxvt".
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002288 * Return 4 for "sgr".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002289 */
2290 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002291use_xterm_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002292{
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002293 if (ttym_flags == TTYM_SGR)
2294 return 4;
Bram Moolenaarc8427482011-10-20 21:09:35 +02002295 if (ttym_flags == TTYM_URXVT)
2296 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297 if (ttym_flags == TTYM_XTERM2)
2298 return 2;
2299 if (ttym_flags == TTYM_XTERM)
2300 return 1;
2301 return 0;
2302}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303
2304 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002305vim_is_iris(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002306{
2307 if (name == NULL)
2308 return FALSE;
2309 return (STRNICMP(name, "iris-ansi", 9) == 0
2310 || STRCMP(name, "builtin_iris-ansi") == 0);
2311}
2312
2313 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002314vim_is_vt300(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002315{
2316 if (name == NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002317 return FALSE; // actually all ANSI comp. terminals should be here
2318 // catch VT100 - VT5xx
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002319 return ((STRNICMP(name, "vt", 2) == 0
2320 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321 || STRCMP(name, "builtin_vt320") == 0);
2322}
2323
2324/*
2325 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2326 * This should include all windowed terminal emulators.
2327 */
2328 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002329vim_is_fastterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002330{
2331 if (name == NULL)
2332 return FALSE;
2333 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2334 return TRUE;
2335 return ( STRNICMP(name, "hpterm", 6) == 0
2336 || STRNICMP(name, "sun-cmd", 7) == 0
2337 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002338 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 || STRNICMP(name, "dtterm", 6) == 0);
2340}
2341
2342/*
2343 * Insert user name in s[len].
2344 * Return OK if a name found.
2345 */
2346 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002347mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348{
2349#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002350 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 return OK;
2352#else
2353 return mch_get_uname(getuid(), s, len);
2354#endif
2355}
2356
2357/*
2358 * Insert user name for "uid" in s[len].
2359 * Return OK if a name found.
2360 */
2361 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002362mch_get_uname(uid_t uid, char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363{
2364#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2365 struct passwd *pw;
2366
2367 if ((pw = getpwuid(uid)) != NULL
2368 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2369 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002370 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 return OK;
2372 }
2373#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002374 sprintf((char *)s, "%d", (int)uid); // assumes s is long enough
2375 return FAIL; // a number is not a name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376}
2377
2378/*
2379 * Insert host name is s[len].
2380 */
2381
2382#ifdef HAVE_SYS_UTSNAME_H
2383 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002384mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385{
2386 struct utsname vutsname;
2387
2388 if (uname(&vutsname) < 0)
2389 *s = NUL;
2390 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002391 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002393#else // HAVE_SYS_UTSNAME_H
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394
2395# ifdef HAVE_SYS_SYSTEMINFO_H
2396# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2397# endif
2398
2399 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002400mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401{
2402# ifdef VAXC
2403 vaxc$gethostname((char *)s, len);
2404# else
2405 gethostname((char *)s, len);
2406# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002407 s[len - 1] = NUL; // make sure it's terminated
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002409#endif // HAVE_SYS_UTSNAME_H
Bram Moolenaar071d4272004-06-13 20:20:40 +00002410
2411/*
2412 * return process ID
2413 */
2414 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002415mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416{
2417 return (long)getpid();
2418}
2419
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002420/*
2421 * return TRUE if process "pid" is still running
2422 */
2423 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002424mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002425{
2426 // EMX kill() not working correctly, it seems
2427 return kill(pid, 0) == 0;
2428}
2429
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 static char *
Bram Moolenaar05540972016-01-30 20:31:25 +01002432strerror(int err)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433{
2434 extern int sys_nerr;
2435 extern char *sys_errlist[];
2436 static char er[20];
2437
2438 if (err > 0 && err < sys_nerr)
2439 return (sys_errlist[err]);
2440 sprintf(er, "Error %d", err);
2441 return er;
2442}
2443#endif
2444
2445/*
Bram Moolenaar964b3742019-05-24 18:54:09 +02002446 * Get name of current directory into buffer "buf" of length "len" bytes.
2447 * "len" must be at least PATH_MAX.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448 * Return OK for success, FAIL for failure.
2449 */
2450 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002451mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452{
2453#if defined(USE_GETCWD)
2454 if (getcwd((char *)buf, len) == NULL)
2455 {
2456 STRCPY(buf, strerror(errno));
2457 return FAIL;
2458 }
2459 return OK;
2460#else
2461 return (getwd((char *)buf) != NULL ? OK : FAIL);
2462#endif
2463}
2464
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002466 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002467 *
2468 * return FAIL for failure, OK for success
2469 */
2470 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002471mch_FullName(
2472 char_u *fname,
2473 char_u *buf,
2474 int len,
Bram Moolenaar0f873732019-12-05 20:28:46 +01002475 int force) // also expand when already absolute path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002476{
2477 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002478#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479 int fd = -1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002480 static int dont_fchdir = FALSE; // TRUE when fchdir() doesn't work
Bram Moolenaar38323e42007-03-06 19:22:53 +00002481#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002482 char_u olddir[MAXPATHL];
2483 char_u *p;
2484 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002485#ifdef __CYGWIN__
Bram Moolenaar0f873732019-12-05 20:28:46 +01002486 char_u posix_fname[MAXPATHL]; // Cygwin docs mention MAX_PATH, but
2487 // it's not always defined
Bram Moolenaarbf820722008-06-21 11:12:49 +00002488#endif
2489
Bram Moolenaar38323e42007-03-06 19:22:53 +00002490#ifdef VMS
2491 fname = vms_fixfilename(fname);
2492#endif
2493
Bram Moolenaara2442432007-04-26 14:26:37 +00002494#ifdef __CYGWIN__
2495 /*
2496 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2497 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002498# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaar0f873732019-12-05 20:28:46 +01002499 // Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in
2500 // a forward slash.
Bram Moolenaar06b07342015-12-31 22:26:28 +01002501 cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE,
2502 fname, posix_fname, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002503# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002504 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002505# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002506 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002507#endif
2508
Bram Moolenaar0f873732019-12-05 20:28:46 +01002509 // Expand it if forced or not an absolute path.
2510 // Do not do it for "/file", the result is always "/".
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002511 if ((force || !mch_isFullName(fname))
2512 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 {
2514 /*
2515 * If the file name has a path, change to that directory for a moment,
Bram Moolenaar964b3742019-05-24 18:54:09 +02002516 * and then get the directory (and get back to where we were).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 * This will get the correct path name with "../" things.
2518 */
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002519 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002521#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 /*
2523 * Use fchdir() if possible, it's said to be faster and more
2524 * reliable. But on SunOS 4 it might not work. Check this by
2525 * doing a fchdir() right now.
2526 */
2527 if (!dont_fchdir)
2528 {
2529 fd = open(".", O_RDONLY | O_EXTRA, 0);
2530 if (fd >= 0 && fchdir(fd) < 0)
2531 {
2532 close(fd);
2533 fd = -1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002534 dont_fchdir = TRUE; // don't try again
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 }
2536 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002537#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538
Bram Moolenaar0f873732019-12-05 20:28:46 +01002539 // Only change directory when we are sure we can return to where
2540 // we are now. After doing "su" chdir(".") might not work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002542#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002544#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 (mch_dirname(olddir, MAXPATHL) == FAIL
2546 || mch_chdir((char *)olddir) != 0))
2547 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002548 p = NULL; // can't get current dir: don't chdir
Bram Moolenaar071d4272004-06-13 20:20:40 +00002549 retval = FAIL;
2550 }
2551 else
2552 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002553 // The directory is copied into buf[], to be able to remove
2554 // the file name without changing it (could be a string in
2555 // read-only memory)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 if (p - fname >= len)
2557 retval = FAIL;
2558 else
2559 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002560 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 if (mch_chdir((char *)buf))
2562 retval = FAIL;
2563 else
2564 fname = p + 1;
2565 *buf = NUL;
2566 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 }
2568 }
2569 if (mch_dirname(buf, len) == FAIL)
2570 {
2571 retval = FAIL;
2572 *buf = NUL;
2573 }
2574 if (p != NULL)
2575 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002576#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 if (fd >= 0)
2578 {
Bram Moolenaar25724922009-07-14 15:38:41 +00002579 if (p_verbose >= 5)
2580 {
2581 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002582 msg("fchdir() to previous dir");
Bram Moolenaar25724922009-07-14 15:38:41 +00002583 verbose_leave();
2584 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585 l = fchdir(fd);
2586 close(fd);
2587 }
2588 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002589#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 l = mch_chdir((char *)olddir);
2591 if (l != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002592 emsg(_(e_prev_dir));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 }
2594
2595 l = STRLEN(buf);
Bram Moolenaardac75692012-10-14 04:35:45 +02002596 if (l >= len - 1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002597 retval = FAIL; // no space for trailing "/"
Bram Moolenaar38323e42007-03-06 19:22:53 +00002598#ifndef VMS
Bram Moolenaardac75692012-10-14 04:35:45 +02002599 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 && STRCMP(fname, ".") != 0)
Bram Moolenaardac75692012-10-14 04:35:45 +02002601 STRCAT(buf, "/");
Bram Moolenaar38323e42007-03-06 19:22:53 +00002602#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002604
Bram Moolenaar0f873732019-12-05 20:28:46 +01002605 // Catch file names which are too long.
Bram Moolenaar78a15312009-05-15 19:33:18 +00002606 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 return FAIL;
2608
Bram Moolenaar0f873732019-12-05 20:28:46 +01002609 // Do not append ".", "/dir/." is equal to "/dir".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 if (STRCMP(fname, ".") != 0)
2611 STRCAT(buf, fname);
2612
2613 return OK;
2614}
2615
2616/*
2617 * Return TRUE if "fname" does not depend on the current directory.
2618 */
2619 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002620mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002621{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002622#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 return ( fname[0] == '/' || fname[0] == '.' ||
2624 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2625 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2626 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002627#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 return (*fname == '/' || *fname == '~');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629#endif
2630}
2631
Bram Moolenaar24552be2005-12-10 20:17:30 +00002632#if defined(USE_FNAME_CASE) || defined(PROTO)
2633/*
2634 * Set the case of the file name, if it already exists. This will cause the
2635 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002636 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002637 */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002638 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002639fname_case(
2640 char_u *name,
Bram Moolenaar0f873732019-12-05 20:28:46 +01002641 int len UNUSED) // buffer size, only used when name gets longer
Bram Moolenaar24552be2005-12-10 20:17:30 +00002642{
2643 struct stat st;
2644 char_u *slash, *tail;
2645 DIR *dirp;
2646 struct dirent *dp;
2647
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002648 if (mch_lstat((char *)name, &st) >= 0)
Bram Moolenaar24552be2005-12-10 20:17:30 +00002649 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002650 // Open the directory where the file is located.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002651 slash = vim_strrchr(name, '/');
2652 if (slash == NULL)
2653 {
2654 dirp = opendir(".");
2655 tail = name;
2656 }
2657 else
2658 {
2659 *slash = NUL;
2660 dirp = opendir((char *)name);
2661 *slash = '/';
2662 tail = slash + 1;
2663 }
2664
2665 if (dirp != NULL)
2666 {
2667 while ((dp = readdir(dirp)) != NULL)
2668 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002669 // Only accept names that differ in case and are the same byte
2670 // length. TODO: accept different length name.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002671 if (STRICMP(tail, dp->d_name) == 0
2672 && STRLEN(tail) == STRLEN(dp->d_name))
2673 {
2674 char_u newname[MAXPATHL + 1];
2675 struct stat st2;
2676
Bram Moolenaar0f873732019-12-05 20:28:46 +01002677 // Verify the inode is equal.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002678 vim_strncpy(newname, name, MAXPATHL);
2679 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2680 MAXPATHL - (tail - name));
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002681 if (mch_lstat((char *)newname, &st2) >= 0
Bram Moolenaar24552be2005-12-10 20:17:30 +00002682 && st.st_ino == st2.st_ino
2683 && st.st_dev == st2.st_dev)
2684 {
2685 STRCPY(tail, dp->d_name);
2686 break;
2687 }
2688 }
2689 }
2690
2691 closedir(dirp);
2692 }
2693 }
2694}
2695#endif
2696
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697/*
2698 * Get file permissions for 'name'.
2699 * Returns -1 when it doesn't exist.
2700 */
2701 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002702mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703{
2704 struct stat statb;
2705
Bram Moolenaar0f873732019-12-05 20:28:46 +01002706 // Keep the #ifdef outside of stat(), it may be a macro.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707#ifdef VMS
2708 if (stat((char *)vms_fixfilename(name), &statb))
2709#else
2710 if (stat((char *)name, &statb))
2711#endif
2712 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002713#ifdef __INTERIX
Bram Moolenaar0f873732019-12-05 20:28:46 +01002714 // The top bit makes the value negative, which means the file doesn't
2715 // exist. Remove the bit, we don't use it.
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002716 return statb.st_mode & ~S_ADDACE;
2717#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002718 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002719#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002720}
2721
2722/*
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002723 * Set file permission for "name" to "perm".
2724 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725 */
2726 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002727mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002728{
2729 return (chmod((char *)
2730#ifdef VMS
2731 vms_fixfilename(name),
2732#else
2733 name,
2734#endif
2735 (mode_t)perm) == 0 ? OK : FAIL);
2736}
2737
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002738#if defined(HAVE_FCHMOD) || defined(PROTO)
2739/*
2740 * Set file permission for open file "fd" to "perm".
2741 * Return FAIL for failure, OK otherwise.
2742 */
2743 int
2744mch_fsetperm(int fd, long perm)
2745{
2746 return (fchmod(fd, (mode_t)perm) == 0 ? OK : FAIL);
2747}
2748#endif
2749
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750#if defined(HAVE_ACL) || defined(PROTO)
2751# ifdef HAVE_SYS_ACL_H
2752# include <sys/acl.h>
2753# endif
2754# ifdef HAVE_SYS_ACCESS_H
2755# include <sys/access.h>
2756# endif
2757
2758# ifdef HAVE_SOLARIS_ACL
2759typedef struct vim_acl_solaris_T {
2760 int acl_cnt;
2761 aclent_t *acl_entry;
2762} vim_acl_solaris_T;
2763# endif
2764
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002765#if defined(HAVE_SELINUX) || defined(PROTO)
2766/*
2767 * Copy security info from "from_file" to "to_file".
2768 */
2769 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002770mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002771{
2772 if (from_file == NULL)
2773 return;
2774
2775 if (selinux_enabled == -1)
2776 selinux_enabled = is_selinux_enabled();
2777
2778 if (selinux_enabled > 0)
2779 {
2780 security_context_t from_context = NULL;
2781 security_context_t to_context = NULL;
2782
2783 if (getfilecon((char *)from_file, &from_context) < 0)
2784 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002785 // If the filesystem doesn't support extended attributes,
2786 // the original had no special security context and the
2787 // target cannot have one either.
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002788 if (errno == EOPNOTSUPP)
2789 return;
2790
Bram Moolenaar32526b32019-01-19 17:43:09 +01002791 msg_puts(_("\nCould not get security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002792 msg_outtrans(from_file);
2793 msg_putchar('\n');
2794 return;
2795 }
2796 if (getfilecon((char *)to_file, &to_context) < 0)
2797 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002798 msg_puts(_("\nCould not get security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002799 msg_outtrans(to_file);
2800 msg_putchar('\n');
2801 freecon (from_context);
2802 return ;
2803 }
2804 if (strcmp(from_context, to_context) != 0)
2805 {
2806 if (setfilecon((char *)to_file, from_context) < 0)
2807 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002808 msg_puts(_("\nCould not set security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002809 msg_outtrans(to_file);
2810 msg_putchar('\n');
2811 }
2812 }
2813 freecon(to_context);
2814 freecon(from_context);
2815 }
2816}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002817#endif // HAVE_SELINUX
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002818
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002819#if defined(HAVE_SMACK) && !defined(PROTO)
2820/*
2821 * Copy security info from "from_file" to "to_file".
2822 */
2823 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002824mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002825{
Bram Moolenaar62f167f2014-04-23 12:52:40 +02002826 static const char * const smack_copied_attributes[] =
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002827 {
2828 XATTR_NAME_SMACK,
2829 XATTR_NAME_SMACKEXEC,
2830 XATTR_NAME_SMACKMMAP
2831 };
2832
2833 char buffer[SMACK_LABEL_LEN];
2834 const char *name;
2835 int index;
2836 int ret;
2837 ssize_t size;
2838
2839 if (from_file == NULL)
2840 return;
2841
2842 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes)
2843 / sizeof(smack_copied_attributes)[0]) ; index++)
2844 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002845 // get the name of the attribute to copy
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002846 name = smack_copied_attributes[index];
2847
Bram Moolenaar0f873732019-12-05 20:28:46 +01002848 // get the value of the attribute in buffer
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002849 size = getxattr((char*)from_file, name, buffer, sizeof(buffer));
2850 if (size >= 0)
2851 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002852 // copy the attribute value of buffer
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002853 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0);
2854 if (ret < 0)
2855 {
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002856 vim_snprintf((char *)IObuff, IOSIZE,
2857 _("Could not set security context %s for %s"),
2858 name, to_file);
2859 msg_outtrans(IObuff);
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002860 msg_putchar('\n');
2861 }
2862 }
2863 else
2864 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002865 // what reason of not having the attribute value?
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002866 switch (errno)
2867 {
2868 case ENOTSUP:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002869 // extended attributes aren't supported or enabled
2870 // should a message be echoed? not sure...
2871 return; // leave because it isn't useful to continue
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002872
2873 case ERANGE:
2874 default:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002875 // no enough size OR unexpected error
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002876 vim_snprintf((char *)IObuff, IOSIZE,
2877 _("Could not get security context %s for %s. Removing it!"),
2878 name, from_file);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002879 msg_puts((char *)IObuff);
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002880 msg_putchar('\n');
Bram Moolenaar0f873732019-12-05 20:28:46 +01002881 // FALLTHROUGH to remove the attribute
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002882
2883 case ENODATA:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002884 // no attribute of this name
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002885 ret = removexattr((char*)to_file, name);
Bram Moolenaar0f873732019-12-05 20:28:46 +01002886 // Silently ignore errors, apparently this happens when
2887 // smack is not actually being used.
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002888 break;
2889 }
2890 }
2891 }
2892}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002893#endif // HAVE_SMACK
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002894
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895/*
2896 * Return a pointer to the ACL of file "fname" in allocated memory.
2897 * Return NULL if the ACL is not available for whatever reason.
2898 */
2899 vim_acl_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002900mch_get_acl(char_u *fname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002901{
2902 vim_acl_T ret = NULL;
2903#ifdef HAVE_POSIX_ACL
2904 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2905#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002906#ifdef HAVE_SOLARIS_ZFS_ACL
2907 acl_t *aclent;
2908
2909 if (acl_get((char *)fname, 0, &aclent) < 0)
2910 return NULL;
2911 ret = (vim_acl_T)aclent;
2912#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913#ifdef HAVE_SOLARIS_ACL
2914 vim_acl_solaris_T *aclent;
2915
2916 aclent = malloc(sizeof(vim_acl_solaris_T));
2917 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2918 {
2919 free(aclent);
2920 return NULL;
2921 }
2922 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2923 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2924 {
2925 free(aclent->acl_entry);
2926 free(aclent);
2927 return NULL;
2928 }
2929 ret = (vim_acl_T)aclent;
2930#else
2931#if defined(HAVE_AIX_ACL)
2932 int aclsize;
2933 struct acl *aclent;
2934
2935 aclsize = sizeof(struct acl);
2936 aclent = malloc(aclsize);
2937 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2938 {
2939 if (errno == ENOSPC)
2940 {
2941 aclsize = aclent->acl_len;
2942 aclent = realloc(aclent, aclsize);
2943 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2944 {
2945 free(aclent);
2946 return NULL;
2947 }
2948 }
2949 else
2950 {
2951 free(aclent);
2952 return NULL;
2953 }
2954 }
2955 ret = (vim_acl_T)aclent;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002956#endif // HAVE_AIX_ACL
2957#endif // HAVE_SOLARIS_ACL
2958#endif // HAVE_SOLARIS_ZFS_ACL
2959#endif // HAVE_POSIX_ACL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 return ret;
2961}
2962
2963/*
2964 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2965 */
2966 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002967mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968{
2969 if (aclent == NULL)
2970 return;
2971#ifdef HAVE_POSIX_ACL
2972 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2973#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002974#ifdef HAVE_SOLARIS_ZFS_ACL
2975 acl_set((char *)fname, (acl_t *)aclent);
2976#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977#ifdef HAVE_SOLARIS_ACL
2978 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2979 ((vim_acl_solaris_T *)aclent)->acl_entry);
2980#else
2981#ifdef HAVE_AIX_ACL
2982 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
Bram Moolenaar0f873732019-12-05 20:28:46 +01002983#endif // HAVE_AIX_ACL
2984#endif // HAVE_SOLARIS_ACL
2985#endif // HAVE_SOLARIS_ZFS_ACL
2986#endif // HAVE_POSIX_ACL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002987}
2988
2989 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002990mch_free_acl(vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991{
2992 if (aclent == NULL)
2993 return;
2994#ifdef HAVE_POSIX_ACL
2995 acl_free((acl_t)aclent);
2996#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002997#ifdef HAVE_SOLARIS_ZFS_ACL
2998 acl_free((acl_t *)aclent);
2999#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000#ifdef HAVE_SOLARIS_ACL
3001 free(((vim_acl_solaris_T *)aclent)->acl_entry);
3002 free(aclent);
3003#else
3004#ifdef HAVE_AIX_ACL
3005 free(aclent);
Bram Moolenaar0f873732019-12-05 20:28:46 +01003006#endif // HAVE_AIX_ACL
3007#endif // HAVE_SOLARIS_ACL
3008#endif // HAVE_SOLARIS_ZFS_ACL
3009#endif // HAVE_POSIX_ACL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010}
3011#endif
3012
3013/*
3014 * Set hidden flag for "name".
3015 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003016 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003017mch_hide(char_u *name UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003018{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003019 // can't hide a file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003020}
3021
3022/*
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003023 * return TRUE if "name" is a directory or a symlink to a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 * return FALSE if "name" is not a directory
3025 * return FALSE for error
3026 */
3027 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003028mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029{
3030 struct stat statb;
3031
Bram Moolenaar0f873732019-12-05 20:28:46 +01003032 if (*name == NUL) // Some stat()s don't flag "" as an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 return FALSE;
3034 if (stat((char *)name, &statb))
3035 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003037}
3038
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003039/*
3040 * return TRUE if "name" is a directory, NOT a symlink to a directory
3041 * return FALSE if "name" is not a directory
3042 * return FALSE for error
3043 */
3044 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003045mch_isrealdir(char_u *name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003046{
3047 struct stat statb;
3048
Bram Moolenaar0f873732019-12-05 20:28:46 +01003049 if (*name == NUL) // Some stat()s don't flag "" as an error.
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003050 return FALSE;
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01003051 if (mch_lstat((char *)name, &statb))
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003052 return FALSE;
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003053 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003054}
3055
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056/*
3057 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
3058 */
3059 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003060executable_file(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061{
3062 struct stat st;
3063
3064 if (stat((char *)name, &st))
3065 return 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003066#ifdef VMS
Bram Moolenaar0f873732019-12-05 20:28:46 +01003067 // Like on Unix system file can have executable rights but not necessarily
3068 // be an executable, but on Unix is not a default for an ordinary file to
3069 // have an executable flag - on VMS it is in most cases.
3070 // Therefore, this check does not have any sense - let keep us to the
3071 // conventions instead:
3072 // *.COM and *.EXE files are the executables - the rest are not. This is
3073 // not ideal but better then it was.
Bram Moolenaar206f0112014-03-12 16:51:55 +01003074 int vms_executable = 0;
3075 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0)
3076 {
3077 if (strstr(vms_tolower((char*)name),".exe") != NULL
3078 || strstr(vms_tolower((char*)name),".com")!= NULL)
3079 vms_executable = 1;
3080 }
3081 return vms_executable;
3082#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003084#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003085}
3086
3087/*
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01003088 * Return TRUE if "name" can be found in $PATH and executed, FALSE if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +01003089 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090 * Return -1 if unknown.
3091 */
3092 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003093mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094{
3095 char_u *buf;
3096 char_u *p, *e;
3097 int retval;
3098
Bram Moolenaar0f873732019-12-05 20:28:46 +01003099 // When "use_path" is false and if it's an absolute or relative path don't
3100 // need to use $PATH.
Bram Moolenaard08b8c42019-07-24 14:59:45 +02003101 if (!use_path || gettail(name) != name)
Bram Moolenaar206f0112014-03-12 16:51:55 +01003102 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003103 // There must be a path separator, files in the current directory
3104 // can't be executed.
Bram Moolenaard08b8c42019-07-24 14:59:45 +02003105 if ((use_path || gettail(name) != name) && executable_file(name))
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003106 {
3107 if (path != NULL)
3108 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003109 if (name[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003110 *path = FullName_save(name, TRUE);
3111 else
3112 *path = vim_strsave(name);
3113 }
3114 return TRUE;
3115 }
3116 return FALSE;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003117 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003118
3119 p = (char_u *)getenv("PATH");
3120 if (p == NULL || *p == NUL)
3121 return -1;
Bram Moolenaar964b3742019-05-24 18:54:09 +02003122 buf = alloc(STRLEN(name) + STRLEN(p) + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123 if (buf == NULL)
3124 return -1;
3125
3126 /*
3127 * Walk through all entries in $PATH to check if "name" exists there and
3128 * is an executable file.
3129 */
3130 for (;;)
3131 {
3132 e = (char_u *)strchr((char *)p, ':');
3133 if (e == NULL)
3134 e = p + STRLEN(p);
Bram Moolenaar0f873732019-12-05 20:28:46 +01003135 if (e - p <= 1) // empty entry means current dir
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 STRCPY(buf, "./");
3137 else
3138 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003139 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003140 add_pathsep(buf);
3141 }
3142 STRCAT(buf, name);
3143 retval = executable_file(buf);
3144 if (retval == 1)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003145 {
3146 if (path != NULL)
3147 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003148 if (buf[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003149 *path = FullName_save(buf, TRUE);
3150 else
3151 *path = vim_strsave(buf);
3152 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003153 break;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003154 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003155
3156 if (*e != ':')
3157 break;
3158 p = e + 1;
3159 }
3160
3161 vim_free(buf);
3162 return retval;
3163}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164
3165/*
3166 * Check what "name" is:
3167 * NODE_NORMAL: file or directory (or doesn't exist)
3168 * NODE_WRITABLE: writable device, socket, fifo, etc.
3169 * NODE_OTHER: non-writable things
3170 */
3171 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003172mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173{
3174 struct stat st;
3175
3176 if (stat((char *)name, &st))
3177 return NODE_NORMAL;
3178 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
3179 return NODE_NORMAL;
Bram Moolenaar0f873732019-12-05 20:28:46 +01003180 if (S_ISBLK(st.st_mode)) // block device isn't writable
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 return NODE_OTHER;
Bram Moolenaar0f873732019-12-05 20:28:46 +01003182 // Everything else is writable?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003183 return NODE_WRITABLE;
3184}
3185
3186 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003187mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188{
3189#ifdef HAVE_CHECK_STACK_GROWTH
3190 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191
Bram Moolenaar071d4272004-06-13 20:20:40 +00003192 check_stack_growth((char *)&i);
3193
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003194# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 get_stack_limit();
3196# endif
3197
3198#endif
3199
3200 /*
3201 * Setup an alternative stack for signals. Helps to catch signals when
3202 * running out of stack space.
3203 * Use of sigaltstack() is preferred, it's more portable.
3204 * Ignore any errors.
3205 */
3206#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003207 signal_stack = alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208 init_signal_stack();
3209#endif
3210}
3211
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003212#if defined(EXITFREE) || defined(PROTO)
3213 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003214mch_free_mem(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003215{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003216# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
3217 if (clip_star.owned)
3218 clip_lose_selection(&clip_star);
3219 if (clip_plus.owned)
3220 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003221# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00003222# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003223 if (xterm_Shell != (Widget)0)
3224 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00003225# ifndef LESSTIF_VERSION
Bram Moolenaar0f873732019-12-05 20:28:46 +01003226 // Lesstif crashes here, lose some memory
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003227 if (xterm_dpy != NULL)
3228 XtCloseDisplay(xterm_dpy);
3229 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00003230 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003231 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00003232# ifdef FEAT_X11
Bram Moolenaar0f873732019-12-05 20:28:46 +01003233 x11_display = NULL; // freed by XtDestroyApplicationContext()
Bram Moolenaare8208012008-06-20 09:59:25 +00003234# endif
3235 }
3236# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003237# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003238# if defined(FEAT_X11)
Bram Moolenaare8208012008-06-20 09:59:25 +00003239 if (x11_display != NULL
3240# ifdef FEAT_XCLIPBOARD
3241 && x11_display != xterm_dpy
3242# endif
3243 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003244 XCloseDisplay(x11_display);
3245# endif
3246# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaard23a8232018-02-10 18:45:26 +01003247 VIM_CLEAR(signal_stack);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003248# endif
3249# ifdef FEAT_TITLE
3250 vim_free(oldtitle);
3251 vim_free(oldicon);
3252# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003253}
3254#endif
3255
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256/*
3257 * Output a newline when exiting.
3258 * Make sure the newline goes to the same stream as the text.
3259 */
3260 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003261exit_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003263 if (silent_mode)
3264 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 if (newline_on_exit || msg_didout)
3266 {
3267 if (msg_use_printf())
3268 {
3269 if (info_message)
3270 mch_msg("\n");
3271 else
3272 mch_errmsg("\r\n");
3273 }
3274 else
3275 out_char('\n');
3276 }
3277 else
3278 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003279 restore_cterm_colors(); // get original colors back
3280 msg_clr_eos_force(); // clear the rest of the display
3281 windgoto((int)Rows - 1, 0); // may have moved the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282 }
3283}
3284
3285 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003286mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287{
3288 exiting = TRUE;
3289
3290#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3291 x11_export_final_selection();
3292#endif
3293
3294#ifdef FEAT_GUI
3295 if (!gui.in_use)
3296#endif
3297 {
3298 settmode(TMODE_COOK);
3299#ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02003300 // restore xterm title and icon name
3301 mch_restore_title(SAVE_RESTORE_BOTH);
3302 term_pop_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003303#endif
3304 /*
3305 * When t_ti is not empty but it doesn't cause swapping terminal
3306 * pages, need to output a newline when msg_didout is set. But when
3307 * t_ti does swap pages it should not go to the shell page. Do this
3308 * before stoptermcap().
3309 */
3310 if (swapping_screen() && !newline_on_exit)
3311 exit_scroll();
3312
Bram Moolenaar0f873732019-12-05 20:28:46 +01003313 // Stop termcap: May need to check for T_CRV response, which
3314 // requires RAW mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003315 stoptermcap();
3316
3317 /*
3318 * A newline is only required after a message in the alternate screen.
3319 * This is set to TRUE by wait_return().
3320 */
3321 if (!swapping_screen() || newline_on_exit)
3322 exit_scroll();
3323
Bram Moolenaar0f873732019-12-05 20:28:46 +01003324 // Cursor may have been switched off without calling starttermcap()
3325 // when doing "vim -u vimrc" and vimrc contains ":q".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 if (full_screen)
3327 cursor_on();
3328 }
3329 out_flush();
Bram Moolenaar0f873732019-12-05 20:28:46 +01003330 ml_close_all(TRUE); // remove all memfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 may_core_dump();
3332#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003333 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003334 gui_exit(r);
3335#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003336
Bram Moolenaar56718732006-03-15 22:53:57 +00003337#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003338 mac_conv_cleanup();
3339#endif
3340
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341#ifdef __QNX__
Bram Moolenaar0f873732019-12-05 20:28:46 +01003342 // A core dump won't be created if the signal handler
3343 // doesn't return, so we can't call exit()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 if (deadly_signal != 0)
3345 return;
3346#endif
3347
Bram Moolenaar009b2592004-10-24 19:18:58 +00003348#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003349 netbeans_send_disconnect();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003350#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003351
3352#ifdef EXITFREE
3353 free_all_mem();
3354#endif
3355
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 exit(r);
3357}
3358
3359 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003360may_core_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361{
3362 if (deadly_signal != 0)
3363 {
3364 signal(deadly_signal, SIG_DFL);
Bram Moolenaar0f873732019-12-05 20:28:46 +01003365 kill(getpid(), deadly_signal); // Die using the signal we caught
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 }
3367}
3368
3369#ifndef VMS
3370
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003371/*
3372 * Get the file descriptor to use for tty operations.
3373 */
3374 static int
3375get_tty_fd(int fd)
3376{
3377 int tty_fd = fd;
3378
3379#if defined(HAVE_SVR4_PTYS) && defined(SUN_SYSTEM)
3380 // On SunOS: Get the terminal parameters from "fd", or the slave device of
3381 // "fd" when it is a master device.
3382 if (mch_isatty(fd) > 1)
3383 {
3384 char *name;
3385
3386 name = ptsname(fd);
3387 if (name == NULL)
3388 return -1;
3389
3390 tty_fd = open(name, O_RDONLY | O_NOCTTY | O_EXTRA, 0);
3391 if (tty_fd < 0)
3392 return -1;
3393 }
3394#endif
3395 return tty_fd;
3396}
3397
3398 static int
3399mch_tcgetattr(int fd, void *term)
3400{
3401 int tty_fd;
3402 int retval = -1;
3403
3404 tty_fd = get_tty_fd(fd);
3405 if (tty_fd >= 0)
3406 {
3407#ifdef NEW_TTY_SYSTEM
3408# ifdef HAVE_TERMIOS_H
3409 retval = tcgetattr(tty_fd, (struct termios *)term);
3410# else
3411 retval = ioctl(tty_fd, TCGETA, (struct termio *)term);
3412# endif
3413#else
3414 // for "old" tty systems
3415 retval = ioctl(tty_fd, TIOCGETP, (struct sgttyb *)term);
3416#endif
3417 if (tty_fd != fd)
3418 close(tty_fd);
3419 }
3420 return retval;
3421}
3422
Bram Moolenaar071d4272004-06-13 20:20:40 +00003423 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003424mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425{
3426 static int first = TRUE;
3427
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003428#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429# ifdef HAVE_TERMIOS_H
3430 static struct termios told;
3431 struct termios tnew;
3432# else
3433 static struct termio told;
3434 struct termio tnew;
3435# endif
3436
3437 if (first)
3438 {
3439 first = FALSE;
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003440 mch_tcgetattr(read_cmd_fd, &told);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003441 }
3442
3443 tnew = told;
3444 if (tmode == TMODE_RAW)
3445 {
3446 /*
3447 * ~ICRNL enables typing ^V^M
3448 */
3449 tnew.c_iflag &= ~ICRNL;
3450 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3451# if defined(IEXTEN) && !defined(__MINT__)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003452 | IEXTEN // IEXTEN enables typing ^V on SOLARIS
3453 // but it breaks function keys on MINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454# endif
3455 );
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02003456# ifdef ONLCR
3457 // Don't map NL -> CR NL, we do it ourselves.
3458 // Also disable expanding tabs if possible.
3459# ifdef XTABS
3460 tnew.c_oflag &= ~(ONLCR | XTABS);
3461# else
3462# ifdef TAB3
3463 tnew.c_oflag &= ~(ONLCR | TAB3);
3464# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003465 tnew.c_oflag &= ~ONLCR;
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02003466# endif
3467# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003468# endif
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02003469 tnew.c_cc[VMIN] = 1; // return after 1 char
3470 tnew.c_cc[VTIME] = 0; // don't wait
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471 }
3472 else if (tmode == TMODE_SLEEP)
Bram Moolenaar40de4562016-07-01 15:03:46 +02003473 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003474 // Also reset ICANON here, otherwise on Solaris select() won't see
3475 // typeahead characters.
Bram Moolenaar40de4562016-07-01 15:03:46 +02003476 tnew.c_lflag &= ~(ICANON | ECHO);
Bram Moolenaar0f873732019-12-05 20:28:46 +01003477 tnew.c_cc[VMIN] = 1; // return after 1 char
3478 tnew.c_cc[VTIME] = 0; // don't wait
Bram Moolenaar40de4562016-07-01 15:03:46 +02003479 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003480
3481# if defined(HAVE_TERMIOS_H)
3482 {
3483 int n = 10;
3484
Bram Moolenaar0f873732019-12-05 20:28:46 +01003485 // A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3486 // few times.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3488 && errno == EINTR && n > 0)
3489 --n;
3490 }
3491# else
3492 ioctl(read_cmd_fd, TCSETA, &tnew);
3493# endif
3494
3495#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 /*
3497 * for "old" tty systems
3498 */
3499# ifndef TIOCSETN
Bram Moolenaar0f873732019-12-05 20:28:46 +01003500# define TIOCSETN TIOCSETP // for hpux 9.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501# endif
3502 static struct sgttyb ttybold;
3503 struct sgttyb ttybnew;
3504
3505 if (first)
3506 {
3507 first = FALSE;
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003508 mch_tcgetattr(read_cmd_fd, &ttybold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003509 }
3510
3511 ttybnew = ttybold;
3512 if (tmode == TMODE_RAW)
3513 {
3514 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3515 ttybnew.sg_flags |= RAW;
3516 }
3517 else if (tmode == TMODE_SLEEP)
3518 ttybnew.sg_flags &= ~(ECHO);
3519 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3520#endif
3521 curr_tmode = tmode;
3522}
3523
3524/*
3525 * Try to get the code for "t_kb" from the stty setting
3526 *
3527 * Even if termcap claims a backspace key, the user's setting *should*
3528 * prevail. stty knows more about reality than termcap does, and if
3529 * somebody's usual erase key is DEL (which, for most BSD users, it will
3530 * be), they're going to get really annoyed if their erase key starts
3531 * doing forward deletes for no reason. (Eric Fischer)
3532 */
3533 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003534get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535{
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003536 ttyinfo_T info;
3537 char_u buf[2];
3538 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003539
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003540 if (get_tty_info(read_cmd_fd, &info) == OK)
3541 {
3542 intr_char = info.interrupt;
3543 buf[0] = info.backspace;
3544 buf[1] = NUL;
3545 add_termcode((char_u *)"kb", buf, FALSE);
3546
Bram Moolenaar0f873732019-12-05 20:28:46 +01003547 // If <BS> and <DEL> are now the same, redefine <DEL>.
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003548 p = find_termcode((char_u *)"kD");
3549 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3550 do_fixdel(NULL);
3551 }
3552}
3553
3554/*
3555 * Obtain the characters that Backspace and Enter produce on "fd".
3556 * Returns OK or FAIL.
3557 */
3558 int
3559get_tty_info(int fd, ttyinfo_T *info)
3560{
3561#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562# ifdef HAVE_TERMIOS_H
3563 struct termios keys;
3564# else
3565 struct termio keys;
3566# endif
3567
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003568 if (mch_tcgetattr(fd, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003570 info->backspace = keys.c_cc[VERASE];
3571 info->interrupt = keys.c_cc[VINTR];
3572 if (keys.c_iflag & ICRNL)
3573 info->enter = NL;
3574 else
3575 info->enter = CAR;
3576 if (keys.c_oflag & ONLCR)
3577 info->nl_does_cr = TRUE;
3578 else
3579 info->nl_does_cr = FALSE;
3580 return OK;
3581 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003582#else
Bram Moolenaar0f873732019-12-05 20:28:46 +01003583 // for "old" tty systems
Bram Moolenaar071d4272004-06-13 20:20:40 +00003584 struct sgttyb keys;
3585
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003586 if (mch_tcgetattr(fd, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003588 info->backspace = keys.sg_erase;
3589 info->interrupt = keys.sg_kill;
3590 info->enter = CAR;
3591 info->nl_does_cr = TRUE;
3592 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003594#endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003595 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003596}
3597
Bram Moolenaar0f873732019-12-05 20:28:46 +01003598#endif // VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003600static int mouse_ison = FALSE;
3601
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602/*
3603 * Set mouse clicks on or off.
3604 */
3605 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003606mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607{
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003608#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003609 static int bevalterm_ison = FALSE;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003610#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003611 int xterm_mouse_vers;
3612
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003613#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaara06afc72018-08-27 23:24:16 +02003614 if (!on)
3615 // Make sure not tracing mouse movements. Important when a button-down
3616 // was received but no release yet.
3617 stop_xterm_trace();
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003618#endif
Bram Moolenaara06afc72018-08-27 23:24:16 +02003619
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003620 if (on == mouse_ison
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003621#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003622 && p_bevalterm == bevalterm_ison
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003623#endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003624 )
Bram Moolenaar0f873732019-12-05 20:28:46 +01003625 // return quickly if nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 return;
3627
3628 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003629
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003630#ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003631 if (ttym_flags == TTYM_URXVT)
3632 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003633 out_str_nf((char_u *)
3634 (on
3635 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3636 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003637 mouse_ison = on;
Bram Moolenaarc8427482011-10-20 21:09:35 +02003638 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003639#endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003640
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003641 if (ttym_flags == TTYM_SGR)
3642 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003643 // SGR mode supports columns above 223
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003644 out_str_nf((char_u *)
3645 (on
3646 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3647 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003648 mouse_ison = on;
3649 }
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003650
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003651#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003652 if (bevalterm_ison != (p_bevalterm && on))
3653 {
3654 bevalterm_ison = (p_bevalterm && on);
3655 if (xterm_mouse_vers > 1 && !bevalterm_ison)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003656 // disable mouse movement events, enabling is below
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003657 out_str_nf((char_u *)
3658 (IF_EB("\033[?1003l", ESC_STR "[?1003l")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003659 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003660#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003661
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 if (xterm_mouse_vers > 0)
3663 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003664 if (on) // enable mouse events, use mouse tracking if available
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 out_str_nf((char_u *)
3666 (xterm_mouse_vers > 1
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003667 ? (
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003668#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003669 bevalterm_ison
3670 ? IF_EB("\033[?1003h", ESC_STR "[?1003h") :
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003671#endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003672 IF_EB("\033[?1002h", ESC_STR "[?1002h"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
Bram Moolenaar0f873732019-12-05 20:28:46 +01003674 else // disable mouse events, could probably always send the same
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675 out_str_nf((char_u *)
3676 (xterm_mouse_vers > 1
3677 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3678 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003679 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 }
3681
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003682#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 else if (ttym_flags == TTYM_DEC)
3684 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003685 if (on) // enable mouse events
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
Bram Moolenaar0f873732019-12-05 20:28:46 +01003687 else // disable mouse events
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 out_str_nf((char_u *)"\033['z");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003689 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003691#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003693#ifdef FEAT_MOUSE_GPM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 else
3695 {
3696 if (on)
3697 {
3698 if (gpm_open())
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003699 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003700 }
3701 else
3702 {
3703 gpm_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003704 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 }
3706 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003707#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003709#ifdef FEAT_SYSMOUSE
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003710 else
3711 {
3712 if (on)
3713 {
3714 if (sysmouse_open() == OK)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003715 mouse_ison = TRUE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003716 }
3717 else
3718 {
3719 sysmouse_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003720 mouse_ison = FALSE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003721 }
3722 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003723#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003724
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003725#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 else
3727 {
3728 if (on)
3729 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003730 // D - Enable Mouse up/down messages
3731 // L - Enable Left Button Reporting
3732 // M - Enable Middle Button Reporting
3733 // R - Enable Right Button Reporting
3734 // K - Enable SHIFT and CTRL key Reporting
3735 // + - Enable Advanced messaging of mouse moves and up/down messages
3736 // Q - Quiet No Ack
3737 // # - Numeric value of mouse pointer required
3738 // 0 = Multiview 2000 cursor, used as standard
3739 // 1 = Windows Arrow
3740 // 2 = Windows I Beam
3741 // 3 = Windows Hour Glass
3742 // 4 = Windows Cross Hair
3743 // 5 = Windows UP Arrow
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003744# ifdef JSBTERM_MOUSE_NONADVANCED
Bram Moolenaar0f873732019-12-05 20:28:46 +01003745 // Disables full feedback of pointer movements
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3747 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003748# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3750 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003751# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003752 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753 }
3754 else
3755 {
3756 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3757 ESC_STR "[0~ZwQ" ESC_STR "\\"));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003758 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003759 }
3760 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003761#endif
3762#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 else
3764 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003765 // 1 = button press, 6 = release, 7 = drag, 1h...9l = right button
Bram Moolenaar071d4272004-06-13 20:20:40 +00003766 if (on)
3767 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3768 else
3769 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003770 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003772#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773}
3774
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003775#if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003776/*
3777 * Called when 'balloonevalterm' changed.
3778 */
3779 void
3780mch_bevalterm_changed(void)
3781{
3782 mch_setmouse(mouse_ison);
3783}
3784#endif
3785
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786/*
3787 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3788 */
3789 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003790check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791{
3792# ifdef FEAT_MOUSE_XTERM
3793 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003794# ifdef FEAT_MOUSE_URXVT
3795 && use_xterm_mouse() != 3
3796# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003797# ifdef FEAT_GUI
3798 && !gui.in_use
3799# endif
3800 )
3801 {
3802 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003803 ? IF_EB("\233M", CSI_STR "M")
3804 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003805 if (*p_mouse != NUL)
3806 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003807 // force mouse off and maybe on to send possibly new mouse
3808 // activation sequence to the xterm, with(out) drag tracing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003809 mch_setmouse(FALSE);
3810 setmouse();
3811 }
3812 }
3813 else
3814 del_mouse_termcode(KS_MOUSE);
3815# endif
3816
3817# ifdef FEAT_MOUSE_GPM
3818 if (!use_xterm_mouse()
3819# ifdef FEAT_GUI
3820 && !gui.in_use
3821# endif
3822 )
Bram Moolenaarbedf0912019-05-04 16:58:45 +02003823 set_mouse_termcode(KS_GPM_MOUSE,
3824 (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3825 else
3826 del_mouse_termcode(KS_GPM_MOUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003827# endif
3828
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003829# ifdef FEAT_SYSMOUSE
3830 if (!use_xterm_mouse()
3831# ifdef FEAT_GUI
3832 && !gui.in_use
3833# endif
3834 )
3835 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3836# endif
3837
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838# ifdef FEAT_MOUSE_JSB
Bram Moolenaar0f873732019-12-05 20:28:46 +01003839 // Conflicts with xterm mouse: "\033[" and "\033[M" ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 if (!use_xterm_mouse()
3841# ifdef FEAT_GUI
3842 && !gui.in_use
3843# endif
3844 )
3845 set_mouse_termcode(KS_JSBTERM_MOUSE,
3846 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3847 else
3848 del_mouse_termcode(KS_JSBTERM_MOUSE);
3849# endif
3850
3851# ifdef FEAT_MOUSE_NET
Bram Moolenaar0f873732019-12-05 20:28:46 +01003852 // There is no conflict, but one may type "ESC }" from Insert mode. Don't
3853 // define it in the GUI or when using an xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854 if (!use_xterm_mouse()
3855# ifdef FEAT_GUI
3856 && !gui.in_use
3857# endif
3858 )
3859 set_mouse_termcode(KS_NETTERM_MOUSE,
3860 (char_u *)IF_EB("\033}", ESC_STR "}"));
3861 else
3862 del_mouse_termcode(KS_NETTERM_MOUSE);
3863# endif
3864
3865# ifdef FEAT_MOUSE_DEC
Bram Moolenaar0f873732019-12-05 20:28:46 +01003866 // Conflicts with xterm mouse: "\033[" and "\033[M"
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003867 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003868# ifdef FEAT_GUI
3869 && !gui.in_use
3870# endif
3871 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003872 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3873 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003874 else
3875 del_mouse_termcode(KS_DEC_MOUSE);
3876# endif
3877# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar0f873732019-12-05 20:28:46 +01003878 // same conflict as the dec mouse
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003879 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003880# ifdef FEAT_GUI
3881 && !gui.in_use
3882# endif
3883 )
3884 set_mouse_termcode(KS_PTERM_MOUSE,
3885 (char_u *) IF_EB("\033[", ESC_STR "["));
3886 else
3887 del_mouse_termcode(KS_PTERM_MOUSE);
3888# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003889# ifdef FEAT_MOUSE_URXVT
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003890 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003891# ifdef FEAT_GUI
3892 && !gui.in_use
3893# endif
3894 )
3895 {
3896 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003897 ? IF_EB("\233*M", CSI_STR "*M")
3898 : IF_EB("\033[*M", ESC_STR "[*M")));
Bram Moolenaarc8427482011-10-20 21:09:35 +02003899
3900 if (*p_mouse != NUL)
3901 {
3902 mch_setmouse(FALSE);
3903 setmouse();
3904 }
3905 }
3906 else
3907 del_mouse_termcode(KS_URXVT_MOUSE);
3908# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003909 if (use_xterm_mouse() == 4
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01003910# ifdef FEAT_GUI
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003911 && !gui.in_use
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01003912# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003913 )
3914 {
3915 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003916 ? IF_EB("\233<*M", CSI_STR "<*M")
3917 : IF_EB("\033[<*M", ESC_STR "[<*M")));
3918
3919 set_mouse_termcode(KS_SGR_MOUSE_RELEASE, (char_u *)(term_is_8bit(T_NAME)
3920 ? IF_EB("\233<*m", CSI_STR "<*m")
3921 : IF_EB("\033[<*m", ESC_STR "[<*m")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003922
3923 if (*p_mouse != NUL)
3924 {
3925 mch_setmouse(FALSE);
3926 setmouse();
3927 }
3928 }
3929 else
Bram Moolenaara529ce02017-06-22 22:37:57 +02003930 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003931 del_mouse_termcode(KS_SGR_MOUSE);
Bram Moolenaara529ce02017-06-22 22:37:57 +02003932 del_mouse_termcode(KS_SGR_MOUSE_RELEASE);
3933 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935
3936/*
3937 * set screen mode, always fails.
3938 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003940mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941{
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003942 emsg(_(e_screenmode));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943 return FAIL;
3944}
3945
3946#ifndef VMS
3947
3948/*
3949 * Try to get the current window size:
3950 * 1. with an ioctl(), most accurate method
3951 * 2. from the environment variables LINES and COLUMNS
3952 * 3. from the termcap
3953 * 4. keep using the old values
3954 * Return OK when size could be determined, FAIL otherwise.
3955 */
3956 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003957mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958{
3959 long rows = 0;
3960 long columns = 0;
3961 char_u *p;
3962
3963 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964 * 1. try using an ioctl. It is the most accurate method.
3965 *
3966 * Try using TIOCGWINSZ first, some systems that have it also define
3967 * TIOCGSIZE but don't have a struct ttysize.
3968 */
3969# ifdef TIOCGWINSZ
3970 {
3971 struct winsize ws;
3972 int fd = 1;
3973
Bram Moolenaar0f873732019-12-05 20:28:46 +01003974 // When stdout is not a tty, use stdin for the ioctl().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003975 if (!isatty(fd) && isatty(read_cmd_fd))
3976 fd = read_cmd_fd;
3977 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3978 {
3979 columns = ws.ws_col;
3980 rows = ws.ws_row;
3981 }
3982 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01003983# else // TIOCGWINSZ
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984# ifdef TIOCGSIZE
3985 {
3986 struct ttysize ts;
3987 int fd = 1;
3988
Bram Moolenaar0f873732019-12-05 20:28:46 +01003989 // When stdout is not a tty, use stdin for the ioctl().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 if (!isatty(fd) && isatty(read_cmd_fd))
3991 fd = read_cmd_fd;
3992 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3993 {
3994 columns = ts.ts_cols;
3995 rows = ts.ts_lines;
3996 }
3997 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01003998# endif // TIOCGSIZE
3999# endif // TIOCGWINSZ
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000
4001 /*
4002 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004003 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
4004 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004005 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004006 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 {
4008 if ((p = (char_u *)getenv("LINES")))
4009 rows = atoi((char *)p);
4010 if ((p = (char_u *)getenv("COLUMNS")))
4011 columns = atoi((char *)p);
4012 }
4013
4014#ifdef HAVE_TGETENT
4015 /*
4016 * 3. try reading "co" and "li" entries from termcap
4017 */
4018 if (columns == 0 || rows == 0)
4019 getlinecol(&columns, &rows);
4020#endif
4021
4022 /*
4023 * 4. If everything fails, use the old values
4024 */
4025 if (columns <= 0 || rows <= 0)
4026 return FAIL;
4027
4028 Rows = rows;
4029 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02004030 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 return OK;
4032}
4033
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004034#if defined(FEAT_TERMINAL) || defined(PROTO)
4035/*
4036 * Report the windows size "rows" and "cols" to tty "fd".
4037 */
4038 int
4039mch_report_winsize(int fd, int rows, int cols)
4040{
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004041 int tty_fd;
4042 int retval = -1;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004043
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004044 tty_fd = get_tty_fd(fd);
4045 if (tty_fd >= 0)
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004046 {
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004047# if defined(TIOCSWINSZ)
4048 struct winsize ws;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004049
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004050 ws.ws_col = cols;
4051 ws.ws_row = rows;
4052 ws.ws_xpixel = cols * 5;
4053 ws.ws_ypixel = rows * 10;
4054 retval = ioctl(tty_fd, TIOCSWINSZ, &ws);
4055 ch_log(NULL, "ioctl(TIOCSWINSZ) %s",
4056 retval == 0 ? "success" : "failed");
4057# elif defined(TIOCSSIZE)
4058 struct ttysize ts;
4059
4060 ts.ts_cols = cols;
4061 ts.ts_lines = rows;
4062 retval = ioctl(tty_fd, TIOCSSIZE, &ts);
4063 ch_log(NULL, "ioctl(TIOCSSIZE) %s",
4064 retval == 0 ? "success" : "failed");
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004065# endif
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004066 if (tty_fd != fd)
4067 close(tty_fd);
4068 }
4069 return retval == 0 ? OK : FAIL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004070}
4071#endif
4072
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073/*
4074 * Try to set the window size to Rows and Columns.
4075 */
4076 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004077mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078{
4079 if (*T_CWS)
4080 {
4081 /*
4082 * NOTE: if you get an error here that term_set_winsize() is
4083 * undefined, check the output of configure. It could probably not
4084 * find a ncurses, termcap or termlib library.
4085 */
4086 term_set_winsize((int)Rows, (int)Columns);
4087 out_flush();
Bram Moolenaar0f873732019-12-05 20:28:46 +01004088 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 }
4090}
4091
Bram Moolenaar0f873732019-12-05 20:28:46 +01004092#endif // VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093
4094/*
4095 * Rows and/or Columns has changed.
4096 */
4097 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004098mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099{
Bram Moolenaar0f873732019-12-05 20:28:46 +01004100 // Nothing to do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101}
4102
Bram Moolenaar205b8862011-09-07 15:04:31 +02004103/*
4104 * Wait for process "child" to end.
4105 * Return "child" if it exited properly, <= 0 on error.
4106 */
4107 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01004108wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02004109{
4110 pid_t wait_pid = 0;
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004111 long delay_msec = 1;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004112
4113 while (wait_pid != child)
4114 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004115 // When compiled with Python threads are probably used, in which case
4116 // wait() sometimes hangs for no obvious reason. Use waitpid()
4117 // instead and loop (like the GUI). Also needed for other interfaces,
4118 // they might call system().
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004119# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004120 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004121# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02004122 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004123# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02004124 if (wait_pid == 0)
4125 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004126 // Wait for 1 to 10 msec before trying again.
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004127 mch_delay(delay_msec, TRUE);
4128 if (++delay_msec > 10)
4129 delay_msec = 10;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004130 continue;
4131 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004132 if (wait_pid <= 0
4133# ifdef ECHILD
4134 && errno == ECHILD
4135# endif
4136 )
4137 break;
4138 }
4139 return wait_pid;
4140}
4141
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004142#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar7da34602017-08-01 17:14:21 +02004143/*
4144 * Set the environment for a child process.
4145 */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004146 static void
Bram Moolenaar493359e2018-06-12 20:25:52 +02004147set_child_environment(
4148 long rows,
4149 long columns,
4150 char *term,
4151 int is_terminal UNUSED)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004152{
4153# ifdef HAVE_SETENV
4154 char envbuf[50];
4155# else
Bram Moolenaar5f7e7bd2017-07-22 14:08:43 +02004156 static char envbuf_Term[30];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004157 static char envbuf_Rows[20];
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004158 static char envbuf_Lines[20];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004159 static char envbuf_Columns[20];
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004160 static char envbuf_Colors[20];
Bram Moolenaar493359e2018-06-12 20:25:52 +02004161# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02004162 static char envbuf_Version[20];
Bram Moolenaar493359e2018-06-12 20:25:52 +02004163# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004164# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004165 static char envbuf_Servername[60];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004166# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004167# endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004168 long colors =
4169# ifdef FEAT_GUI
4170 gui.in_use ? 256*256*256 :
4171# endif
4172 t_colors;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004173
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004174# ifdef HAVE_SETENV
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004175 setenv("TERM", term, 1);
4176 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004177 setenv("ROWS", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004178 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004179 setenv("LINES", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004180 sprintf((char *)envbuf, "%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004181 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004182 sprintf((char *)envbuf, "%ld", colors);
4183 setenv("COLORS", (char *)envbuf, 1);
Bram Moolenaar493359e2018-06-12 20:25:52 +02004184# ifdef FEAT_TERMINAL
4185 if (is_terminal)
4186 {
Bram Moolenaar5ecdf962018-06-13 20:49:50 +02004187 sprintf((char *)envbuf, "%ld", (long)get_vim_var_nr(VV_VERSION));
Bram Moolenaar493359e2018-06-12 20:25:52 +02004188 setenv("VIM_TERMINAL", (char *)envbuf, 1);
4189 }
4190# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004191# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004192 setenv("VIM_SERVERNAME", serverName == NULL ? "" : (char *)serverName, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004193# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004194# else
4195 /*
4196 * Putenv does not copy the string, it has to remain valid.
4197 * Use a static array to avoid losing allocated memory.
Bram Moolenaar7da34602017-08-01 17:14:21 +02004198 * This won't work well when running multiple children...
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004199 */
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004200 vim_snprintf(envbuf_Term, sizeof(envbuf_Term), "TERM=%s", term);
4201 putenv(envbuf_Term);
4202 vim_snprintf(envbuf_Rows, sizeof(envbuf_Rows), "ROWS=%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004203 putenv(envbuf_Rows);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004204 vim_snprintf(envbuf_Lines, sizeof(envbuf_Lines), "LINES=%ld", rows);
4205 putenv(envbuf_Lines);
4206 vim_snprintf(envbuf_Columns, sizeof(envbuf_Columns),
4207 "COLUMNS=%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004208 putenv(envbuf_Columns);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004209 vim_snprintf(envbuf_Colors, sizeof(envbuf_Colors), "COLORS=%ld", colors);
4210 putenv(envbuf_Colors);
Bram Moolenaar493359e2018-06-12 20:25:52 +02004211# ifdef FEAT_TERMINAL
4212 if (is_terminal)
4213 {
4214 vim_snprintf(envbuf_Version, sizeof(envbuf_Version),
Bram Moolenaar5ecdf962018-06-13 20:49:50 +02004215 "VIM_TERMINAL=%ld", (long)get_vim_var_nr(VV_VERSION));
Bram Moolenaar493359e2018-06-12 20:25:52 +02004216 putenv(envbuf_Version);
4217 }
4218# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004219# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004220 vim_snprintf(envbuf_Servername, sizeof(envbuf_Servername),
4221 "VIM_SERVERNAME=%s", serverName == NULL ? "" : (char *)serverName);
4222 putenv(envbuf_Servername);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004223# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004224# endif
4225}
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004226
4227 static void
Bram Moolenaar493359e2018-06-12 20:25:52 +02004228set_default_child_environment(int is_terminal)
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004229{
Bram Moolenaar493359e2018-06-12 20:25:52 +02004230 set_child_environment(Rows, Columns, "dumb", is_terminal);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004231}
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004232#endif
4233
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004234#if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004235/*
4236 * Open a PTY, with FD for the master and slave side.
4237 * When failing "pty_master_fd" and "pty_slave_fd" are -1.
Bram Moolenaar59386482019-02-10 22:43:46 +01004238 * When successful both file descriptors are stored and the allocated pty name
4239 * is stored in both "*name1" and "*name2".
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004240 */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004241 static void
Bram Moolenaar59386482019-02-10 22:43:46 +01004242open_pty(int *pty_master_fd, int *pty_slave_fd, char_u **name1, char_u **name2)
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004243{
4244 char *tty_name;
4245
Bram Moolenaar59386482019-02-10 22:43:46 +01004246 if (name1 != NULL)
4247 *name1 = NULL;
4248 if (name2 != NULL)
4249 *name2 = NULL;
4250
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004251 *pty_master_fd = mch_openpty(&tty_name); // open pty
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004252 if (*pty_master_fd >= 0)
4253 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004254 // Leaving out O_NOCTTY may lead to waitpid() always returning
4255 // 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4256 // adding O_NOCTTY always works when defined.
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004257#ifdef O_NOCTTY
4258 *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4259#else
4260 *pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4261#endif
4262 if (*pty_slave_fd < 0)
4263 {
4264 close(*pty_master_fd);
4265 *pty_master_fd = -1;
4266 }
Bram Moolenaar59386482019-02-10 22:43:46 +01004267 else
4268 {
4269 if (name1 != NULL)
4270 *name1 = vim_strsave((char_u *)tty_name);
4271 if (name2 != NULL)
4272 *name2 = vim_strsave((char_u *)tty_name);
4273 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004274 }
4275}
4276#endif
4277
Bram Moolenaarfae42832017-08-01 22:24:26 +02004278/*
4279 * Send SIGINT to a child process if "c" is an interrupt character.
4280 */
Bram Moolenaar840d16f2019-09-10 21:27:18 +02004281 static void
Bram Moolenaarfae42832017-08-01 22:24:26 +02004282may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED)
4283{
4284# ifdef SIGINT
4285 if (c == Ctrl_C || c == intr_char)
4286 {
4287# ifdef HAVE_SETSID
4288 kill(-pid, SIGINT);
4289# else
4290 kill(0, SIGINT);
4291# endif
4292 if (wpid > 0)
4293 kill(wpid, SIGINT);
4294 }
4295# endif
4296}
4297
Bram Moolenaar197c6b72019-11-03 23:37:12 +01004298#if !defined(USE_SYSTEM) || defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaar13568252018-03-16 20:46:58 +01004299
Bram Moolenaar0f873732019-12-05 20:28:46 +01004300/*
4301 * Parse "cmd" and return the result in "argvp" which is an allocated array of
4302 * pointers, the last one is NULL.
4303 * The "sh_tofree" and "shcf_tofree" must be later freed by the caller.
4304 */
Bram Moolenaar197c6b72019-11-03 23:37:12 +01004305 int
4306unix_build_argv(
Bram Moolenaar13568252018-03-16 20:46:58 +01004307 char_u *cmd,
4308 char ***argvp,
4309 char_u **sh_tofree,
4310 char_u **shcf_tofree)
4311{
4312 char **argv = NULL;
4313 int argc;
4314
4315 *sh_tofree = vim_strsave(p_sh);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004316 if (*sh_tofree == NULL) // out of memory
Bram Moolenaar13568252018-03-16 20:46:58 +01004317 return FAIL;
4318
4319 if (mch_parse_cmd(*sh_tofree, TRUE, &argv, &argc) == FAIL)
4320 return FAIL;
4321 *argvp = argv;
4322
4323 if (cmd != NULL)
4324 {
4325 char_u *s;
4326 char_u *p;
4327
4328 if (extra_shell_arg != NULL)
4329 argv[argc++] = (char *)extra_shell_arg;
4330
Bram Moolenaar0f873732019-12-05 20:28:46 +01004331 // Break 'shellcmdflag' into white separated parts. This doesn't
4332 // handle quoted strings, they are very unlikely to appear.
Bram Moolenaar964b3742019-05-24 18:54:09 +02004333 *shcf_tofree = alloc(STRLEN(p_shcf) + 1);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004334 if (*shcf_tofree == NULL) // out of memory
Bram Moolenaar13568252018-03-16 20:46:58 +01004335 return FAIL;
4336 s = *shcf_tofree;
4337 p = p_shcf;
4338 while (*p != NUL)
4339 {
4340 argv[argc++] = (char *)s;
4341 while (*p && *p != ' ' && *p != TAB)
4342 *s++ = *p++;
4343 *s++ = NUL;
4344 p = skipwhite(p);
4345 }
4346
4347 argv[argc++] = (char *)cmd;
4348 }
4349 argv[argc] = NULL;
4350 return OK;
4351}
4352#endif
4353
4354#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4355/*
4356 * Use a terminal window to run a shell command in.
4357 */
4358 static int
4359mch_call_shell_terminal(
4360 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004361 int options UNUSED) // SHELL_*, see vim.h
Bram Moolenaar13568252018-03-16 20:46:58 +01004362{
4363 jobopt_T opt;
4364 char **argv = NULL;
4365 char_u *tofree1 = NULL;
4366 char_u *tofree2 = NULL;
4367 int retval = -1;
4368 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004369 job_T *job;
Bram Moolenaar13568252018-03-16 20:46:58 +01004370 aco_save_T aco;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004371 oparg_T oa; // operator arguments
Bram Moolenaar13568252018-03-16 20:46:58 +01004372
Bram Moolenaar197c6b72019-11-03 23:37:12 +01004373 if (unix_build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
Bram Moolenaar13568252018-03-16 20:46:58 +01004374 goto theend;
4375
4376 init_job_options(&opt);
4377 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4378 buf = term_start(NULL, argv, &opt, TERM_START_SYSTEM);
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004379 if (buf == NULL)
4380 goto theend;
4381
4382 job = term_getjob(buf->b_term);
4383 ++job->jv_refcount;
Bram Moolenaar13568252018-03-16 20:46:58 +01004384
Bram Moolenaar0f873732019-12-05 20:28:46 +01004385 // Find a window to make "buf" curbuf.
Bram Moolenaar13568252018-03-16 20:46:58 +01004386 aucmd_prepbuf(&aco, buf);
4387
4388 clear_oparg(&oa);
4389 while (term_use_loop())
4390 {
4391 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4392 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004393 // If terminal_loop() returns OK we got a key that is handled
4394 // in Normal model. We don't do redrawing anyway.
Bram Moolenaar13568252018-03-16 20:46:58 +01004395 if (terminal_loop(TRUE) == OK)
4396 normal_cmd(&oa, TRUE);
4397 }
4398 else
4399 normal_cmd(&oa, TRUE);
4400 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004401 retval = job->jv_exitval;
Bram Moolenaar13568252018-03-16 20:46:58 +01004402 ch_log(NULL, "system command finished");
4403
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004404 job_unref(job);
4405
Bram Moolenaar0f873732019-12-05 20:28:46 +01004406 // restore curwin/curbuf and a few other things
Bram Moolenaar13568252018-03-16 20:46:58 +01004407 aucmd_restbuf(&aco);
4408
4409 wait_return(TRUE);
4410 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4411
4412theend:
4413 vim_free(argv);
4414 vim_free(tofree1);
4415 vim_free(tofree2);
4416 return retval;
4417}
4418#endif
4419
4420#ifdef USE_SYSTEM
4421/*
4422 * Use system() to start the shell: simple but slow.
4423 */
4424 static int
4425mch_call_shell_system(
Bram Moolenaar05540972016-01-30 20:31:25 +01004426 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004427 int options) // SHELL_*, see vim.h
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428{
4429#ifdef VMS
4430 char *ifn = NULL;
4431 char *ofn = NULL;
4432#endif
4433 int tmode = cur_tmode;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004434 char_u *newcmd; // only needed for unix
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01004435 int x;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436
4437 out_flush();
4438
4439 if (options & SHELL_COOKED)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004440 settmode(TMODE_COOK); // set to normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004441
Bram Moolenaar62b42182010-09-21 22:09:37 +02004442# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004443 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004444 loose_clipboard();
4445# endif
4446
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447 if (cmd == NULL)
4448 x = system((char *)p_sh);
4449 else
4450 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004451# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 if (ofn = strchr((char *)cmd, '>'))
4453 *ofn++ = '\0';
4454 if (ifn = strchr((char *)cmd, '<'))
4455 {
4456 char *p;
4457
4458 *ifn++ = '\0';
Bram Moolenaar0f873732019-12-05 20:28:46 +01004459 p = strchr(ifn,' '); // chop off any trailing spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 if (p)
4461 *p = '\0';
4462 }
4463 if (ofn)
4464 x = vms_sys((char *)cmd, ofn, ifn);
4465 else
4466 x = system((char *)cmd);
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004467# else
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004468 newcmd = alloc(STRLEN(p_sh)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004469 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004470 + STRLEN(p_shcf) + STRLEN(cmd) + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004471 if (newcmd == NULL)
4472 x = 0;
4473 else
4474 {
4475 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4476 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4477 (char *)p_shcf,
4478 (char *)cmd);
4479 x = system((char *)newcmd);
4480 vim_free(newcmd);
4481 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004482# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004483 }
4484# ifdef VMS
4485 x = vms_sys_status(x);
4486# endif
4487 if (emsg_silent)
4488 ;
4489 else if (x == 127)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004490 msg_puts(_("\nCannot execute shell sh\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 else if (x && !(options & SHELL_SILENT))
4492 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004493 msg_puts(_("\nshell returned "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 msg_outnum((long)x);
4495 msg_putchar('\n');
4496 }
4497
4498 if (tmode == TMODE_RAW)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004499 settmode(TMODE_RAW); // set to raw mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500# ifdef FEAT_TITLE
4501 resettitle();
4502# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004503# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4504 restore_clipboard();
4505# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 return x;
Bram Moolenaar13568252018-03-16 20:46:58 +01004507}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508
Bram Moolenaar0f873732019-12-05 20:28:46 +01004509#else // USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00004510
Bram Moolenaar0f873732019-12-05 20:28:46 +01004511# define EXEC_FAILED 122 // Exit code when shell didn't execute. Don't use
4512 // 127, some shells use that already
4513# define OPEN_NULL_FAILED 123 // Exit code if /dev/null can't be opened
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514
Bram Moolenaar13568252018-03-16 20:46:58 +01004515/*
4516 * Don't use system(), use fork()/exec().
4517 */
4518 static int
4519mch_call_shell_fork(
4520 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004521 int options) // SHELL_*, see vim.h
Bram Moolenaar13568252018-03-16 20:46:58 +01004522{
4523 int tmode = cur_tmode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004525 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 pid_t wait_pid = 0;
4527# ifdef HAVE_UNION_WAIT
4528 union wait status;
4529# else
4530 int status = -1;
4531# endif
4532 int retval = -1;
4533 char **argv = NULL;
Bram Moolenaar13568252018-03-16 20:46:58 +01004534 char_u *tofree1 = NULL;
4535 char_u *tofree2 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 int i;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004537 int pty_master_fd = -1; // for pty's
Bram Moolenaardf177f62005-02-22 08:39:57 +00004538# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539 int pty_slave_fd = -1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004540# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01004541 int fd_toshell[2]; // for pipes
Bram Moolenaar071d4272004-06-13 20:20:40 +00004542 int fd_fromshell[2];
4543 int pipe_error = FALSE;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004544 int did_settmode = FALSE; // settmode(TMODE_RAW) called
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545
4546 out_flush();
4547 if (options & SHELL_COOKED)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004548 settmode(TMODE_COOK); // set to normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549
Bram Moolenaar197c6b72019-11-03 23:37:12 +01004550 if (unix_build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
Bram Moolenaar835dc632016-02-07 14:27:38 +01004551 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004552
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004554 * For the GUI, when writing the output into the buffer and when reading
4555 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4556 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004558 if ((options & (SHELL_READ|SHELL_WRITE))
4559# ifdef FEAT_GUI
4560 || (gui.in_use && show_shell_mess)
4561# endif
4562 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004563 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004564# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004565 /*
4566 * Try to open a master pty.
4567 * If this works, open the slave pty.
4568 * If the slave can't be opened, close the master pty.
4569 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004570 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar59386482019-02-10 22:43:46 +01004571 open_pty(&pty_master_fd, &pty_slave_fd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004572 /*
4573 * If not opening a pty or it didn't work, try using pipes.
4574 */
4575 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004576# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 {
4578 pipe_error = (pipe(fd_toshell) < 0);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004579 if (!pipe_error) // pipe create OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 {
4581 pipe_error = (pipe(fd_fromshell) < 0);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004582 if (pipe_error) // pipe create failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004583 {
4584 close(fd_toshell[0]);
4585 close(fd_toshell[1]);
4586 }
4587 }
4588 if (pipe_error)
4589 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004590 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 out_flush();
4592 }
4593 }
4594 }
4595
Bram Moolenaar0f873732019-12-05 20:28:46 +01004596 if (!pipe_error) // pty or pipe opened or not used
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004598 SIGSET_DECL(curset)
4599
Bram Moolenaar071d4272004-06-13 20:20:40 +00004600# ifdef __BEOS__
4601 beos_cleanup_read_thread();
4602# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004603
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004604 BLOCK_SIGNALS(&curset);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004605 pid = fork(); // maybe we should use vfork()
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004606 if (pid == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004608 UNBLOCK_SIGNALS(&curset);
4609
Bram Moolenaar32526b32019-01-19 17:43:09 +01004610 msg_puts(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004611 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004612# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004613 || (gui.in_use && show_shell_mess)
4614# endif
4615 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004617# ifdef FEAT_GUI
Bram Moolenaar0f873732019-12-05 20:28:46 +01004618 if (pty_master_fd >= 0) // close the pseudo tty
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 {
4620 close(pty_master_fd);
4621 close(pty_slave_fd);
4622 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004623 else // close the pipes
Bram Moolenaardf177f62005-02-22 08:39:57 +00004624# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625 {
4626 close(fd_toshell[0]);
4627 close(fd_toshell[1]);
4628 close(fd_fromshell[0]);
4629 close(fd_fromshell[1]);
4630 }
4631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004633 else if (pid == 0) // child
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004635 reset_signals(); // handle signals normally
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004636 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004637
Bram Moolenaar819524702018-02-27 19:10:00 +01004638# ifdef FEAT_JOB_CHANNEL
4639 if (ch_log_active())
Bram Moolenaar0f873732019-12-05 20:28:46 +01004640 // close the log file in the child
Bram Moolenaar819524702018-02-27 19:10:00 +01004641 ch_logfile((char_u *)"", (char_u *)"");
4642# endif
4643
Bram Moolenaar071d4272004-06-13 20:20:40 +00004644 if (!show_shell_mess || (options & SHELL_EXPAND))
4645 {
4646 int fd;
4647
4648 /*
4649 * Don't want to show any message from the shell. Can't just
4650 * close stdout and stderr though, because some systems will
4651 * break if you try to write to them after that, so we must
4652 * use dup() to replace them with something else -- webb
4653 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4654 * waiting for input.
4655 */
4656 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4657 fclose(stdin);
4658 fclose(stdout);
4659 fclose(stderr);
4660
4661 /*
4662 * If any of these open()'s and dup()'s fail, we just continue
4663 * anyway. It's not fatal, and on most systems it will make
4664 * no difference at all. On a few it will cause the execvp()
4665 * to exit with a non-zero status even when the completion
4666 * could be done, which is nothing too serious. If the open()
4667 * or dup() failed we'd just do the same thing ourselves
4668 * anyway -- webb
4669 */
4670 if (fd >= 0)
4671 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004672 vim_ignored = dup(fd); // To replace stdin (fd 0)
4673 vim_ignored = dup(fd); // To replace stdout (fd 1)
4674 vim_ignored = dup(fd); // To replace stderr (fd 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675
Bram Moolenaar0f873732019-12-05 20:28:46 +01004676 // Don't need this now that we've duplicated it
Bram Moolenaar071d4272004-06-13 20:20:40 +00004677 close(fd);
4678 }
4679 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004680 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004682 || gui.in_use
4683# endif
4684 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004685 {
4686
Bram Moolenaardf177f62005-02-22 08:39:57 +00004687# ifdef HAVE_SETSID
Bram Moolenaar0f873732019-12-05 20:28:46 +01004688 // Create our own process group, so that the child and all its
4689 // children can be kill()ed. Don't do this when using pipes,
4690 // because stdin is not a tty, we would lose /dev/tty.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004691 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004692 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004693 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004694# if defined(SIGHUP)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004695 // When doing "!xterm&" and 'shell' is bash: the shell
4696 // will exit and send SIGHUP to all processes in its
4697 // group, killing the just started process. Ignore SIGHUP
4698 // to avoid that. (suggested by Simon Schubert)
Bram Moolenaar07256082009-02-04 13:19:42 +00004699 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004706 // push stream discipline modules
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004707 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 Moolenaar0f873732019-12-05 20:28:46 +01004710 // Try to become controlling tty (probably doesn't work,
4711 // unless run by root)
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004712 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004726 close(pty_master_fd); // close master side of pty
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727
Bram Moolenaar0f873732019-12-05 20:28:46 +01004728 // set up stdin/stdout/stderr for the child
Bram Moolenaar071d4272004-06-13 20:20:40 +00004729 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01004739 close(pty_slave_fd); // has been dupped, close it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 }
4741 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004742# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004744 // set up stdin for the child
Bram Moolenaar071d4272004-06-13 20:20:40 +00004745 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01004750 // set up stdout for the child
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004759 // set up stderr for the child
Bram Moolenaara5792f52005-11-23 21:25:05 +00004760 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);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004775 _exit(EXEC_FAILED); // exec failed, return failure code
Bram Moolenaar071d4272004-06-13 20:20:40 +00004776 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004777 else // parent
Bram Moolenaar071d4272004-06-13 20:20:40 +00004778 {
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 Moolenaar0f873732019-12-05 20:28:46 +01004800# 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 Moolenaar0f873732019-12-05 20:28:46 +01004802 int buffer_off = 0; // valid bytes in buffer[]
4803 char_u ta_buf[BUFLEN + 1]; // TypeAHead
4804 int ta_len = 0; // valid bytes in ta_buf[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805 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;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004851 State = EXTERNCMD; // don't redraw at window resize
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004853 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004854 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004855 // Fork a process that will write the lines to the
4856 // external program.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004857 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 Moolenaar0f873732019-12-05 20:28:46 +01004861 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 Moolenaar0f873732019-12-05 20:28:46 +01004875 // NL -> NUL translation
Bram Moolenaardf177f62005-02-22 08:39:57 +00004876 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004887 // Finished a line, add a NL, unless this line
4888 // should not have one.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004889 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004901 // finished all the lines, close pipe
Bram Moolenaardf177f62005-02-22 08:39:57 +00004902 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 Moolenaar0f873732019-12-05 20:28:46 +01004914 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004958 // Get extra characters when we don't have any.
4959 // Reset the counter and timer.
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004960 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01004989 // replace K_BS by <BS> and K_DEL by <DEL>
Bram Moolenaar071d4272004-06-13 20:20:40 +00004990 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005062 // CTRL-C sends a signal to the child, we ignore it
5063 // ourselves
Bram Moolenaardf177f62005-02-22 08:39:57 +00005064# 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 );
Bram Moolenaar0f873732019-12-05 20:28:46 +01005089 if (len <= 0) // end of file or error
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005091
5092 noread_cnt = 0;
5093 if (options & SHELL_READ)
5094 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005095 // Do NUL -> NL translation, append NL separated
5096 // lines to the current buffer.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005097 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 Moolenaar0f873732019-12-05 20:28:46 +01005115 // Check if the last character in buffer[] is
5116 // incomplete, keep these bytes for the next
5117 // round.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 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)
Bram Moolenaar0f873732019-12-05 20:28:46 +01005122 l = 1; // NUL byte?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 else if (MB_BYTE2LEN(*p) != l)
5124 break;
5125 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01005126 if (p == buffer) // no complete character
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005128 // avoid getting stuck at an illegal byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01005166 // 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 Moolenaar0f873732019-12-05 20:28:46 +01005178 // 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 Moolenaar0f873732019-12-05 20:28:46 +01005200 // 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 Moolenaar0f873732019-12-05 20:28:46 +01005210 // Handle any X events, e.g. serving the clipboard.
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005211 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);
Bram Moolenaar0f873732019-12-05 20:28:46 +01005221 // 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005252 // CTRL-C sends a signal to the child, we ignore it
5253 // ourselves
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005254# 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01005273 // Handle any X events, e.g. serving the clipboard.
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005274 clip_update();
5275
Bram Moolenaar0f873732019-12-05 20:28:46 +01005276 // Wait for 1 to 10 msec. 1 is faster but gives the child
5277 // less time.
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005278 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01005296 // 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.
Bram Moolenaar624891f2010-10-13 16:22:09 +02005299 if (pty_master_fd >= 0)
5300 close(pty_slave_fd);
5301# endif
5302
Bram Moolenaar0f873732019-12-05 20:28:46 +01005303 // Make sure the child that writes to the external program is
5304 // dead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005305 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 Moolenaar0f873732019-12-05 20:28:46 +01005326 // 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)
Bram Moolenaar0f873732019-12-05 20:28:46 +01005352 settmode(TMODE_RAW); // set to raw mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353# 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 Moolenaar0f873732019-12-05 20:28:46 +01005362#endif // USE_SYSTEM
Bram Moolenaar13568252018-03-16 20:46:58 +01005363
5364 int
5365mch_call_shell(
5366 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01005367 int options) // SHELL_*, see vim.h
Bram Moolenaar13568252018-03-16 20:46:58 +01005368{
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 Moolenaar0f873732019-12-05 20:28:46 +01005385 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 Moolenaar0f873732019-12-05 20:28:46 +01005404 // default is to fail
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005405 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 Moolenaar0f873732019-12-05 20:28:46 +01005414 // TODO: without the channel feature connect the child to /dev/null?
5415 // 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01005428 // 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.
Bram Moolenaarb2412082017-08-20 18:09:14 +02005430 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 Moolenaar0f873732019-12-05 20:28: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 Moolenaar0f873732019-12-05 20:28: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 Moolenaar0f873732019-12-05 20:28:46 +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())
Bram Moolenaar0f873732019-12-05 20:28:46 +01005499 // close the log file in the child
Bram Moolenaar819524702018-02-27 19:10:00 +01005500 ch_logfile((char_u *)"", (char_u *)"");
5501# endif
5502
Bram Moolenaar835dc632016-02-07 14:27:38 +01005503# ifdef HAVE_SETSID
Bram Moolenaar0f873732019-12-05 20:28:46 +01005504 // 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.
Bram Moolenaar835dc632016-02-07 14:27:38 +01005507 (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))
Bram Moolenaar0f873732019-12-05 20:28:46 +01005517 // In the GUI 'term' is not what we want, use $TERM.
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005518 term = getenv("TERM");
5519#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01005520 // Use 'term' or $TERM if it starts with "xterm", otherwise fall
5521 // back to "xterm".
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005522 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005562 // 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01005565 // Try to become controlling tty (probably doesn't work,
5566 // unless run by root)
Bram Moolenaar223896d2017-08-02 22:33:28 +02005567 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
5568# endif
5569 }
5570
Bram Moolenaar0f873732019-12-05 20:28: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 Moolenaar0f873732019-12-05 20:28:46 +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 Moolenaar0f873732019-12-05 20:28: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 Moolenaar0f873732019-12-05 20:28:46 +01005617 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 Moolenaar0f873732019-12-05 20:28:46 +01005627 // See above for type of argv.
Bram Moolenaar835dc632016-02-07 14:27:38 +01005628 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 Moolenaar0f873732019-12-05 20:28:46 +01005633 // calling free_all_mem() here causes problems. Ignore valgrind
5634 // reporting possibly leaked memory.
Bram Moolenaarfae42832017-08-01 22:24:26 +02005635# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01005636 _exit(EXEC_FAILED); // exec failed, return failure code
Bram Moolenaar835dc632016-02-07 14:27:38 +01005637 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005638
Bram Moolenaar0f873732019-12-05 20:28:46 +01005639 // 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 Moolenaar0f873732019-12-05 20:28:46 +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 Moolenaar0f873732019-12-05 20:28:46 +01005647 close(pty_slave_fd); // not used in the parent
5648 // 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 Moolenaar0f873732019-12-05 20:28:46 +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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005749 // 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005759 // LINTED avoid "bitwise operation on signed value"
Bram Moolenaar835dc632016-02-07 14:27:38 +01005760 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01005794 // 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.
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005797 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)
Bram Moolenaar0f873732019-12-05 20:28:46 +01005807 // no process ended
Bram Moolenaar97792de2016-10-15 18:36:49 +02005808 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))
Bram Moolenaar0f873732019-12-05 20:28:46 +01005814 // LINTED avoid "bitwise operation on signed value"
Bram Moolenaar97792de2016-10-15 18:36:49 +02005815 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{
Bram Moolenaar0f873732019-12-05 20:28:46 +01005877 // call waitpid because child process may become zombie
Bram Moolenaar76467df2016-02-12 19:30:26 +01005878# 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 Moolenaar0f873732019-12-05 20:28:46 +01005906 job->jv_channel = channel; // ch_refcount was set by add_channel()
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005907 channel->ch_keep_open = TRUE;
5908
Bram Moolenaar0f873732019-12-05 20:28:46 +01005909 // Only set the pty_master_fd for stdout, do not duplicate it for stderr,
5910 // it only needs to be read once.
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005911 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 Moolenaar0f873732019-12-05 20:28:46 +01005972 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)
Bram Moolenaar0f873732019-12-05 20:28:46 +01005976 // May need to query the mouse position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005977 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006069 // May retry getting characters after an event was handled.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070# define MAY_LOOP
6071
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006072# ifdef ELAPSED_FUNC
Bram Moolenaar0f873732019-12-05 20:28:46 +01006073 // 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006082 // Handle being called recursively. This may happen for the session
6083 // manager stuff, it may save the file, which does a breakcheck.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006093 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 Moolenaar0f873732019-12-05 20:28:46 +01006099 // each channel may use in, out and err
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006100 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006117 towait = (int)p_mzq; // don't wait longer than 'mzquantum'
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006118 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 Moolenaar0f873732019-12-05 20:28:46 +01006167 // 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006174 xterm_update(); // Maybe we should hand out clipboard
Bram Moolenaar071d4272004-06-13 20:20:40 +00006175 if (--ret == 0 && !input_available())
Bram Moolenaar0f873732019-12-05 20:28:46 +01006176 // Try again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177 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 Moolenaar0f873732019-12-05 20:28:46 +01006200 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 Moolenaar0f873732019-12-05 20:28:46 +01006209#else // HAVE_SELECT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006210
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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006223 towait = p_mzq; // don't wait longer than 'mzquantum'
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006224 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__)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006246 // For QNX select() always returns 1 if this is set. Why?
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006259 // An event may have already been read but not handled. In
6260 // particularly, XFlush may cause this.
Bram Moolenaardd82d692012-08-15 17:26:57 +02006261 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006299 // Check whether window has been resized, EINTR may be caused by
6300 // SIGWINCH.
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006301 if (do_resize)
6302 handle_resize();
6303
Bram Moolenaar0f873732019-12-05 20:28:46 +01006304 // 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.
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006308 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 Moolenaar0f873732019-12-05 20:28:46 +01006321 // 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006329 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
Bram Moolenaar071d4272004-06-13 20:20:40 +00006332 if (--ret == 0 && !input_available())
6333 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006334 // Try again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 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)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006357 finished = FALSE; // keep going if event was only one
Bram Moolenaar071d4272004-06-13 20:20:40 +00006358 }
6359 else if (FD_ISSET(xsmp_icefd, &rfds))
6360 {
6361 busy = TRUE;
6362 xsmp_handle_requests();
6363 busy = FALSE;
6364 if (--ret == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006365 finished = FALSE; // keep going if event was only one
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366 }
6367 }
6368# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006369#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar0f873732019-12-05 20:28:46 +01006370 // also call when ret == 0, we may be polling a keep-open channel
Bram Moolenaarf3360612017-10-01 16:21:31 +02006371 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006375#endif // HAVE_SELECT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376
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 Moolenaar0f873732019-12-05 20:28:46 +01006386 // We're going to loop around again, find out for how long
Bram Moolenaar071d4272004-06-13 20:20:40 +00006387 if (msec > 0)
6388 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006389# ifdef ELAPSED_FUNC
Bram Moolenaar0f873732019-12-05 20:28:46 +01006390 // 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006393 // Guess we got interrupted halfway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394 msec = msec / 2;
6395# endif
6396 if (msec <= 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006397 break; // waited long enough
Bram Moolenaar071d4272004-06-13 20:20:40 +00006398 }
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,
Bram Moolenaar0f873732019-12-05 20:28:46 +01006415 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,
Bram Moolenaar0f873732019-12-05 20:28:46 +01006448 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 Moolenaar0f873732019-12-05 20:28:46 +01006464#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 Moolenaar0f873732019-12-05 20:28:46 +01006474 // 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006477 *num_file = 0; // default: no files found
Bram Moolenaar071d4272004-06-13 20:20:40 +00006478 *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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006488 // Don't allow any shell command in the sandbox.
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006489 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 Moolenaar0f873732019-12-05 20:28:46 +01006540 // 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006549 // Count the length of the patterns in the same way as they are put in
6550 // "command" below.
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006551#ifdef USE_SYSTEM
Bram Moolenaar0f873732019-12-05 20:28:46 +01006552 len += STRLEN(pat[i]) + 3; // add space and two quotes
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006553#else
Bram Moolenaar0f873732019-12-05 20:28:46 +01006554 ++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)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006558 ++len; // may add a backslash
Bram Moolenaar316059c2006-01-14 21:18:42 +00006559 ++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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006566 // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567 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 Moolenaar0f873732019-12-05 20:28:46 +01006581 // change `command; command& ` to (command; command )
Bram Moolenaar316059c2006-01-14 21:18:42 +00006582 STRCPY(command, "(");
Bram Moolenaar0f873732019-12-05 20:28:46 +01006583 STRCAT(command, pat[0] + 1); // exclude first backtick
Bram Moolenaar071d4272004-06-13 20:20:40 +00006584 p = command + STRLEN(command) - 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006585 *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;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006588 if (*p == '&') // remove trailing '&'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589 {
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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006616 // When using system() always add extra quotes, because the shell
6617 // is started twice. Otherwise put a backslash before special
6618 // 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 Moolenaar0f873732019-12-05 20:28:46 +01006634 // Remove a backslash, take char literally. But keep
6635 // 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 Moolenaar0f873732019-12-05 20:28:46 +01006646 // Put a backslash before a special character, but not
6647 // 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006651 // Copy one character.
Bram Moolenaar280f1262006-01-30 00:14:18 +00006652 *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 Moolenaar0f873732019-12-05 20:28:46 +01006660 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)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006668 extra_shell_arg = (char_u *)"-G"; // Use zsh NULL_GLOB option
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669
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))
Bram Moolenaar0f873732019-12-05 20:28:46 +01006676 extra_shell_arg = (char_u *)"-f"; // Use csh fast option
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677
6678 /*
6679 * execute the shell command
6680 */
6681 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6682
Bram Moolenaar0f873732019-12-05 20:28:46 +01006683 // 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006688 extra_shell_arg = NULL; // cleanup
Bram Moolenaar071d4272004-06-13 20:20:40 +00006689 show_shell_mess = TRUE;
6690 vim_free(command);
6691
Bram Moolenaar0f873732019-12-05 20:28:46 +01006692 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006705 redraw_later_clear(); // probably messed up screen
6706 msg_putchar('\n'); // clear bottom line quickly
6707 cmdline_row = Rows - 1; // continue on last line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708#ifdef USE_SYSTEM
6709 if (!(flags & EW_SILENT))
6710#endif
6711 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006712 msg(_(e_wildexpand));
Bram Moolenaar0f873732019-12-05 20:28:46 +01006713 msg_start(); // don't overwrite this message
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714 }
6715 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006716 // If a `cmd` expansion failed, don't list `cmd` as a match, even when
6717 // EW_NOTFOUND is given
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006729 // Something went wrong, perhaps a file name with a special char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006730 if (!(flags & EW_SILENT))
6731 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006732 msg(_(e_wildexpand));
Bram Moolenaar0f873732019-12-05 20:28:46 +01006733 msg_start(); // don't overwrite this message
Bram Moolenaar071d4272004-06-13 20:20:40 +00006734 }
6735 vim_free(tempname);
6736 goto notfound;
6737 }
6738 fseek(fd, 0L, SEEK_END);
Bram Moolenaar0f873732019-12-05 20:28:46 +01006739 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)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006742 // just in case ftell() would fail
Bram Moolenaar85325f82017-03-30 21:18:45 +02006743 buffer = NULL;
6744 else
6745 buffer = alloc(llen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 if (buffer == NULL)
6747 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006748 // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00006749 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006760 // 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 Moolenaar0f873732019-12-05 20:28:46 +01006769 // Translate <CR><NL> into <NL>. Caution, buffer may contain NUL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006778 // file names are separated with Space
Bram Moolenaar071d4272004-06-13 20:20:40 +00006779 if (shell_style == STYLE_ECHO)
6780 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006781 buffer[len] = '\n'; // make sure the buffer ends in NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006782 p = buffer;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006783 for (i = 0; *p != '\n'; ++i) // count number of entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00006784 {
6785 while (*p != ' ' && *p != '\n')
6786 ++p;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006787 p = skipwhite(p); // skip to next entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006788 }
6789 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006790 // 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006793 buffer[len] = NUL; // make sure the buffer ends in NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006794 p = buffer;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006795 for (i = 0; *p != NUL; ++i) // count number of entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00006796 {
6797 while (*p != '\n' && *p != NUL)
6798 ++p;
6799 if (*p != NUL)
6800 ++p;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006801 p = skipwhite(p); // skip leading white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00006802 }
6803 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006804 // file names are separated with NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805 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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006818 // 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)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006836 if (*p == NUL || (*p == ' ' && check_spaces)) // count entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006837 {
6838 ++i;
6839 *p = NUL;
6840 }
6841 if (len)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006842 ++i; // count last entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006843 }
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 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006858 // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859 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;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006870 // 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;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006877 if (p == buffer + len) // last entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006878 *p = NUL;
6879 else
6880 {
6881 *p++ = NUL;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006882 p = skipwhite(p); // skip to next entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006883 }
6884 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006885 else // NUL separates
Bram Moolenaar071d4272004-06-13 20:20:40 +00006886 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006887 while (*p && p < buffer + len) // skip entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888 ++p;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006889 ++p; // skip NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006890 }
6891 }
6892
6893 /*
6894 * Move the file names to allocated memory.
6895 */
6896 for (j = 0, i = 0; i < *num_file; ++i)
6897 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006898 // Require the files to exist. Helps when using /bin/sh
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6900 continue;
6901
Bram Moolenaar0f873732019-12-05 20:28:46 +01006902 // check if this entry should be included
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903 dir = (mch_isdir((*file)[i]));
6904 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6905 continue;
6906
Bram Moolenaar0f873732019-12-05 20:28:46 +01006907 // 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 Moolenaar0f873732019-12-05 20:28:46 +01006917 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006924 if (*num_file == 0) // rejected all entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00006925 {
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
Bram Moolenaar0f873732019-12-05 20:28:46 +01006938#endif // VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939
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)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006957 // Be compatible with expand_filename(): halve the number of
6958 // backslashes.
Bram Moolenaard8b02732005-01-14 21:48:43 +00006959 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
Bram Moolenaar0f873732019-12-05 20:28:46 +01007048 if (stat(dest, &st) >= 0) // fail if destination exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00007049 return -1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007050 if (link(src, dest) != 0) // link file to new name
Bram Moolenaar071d4272004-06-13 20:20:40 +00007051 return -1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007052 if (mch_remove(src) == 0) // delete link to old name
Bram Moolenaar071d4272004-06-13 20:20:40 +00007053 return 0;
7054 return -1;
7055}
Bram Moolenaar0f873732019-12-05 20:28:46 +01007056#endif // !HAVE_RENAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00007057
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{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007066 static Gpm_Connect gpm_connect; // Must it be kept till closing ?
Bram Moolenaar071d4272004-06-13 20:20:40 +00007067
7068 if (!gpm_flag)
7069 {
7070 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
7071 gpm_connect.defaultMask = ~GPM_HARD;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007072 // Default handling for mouse move
7073 gpm_connect.minMod = 0; // Handle any modifier keys
Bram Moolenaar071d4272004-06-13 20:20:40 +00007074 gpm_connect.maxMod = 0xffff;
7075 if (Gpm_Open(&gpm_connect, 0) > 0)
7076 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007077 // 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
7080 // so we shouldn't have problem with this
Bram Moolenaar76243bd2009-03-02 01:47:02 +00007081# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007082 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00007083# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007084 return 1; // succeed
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085 }
7086 if (gpm_fd == -2)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007087 Gpm_Close(); // We don't want to talk to xterm via gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00007088 return 0;
7089 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01007090 return 1; // already open
Bram Moolenaar071d4272004-06-13 20:20:40 +00007091}
7092
7093/*
Bram Moolenaar4b8366b2019-05-04 17:34:34 +02007094 * Returns TRUE if the GPM mouse is enabled.
7095 */
7096 int
7097gpm_enabled(void)
7098{
7099 return gpm_flag && gpm_fd >= 0;
7100}
7101
7102/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007103 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00007104 */
7105 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007106gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007107{
Bram Moolenaar4b8366b2019-05-04 17:34:34 +02007108 if (gpm_enabled())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109 Gpm_Close();
7110}
7111
Bram Moolenaarbedf0912019-05-04 16:58:45 +02007112/*
7113 * Reads gpm event and adds special keys to input buf. Returns length of
Bram Moolenaar071d4272004-06-13 20:20:40 +00007114 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02007115 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 */
7117 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007118mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007119{
7120 int button;
7121 static Gpm_Event gpm_event;
7122 char_u string[6];
7123 int_u vim_modifiers;
7124 int row,col;
7125 unsigned char buttons_mask;
7126 unsigned char gpm_modifiers;
7127 static unsigned char old_buttons = 0;
7128
7129 Gpm_GetEvent(&gpm_event);
7130
7131#ifdef FEAT_GUI
Bram Moolenaar0f873732019-12-05 20:28:46 +01007132 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007133 if (hold_gui_events)
7134 return 0;
7135#endif
7136
7137 row = gpm_event.y - 1;
7138 col = gpm_event.x - 1;
7139
Bram Moolenaar0f873732019-12-05 20:28:46 +01007140 string[0] = ESC; // Our termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00007141 string[1] = 'M';
7142 string[2] = 'G';
7143 switch (GPM_BARE_EVENTS(gpm_event.type))
7144 {
7145 case GPM_DRAG:
7146 string[3] = MOUSE_DRAG;
7147 break;
7148 case GPM_DOWN:
7149 buttons_mask = gpm_event.buttons & ~old_buttons;
7150 old_buttons = gpm_event.buttons;
7151 switch (buttons_mask)
7152 {
7153 case GPM_B_LEFT:
7154 button = MOUSE_LEFT;
7155 break;
7156 case GPM_B_MIDDLE:
7157 button = MOUSE_MIDDLE;
7158 break;
7159 case GPM_B_RIGHT:
7160 button = MOUSE_RIGHT;
7161 break;
7162 default:
7163 return 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007164 // Don't know what to do. Can more than one button be
7165 // reported in one event?
Bram Moolenaar071d4272004-06-13 20:20:40 +00007166 }
7167 string[3] = (char_u)(button | 0x20);
7168 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
7169 break;
7170 case GPM_UP:
7171 string[3] = MOUSE_RELEASE;
7172 old_buttons &= ~gpm_event.buttons;
7173 break;
7174 default:
7175 return 0;
7176 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01007177 // This code is based on gui_x11_mouse_cb in gui_x11.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00007178 gpm_modifiers = gpm_event.modifiers;
7179 vim_modifiers = 0x0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007180 // I ignore capslock stats. Aren't we all just hate capslock mixing with
7181 // Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
7182 // K_CAPSSHIFT is defined 8, so it probably isn't even reported
Bram Moolenaar071d4272004-06-13 20:20:40 +00007183 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
7184 vim_modifiers |= MOUSE_SHIFT;
7185
7186 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
7187 vim_modifiers |= MOUSE_CTRL;
7188 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
7189 vim_modifiers |= MOUSE_ALT;
7190 string[3] |= vim_modifiers;
7191 string[4] = (char_u)(col + ' ' + 1);
7192 string[5] = (char_u)(row + ' ' + 1);
7193 add_to_input_buf(string, 6);
7194 return 6;
7195}
Bram Moolenaar0f873732019-12-05 20:28:46 +01007196#endif // FEAT_MOUSE_GPM
Bram Moolenaar071d4272004-06-13 20:20:40 +00007197
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007198#ifdef FEAT_SYSMOUSE
7199/*
7200 * Initialize connection with sysmouse.
7201 * Let virtual console inform us with SIGUSR2 for pending sysmouse
7202 * output, any sysmouse output than will be processed via sig_sysmouse().
7203 * Return OK if succeeded, FAIL if failed.
7204 */
7205 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007206sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007207{
7208 struct mouse_info mouse;
7209
7210 mouse.operation = MOUSE_MODE;
7211 mouse.u.mode.mode = 0;
7212 mouse.u.mode.signal = SIGUSR2;
7213 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
7214 {
7215 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
7216 mouse.operation = MOUSE_SHOW;
7217 ioctl(1, CONS_MOUSECTL, &mouse);
7218 return OK;
7219 }
7220 return FAIL;
7221}
7222
7223/*
7224 * Stop processing SIGUSR2 signals, and also make sure that
7225 * virtual console do not send us any sysmouse related signal.
7226 */
7227 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007228sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007229{
7230 struct mouse_info mouse;
7231
7232 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
7233 mouse.operation = MOUSE_MODE;
7234 mouse.u.mode.mode = 0;
7235 mouse.u.mode.signal = 0;
7236 ioctl(1, CONS_MOUSECTL, &mouse);
7237}
7238
7239/*
7240 * Gets info from sysmouse and adds special keys to input buf.
7241 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007242 static RETSIGTYPE
7243sig_sysmouse SIGDEFARG(sigarg)
7244{
7245 struct mouse_info mouse;
7246 struct video_info video;
7247 char_u string[6];
7248 int row, col;
7249 int button;
7250 int buttons;
7251 static int oldbuttons = 0;
7252
7253#ifdef FEAT_GUI
Bram Moolenaar0f873732019-12-05 20:28:46 +01007254 // Don't put events in the input queue now.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007255 if (hold_gui_events)
7256 return;
7257#endif
7258
7259 mouse.operation = MOUSE_GETINFO;
7260 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
7261 && ioctl(1, FBIO_MODEINFO, &video) != -1
7262 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
7263 && video.vi_cheight > 0 && video.vi_cwidth > 0)
7264 {
7265 row = mouse.u.data.y / video.vi_cheight;
7266 col = mouse.u.data.x / video.vi_cwidth;
7267 buttons = mouse.u.data.buttons;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007268 string[0] = ESC; // Our termcode
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007269 string[1] = 'M';
7270 string[2] = 'S';
7271 if (oldbuttons == buttons && buttons != 0)
7272 {
7273 button = MOUSE_DRAG;
7274 }
7275 else
7276 {
7277 switch (buttons)
7278 {
7279 case 0:
7280 button = MOUSE_RELEASE;
7281 break;
7282 case 1:
7283 button = MOUSE_LEFT;
7284 break;
7285 case 2:
7286 button = MOUSE_MIDDLE;
7287 break;
7288 case 4:
7289 button = MOUSE_RIGHT;
7290 break;
7291 default:
7292 return;
7293 }
7294 oldbuttons = buttons;
7295 }
7296 string[3] = (char_u)(button);
7297 string[4] = (char_u)(col + ' ' + 1);
7298 string[5] = (char_u)(row + ' ' + 1);
7299 add_to_input_buf(string, 6);
7300 }
7301 return;
7302}
Bram Moolenaar0f873732019-12-05 20:28:46 +01007303#endif // FEAT_SYSMOUSE
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007304
Bram Moolenaar071d4272004-06-13 20:20:40 +00007305#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01007306typedef char_u * (*STRPROCSTR)(char_u *);
7307typedef char_u * (*INTPROCSTR)(int);
7308typedef int (*STRPROCINT)(char_u *);
7309typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007310
7311/*
7312 * Call a DLL routine which takes either a string or int param
7313 * and returns an allocated string.
7314 */
7315 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007316mch_libcall(
7317 char_u *libname,
7318 char_u *funcname,
Bram Moolenaar0f873732019-12-05 20:28:46 +01007319 char_u *argstring, // NULL when using a argint
Bram Moolenaar05540972016-01-30 20:31:25 +01007320 int argint,
Bram Moolenaar0f873732019-12-05 20:28:46 +01007321 char_u **string_result, // NULL when using number_result
Bram Moolenaar05540972016-01-30 20:31:25 +01007322 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007323{
7324# if defined(USE_DLOPEN)
7325 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007326 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007327# else
7328 shl_t hinstLib;
7329# endif
7330 STRPROCSTR ProcAdd;
7331 INTPROCSTR ProcAddI;
7332 char_u *retval_str = NULL;
7333 int retval_int = 0;
7334 int success = FALSE;
7335
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007336 /*
7337 * Get a handle to the DLL module.
7338 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339# if defined(USE_DLOPEN)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007340 // First clear any error, it's not cleared by the dlopen() call.
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007341 (void)dlerror();
7342
Bram Moolenaar071d4272004-06-13 20:20:40 +00007343 hinstLib = dlopen((char *)libname, RTLD_LAZY
7344# ifdef RTLD_LOCAL
7345 | RTLD_LOCAL
7346# endif
7347 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007348 if (hinstLib == NULL)
7349 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007350 // "dlerr" must be used before dlclose()
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007351 dlerr = (char *)dlerror();
7352 if (dlerr != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007353 semsg(_("dlerror = \"%s\""), dlerr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007354 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355# else
7356 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
7357# endif
7358
Bram Moolenaar0f873732019-12-05 20:28:46 +01007359 // If the handle is valid, try to get the function address.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007360 if (hinstLib != NULL)
7361 {
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007362# ifdef USING_SETJMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363 /*
7364 * Catch a crash when calling the library function. For example when
7365 * using a number where a string pointer is expected.
7366 */
7367 mch_startjmp();
7368 if (SETJMP(lc_jump_env) != 0)
7369 {
7370 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007371# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007372 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007373# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374 mch_didjmp();
7375 }
7376 else
7377# endif
7378 {
7379 retval_str = NULL;
7380 retval_int = 0;
7381
7382 if (argstring != NULL)
7383 {
7384# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007385 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007386 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007387# else
7388 if (shl_findsym(&hinstLib, (const char *)funcname,
7389 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
7390 ProcAdd = NULL;
7391# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007392 if ((success = (ProcAdd != NULL
7393# if defined(USE_DLOPEN)
7394 && dlerr == NULL
7395# endif
7396 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007397 {
7398 if (string_result == NULL)
7399 retval_int = ((STRPROCINT)ProcAdd)(argstring);
7400 else
7401 retval_str = (ProcAdd)(argstring);
7402 }
7403 }
7404 else
7405 {
7406# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007407 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007408 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409# else
7410 if (shl_findsym(&hinstLib, (const char *)funcname,
7411 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
7412 ProcAddI = NULL;
7413# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007414 if ((success = (ProcAddI != NULL
7415# if defined(USE_DLOPEN)
7416 && dlerr == NULL
7417# endif
7418 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007419 {
7420 if (string_result == NULL)
7421 retval_int = ((INTPROCINT)ProcAddI)(argint);
7422 else
7423 retval_str = (ProcAddI)(argint);
7424 }
7425 }
7426
Bram Moolenaar0f873732019-12-05 20:28:46 +01007427 // Save the string before we free the library.
7428 // Assume that a "1" or "-1" result is an illegal pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007429 if (string_result == NULL)
7430 *number_result = retval_int;
7431 else if (retval_str != NULL
7432 && retval_str != (char_u *)1
7433 && retval_str != (char_u *)-1)
7434 *string_result = vim_strsave(retval_str);
7435 }
7436
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007437# ifdef USING_SETJMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007438 mch_endjmp();
7439# ifdef SIGHASARG
7440 if (lc_signal != 0)
7441 {
7442 int i;
7443
Bram Moolenaar0f873732019-12-05 20:28:46 +01007444 // try to find the name of this signal
Bram Moolenaar071d4272004-06-13 20:20:40 +00007445 for (i = 0; signal_info[i].sig != -1; i++)
7446 if (lc_signal == signal_info[i].sig)
7447 break;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007448 semsg("E368: got SIG%s in libcall()", signal_info[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007449 }
7450# endif
7451# endif
7452
Bram Moolenaar071d4272004-06-13 20:20:40 +00007453# if defined(USE_DLOPEN)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007454 // "dlerr" must be used before dlclose()
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007455 if (dlerr != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007456 semsg(_("dlerror = \"%s\""), dlerr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007457
Bram Moolenaar0f873732019-12-05 20:28:46 +01007458 // Free the DLL module.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007459 (void)dlclose(hinstLib);
7460# else
7461 (void)shl_unload(hinstLib);
7462# endif
7463 }
7464
7465 if (!success)
7466 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007467 semsg(_(e_libcall), funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007468 return FAIL;
7469 }
7470
7471 return OK;
7472}
7473#endif
7474
7475#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007476static int xterm_trace = -1; // default: disabled
Bram Moolenaar071d4272004-06-13 20:20:40 +00007477static int xterm_button;
7478
7479/*
7480 * Setup a dummy window for X selections in a terminal.
7481 */
7482 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007483setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007484{
7485 int z = 0;
7486 char *strp = "";
7487 Widget AppShell;
7488
7489 if (!x_connect_to_server())
7490 return;
7491
7492 open_app_context();
7493 if (app_context != NULL && xterm_Shell == (Widget)0)
7494 {
7495 int (*oldhandler)();
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007496# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007497 int (*oldIOhandler)();
Bram Moolenaaredce7422019-01-20 18:39:30 +01007498# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007499# ifdef ELAPSED_FUNC
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01007500 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007501
7502 if (p_verbose > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007503 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007504# endif
7505
Bram Moolenaar0f873732019-12-05 20:28:46 +01007506 // Ignore X errors while opening the display
Bram Moolenaar071d4272004-06-13 20:20:40 +00007507 oldhandler = XSetErrorHandler(x_error_check);
7508
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007509# if defined(USING_SETJMP)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007510 // Ignore X IO errors while opening the display
Bram Moolenaar071d4272004-06-13 20:20:40 +00007511 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7512 mch_startjmp();
7513 if (SETJMP(lc_jump_env) != 0)
7514 {
7515 mch_didjmp();
7516 xterm_dpy = NULL;
7517 }
7518 else
Bram Moolenaaredce7422019-01-20 18:39:30 +01007519# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007520 {
7521 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7522 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007523 if (xterm_dpy != NULL)
7524 xterm_dpy_retry_count = 0;
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007525# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007526 mch_endjmp();
Bram Moolenaaredce7422019-01-20 18:39:30 +01007527# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007528 }
7529
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007530# if defined(USING_SETJMP)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007531 // Now handle X IO errors normally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007532 (void)XSetIOErrorHandler(oldIOhandler);
Bram Moolenaaredce7422019-01-20 18:39:30 +01007533# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007534 // Now handle X errors normally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007535 (void)XSetErrorHandler(oldhandler);
7536
7537 if (xterm_dpy == NULL)
7538 {
7539 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007540 verb_msg(_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007541 return;
7542 }
7543
Bram Moolenaar0f873732019-12-05 20:28:46 +01007544 // Catch terminating error of the X server connection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007545 (void)XSetIOErrorHandler(x_IOerror_handler);
7546
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007547# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00007548 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007549 {
7550 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007551 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007552 verbose_leave();
7553 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007554# endif
7555
Bram Moolenaar0f873732019-12-05 20:28:46 +01007556 // Create a Shell to make converters work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007557 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7558 applicationShellWidgetClass, xterm_dpy,
7559 NULL);
7560 if (AppShell == (Widget)0)
7561 return;
7562 xterm_Shell = XtVaCreatePopupShell("VIM",
7563 topLevelShellWidgetClass, AppShell,
7564 XtNmappedWhenManaged, 0,
7565 XtNwidth, 1,
7566 XtNheight, 1,
7567 NULL);
7568 if (xterm_Shell == (Widget)0)
7569 return;
7570
7571 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007572 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007573 if (x11_display == NULL)
7574 x11_display = xterm_dpy;
7575
7576 XtRealizeWidget(xterm_Shell);
7577 XSync(xterm_dpy, False);
7578 xterm_update();
7579 }
7580 if (xterm_Shell != (Widget)0)
7581 {
7582 clip_init(TRUE);
7583 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7584 x11_window = (Window)atol(strp);
Bram Moolenaar0f873732019-12-05 20:28:46 +01007585 // Check if $WINDOWID is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007586 if (test_x11_window(xterm_dpy) == FAIL)
7587 x11_window = 0;
7588 if (x11_window != 0)
7589 xterm_trace = 0;
7590 }
7591}
7592
7593 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007594start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007595{
7596 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7597 return;
7598 xterm_trace = 1;
7599 xterm_button = button;
7600 do_xterm_trace();
7601}
7602
7603
7604 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007605stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007606{
7607 if (xterm_trace < 0)
7608 return;
7609 xterm_trace = 0;
7610}
7611
7612/*
7613 * Query the xterm pointer and generate mouse termcodes if necessary
7614 * return TRUE if dragging is active, else FALSE
7615 */
7616 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007617do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007618{
7619 Window root, child;
7620 int root_x, root_y;
7621 int win_x, win_y;
7622 int row, col;
7623 int_u mask_return;
7624 char_u buf[50];
7625 char_u *strp;
7626 long got_hints;
7627 static char_u *mouse_code;
7628 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7629 static int prev_row = 0, prev_col = 0;
7630 static XSizeHints xterm_hints;
7631
7632 if (xterm_trace <= 0)
7633 return FALSE;
7634
7635 if (xterm_trace == 1)
7636 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007637 // Get the hints just before tracking starts. The font size might
7638 // have changed recently.
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007639 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7640 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641 || xterm_hints.width_inc <= 1
7642 || xterm_hints.height_inc <= 1)
7643 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007644 xterm_trace = -1; // Not enough data -- disable tracing
Bram Moolenaar071d4272004-06-13 20:20:40 +00007645 return FALSE;
7646 }
7647
Bram Moolenaar0f873732019-12-05 20:28:46 +01007648 // Rely on the same mouse code for the duration of this
Bram Moolenaar071d4272004-06-13 20:20:40 +00007649 mouse_code = find_termcode(mouse_name);
7650 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007651 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007652 xterm_trace = 2;
7653
Bram Moolenaar0f873732019-12-05 20:28:46 +01007654 // Find the offset of the chars, there might be a scrollbar on the
7655 // left of the window and/or a menu on the top (eterm etc.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007656 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7657 &win_x, &win_y, &mask_return);
7658 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7659 - (xterm_hints.height_inc / 2);
7660 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7661 xterm_hints.y = 2;
7662 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7663 - (xterm_hints.width_inc / 2);
7664 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7665 xterm_hints.x = 2;
7666 return TRUE;
7667 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007668 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007669 {
7670 xterm_trace = 0;
7671 return FALSE;
7672 }
7673
7674 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7675 &win_x, &win_y, &mask_return);
7676
7677 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7678 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7679 if (row == prev_row && col == prev_col)
7680 return TRUE;
7681
7682 STRCPY(buf, mouse_code);
7683 strp = buf + STRLEN(buf);
7684 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7685 *strp++ = (char_u)(col + ' ' + 1);
7686 *strp++ = (char_u)(row + ' ' + 1);
7687 *strp = 0;
7688 add_to_input_buf(buf, STRLEN(buf));
7689
7690 prev_row = row;
7691 prev_col = col;
7692 return TRUE;
7693}
7694
Bram Moolenaard4aa83a2019-05-09 18:59:31 +02007695# if defined(FEAT_GUI) || defined(FEAT_XCLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007696/*
7697 * Destroy the display, window and app_context. Required for GTK.
7698 */
7699 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007700clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007701{
7702 if (xterm_Shell != (Widget)0)
7703 {
7704 XtDestroyWidget(xterm_Shell);
7705 xterm_Shell = (Widget)0;
7706 }
7707 if (xterm_dpy != NULL)
7708 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007709# if 0
Bram Moolenaar0f873732019-12-05 20:28:46 +01007710 // Lesstif and Solaris crash here, lose some memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00007711 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007712# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007713 if (x11_display == xterm_dpy)
7714 x11_display = NULL;
7715 xterm_dpy = NULL;
7716 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007717# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007718 if (app_context != (XtAppContext)NULL)
7719 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007720 // Lesstif and Solaris crash here, lose some memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00007721 XtDestroyApplicationContext(app_context);
7722 app_context = (XtAppContext)NULL;
7723 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007724# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007725}
7726# endif
7727
7728/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007729 * Catch up with GUI or X events.
7730 */
7731 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007732clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007733{
7734# ifdef FEAT_GUI
7735 if (gui.in_use)
7736 gui_mch_update();
7737 else
7738# endif
7739 if (xterm_Shell != (Widget)0)
7740 xterm_update();
7741}
7742
7743/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007744 * Catch up with any queued X events. This may put keyboard input into the
7745 * input buffer, call resize call-backs, trigger timers etc. If there is
7746 * nothing in the X event queue (& no timers pending), then we return
7747 * immediately.
7748 */
7749 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007750xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007751{
7752 XEvent event;
7753
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007754 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007755 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007756 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007757
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007758 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007759 break;
7760
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007761 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007762 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007763 // There is an event to process.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007764 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007765#ifdef FEAT_CLIENTSERVER
7766 {
7767 XPropertyEvent *e = (XPropertyEvent *)&event;
7768
7769 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007770 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007771 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007772 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007773#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007774 XtDispatchEvent(&event);
7775 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007776 else
7777 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007778 // There is something else than an event to process.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007779 XtAppProcessEvent(app_context, mask);
7780 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007781 }
7782}
7783
7784 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007785clip_xterm_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007786{
7787 if (xterm_Shell != (Widget)0)
7788 return clip_x11_own_selection(xterm_Shell, cbd);
7789 return FAIL;
7790}
7791
7792 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007793clip_xterm_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007794{
7795 if (xterm_Shell != (Widget)0)
7796 clip_x11_lose_selection(xterm_Shell, cbd);
7797}
7798
7799 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007800clip_xterm_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007801{
7802 if (xterm_Shell != (Widget)0)
7803 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7804}
7805
7806 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007807clip_xterm_set_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007808{
7809 clip_x11_set_selection(cbd);
7810}
7811#endif
7812
7813
7814#if defined(USE_XSMP) || defined(PROTO)
7815/*
7816 * Code for X Session Management Protocol.
7817 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007818
7819# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007820/*
7821 * This is our chance to ask the user if they want to save,
7822 * or abort the logout
7823 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007824 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007825xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007826{
7827 cmdmod_T save_cmdmod;
7828 int cancel_shutdown = False;
7829
7830 save_cmdmod = cmdmod;
7831 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007832 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar0f873732019-12-05 20:28:46 +01007833 // Mustn't logout
Bram Moolenaar071d4272004-06-13 20:20:40 +00007834 cancel_shutdown = True;
7835 cmdmod = save_cmdmod;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007836 setcursor(); // position cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00007837 out_flush();
7838
Bram Moolenaar0f873732019-12-05 20:28:46 +01007839 // Done interaction
Bram Moolenaar071d4272004-06-13 20:20:40 +00007840 SmcInteractDone(smc_conn, cancel_shutdown);
7841
Bram Moolenaar0f873732019-12-05 20:28:46 +01007842 // Finish off
7843 // Only end save-yourself here if we're not cancelling shutdown;
7844 // we'll get a cancelled callback later in which we'll end it.
7845 // Hopefully get around glitchy SMs (like GNOME-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007846 if (!cancel_shutdown)
7847 {
7848 xsmp.save_yourself = False;
7849 SmcSaveYourselfDone(smc_conn, True);
7850 }
7851}
7852# endif
7853
7854/*
7855 * Callback that starts save-yourself.
7856 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007857 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007858xsmp_handle_save_yourself(
7859 SmcConn smc_conn,
7860 SmPointer client_data UNUSED,
7861 int save_type UNUSED,
7862 Bool shutdown,
7863 int interact_style UNUSED,
7864 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007865{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007866 // Handle already being in saveyourself
Bram Moolenaar071d4272004-06-13 20:20:40 +00007867 if (xsmp.save_yourself)
7868 SmcSaveYourselfDone(smc_conn, True);
7869 xsmp.save_yourself = True;
7870 xsmp.shutdown = shutdown;
7871
Bram Moolenaar0f873732019-12-05 20:28:46 +01007872 // First up, preserve all files
Bram Moolenaar071d4272004-06-13 20:20:40 +00007873 out_flush();
Bram Moolenaar0f873732019-12-05 20:28:46 +01007874 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00007875
7876 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007877 verb_msg(_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007878
7879# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007880 // Now see if we can ask about unsaved files
Bram Moolenaar071d4272004-06-13 20:20:40 +00007881 if (shutdown && !fast && gui.in_use)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007882 // Need to interact with user, but need SM's permission
Bram Moolenaar071d4272004-06-13 20:20:40 +00007883 SmcInteractRequest(smc_conn, SmDialogError,
7884 xsmp_handle_interaction, client_data);
7885 else
7886# endif
7887 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007888 // Can stop the cycle here
Bram Moolenaar071d4272004-06-13 20:20:40 +00007889 SmcSaveYourselfDone(smc_conn, True);
7890 xsmp.save_yourself = False;
7891 }
7892}
7893
7894
7895/*
7896 * Callback to warn us of imminent death.
7897 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007898 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007899xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007900{
7901 xsmp_close();
7902
Bram Moolenaar0f873732019-12-05 20:28:46 +01007903 // quit quickly leaving swapfiles for modified buffers behind
Bram Moolenaar071d4272004-06-13 20:20:40 +00007904 getout_preserve_modified(0);
7905}
7906
7907
7908/*
7909 * Callback to tell us that save-yourself has completed.
7910 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007911 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007912xsmp_save_complete(
7913 SmcConn smc_conn UNUSED,
7914 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007915{
7916 xsmp.save_yourself = False;
7917}
7918
7919
7920/*
7921 * Callback to tell us that an instigated shutdown was cancelled
7922 * (maybe even by us)
7923 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007924 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007925xsmp_shutdown_cancelled(
7926 SmcConn smc_conn,
7927 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007928{
7929 if (xsmp.save_yourself)
7930 SmcSaveYourselfDone(smc_conn, True);
7931 xsmp.save_yourself = False;
7932 xsmp.shutdown = False;
7933}
7934
7935
7936/*
7937 * Callback to tell us that a new ICE connection has been established.
7938 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007939 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007940xsmp_ice_connection(
7941 IceConn iceConn,
7942 IcePointer clientData UNUSED,
7943 Bool opening,
7944 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007945{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007946 // Intercept creation of ICE connection fd
Bram Moolenaar071d4272004-06-13 20:20:40 +00007947 if (opening)
7948 {
7949 xsmp_icefd = IceConnectionNumber(iceConn);
7950 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7951 }
7952}
7953
7954
Bram Moolenaar0f873732019-12-05 20:28:46 +01007955// Handle any ICE processing that's required; return FAIL if SM lost
Bram Moolenaar071d4272004-06-13 20:20:40 +00007956 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007957xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007958{
7959 Bool rep;
7960
7961 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7962 == IceProcessMessagesIOError)
7963 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007964 // Lost ICE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007965 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007966 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007967 xsmp_close();
7968 return FAIL;
7969 }
7970 else
7971 return OK;
7972}
7973
7974static int dummy;
7975
Bram Moolenaar0f873732019-12-05 20:28:46 +01007976// Set up X Session Management Protocol
Bram Moolenaar071d4272004-06-13 20:20:40 +00007977 void
7978xsmp_init(void)
7979{
7980 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007981 SmcCallbacks smcallbacks;
7982#if 0
7983 SmPropValue smname;
7984 SmProp smnameprop;
7985 SmProp *smprops[1];
7986#endif
7987
7988 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007989 verb_msg(_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007990
7991 xsmp.save_yourself = xsmp.shutdown = False;
7992
Bram Moolenaar0f873732019-12-05 20:28:46 +01007993 // Set up SM callbacks - must have all, even if they're not used
Bram Moolenaar071d4272004-06-13 20:20:40 +00007994 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7995 smcallbacks.save_yourself.client_data = NULL;
7996 smcallbacks.die.callback = xsmp_die;
7997 smcallbacks.die.client_data = NULL;
7998 smcallbacks.save_complete.callback = xsmp_save_complete;
7999 smcallbacks.save_complete.client_data = NULL;
8000 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
8001 smcallbacks.shutdown_cancelled.client_data = NULL;
8002
Bram Moolenaar0f873732019-12-05 20:28:46 +01008003 // Set up a watch on ICE connection creations. The "dummy" argument is
8004 // apparently required for FreeBSD (we get a BUS error when using NULL).
Bram Moolenaar071d4272004-06-13 20:20:40 +00008005 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
8006 {
8007 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01008008 verb_msg(_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008009 return;
8010 }
8011
Bram Moolenaar0f873732019-12-05 20:28:46 +01008012 // Create an SM connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00008013 xsmp.smcconn = SmcOpenConnection(
8014 NULL,
8015 NULL,
8016 SmProtoMajor,
8017 SmProtoMinor,
8018 SmcSaveYourselfProcMask | SmcDieProcMask
8019 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
8020 &smcallbacks,
8021 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00008022 &xsmp.clientid,
Bram Moolenaar4841a7c2018-09-22 14:08:49 +02008023 sizeof(errorstring) - 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008024 errorstring);
8025 if (xsmp.smcconn == NULL)
8026 {
8027 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00008028
Bram Moolenaar071d4272004-06-13 20:20:40 +00008029 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008030 {
8031 vim_snprintf(errorreport, sizeof(errorreport),
8032 _("XSMP SmcOpenConnection failed: %s"), errorstring);
Bram Moolenaar32526b32019-01-19 17:43:09 +01008033 verb_msg(errorreport);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008034 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008035 return;
8036 }
8037 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
8038
8039#if 0
Bram Moolenaar0f873732019-12-05 20:28:46 +01008040 // ID ourselves
Bram Moolenaar071d4272004-06-13 20:20:40 +00008041 smname.value = "vim";
8042 smname.length = 3;
8043 smnameprop.name = "SmProgram";
8044 smnameprop.type = "SmARRAY8";
8045 smnameprop.num_vals = 1;
8046 smnameprop.vals = &smname;
8047
8048 smprops[0] = &smnameprop;
8049 SmcSetProperties(xsmp.smcconn, 1, smprops);
8050#endif
8051}
8052
8053
Bram Moolenaar0f873732019-12-05 20:28:46 +01008054// Shut down XSMP comms.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008055 void
Bram Moolenaar05540972016-01-30 20:31:25 +01008056xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008057{
8058 if (xsmp_icefd != -1)
8059 {
8060 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00008061 if (xsmp.clientid != NULL)
8062 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00008063 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008064 xsmp_icefd = -1;
8065 }
8066}
Bram Moolenaar0f873732019-12-05 20:28:46 +01008067#endif // USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00008068
8069
8070#ifdef EBCDIC
Bram Moolenaar0f873732019-12-05 20:28:46 +01008071// Translate character to its CTRL- value
Bram Moolenaar071d4272004-06-13 20:20:40 +00008072char CtrlTable[] =
8073{
8074/* 00 - 5E */
8075 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8076 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8077 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
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,
8081/* ^ */ 0x1E,
8082/* - */ 0x1F,
8083/* 61 - 6C */
8084 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8085/* _ */ 0x1F,
8086/* 6E - 80 */
8087 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8088/* a */ 0x01,
8089/* b */ 0x02,
8090/* c */ 0x03,
8091/* d */ 0x37,
8092/* e */ 0x2D,
8093/* f */ 0x2E,
8094/* g */ 0x2F,
8095/* h */ 0x16,
8096/* i */ 0x05,
8097/* 8A - 90 */
8098 0, 0, 0, 0, 0, 0, 0,
8099/* j */ 0x15,
8100/* k */ 0x0B,
8101/* l */ 0x0C,
8102/* m */ 0x0D,
8103/* n */ 0x0E,
8104/* o */ 0x0F,
8105/* p */ 0x10,
8106/* q */ 0x11,
8107/* r */ 0x12,
8108/* 9A - A1 */
8109 0, 0, 0, 0, 0, 0, 0, 0,
8110/* s */ 0x13,
8111/* t */ 0x3C,
8112/* u */ 0x3D,
8113/* v */ 0x32,
8114/* w */ 0x26,
8115/* x */ 0x18,
8116/* y */ 0x19,
8117/* z */ 0x3F,
8118/* AA - AC */
8119 0, 0, 0,
8120/* [ */ 0x27,
8121/* AE - BC */
8122 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8123/* ] */ 0x1D,
8124/* BE - C0 */ 0, 0, 0,
8125/* A */ 0x01,
8126/* B */ 0x02,
8127/* C */ 0x03,
8128/* D */ 0x37,
8129/* E */ 0x2D,
8130/* F */ 0x2E,
8131/* G */ 0x2F,
8132/* H */ 0x16,
8133/* I */ 0x05,
8134/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
8135/* J */ 0x15,
8136/* K */ 0x0B,
8137/* L */ 0x0C,
8138/* M */ 0x0D,
8139/* N */ 0x0E,
8140/* O */ 0x0F,
8141/* P */ 0x10,
8142/* Q */ 0x11,
8143/* R */ 0x12,
8144/* DA - DF */ 0, 0, 0, 0, 0, 0,
8145/* \ */ 0x1C,
8146/* E1 */ 0,
8147/* S */ 0x13,
8148/* T */ 0x3C,
8149/* U */ 0x3D,
8150/* V */ 0x32,
8151/* W */ 0x26,
8152/* X */ 0x18,
8153/* Y */ 0x19,
8154/* Z */ 0x3F,
8155/* EA - FF*/ 0, 0, 0, 0, 0, 0,
8156 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8157};
8158
8159char MetaCharTable[]=
Bram Moolenaar0f873732019-12-05 20:28:46 +01008160{// 0 1 2 3 4 5 6 7 8 9 A B C D E F
Bram Moolenaar071d4272004-06-13 20:20:40 +00008161 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
8162 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
8163 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
8164 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
8165};
8166
8167
Bram Moolenaar0f873732019-12-05 20:28:46 +01008168// TODO: Use characters NOT numbers!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00008169char CtrlCharTable[]=
Bram Moolenaar0f873732019-12-05 20:28:46 +01008170{// 0 1 2 3 4 5 6 7 8 9 A B C D E F
Bram Moolenaar071d4272004-06-13 20:20:40 +00008171 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
8172 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
8173 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
8174 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
8175};
8176
8177
8178#endif