blob: f8fe2cb64b14f669b543eb7a12f0cc3414c2bf87 [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 Moolenaar4b96df52020-01-26 22:00:26 +01001934 // Previously this was only done for xterm and alike. I don't see a
Bram Moolenaar0f873732019-12-05 20:28:46 +01001935 // 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 Moolenaar6b649ac2019-12-07 17:47:22 +01001966 if (get_title)
1967 vim_free(oldtitle);
1968 else
1969 vim_free(oldicon);
Bram Moolenaara12a1612019-01-24 16:39:02 +01001970 if (text_prop.encoding == XA_STRING && !has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 if (get_title)
1973 oldtitle = vim_strsave((char_u *)text_prop.value);
1974 else
1975 oldicon = vim_strsave((char_u *)text_prop.value);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 }
1977 else
1978 {
1979 char **cl;
1980 Status transform_status;
1981 int n = 0;
1982
1983 transform_status = XmbTextPropertyToTextList(x11_display,
1984 &text_prop,
1985 &cl, &n);
1986 if (transform_status >= Success && n > 0 && cl[0])
1987 {
1988 if (get_title)
1989 oldtitle = vim_strsave((char_u *) cl[0]);
1990 else
1991 oldicon = vim_strsave((char_u *) cl[0]);
1992 XFreeStringList(cl);
1993 }
1994 else
1995 {
1996 if (get_title)
1997 oldtitle = vim_strsave((char_u *)text_prop.value);
1998 else
1999 oldicon = vim_strsave((char_u *)text_prop.value);
2000 }
2001 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 }
2003 XFree((void *)text_prop.value);
2004 }
2005 }
2006 return retval;
2007}
2008
Bram Moolenaar0f873732019-12-05 20:28:46 +01002009// Xutf8 functions are not available on older systems. Note that on some
2010// systems X_HAVE_UTF8_STRING may be defined in a header file but
2011// Xutf8SetWMProperties() is not in the X11 library. Configure checks for
2012// that and defines HAVE_XUTF8SETWMPROPERTIES.
Bram Moolenaara12a1612019-01-24 16:39:02 +01002013#if defined(X_HAVE_UTF8_STRING)
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002014# if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015# define USE_UTF8_STRING
2016# endif
2017#endif
2018
2019/*
2020 * Set x11 Window Title
2021 *
2022 * get_x11_windis() must be called before this and have returned OK
2023 */
2024 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002025set_x11_title(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002027 // XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
2028 // when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
2029 // supported everywhere and STRING doesn't work for multi-byte titles.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030#ifdef USE_UTF8_STRING
2031 if (enc_utf8)
2032 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
2033 NULL, NULL, 0, NULL, NULL, NULL);
2034 else
2035#endif
2036 {
2037#if XtSpecificationRelease >= 4
2038# ifdef FEAT_XFONTSET
2039 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
2040 NULL, NULL, 0, NULL, NULL, NULL);
2041# else
2042 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002043 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044
Bram Moolenaar0f873732019-12-05 20:28:46 +01002045 // directly from example 3-18 "basicwin" of Xlib Programming Manual
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002046 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047 XSetWMProperties(x11_display, x11_window, &text_prop,
2048 NULL, NULL, 0, NULL, NULL, NULL);
2049# endif
2050#else
2051 XStoreName(x11_display, x11_window, (char *)title);
2052#endif
2053 }
2054 XFlush(x11_display);
2055}
2056
2057/*
2058 * Set x11 Window icon
2059 *
2060 * get_x11_windis() must be called before this and have returned OK
2061 */
2062 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002063set_x11_icon(char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064{
Bram Moolenaar0f873732019-12-05 20:28:46 +01002065 // See above for comments about using X*SetWMProperties().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066#ifdef USE_UTF8_STRING
2067 if (enc_utf8)
2068 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2069 NULL, 0, NULL, NULL, NULL);
2070 else
2071#endif
2072 {
2073#if XtSpecificationRelease >= 4
2074# ifdef FEAT_XFONTSET
2075 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2076 NULL, 0, NULL, NULL, NULL);
2077# else
2078 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002079 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002081 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
2083 NULL, 0, NULL, NULL, NULL);
2084# endif
2085#else
2086 XSetIconName(x11_display, x11_window, (char *)icon);
2087#endif
2088 }
2089 XFlush(x11_display);
2090}
2091
Bram Moolenaar0f873732019-12-05 20:28:46 +01002092#else // FEAT_X11
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002095get_x11_title(int test_only UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096{
2097 return FALSE;
2098}
2099
2100 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002101get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102{
2103 if (!test_only)
2104 {
2105 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002106 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002108 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109 }
2110 return FALSE;
2111}
2112
Bram Moolenaar0f873732019-12-05 20:28:46 +01002113#endif // FEAT_X11
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114
2115 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002116mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002117{
2118 return get_x11_title(TRUE);
2119}
2120
2121 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002122mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123{
2124 return get_x11_icon(TRUE);
2125}
2126
2127/*
2128 * Set the window title and icon.
2129 */
2130 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002131mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132{
2133 int type = 0;
2134 static int recursive = 0;
2135
Bram Moolenaar0f873732019-12-05 20:28:46 +01002136 if (T_NAME == NULL) // no terminal name (yet)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 return;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002138 if (title == NULL && icon == NULL) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139 return;
2140
Bram Moolenaar0f873732019-12-05 20:28:46 +01002141 // When one of the X11 functions causes a deadly signal, we get here again
2142 // recursively. Avoid hanging then (something is probably locked).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002143 if (recursive)
2144 return;
2145 ++recursive;
2146
2147 /*
2148 * if the window ID and the display is known, we may use X11 calls
2149 */
2150#ifdef FEAT_X11
2151 if (get_x11_windis() == OK)
2152 type = 1;
2153#else
Bram Moolenaarb3f74062020-02-26 16:16:53 +01002154# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \
2155 || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_HAIKU)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 if (gui.in_use)
2157 type = 1;
2158# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002159#endif
2160
2161 /*
Bram Moolenaarf82bac32010-07-25 22:30:20 +02002162 * Note: if "t_ts" is set, title is set with escape sequence rather
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 * than x11 calls, because the x11 calls don't always work
2164 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 if ((type || *T_TS != NUL) && title != NULL)
2166 {
Bram Moolenaard8f0cef2018-08-19 22:20:16 +02002167 if (oldtitle_outdated)
2168 {
2169 oldtitle_outdated = FALSE;
2170 VIM_CLEAR(oldtitle);
2171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 if (oldtitle == NULL
2173#ifdef FEAT_GUI
2174 && !gui.in_use
2175#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002176 ) // first call but not in GUI, save title
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 (void)get_x11_title(FALSE);
2178
Bram Moolenaar0f873732019-12-05 20:28:46 +01002179 if (*T_TS != NUL) // it's OK if t_fs is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180 term_settitle(title);
2181#ifdef FEAT_X11
2182 else
2183# ifdef FEAT_GUI_GTK
Bram Moolenaar0f873732019-12-05 20:28:46 +01002184 if (!gui.in_use) // don't do this if GTK+ is running
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002186 set_x11_title(title); // x11
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187#endif
Bram Moolenaarb3f74062020-02-26 16:16:53 +01002188#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_HAIKU) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2190 else
2191 gui_mch_settitle(title, icon);
2192#endif
Bram Moolenaardac13472019-09-16 21:06:21 +02002193 unix_did_set_title = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 }
2195
2196 if ((type || *T_CIS != NUL) && icon != NULL)
2197 {
2198 if (oldicon == NULL
2199#ifdef FEAT_GUI
2200 && !gui.in_use
2201#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002202 ) // first call, save icon
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 get_x11_icon(FALSE);
2204
2205 if (*T_CIS != NUL)
2206 {
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02002207 out_str(T_CIS); // set icon start
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 out_str_nf(icon);
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02002209 out_str(T_CIE); // set icon end
Bram Moolenaar071d4272004-06-13 20:20:40 +00002210 out_flush();
2211 }
2212#ifdef FEAT_X11
2213 else
2214# ifdef FEAT_GUI_GTK
Bram Moolenaar0f873732019-12-05 20:28:46 +01002215 if (!gui.in_use) // don't do this if GTK+ is running
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002217 set_x11_icon(icon); // x11
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218#endif
2219 did_set_icon = TRUE;
2220 }
2221 --recursive;
2222}
2223
2224/*
2225 * Restore the window/icon title.
2226 * "which" is one of:
Bram Moolenaar40385db2018-08-07 22:31:44 +02002227 * SAVE_RESTORE_TITLE only restore title
2228 * SAVE_RESTORE_ICON only restore icon
2229 * SAVE_RESTORE_BOTH restore title and icon
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230 */
2231 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002232mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002233{
Bram Moolenaardac13472019-09-16 21:06:21 +02002234 int do_push_pop = unix_did_set_title || did_set_icon;
Bram Moolenaare5c83282019-05-03 23:15:37 +02002235
Bram Moolenaar0f873732019-12-05 20:28:46 +01002236 // only restore the title or icon when it has been set
Bram Moolenaardac13472019-09-16 21:06:21 +02002237 mch_settitle(((which & SAVE_RESTORE_TITLE) && unix_did_set_title) ?
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 (oldtitle ? oldtitle : p_titleold) : NULL,
Bram Moolenaar40385db2018-08-07 22:31:44 +02002239 ((which & SAVE_RESTORE_ICON) && did_set_icon) ? oldicon : NULL);
2240
Bram Moolenaare5c83282019-05-03 23:15:37 +02002241 if (do_push_pop)
2242 {
2243 // pop and push from/to the stack
2244 term_pop_title(which);
2245 term_push_title(which);
2246 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002247}
2248
Bram Moolenaar0f873732019-12-05 20:28:46 +01002249#endif // FEAT_TITLE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250
2251/*
2252 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002253 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 */
2255 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002256vim_is_xterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002257{
2258 if (name == NULL)
2259 return FALSE;
2260 return (STRNICMP(name, "xterm", 5) == 0
2261 || STRNICMP(name, "nxterm", 6) == 0
2262 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002263 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 || STRNICMP(name, "rxvt", 4) == 0
Bram Moolenaar995e4af2017-09-01 20:24:03 +02002265 || STRNICMP(name, "screen.xterm", 12) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 || STRCMP(name, "builtin_xterm") == 0);
2267}
2268
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002269#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2270/*
2271 * Return TRUE if "name" appears to be that of a terminal
2272 * known to support the xterm-style mouse protocol.
2273 * Relies on term_is_xterm having been set to its correct value.
2274 */
2275 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002276use_xterm_like_mouse(char_u *name)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002277{
2278 return (name != NULL
Bram Moolenaare56132b2016-08-14 18:23:21 +02002279 && (term_is_xterm
2280 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002281 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaare56132b2016-08-14 18:23:21 +02002282 || STRICMP(name, "st") == 0
2283 || STRNICMP(name, "st-", 3) == 0
2284 || STRNICMP(name, "stterm", 6) == 0));
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002285}
2286#endif
2287
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288/*
2289 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2290 * Return 1 for "xterm".
2291 * Return 2 for "xterm2".
Bram Moolenaarc8427482011-10-20 21:09:35 +02002292 * Return 3 for "urxvt".
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002293 * Return 4 for "sgr".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 */
2295 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002296use_xterm_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002297{
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002298 if (ttym_flags == TTYM_SGR)
2299 return 4;
Bram Moolenaarc8427482011-10-20 21:09:35 +02002300 if (ttym_flags == TTYM_URXVT)
2301 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 if (ttym_flags == TTYM_XTERM2)
2303 return 2;
2304 if (ttym_flags == TTYM_XTERM)
2305 return 1;
2306 return 0;
2307}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308
2309 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002310vim_is_iris(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311{
2312 if (name == NULL)
2313 return FALSE;
2314 return (STRNICMP(name, "iris-ansi", 9) == 0
2315 || STRCMP(name, "builtin_iris-ansi") == 0);
2316}
2317
2318 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002319vim_is_vt300(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320{
2321 if (name == NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002322 return FALSE; // actually all ANSI comp. terminals should be here
2323 // catch VT100 - VT5xx
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002324 return ((STRNICMP(name, "vt", 2) == 0
2325 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326 || STRCMP(name, "builtin_vt320") == 0);
2327}
2328
2329/*
2330 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2331 * This should include all windowed terminal emulators.
2332 */
2333 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002334vim_is_fastterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335{
2336 if (name == NULL)
2337 return FALSE;
2338 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2339 return TRUE;
2340 return ( STRNICMP(name, "hpterm", 6) == 0
2341 || STRNICMP(name, "sun-cmd", 7) == 0
2342 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002343 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344 || STRNICMP(name, "dtterm", 6) == 0);
2345}
2346
2347/*
2348 * Insert user name in s[len].
2349 * Return OK if a name found.
2350 */
2351 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002352mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353{
2354#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002355 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 return OK;
2357#else
2358 return mch_get_uname(getuid(), s, len);
2359#endif
2360}
2361
2362/*
2363 * Insert user name for "uid" in s[len].
2364 * Return OK if a name found.
2365 */
2366 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002367mch_get_uname(uid_t uid, char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002368{
2369#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2370 struct passwd *pw;
2371
2372 if ((pw = getpwuid(uid)) != NULL
2373 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2374 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002375 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 return OK;
2377 }
2378#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002379 sprintf((char *)s, "%d", (int)uid); // assumes s is long enough
2380 return FAIL; // a number is not a name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002381}
2382
2383/*
2384 * Insert host name is s[len].
2385 */
2386
2387#ifdef HAVE_SYS_UTSNAME_H
2388 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002389mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390{
2391 struct utsname vutsname;
2392
2393 if (uname(&vutsname) < 0)
2394 *s = NUL;
2395 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002396 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002397}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002398#else // HAVE_SYS_UTSNAME_H
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399
2400# ifdef HAVE_SYS_SYSTEMINFO_H
2401# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2402# endif
2403
2404 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002405mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406{
2407# ifdef VAXC
2408 vaxc$gethostname((char *)s, len);
2409# else
2410 gethostname((char *)s, len);
2411# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01002412 s[len - 1] = NUL; // make sure it's terminated
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002414#endif // HAVE_SYS_UTSNAME_H
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415
2416/*
2417 * return process ID
2418 */
2419 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002420mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421{
2422 return (long)getpid();
2423}
2424
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002425/*
2426 * return TRUE if process "pid" is still running
2427 */
2428 int
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002429mch_process_running(long pid)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002430{
2431 // EMX kill() not working correctly, it seems
2432 return kill(pid, 0) == 0;
2433}
2434
Bram Moolenaar071d4272004-06-13 20:20:40 +00002435#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436 static char *
Bram Moolenaar05540972016-01-30 20:31:25 +01002437strerror(int err)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002438{
2439 extern int sys_nerr;
2440 extern char *sys_errlist[];
2441 static char er[20];
2442
2443 if (err > 0 && err < sys_nerr)
2444 return (sys_errlist[err]);
2445 sprintf(er, "Error %d", err);
2446 return er;
2447}
2448#endif
2449
2450/*
Bram Moolenaar964b3742019-05-24 18:54:09 +02002451 * Get name of current directory into buffer "buf" of length "len" bytes.
2452 * "len" must be at least PATH_MAX.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 * Return OK for success, FAIL for failure.
2454 */
2455 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002456mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457{
2458#if defined(USE_GETCWD)
2459 if (getcwd((char *)buf, len) == NULL)
2460 {
2461 STRCPY(buf, strerror(errno));
2462 return FAIL;
2463 }
2464 return OK;
2465#else
2466 return (getwd((char *)buf) != NULL ? OK : FAIL);
2467#endif
2468}
2469
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002471 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002472 *
2473 * return FAIL for failure, OK for success
2474 */
2475 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002476mch_FullName(
2477 char_u *fname,
2478 char_u *buf,
2479 int len,
Bram Moolenaar0f873732019-12-05 20:28:46 +01002480 int force) // also expand when already absolute path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481{
2482 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002483#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484 int fd = -1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002485 static int dont_fchdir = FALSE; // TRUE when fchdir() doesn't work
Bram Moolenaar38323e42007-03-06 19:22:53 +00002486#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 char_u olddir[MAXPATHL];
2488 char_u *p;
2489 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002490#ifdef __CYGWIN__
Bram Moolenaar0f873732019-12-05 20:28:46 +01002491 char_u posix_fname[MAXPATHL]; // Cygwin docs mention MAX_PATH, but
2492 // it's not always defined
Bram Moolenaarbf820722008-06-21 11:12:49 +00002493#endif
2494
Bram Moolenaar38323e42007-03-06 19:22:53 +00002495#ifdef VMS
2496 fname = vms_fixfilename(fname);
2497#endif
2498
Bram Moolenaara2442432007-04-26 14:26:37 +00002499#ifdef __CYGWIN__
2500 /*
2501 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2502 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002503# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaar0f873732019-12-05 20:28:46 +01002504 // Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in
2505 // a forward slash.
Bram Moolenaar06b07342015-12-31 22:26:28 +01002506 cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE,
2507 fname, posix_fname, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002508# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002509 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002510# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002511 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002512#endif
2513
Bram Moolenaar0f873732019-12-05 20:28:46 +01002514 // Expand it if forced or not an absolute path.
2515 // Do not do it for "/file", the result is always "/".
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002516 if ((force || !mch_isFullName(fname))
2517 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002518 {
2519 /*
2520 * If the file name has a path, change to that directory for a moment,
Bram Moolenaar964b3742019-05-24 18:54:09 +02002521 * and then get the directory (and get back to where we were).
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 * This will get the correct path name with "../" things.
2523 */
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002524 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002525 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002526#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 /*
2528 * Use fchdir() if possible, it's said to be faster and more
2529 * reliable. But on SunOS 4 it might not work. Check this by
2530 * doing a fchdir() right now.
2531 */
2532 if (!dont_fchdir)
2533 {
2534 fd = open(".", O_RDONLY | O_EXTRA, 0);
2535 if (fd >= 0 && fchdir(fd) < 0)
2536 {
2537 close(fd);
2538 fd = -1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002539 dont_fchdir = TRUE; // don't try again
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 }
2541 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002542#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543
Bram Moolenaar0f873732019-12-05 20:28:46 +01002544 // Only change directory when we are sure we can return to where
2545 // we are now. After doing "su" chdir(".") might not work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002546 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002547#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002549#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 (mch_dirname(olddir, MAXPATHL) == FAIL
2551 || mch_chdir((char *)olddir) != 0))
2552 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002553 p = NULL; // can't get current dir: don't chdir
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554 retval = FAIL;
2555 }
2556 else
2557 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002558 // The directory is copied into buf[], to be able to remove
2559 // the file name without changing it (could be a string in
2560 // read-only memory)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 if (p - fname >= len)
2562 retval = FAIL;
2563 else
2564 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002565 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 if (mch_chdir((char *)buf))
2567 retval = FAIL;
2568 else
2569 fname = p + 1;
2570 *buf = NUL;
2571 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572 }
2573 }
2574 if (mch_dirname(buf, len) == FAIL)
2575 {
2576 retval = FAIL;
2577 *buf = NUL;
2578 }
2579 if (p != NULL)
2580 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002581#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 if (fd >= 0)
2583 {
Bram Moolenaar25724922009-07-14 15:38:41 +00002584 if (p_verbose >= 5)
2585 {
2586 verbose_enter();
Bram Moolenaar32526b32019-01-19 17:43:09 +01002587 msg("fchdir() to previous dir");
Bram Moolenaar25724922009-07-14 15:38:41 +00002588 verbose_leave();
2589 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590 l = fchdir(fd);
2591 close(fd);
2592 }
2593 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002594#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 l = mch_chdir((char *)olddir);
2596 if (l != 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002597 emsg(_(e_prev_dir));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002598 }
2599
2600 l = STRLEN(buf);
Bram Moolenaardac75692012-10-14 04:35:45 +02002601 if (l >= len - 1)
Bram Moolenaar0f873732019-12-05 20:28:46 +01002602 retval = FAIL; // no space for trailing "/"
Bram Moolenaar38323e42007-03-06 19:22:53 +00002603#ifndef VMS
Bram Moolenaardac75692012-10-14 04:35:45 +02002604 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 && STRCMP(fname, ".") != 0)
Bram Moolenaardac75692012-10-14 04:35:45 +02002606 STRCAT(buf, "/");
Bram Moolenaar38323e42007-03-06 19:22:53 +00002607#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002608 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002609
Bram Moolenaar0f873732019-12-05 20:28:46 +01002610 // Catch file names which are too long.
Bram Moolenaar78a15312009-05-15 19:33:18 +00002611 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612 return FAIL;
2613
Bram Moolenaar0f873732019-12-05 20:28:46 +01002614 // Do not append ".", "/dir/." is equal to "/dir".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 if (STRCMP(fname, ".") != 0)
2616 STRCAT(buf, fname);
2617
2618 return OK;
2619}
2620
2621/*
2622 * Return TRUE if "fname" does not depend on the current directory.
2623 */
2624 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002625mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626{
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002627#ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002628 return ( fname[0] == '/' || fname[0] == '.' ||
2629 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2630 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2631 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
Bram Moolenaara06ecab2016-07-16 14:47:36 +02002632#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 return (*fname == '/' || *fname == '~');
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634#endif
2635}
2636
Bram Moolenaar24552be2005-12-10 20:17:30 +00002637#if defined(USE_FNAME_CASE) || defined(PROTO)
2638/*
2639 * Set the case of the file name, if it already exists. This will cause the
2640 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002641 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002642 */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002643 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002644fname_case(
2645 char_u *name,
Bram Moolenaar0f873732019-12-05 20:28:46 +01002646 int len UNUSED) // buffer size, only used when name gets longer
Bram Moolenaar24552be2005-12-10 20:17:30 +00002647{
2648 struct stat st;
2649 char_u *slash, *tail;
2650 DIR *dirp;
2651 struct dirent *dp;
2652
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002653 if (mch_lstat((char *)name, &st) >= 0)
Bram Moolenaar24552be2005-12-10 20:17:30 +00002654 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002655 // Open the directory where the file is located.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002656 slash = vim_strrchr(name, '/');
2657 if (slash == NULL)
2658 {
2659 dirp = opendir(".");
2660 tail = name;
2661 }
2662 else
2663 {
2664 *slash = NUL;
2665 dirp = opendir((char *)name);
2666 *slash = '/';
2667 tail = slash + 1;
2668 }
2669
2670 if (dirp != NULL)
2671 {
2672 while ((dp = readdir(dirp)) != NULL)
2673 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002674 // Only accept names that differ in case and are the same byte
2675 // length. TODO: accept different length name.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002676 if (STRICMP(tail, dp->d_name) == 0
2677 && STRLEN(tail) == STRLEN(dp->d_name))
2678 {
2679 char_u newname[MAXPATHL + 1];
2680 struct stat st2;
2681
Bram Moolenaar0f873732019-12-05 20:28:46 +01002682 // Verify the inode is equal.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002683 vim_strncpy(newname, name, MAXPATHL);
2684 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2685 MAXPATHL - (tail - name));
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01002686 if (mch_lstat((char *)newname, &st2) >= 0
Bram Moolenaar24552be2005-12-10 20:17:30 +00002687 && st.st_ino == st2.st_ino
2688 && st.st_dev == st2.st_dev)
2689 {
2690 STRCPY(tail, dp->d_name);
2691 break;
2692 }
2693 }
2694 }
2695
2696 closedir(dirp);
2697 }
2698 }
2699}
2700#endif
2701
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702/*
2703 * Get file permissions for 'name'.
2704 * Returns -1 when it doesn't exist.
2705 */
2706 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002707mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002708{
2709 struct stat statb;
2710
Bram Moolenaar0f873732019-12-05 20:28:46 +01002711 // Keep the #ifdef outside of stat(), it may be a macro.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712#ifdef VMS
2713 if (stat((char *)vms_fixfilename(name), &statb))
2714#else
2715 if (stat((char *)name, &statb))
2716#endif
2717 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002718#ifdef __INTERIX
Bram Moolenaar0f873732019-12-05 20:28:46 +01002719 // The top bit makes the value negative, which means the file doesn't
2720 // exist. Remove the bit, we don't use it.
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002721 return statb.st_mode & ~S_ADDACE;
2722#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002724#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002725}
2726
2727/*
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002728 * Set file permission for "name" to "perm".
2729 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002730 */
2731 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002732mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733{
2734 return (chmod((char *)
2735#ifdef VMS
2736 vms_fixfilename(name),
2737#else
2738 name,
2739#endif
2740 (mode_t)perm) == 0 ? OK : FAIL);
2741}
2742
Bram Moolenaarcd142e32017-11-16 17:03:45 +01002743#if defined(HAVE_FCHMOD) || defined(PROTO)
2744/*
2745 * Set file permission for open file "fd" to "perm".
2746 * Return FAIL for failure, OK otherwise.
2747 */
2748 int
2749mch_fsetperm(int fd, long perm)
2750{
2751 return (fchmod(fd, (mode_t)perm) == 0 ? OK : FAIL);
2752}
2753#endif
2754
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755#if defined(HAVE_ACL) || defined(PROTO)
2756# ifdef HAVE_SYS_ACL_H
2757# include <sys/acl.h>
2758# endif
2759# ifdef HAVE_SYS_ACCESS_H
2760# include <sys/access.h>
2761# endif
2762
2763# ifdef HAVE_SOLARIS_ACL
2764typedef struct vim_acl_solaris_T {
2765 int acl_cnt;
2766 aclent_t *acl_entry;
2767} vim_acl_solaris_T;
2768# endif
2769
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002770#if defined(HAVE_SELINUX) || defined(PROTO)
2771/*
2772 * Copy security info from "from_file" to "to_file".
2773 */
2774 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002775mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002776{
2777 if (from_file == NULL)
2778 return;
2779
2780 if (selinux_enabled == -1)
2781 selinux_enabled = is_selinux_enabled();
2782
2783 if (selinux_enabled > 0)
2784 {
2785 security_context_t from_context = NULL;
2786 security_context_t to_context = NULL;
2787
2788 if (getfilecon((char *)from_file, &from_context) < 0)
2789 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002790 // If the filesystem doesn't support extended attributes,
2791 // the original had no special security context and the
2792 // target cannot have one either.
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002793 if (errno == EOPNOTSUPP)
2794 return;
2795
Bram Moolenaar32526b32019-01-19 17:43:09 +01002796 msg_puts(_("\nCould not get security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002797 msg_outtrans(from_file);
2798 msg_putchar('\n');
2799 return;
2800 }
2801 if (getfilecon((char *)to_file, &to_context) < 0)
2802 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002803 msg_puts(_("\nCould not get security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002804 msg_outtrans(to_file);
2805 msg_putchar('\n');
2806 freecon (from_context);
2807 return ;
2808 }
2809 if (strcmp(from_context, to_context) != 0)
2810 {
2811 if (setfilecon((char *)to_file, from_context) < 0)
2812 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002813 msg_puts(_("\nCould not set security context for "));
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002814 msg_outtrans(to_file);
2815 msg_putchar('\n');
2816 }
2817 }
2818 freecon(to_context);
2819 freecon(from_context);
2820 }
2821}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002822#endif // HAVE_SELINUX
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002823
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002824#if defined(HAVE_SMACK) && !defined(PROTO)
2825/*
2826 * Copy security info from "from_file" to "to_file".
2827 */
2828 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002829mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002830{
Bram Moolenaar62f167f2014-04-23 12:52:40 +02002831 static const char * const smack_copied_attributes[] =
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002832 {
2833 XATTR_NAME_SMACK,
2834 XATTR_NAME_SMACKEXEC,
2835 XATTR_NAME_SMACKMMAP
2836 };
2837
2838 char buffer[SMACK_LABEL_LEN];
2839 const char *name;
2840 int index;
2841 int ret;
2842 ssize_t size;
2843
2844 if (from_file == NULL)
2845 return;
2846
2847 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes)
2848 / sizeof(smack_copied_attributes)[0]) ; index++)
2849 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002850 // get the name of the attribute to copy
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002851 name = smack_copied_attributes[index];
2852
Bram Moolenaar0f873732019-12-05 20:28:46 +01002853 // get the value of the attribute in buffer
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002854 size = getxattr((char*)from_file, name, buffer, sizeof(buffer));
2855 if (size >= 0)
2856 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002857 // copy the attribute value of buffer
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002858 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0);
2859 if (ret < 0)
2860 {
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002861 vim_snprintf((char *)IObuff, IOSIZE,
2862 _("Could not set security context %s for %s"),
2863 name, to_file);
2864 msg_outtrans(IObuff);
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002865 msg_putchar('\n');
2866 }
2867 }
2868 else
2869 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01002870 // what reason of not having the attribute value?
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002871 switch (errno)
2872 {
2873 case ENOTSUP:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002874 // extended attributes aren't supported or enabled
2875 // should a message be echoed? not sure...
2876 return; // leave because it isn't useful to continue
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002877
2878 case ERANGE:
2879 default:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002880 // no enough size OR unexpected error
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002881 vim_snprintf((char *)IObuff, IOSIZE,
2882 _("Could not get security context %s for %s. Removing it!"),
2883 name, from_file);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002884 msg_puts((char *)IObuff);
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002885 msg_putchar('\n');
Bram Moolenaar0f873732019-12-05 20:28:46 +01002886 // FALLTHROUGH to remove the attribute
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002887
2888 case ENODATA:
Bram Moolenaar0f873732019-12-05 20:28:46 +01002889 // no attribute of this name
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002890 ret = removexattr((char*)to_file, name);
Bram Moolenaar0f873732019-12-05 20:28:46 +01002891 // Silently ignore errors, apparently this happens when
2892 // smack is not actually being used.
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002893 break;
2894 }
2895 }
2896 }
2897}
Bram Moolenaar0f873732019-12-05 20:28:46 +01002898#endif // HAVE_SMACK
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002899
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900/*
2901 * Return a pointer to the ACL of file "fname" in allocated memory.
2902 * Return NULL if the ACL is not available for whatever reason.
2903 */
2904 vim_acl_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002905mch_get_acl(char_u *fname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002906{
2907 vim_acl_T ret = NULL;
2908#ifdef HAVE_POSIX_ACL
2909 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2910#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002911#ifdef HAVE_SOLARIS_ZFS_ACL
2912 acl_t *aclent;
2913
2914 if (acl_get((char *)fname, 0, &aclent) < 0)
2915 return NULL;
2916 ret = (vim_acl_T)aclent;
2917#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918#ifdef HAVE_SOLARIS_ACL
2919 vim_acl_solaris_T *aclent;
2920
2921 aclent = malloc(sizeof(vim_acl_solaris_T));
2922 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2923 {
2924 free(aclent);
2925 return NULL;
2926 }
2927 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2928 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2929 {
2930 free(aclent->acl_entry);
2931 free(aclent);
2932 return NULL;
2933 }
2934 ret = (vim_acl_T)aclent;
2935#else
2936#if defined(HAVE_AIX_ACL)
2937 int aclsize;
2938 struct acl *aclent;
2939
2940 aclsize = sizeof(struct acl);
2941 aclent = malloc(aclsize);
2942 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2943 {
2944 if (errno == ENOSPC)
2945 {
2946 aclsize = aclent->acl_len;
2947 aclent = realloc(aclent, aclsize);
2948 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2949 {
2950 free(aclent);
2951 return NULL;
2952 }
2953 }
2954 else
2955 {
2956 free(aclent);
2957 return NULL;
2958 }
2959 }
2960 ret = (vim_acl_T)aclent;
Bram Moolenaar0f873732019-12-05 20:28:46 +01002961#endif // HAVE_AIX_ACL
2962#endif // HAVE_SOLARIS_ACL
2963#endif // HAVE_SOLARIS_ZFS_ACL
2964#endif // HAVE_POSIX_ACL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002965 return ret;
2966}
2967
2968/*
2969 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2970 */
2971 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002972mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002973{
2974 if (aclent == NULL)
2975 return;
2976#ifdef HAVE_POSIX_ACL
2977 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2978#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002979#ifdef HAVE_SOLARIS_ZFS_ACL
2980 acl_set((char *)fname, (acl_t *)aclent);
2981#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982#ifdef HAVE_SOLARIS_ACL
2983 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2984 ((vim_acl_solaris_T *)aclent)->acl_entry);
2985#else
2986#ifdef HAVE_AIX_ACL
2987 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
Bram Moolenaar0f873732019-12-05 20:28:46 +01002988#endif // HAVE_AIX_ACL
2989#endif // HAVE_SOLARIS_ACL
2990#endif // HAVE_SOLARIS_ZFS_ACL
2991#endif // HAVE_POSIX_ACL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002992}
2993
2994 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002995mch_free_acl(vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002996{
2997 if (aclent == NULL)
2998 return;
2999#ifdef HAVE_POSIX_ACL
3000 acl_free((acl_t)aclent);
3001#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01003002#ifdef HAVE_SOLARIS_ZFS_ACL
3003 acl_free((acl_t *)aclent);
3004#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003005#ifdef HAVE_SOLARIS_ACL
3006 free(((vim_acl_solaris_T *)aclent)->acl_entry);
3007 free(aclent);
3008#else
3009#ifdef HAVE_AIX_ACL
3010 free(aclent);
Bram Moolenaar0f873732019-12-05 20:28:46 +01003011#endif // HAVE_AIX_ACL
3012#endif // HAVE_SOLARIS_ACL
3013#endif // HAVE_SOLARIS_ZFS_ACL
3014#endif // HAVE_POSIX_ACL
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015}
3016#endif
3017
3018/*
3019 * Set hidden flag for "name".
3020 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003022mch_hide(char_u *name UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003023{
Bram Moolenaar0f873732019-12-05 20:28:46 +01003024 // can't hide a file
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025}
3026
3027/*
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003028 * return TRUE if "name" is a directory or a symlink to a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 * return FALSE if "name" is not a directory
3030 * return FALSE for error
3031 */
3032 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003033mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003034{
3035 struct stat statb;
3036
Bram Moolenaar0f873732019-12-05 20:28:46 +01003037 if (*name == NUL) // Some stat()s don't flag "" as an error.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003038 return FALSE;
3039 if (stat((char *)name, &statb))
3040 return FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042}
3043
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003044/*
3045 * return TRUE if "name" is a directory, NOT a symlink to a directory
3046 * return FALSE if "name" is not a directory
3047 * return FALSE for error
3048 */
3049 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003050mch_isrealdir(char_u *name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003051{
3052 struct stat statb;
3053
Bram Moolenaar0f873732019-12-05 20:28:46 +01003054 if (*name == NUL) // Some stat()s don't flag "" as an error.
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003055 return FALSE;
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01003056 if (mch_lstat((char *)name, &statb))
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003057 return FALSE;
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003058 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003059}
3060
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061/*
3062 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
3063 */
3064 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003065executable_file(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066{
3067 struct stat st;
3068
3069 if (stat((char *)name, &st))
3070 return 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003071#ifdef VMS
Bram Moolenaar0f873732019-12-05 20:28:46 +01003072 // Like on Unix system file can have executable rights but not necessarily
3073 // be an executable, but on Unix is not a default for an ordinary file to
3074 // have an executable flag - on VMS it is in most cases.
3075 // Therefore, this check does not have any sense - let keep us to the
3076 // conventions instead:
3077 // *.COM and *.EXE files are the executables - the rest are not. This is
3078 // not ideal but better then it was.
Bram Moolenaar206f0112014-03-12 16:51:55 +01003079 int vms_executable = 0;
3080 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0)
3081 {
3082 if (strstr(vms_tolower((char*)name),".exe") != NULL
3083 || strstr(vms_tolower((char*)name),".com")!= NULL)
3084 vms_executable = 1;
3085 }
3086 return vms_executable;
3087#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003089#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003090}
3091
3092/*
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01003093 * Return TRUE if "name" can be found in $PATH and executed, FALSE if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +01003094 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003095 * Return -1 if unknown.
3096 */
3097 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003098mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099{
3100 char_u *buf;
3101 char_u *p, *e;
3102 int retval;
3103
Bram Moolenaar0f873732019-12-05 20:28:46 +01003104 // When "use_path" is false and if it's an absolute or relative path don't
3105 // need to use $PATH.
Bram Moolenaard08b8c42019-07-24 14:59:45 +02003106 if (!use_path || gettail(name) != name)
Bram Moolenaar206f0112014-03-12 16:51:55 +01003107 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003108 // There must be a path separator, files in the current directory
3109 // can't be executed.
Bram Moolenaard08b8c42019-07-24 14:59:45 +02003110 if ((use_path || gettail(name) != name) && executable_file(name))
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003111 {
3112 if (path != NULL)
3113 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003114 if (name[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003115 *path = FullName_save(name, TRUE);
3116 else
3117 *path = vim_strsave(name);
3118 }
3119 return TRUE;
3120 }
3121 return FALSE;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003122 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003123
3124 p = (char_u *)getenv("PATH");
3125 if (p == NULL || *p == NUL)
3126 return -1;
Bram Moolenaar964b3742019-05-24 18:54:09 +02003127 buf = alloc(STRLEN(name) + STRLEN(p) + 2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003128 if (buf == NULL)
3129 return -1;
3130
3131 /*
3132 * Walk through all entries in $PATH to check if "name" exists there and
3133 * is an executable file.
3134 */
3135 for (;;)
3136 {
3137 e = (char_u *)strchr((char *)p, ':');
3138 if (e == NULL)
3139 e = p + STRLEN(p);
Bram Moolenaar0f873732019-12-05 20:28:46 +01003140 if (e - p <= 1) // empty entry means current dir
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 STRCPY(buf, "./");
3142 else
3143 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003144 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 add_pathsep(buf);
3146 }
3147 STRCAT(buf, name);
3148 retval = executable_file(buf);
3149 if (retval == 1)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003150 {
3151 if (path != NULL)
3152 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003153 if (buf[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003154 *path = FullName_save(buf, TRUE);
3155 else
3156 *path = vim_strsave(buf);
3157 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 break;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003159 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160
3161 if (*e != ':')
3162 break;
3163 p = e + 1;
3164 }
3165
3166 vim_free(buf);
3167 return retval;
3168}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169
3170/*
3171 * Check what "name" is:
3172 * NODE_NORMAL: file or directory (or doesn't exist)
3173 * NODE_WRITABLE: writable device, socket, fifo, etc.
3174 * NODE_OTHER: non-writable things
3175 */
3176 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003177mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178{
3179 struct stat st;
3180
3181 if (stat((char *)name, &st))
3182 return NODE_NORMAL;
3183 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
3184 return NODE_NORMAL;
Bram Moolenaar0f873732019-12-05 20:28:46 +01003185 if (S_ISBLK(st.st_mode)) // block device isn't writable
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 return NODE_OTHER;
Bram Moolenaar0f873732019-12-05 20:28:46 +01003187 // Everything else is writable?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003188 return NODE_WRITABLE;
3189}
3190
3191 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003192mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193{
3194#ifdef HAVE_CHECK_STACK_GROWTH
3195 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003196
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 check_stack_growth((char *)&i);
3198
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003199# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 get_stack_limit();
3201# endif
3202
3203#endif
3204
3205 /*
3206 * Setup an alternative stack for signals. Helps to catch signals when
3207 * running out of stack space.
3208 * Use of sigaltstack() is preferred, it's more portable.
3209 * Ignore any errors.
3210 */
3211#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaarc799fe22019-05-28 23:08:19 +02003212 signal_stack = alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003213 init_signal_stack();
3214#endif
3215}
3216
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003217#if defined(EXITFREE) || defined(PROTO)
3218 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003219mch_free_mem(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003220{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003221# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
3222 if (clip_star.owned)
3223 clip_lose_selection(&clip_star);
3224 if (clip_plus.owned)
3225 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003226# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00003227# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003228 if (xterm_Shell != (Widget)0)
3229 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00003230# ifndef LESSTIF_VERSION
Bram Moolenaar0f873732019-12-05 20:28:46 +01003231 // Lesstif crashes here, lose some memory
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003232 if (xterm_dpy != NULL)
3233 XtCloseDisplay(xterm_dpy);
3234 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00003235 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003236 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00003237# ifdef FEAT_X11
Bram Moolenaar0f873732019-12-05 20:28:46 +01003238 x11_display = NULL; // freed by XtDestroyApplicationContext()
Bram Moolenaare8208012008-06-20 09:59:25 +00003239# endif
3240 }
3241# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003242# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003243# if defined(FEAT_X11)
Bram Moolenaare8208012008-06-20 09:59:25 +00003244 if (x11_display != NULL
3245# ifdef FEAT_XCLIPBOARD
3246 && x11_display != xterm_dpy
3247# endif
3248 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003249 XCloseDisplay(x11_display);
3250# endif
3251# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaard23a8232018-02-10 18:45:26 +01003252 VIM_CLEAR(signal_stack);
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003253# endif
3254# ifdef FEAT_TITLE
3255 vim_free(oldtitle);
3256 vim_free(oldicon);
3257# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003258}
3259#endif
3260
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261/*
3262 * Output a newline when exiting.
3263 * Make sure the newline goes to the same stream as the text.
3264 */
3265 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003266exit_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003267{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003268 if (silent_mode)
3269 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003270 if (newline_on_exit || msg_didout)
3271 {
3272 if (msg_use_printf())
3273 {
3274 if (info_message)
3275 mch_msg("\n");
3276 else
3277 mch_errmsg("\r\n");
3278 }
3279 else
3280 out_char('\n');
3281 }
3282 else
3283 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003284 restore_cterm_colors(); // get original colors back
3285 msg_clr_eos_force(); // clear the rest of the display
3286 windgoto((int)Rows - 1, 0); // may have moved the cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287 }
3288}
3289
3290 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003291mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292{
3293 exiting = TRUE;
3294
3295#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3296 x11_export_final_selection();
3297#endif
3298
3299#ifdef FEAT_GUI
3300 if (!gui.in_use)
3301#endif
3302 {
3303 settmode(TMODE_COOK);
3304#ifdef FEAT_TITLE
Bram Moolenaar40385db2018-08-07 22:31:44 +02003305 // restore xterm title and icon name
3306 mch_restore_title(SAVE_RESTORE_BOTH);
3307 term_pop_title(SAVE_RESTORE_BOTH);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003308#endif
3309 /*
3310 * When t_ti is not empty but it doesn't cause swapping terminal
3311 * pages, need to output a newline when msg_didout is set. But when
3312 * t_ti does swap pages it should not go to the shell page. Do this
3313 * before stoptermcap().
3314 */
3315 if (swapping_screen() && !newline_on_exit)
3316 exit_scroll();
3317
Bram Moolenaar0f873732019-12-05 20:28:46 +01003318 // Stop termcap: May need to check for T_CRV response, which
3319 // requires RAW mode.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003320 stoptermcap();
3321
3322 /*
3323 * A newline is only required after a message in the alternate screen.
3324 * This is set to TRUE by wait_return().
3325 */
3326 if (!swapping_screen() || newline_on_exit)
3327 exit_scroll();
3328
Bram Moolenaar0f873732019-12-05 20:28:46 +01003329 // Cursor may have been switched off without calling starttermcap()
3330 // when doing "vim -u vimrc" and vimrc contains ":q".
Bram Moolenaar071d4272004-06-13 20:20:40 +00003331 if (full_screen)
3332 cursor_on();
3333 }
3334 out_flush();
Bram Moolenaar0f873732019-12-05 20:28:46 +01003335 ml_close_all(TRUE); // remove all memfiles
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336 may_core_dump();
3337#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003338 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003339 gui_exit(r);
3340#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003341
Bram Moolenaar56718732006-03-15 22:53:57 +00003342#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003343 mac_conv_cleanup();
3344#endif
3345
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346#ifdef __QNX__
Bram Moolenaar0f873732019-12-05 20:28:46 +01003347 // A core dump won't be created if the signal handler
3348 // doesn't return, so we can't call exit()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 if (deadly_signal != 0)
3350 return;
3351#endif
3352
Bram Moolenaar009b2592004-10-24 19:18:58 +00003353#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003354 netbeans_send_disconnect();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003355#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003356
3357#ifdef EXITFREE
3358 free_all_mem();
3359#endif
3360
Bram Moolenaar071d4272004-06-13 20:20:40 +00003361 exit(r);
3362}
3363
3364 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003365may_core_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366{
3367 if (deadly_signal != 0)
3368 {
3369 signal(deadly_signal, SIG_DFL);
Bram Moolenaar0f873732019-12-05 20:28:46 +01003370 kill(getpid(), deadly_signal); // Die using the signal we caught
Bram Moolenaar071d4272004-06-13 20:20:40 +00003371 }
3372}
3373
3374#ifndef VMS
3375
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003376/*
3377 * Get the file descriptor to use for tty operations.
3378 */
3379 static int
3380get_tty_fd(int fd)
3381{
3382 int tty_fd = fd;
3383
3384#if defined(HAVE_SVR4_PTYS) && defined(SUN_SYSTEM)
3385 // On SunOS: Get the terminal parameters from "fd", or the slave device of
3386 // "fd" when it is a master device.
3387 if (mch_isatty(fd) > 1)
3388 {
3389 char *name;
3390
3391 name = ptsname(fd);
3392 if (name == NULL)
3393 return -1;
3394
3395 tty_fd = open(name, O_RDONLY | O_NOCTTY | O_EXTRA, 0);
3396 if (tty_fd < 0)
3397 return -1;
3398 }
3399#endif
3400 return tty_fd;
3401}
3402
3403 static int
3404mch_tcgetattr(int fd, void *term)
3405{
3406 int tty_fd;
3407 int retval = -1;
3408
3409 tty_fd = get_tty_fd(fd);
3410 if (tty_fd >= 0)
3411 {
3412#ifdef NEW_TTY_SYSTEM
3413# ifdef HAVE_TERMIOS_H
3414 retval = tcgetattr(tty_fd, (struct termios *)term);
3415# else
3416 retval = ioctl(tty_fd, TCGETA, (struct termio *)term);
3417# endif
3418#else
3419 // for "old" tty systems
3420 retval = ioctl(tty_fd, TIOCGETP, (struct sgttyb *)term);
3421#endif
3422 if (tty_fd != fd)
3423 close(tty_fd);
3424 }
3425 return retval;
3426}
3427
Bram Moolenaar071d4272004-06-13 20:20:40 +00003428 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003429mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003430{
3431 static int first = TRUE;
3432
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003433#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003434# ifdef HAVE_TERMIOS_H
3435 static struct termios told;
3436 struct termios tnew;
3437# else
3438 static struct termio told;
3439 struct termio tnew;
3440# endif
3441
3442 if (first)
3443 {
3444 first = FALSE;
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003445 mch_tcgetattr(read_cmd_fd, &told);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446 }
3447
3448 tnew = told;
3449 if (tmode == TMODE_RAW)
3450 {
3451 /*
3452 * ~ICRNL enables typing ^V^M
3453 */
3454 tnew.c_iflag &= ~ICRNL;
3455 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3456# if defined(IEXTEN) && !defined(__MINT__)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003457 | IEXTEN // IEXTEN enables typing ^V on SOLARIS
3458 // but it breaks function keys on MINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003459# endif
3460 );
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02003461# ifdef ONLCR
3462 // Don't map NL -> CR NL, we do it ourselves.
3463 // Also disable expanding tabs if possible.
3464# ifdef XTABS
3465 tnew.c_oflag &= ~(ONLCR | XTABS);
3466# else
3467# ifdef TAB3
3468 tnew.c_oflag &= ~(ONLCR | TAB3);
3469# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 tnew.c_oflag &= ~ONLCR;
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02003471# endif
3472# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003473# endif
Bram Moolenaarfaf626e2019-10-24 17:43:25 +02003474 tnew.c_cc[VMIN] = 1; // return after 1 char
3475 tnew.c_cc[VTIME] = 0; // don't wait
Bram Moolenaar071d4272004-06-13 20:20:40 +00003476 }
3477 else if (tmode == TMODE_SLEEP)
Bram Moolenaar40de4562016-07-01 15:03:46 +02003478 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003479 // Also reset ICANON here, otherwise on Solaris select() won't see
3480 // typeahead characters.
Bram Moolenaar40de4562016-07-01 15:03:46 +02003481 tnew.c_lflag &= ~(ICANON | ECHO);
Bram Moolenaar0f873732019-12-05 20:28:46 +01003482 tnew.c_cc[VMIN] = 1; // return after 1 char
3483 tnew.c_cc[VTIME] = 0; // don't wait
Bram Moolenaar40de4562016-07-01 15:03:46 +02003484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485
3486# if defined(HAVE_TERMIOS_H)
3487 {
3488 int n = 10;
3489
Bram Moolenaar0f873732019-12-05 20:28:46 +01003490 // A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3491 // few times.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003492 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3493 && errno == EINTR && n > 0)
3494 --n;
3495 }
3496# else
3497 ioctl(read_cmd_fd, TCSETA, &tnew);
3498# endif
3499
3500#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501 /*
3502 * for "old" tty systems
3503 */
3504# ifndef TIOCSETN
Bram Moolenaar0f873732019-12-05 20:28:46 +01003505# define TIOCSETN TIOCSETP // for hpux 9.0
Bram Moolenaar071d4272004-06-13 20:20:40 +00003506# endif
3507 static struct sgttyb ttybold;
3508 struct sgttyb ttybnew;
3509
3510 if (first)
3511 {
3512 first = FALSE;
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003513 mch_tcgetattr(read_cmd_fd, &ttybold);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003514 }
3515
3516 ttybnew = ttybold;
3517 if (tmode == TMODE_RAW)
3518 {
3519 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3520 ttybnew.sg_flags |= RAW;
3521 }
3522 else if (tmode == TMODE_SLEEP)
3523 ttybnew.sg_flags &= ~(ECHO);
3524 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3525#endif
3526 curr_tmode = tmode;
3527}
3528
3529/*
3530 * Try to get the code for "t_kb" from the stty setting
3531 *
3532 * Even if termcap claims a backspace key, the user's setting *should*
3533 * prevail. stty knows more about reality than termcap does, and if
3534 * somebody's usual erase key is DEL (which, for most BSD users, it will
3535 * be), they're going to get really annoyed if their erase key starts
3536 * doing forward deletes for no reason. (Eric Fischer)
3537 */
3538 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003539get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003540{
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003541 ttyinfo_T info;
3542 char_u buf[2];
3543 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003544
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003545 if (get_tty_info(read_cmd_fd, &info) == OK)
3546 {
3547 intr_char = info.interrupt;
3548 buf[0] = info.backspace;
3549 buf[1] = NUL;
3550 add_termcode((char_u *)"kb", buf, FALSE);
3551
Bram Moolenaar0f873732019-12-05 20:28:46 +01003552 // If <BS> and <DEL> are now the same, redefine <DEL>.
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003553 p = find_termcode((char_u *)"kD");
3554 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3555 do_fixdel(NULL);
3556 }
3557}
3558
3559/*
3560 * Obtain the characters that Backspace and Enter produce on "fd".
3561 * Returns OK or FAIL.
3562 */
3563 int
3564get_tty_info(int fd, ttyinfo_T *info)
3565{
3566#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567# ifdef HAVE_TERMIOS_H
3568 struct termios keys;
3569# else
3570 struct termio keys;
3571# endif
3572
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003573 if (mch_tcgetattr(fd, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003575 info->backspace = keys.c_cc[VERASE];
3576 info->interrupt = keys.c_cc[VINTR];
3577 if (keys.c_iflag & ICRNL)
3578 info->enter = NL;
3579 else
3580 info->enter = CAR;
3581 if (keys.c_oflag & ONLCR)
3582 info->nl_does_cr = TRUE;
3583 else
3584 info->nl_does_cr = FALSE;
3585 return OK;
3586 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587#else
Bram Moolenaar0f873732019-12-05 20:28:46 +01003588 // for "old" tty systems
Bram Moolenaar071d4272004-06-13 20:20:40 +00003589 struct sgttyb keys;
3590
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01003591 if (mch_tcgetattr(fd, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003592 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003593 info->backspace = keys.sg_erase;
3594 info->interrupt = keys.sg_kill;
3595 info->enter = CAR;
3596 info->nl_does_cr = TRUE;
3597 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599#endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003600 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003601}
3602
Bram Moolenaar0f873732019-12-05 20:28:46 +01003603#endif // VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003605static int mouse_ison = FALSE;
3606
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607/*
3608 * Set mouse clicks on or off.
3609 */
3610 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003611mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612{
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003613#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003614 static int bevalterm_ison = FALSE;
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003615#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 int xterm_mouse_vers;
3617
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003618#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaara06afc72018-08-27 23:24:16 +02003619 if (!on)
3620 // Make sure not tracing mouse movements. Important when a button-down
3621 // was received but no release yet.
3622 stop_xterm_trace();
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003623#endif
Bram Moolenaara06afc72018-08-27 23:24:16 +02003624
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003625 if (on == mouse_ison
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003626#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003627 && p_bevalterm == bevalterm_ison
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003628#endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003629 )
Bram Moolenaar0f873732019-12-05 20:28:46 +01003630 // return quickly if nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003631 return;
3632
3633 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003634
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003635#ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003636 if (ttym_flags == TTYM_URXVT)
3637 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003638 out_str_nf((char_u *)
3639 (on
3640 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3641 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003642 mouse_ison = on;
Bram Moolenaarc8427482011-10-20 21:09:35 +02003643 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003644#endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003645
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003646 if (ttym_flags == TTYM_SGR)
3647 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003648 // SGR mode supports columns above 223
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003649 out_str_nf((char_u *)
3650 (on
3651 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3652 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003653 mouse_ison = on;
3654 }
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003655
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003656#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003657 if (bevalterm_ison != (p_bevalterm && on))
3658 {
3659 bevalterm_ison = (p_bevalterm && on);
3660 if (xterm_mouse_vers > 1 && !bevalterm_ison)
Bram Moolenaar0f873732019-12-05 20:28:46 +01003661 // disable mouse movement events, enabling is below
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003662 out_str_nf((char_u *)
3663 (IF_EB("\033[?1003l", ESC_STR "[?1003l")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003664 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003665#endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003666
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 if (xterm_mouse_vers > 0)
3668 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003669 if (on) // enable mouse events, use mouse tracking if available
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670 out_str_nf((char_u *)
3671 (xterm_mouse_vers > 1
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003672 ? (
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003673#ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003674 bevalterm_ison
3675 ? IF_EB("\033[?1003h", ESC_STR "[?1003h") :
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003676#endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003677 IF_EB("\033[?1002h", ESC_STR "[?1002h"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
Bram Moolenaar0f873732019-12-05 20:28:46 +01003679 else // disable mouse events, could probably always send the same
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680 out_str_nf((char_u *)
3681 (xterm_mouse_vers > 1
3682 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3683 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003684 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003685 }
3686
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003687#ifdef FEAT_MOUSE_DEC
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 else if (ttym_flags == TTYM_DEC)
3689 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003690 if (on) // enable mouse events
Bram Moolenaar071d4272004-06-13 20:20:40 +00003691 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
Bram Moolenaar0f873732019-12-05 20:28:46 +01003692 else // disable mouse events
Bram Moolenaar071d4272004-06-13 20:20:40 +00003693 out_str_nf((char_u *)"\033['z");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003694 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003696#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003697
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003698#ifdef FEAT_MOUSE_GPM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 else
3700 {
3701 if (on)
3702 {
3703 if (gpm_open())
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003704 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 }
3706 else
3707 {
3708 gpm_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003709 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003710 }
3711 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003712#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003714#ifdef FEAT_SYSMOUSE
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003715 else
3716 {
3717 if (on)
3718 {
3719 if (sysmouse_open() == OK)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003720 mouse_ison = TRUE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003721 }
3722 else
3723 {
3724 sysmouse_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003725 mouse_ison = FALSE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003726 }
3727 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003728#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003729
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003730#ifdef FEAT_MOUSE_JSB
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 else
3732 {
3733 if (on)
3734 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003735 // D - Enable Mouse up/down messages
3736 // L - Enable Left Button Reporting
3737 // M - Enable Middle Button Reporting
3738 // R - Enable Right Button Reporting
3739 // K - Enable SHIFT and CTRL key Reporting
3740 // + - Enable Advanced messaging of mouse moves and up/down messages
3741 // Q - Quiet No Ack
3742 // # - Numeric value of mouse pointer required
3743 // 0 = Multiview 2000 cursor, used as standard
3744 // 1 = Windows Arrow
3745 // 2 = Windows I Beam
3746 // 3 = Windows Hour Glass
3747 // 4 = Windows Cross Hair
3748 // 5 = Windows UP Arrow
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003749# ifdef JSBTERM_MOUSE_NONADVANCED
Bram Moolenaar0f873732019-12-05 20:28:46 +01003750 // Disables full feedback of pointer movements
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3752 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003753# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3755 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003756# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003757 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 }
3759 else
3760 {
3761 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3762 ESC_STR "[0~ZwQ" ESC_STR "\\"));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003763 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 }
3765 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003766#endif
3767#ifdef FEAT_MOUSE_PTERM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 else
3769 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003770 // 1 = button press, 6 = release, 7 = drag, 1h...9l = right button
Bram Moolenaar071d4272004-06-13 20:20:40 +00003771 if (on)
3772 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3773 else
3774 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003775 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 }
Bram Moolenaara1cb1d12019-10-17 23:00:07 +02003777#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003778}
3779
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003780#if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003781/*
3782 * Called when 'balloonevalterm' changed.
3783 */
3784 void
3785mch_bevalterm_changed(void)
3786{
3787 mch_setmouse(mouse_ison);
3788}
3789#endif
3790
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791/*
3792 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3793 */
3794 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003795check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796{
3797# ifdef FEAT_MOUSE_XTERM
3798 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003799# ifdef FEAT_MOUSE_URXVT
3800 && use_xterm_mouse() != 3
3801# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802# ifdef FEAT_GUI
3803 && !gui.in_use
3804# endif
3805 )
3806 {
3807 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003808 ? IF_EB("\233M", CSI_STR "M")
3809 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 if (*p_mouse != NUL)
3811 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01003812 // force mouse off and maybe on to send possibly new mouse
3813 // activation sequence to the xterm, with(out) drag tracing.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 mch_setmouse(FALSE);
3815 setmouse();
3816 }
3817 }
3818 else
3819 del_mouse_termcode(KS_MOUSE);
3820# endif
3821
3822# ifdef FEAT_MOUSE_GPM
3823 if (!use_xterm_mouse()
3824# ifdef FEAT_GUI
3825 && !gui.in_use
3826# endif
3827 )
Bram Moolenaarbedf0912019-05-04 16:58:45 +02003828 set_mouse_termcode(KS_GPM_MOUSE,
3829 (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3830 else
3831 del_mouse_termcode(KS_GPM_MOUSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003832# endif
3833
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003834# ifdef FEAT_SYSMOUSE
3835 if (!use_xterm_mouse()
3836# ifdef FEAT_GUI
3837 && !gui.in_use
3838# endif
3839 )
3840 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3841# endif
3842
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843# ifdef FEAT_MOUSE_JSB
Bram Moolenaar0f873732019-12-05 20:28:46 +01003844 // Conflicts with xterm mouse: "\033[" and "\033[M" ???
Bram Moolenaar071d4272004-06-13 20:20:40 +00003845 if (!use_xterm_mouse()
3846# ifdef FEAT_GUI
3847 && !gui.in_use
3848# endif
3849 )
3850 set_mouse_termcode(KS_JSBTERM_MOUSE,
3851 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3852 else
3853 del_mouse_termcode(KS_JSBTERM_MOUSE);
3854# endif
3855
3856# ifdef FEAT_MOUSE_NET
Bram Moolenaar0f873732019-12-05 20:28:46 +01003857 // There is no conflict, but one may type "ESC }" from Insert mode. Don't
3858 // define it in the GUI or when using an xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859 if (!use_xterm_mouse()
3860# ifdef FEAT_GUI
3861 && !gui.in_use
3862# endif
3863 )
3864 set_mouse_termcode(KS_NETTERM_MOUSE,
3865 (char_u *)IF_EB("\033}", ESC_STR "}"));
3866 else
3867 del_mouse_termcode(KS_NETTERM_MOUSE);
3868# endif
3869
3870# ifdef FEAT_MOUSE_DEC
Bram Moolenaar0f873732019-12-05 20:28:46 +01003871 // Conflicts with xterm mouse: "\033[" and "\033[M"
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003872 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003873# ifdef FEAT_GUI
3874 && !gui.in_use
3875# endif
3876 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003877 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3878 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003879 else
3880 del_mouse_termcode(KS_DEC_MOUSE);
3881# endif
3882# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar0f873732019-12-05 20:28:46 +01003883 // same conflict as the dec mouse
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003884 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003885# ifdef FEAT_GUI
3886 && !gui.in_use
3887# endif
3888 )
3889 set_mouse_termcode(KS_PTERM_MOUSE,
3890 (char_u *) IF_EB("\033[", ESC_STR "["));
3891 else
3892 del_mouse_termcode(KS_PTERM_MOUSE);
3893# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003894# ifdef FEAT_MOUSE_URXVT
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003895 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003896# ifdef FEAT_GUI
3897 && !gui.in_use
3898# endif
3899 )
3900 {
3901 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003902 ? IF_EB("\233*M", CSI_STR "*M")
3903 : IF_EB("\033[*M", ESC_STR "[*M")));
Bram Moolenaarc8427482011-10-20 21:09:35 +02003904
3905 if (*p_mouse != NUL)
3906 {
3907 mch_setmouse(FALSE);
3908 setmouse();
3909 }
3910 }
3911 else
3912 del_mouse_termcode(KS_URXVT_MOUSE);
3913# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003914 if (use_xterm_mouse() == 4
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01003915# ifdef FEAT_GUI
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003916 && !gui.in_use
Bram Moolenaar2ace1bd2019-03-22 12:03:30 +01003917# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003918 )
3919 {
3920 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003921 ? IF_EB("\233<*M", CSI_STR "<*M")
3922 : IF_EB("\033[<*M", ESC_STR "[<*M")));
3923
3924 set_mouse_termcode(KS_SGR_MOUSE_RELEASE, (char_u *)(term_is_8bit(T_NAME)
3925 ? IF_EB("\233<*m", CSI_STR "<*m")
3926 : IF_EB("\033[<*m", ESC_STR "[<*m")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003927
3928 if (*p_mouse != NUL)
3929 {
3930 mch_setmouse(FALSE);
3931 setmouse();
3932 }
3933 }
3934 else
Bram Moolenaara529ce02017-06-22 22:37:57 +02003935 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003936 del_mouse_termcode(KS_SGR_MOUSE);
Bram Moolenaara529ce02017-06-22 22:37:57 +02003937 del_mouse_termcode(KS_SGR_MOUSE_RELEASE);
3938 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941#ifndef VMS
3942
3943/*
3944 * Try to get the current window size:
3945 * 1. with an ioctl(), most accurate method
3946 * 2. from the environment variables LINES and COLUMNS
3947 * 3. from the termcap
3948 * 4. keep using the old values
3949 * Return OK when size could be determined, FAIL otherwise.
3950 */
3951 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003952mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003953{
3954 long rows = 0;
3955 long columns = 0;
3956 char_u *p;
3957
3958 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959 * 1. try using an ioctl. It is the most accurate method.
3960 *
3961 * Try using TIOCGWINSZ first, some systems that have it also define
3962 * TIOCGSIZE but don't have a struct ttysize.
3963 */
3964# ifdef TIOCGWINSZ
3965 {
3966 struct winsize ws;
3967 int fd = 1;
3968
Bram Moolenaar0f873732019-12-05 20:28:46 +01003969 // When stdout is not a tty, use stdin for the ioctl().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 if (!isatty(fd) && isatty(read_cmd_fd))
3971 fd = read_cmd_fd;
3972 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3973 {
3974 columns = ws.ws_col;
3975 rows = ws.ws_row;
3976 }
3977 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01003978# else // TIOCGWINSZ
Bram Moolenaar071d4272004-06-13 20:20:40 +00003979# ifdef TIOCGSIZE
3980 {
3981 struct ttysize ts;
3982 int fd = 1;
3983
Bram Moolenaar0f873732019-12-05 20:28:46 +01003984 // When stdout is not a tty, use stdin for the ioctl().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 if (!isatty(fd) && isatty(read_cmd_fd))
3986 fd = read_cmd_fd;
3987 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3988 {
3989 columns = ts.ts_cols;
3990 rows = ts.ts_lines;
3991 }
3992 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01003993# endif // TIOCGSIZE
3994# endif // TIOCGWINSZ
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995
3996 /*
3997 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003998 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3999 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004001 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 {
4003 if ((p = (char_u *)getenv("LINES")))
4004 rows = atoi((char *)p);
4005 if ((p = (char_u *)getenv("COLUMNS")))
4006 columns = atoi((char *)p);
4007 }
4008
4009#ifdef HAVE_TGETENT
4010 /*
4011 * 3. try reading "co" and "li" entries from termcap
4012 */
4013 if (columns == 0 || rows == 0)
4014 getlinecol(&columns, &rows);
4015#endif
4016
4017 /*
4018 * 4. If everything fails, use the old values
4019 */
4020 if (columns <= 0 || rows <= 0)
4021 return FAIL;
4022
4023 Rows = rows;
4024 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02004025 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026 return OK;
4027}
4028
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004029#if defined(FEAT_TERMINAL) || defined(PROTO)
4030/*
4031 * Report the windows size "rows" and "cols" to tty "fd".
4032 */
4033 int
4034mch_report_winsize(int fd, int rows, int cols)
4035{
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004036 int tty_fd;
4037 int retval = -1;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004038
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004039 tty_fd = get_tty_fd(fd);
4040 if (tty_fd >= 0)
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004041 {
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004042# if defined(TIOCSWINSZ)
4043 struct winsize ws;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004044
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004045 ws.ws_col = cols;
4046 ws.ws_row = rows;
4047 ws.ws_xpixel = cols * 5;
4048 ws.ws_ypixel = rows * 10;
4049 retval = ioctl(tty_fd, TIOCSWINSZ, &ws);
4050 ch_log(NULL, "ioctl(TIOCSWINSZ) %s",
4051 retval == 0 ? "success" : "failed");
4052# elif defined(TIOCSSIZE)
4053 struct ttysize ts;
4054
4055 ts.ts_cols = cols;
4056 ts.ts_lines = rows;
4057 retval = ioctl(tty_fd, TIOCSSIZE, &ts);
4058 ch_log(NULL, "ioctl(TIOCSSIZE) %s",
4059 retval == 0 ? "success" : "failed");
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004060# endif
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004061 if (tty_fd != fd)
4062 close(tty_fd);
4063 }
4064 return retval == 0 ? OK : FAIL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02004065}
4066#endif
4067
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068/*
4069 * Try to set the window size to Rows and Columns.
4070 */
4071 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004072mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004073{
4074 if (*T_CWS)
4075 {
4076 /*
4077 * NOTE: if you get an error here that term_set_winsize() is
4078 * undefined, check the output of configure. It could probably not
4079 * find a ncurses, termcap or termlib library.
4080 */
4081 term_set_winsize((int)Rows, (int)Columns);
4082 out_flush();
Bram Moolenaar0f873732019-12-05 20:28:46 +01004083 screen_start(); // don't know where cursor is now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004084 }
4085}
4086
Bram Moolenaar0f873732019-12-05 20:28:46 +01004087#endif // VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088
4089/*
4090 * Rows and/or Columns has changed.
4091 */
4092 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004093mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004094{
Bram Moolenaar0f873732019-12-05 20:28:46 +01004095 // Nothing to do.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096}
4097
Bram Moolenaar205b8862011-09-07 15:04:31 +02004098/*
4099 * Wait for process "child" to end.
4100 * Return "child" if it exited properly, <= 0 on error.
4101 */
4102 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01004103wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02004104{
4105 pid_t wait_pid = 0;
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004106 long delay_msec = 1;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004107
4108 while (wait_pid != child)
4109 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004110 // When compiled with Python threads are probably used, in which case
4111 // wait() sometimes hangs for no obvious reason. Use waitpid()
4112 // instead and loop (like the GUI). Also needed for other interfaces,
4113 // they might call system().
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004114# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004115 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004116# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02004117 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004118# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02004119 if (wait_pid == 0)
4120 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004121 // Wait for 1 to 10 msec before trying again.
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004122 mch_delay(delay_msec, TRUE);
4123 if (++delay_msec > 10)
4124 delay_msec = 10;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004125 continue;
4126 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004127 if (wait_pid <= 0
4128# ifdef ECHILD
4129 && errno == ECHILD
4130# endif
4131 )
4132 break;
4133 }
4134 return wait_pid;
4135}
4136
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004137#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar7da34602017-08-01 17:14:21 +02004138/*
4139 * Set the environment for a child process.
4140 */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004141 static void
Bram Moolenaar493359e2018-06-12 20:25:52 +02004142set_child_environment(
4143 long rows,
4144 long columns,
4145 char *term,
4146 int is_terminal UNUSED)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004147{
4148# ifdef HAVE_SETENV
4149 char envbuf[50];
4150# else
Bram Moolenaar5f7e7bd2017-07-22 14:08:43 +02004151 static char envbuf_Term[30];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004152 static char envbuf_Rows[20];
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004153 static char envbuf_Lines[20];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004154 static char envbuf_Columns[20];
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004155 static char envbuf_Colors[20];
Bram Moolenaar493359e2018-06-12 20:25:52 +02004156# ifdef FEAT_TERMINAL
Bram Moolenaard7a137f2018-06-12 18:05:24 +02004157 static char envbuf_Version[20];
Bram Moolenaar493359e2018-06-12 20:25:52 +02004158# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004159# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004160 static char envbuf_Servername[60];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004161# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004162# endif
4163
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004164# ifdef HAVE_SETENV
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004165 setenv("TERM", term, 1);
4166 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004167 setenv("ROWS", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004168 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004169 setenv("LINES", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004170 sprintf((char *)envbuf, "%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004171 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaar759d8152020-04-26 16:52:49 +02004172 sprintf((char *)envbuf, "%d", t_colors);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004173 setenv("COLORS", (char *)envbuf, 1);
Bram Moolenaar493359e2018-06-12 20:25:52 +02004174# ifdef FEAT_TERMINAL
4175 if (is_terminal)
4176 {
Bram Moolenaar5ecdf962018-06-13 20:49:50 +02004177 sprintf((char *)envbuf, "%ld", (long)get_vim_var_nr(VV_VERSION));
Bram Moolenaar493359e2018-06-12 20:25:52 +02004178 setenv("VIM_TERMINAL", (char *)envbuf, 1);
4179 }
4180# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004181# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004182 setenv("VIM_SERVERNAME", serverName == NULL ? "" : (char *)serverName, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004183# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004184# else
4185 /*
4186 * Putenv does not copy the string, it has to remain valid.
4187 * Use a static array to avoid losing allocated memory.
Bram Moolenaar7da34602017-08-01 17:14:21 +02004188 * This won't work well when running multiple children...
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004189 */
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004190 vim_snprintf(envbuf_Term, sizeof(envbuf_Term), "TERM=%s", term);
4191 putenv(envbuf_Term);
4192 vim_snprintf(envbuf_Rows, sizeof(envbuf_Rows), "ROWS=%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004193 putenv(envbuf_Rows);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004194 vim_snprintf(envbuf_Lines, sizeof(envbuf_Lines), "LINES=%ld", rows);
4195 putenv(envbuf_Lines);
4196 vim_snprintf(envbuf_Columns, sizeof(envbuf_Columns),
4197 "COLUMNS=%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004198 putenv(envbuf_Columns);
Bram Moolenaaraffc8fd2020-04-28 21:58:29 +02004199 vim_snprintf(envbuf_Colors, sizeof(envbuf_Colors), "COLORS=%ld", t_colors);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004200 putenv(envbuf_Colors);
Bram Moolenaar493359e2018-06-12 20:25:52 +02004201# ifdef FEAT_TERMINAL
4202 if (is_terminal)
4203 {
4204 vim_snprintf(envbuf_Version, sizeof(envbuf_Version),
Bram Moolenaar5ecdf962018-06-13 20:49:50 +02004205 "VIM_TERMINAL=%ld", (long)get_vim_var_nr(VV_VERSION));
Bram Moolenaar493359e2018-06-12 20:25:52 +02004206 putenv(envbuf_Version);
4207 }
4208# endif
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004209# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004210 vim_snprintf(envbuf_Servername, sizeof(envbuf_Servername),
4211 "VIM_SERVERNAME=%s", serverName == NULL ? "" : (char *)serverName);
4212 putenv(envbuf_Servername);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004213# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004214# endif
4215}
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004216
4217 static void
Bram Moolenaar493359e2018-06-12 20:25:52 +02004218set_default_child_environment(int is_terminal)
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004219{
Bram Moolenaar493359e2018-06-12 20:25:52 +02004220 set_child_environment(Rows, Columns, "dumb", is_terminal);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004221}
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004222#endif
4223
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004224#if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004225/*
4226 * Open a PTY, with FD for the master and slave side.
4227 * When failing "pty_master_fd" and "pty_slave_fd" are -1.
Bram Moolenaar59386482019-02-10 22:43:46 +01004228 * When successful both file descriptors are stored and the allocated pty name
4229 * is stored in both "*name1" and "*name2".
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004230 */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004231 static void
Bram Moolenaar59386482019-02-10 22:43:46 +01004232open_pty(int *pty_master_fd, int *pty_slave_fd, char_u **name1, char_u **name2)
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004233{
4234 char *tty_name;
4235
Bram Moolenaar59386482019-02-10 22:43:46 +01004236 if (name1 != NULL)
4237 *name1 = NULL;
4238 if (name2 != NULL)
4239 *name2 = NULL;
4240
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004241 *pty_master_fd = mch_openpty(&tty_name); // open pty
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004242 if (*pty_master_fd >= 0)
4243 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004244 // Leaving out O_NOCTTY may lead to waitpid() always returning
4245 // 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4246 // adding O_NOCTTY always works when defined.
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004247#ifdef O_NOCTTY
4248 *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4249#else
4250 *pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4251#endif
4252 if (*pty_slave_fd < 0)
4253 {
4254 close(*pty_master_fd);
4255 *pty_master_fd = -1;
4256 }
Bram Moolenaar59386482019-02-10 22:43:46 +01004257 else
4258 {
4259 if (name1 != NULL)
4260 *name1 = vim_strsave((char_u *)tty_name);
4261 if (name2 != NULL)
4262 *name2 = vim_strsave((char_u *)tty_name);
4263 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004264 }
4265}
4266#endif
4267
Bram Moolenaarfae42832017-08-01 22:24:26 +02004268/*
4269 * Send SIGINT to a child process if "c" is an interrupt character.
4270 */
Bram Moolenaar840d16f2019-09-10 21:27:18 +02004271 static void
Bram Moolenaarfae42832017-08-01 22:24:26 +02004272may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED)
4273{
4274# ifdef SIGINT
4275 if (c == Ctrl_C || c == intr_char)
4276 {
4277# ifdef HAVE_SETSID
4278 kill(-pid, SIGINT);
4279# else
4280 kill(0, SIGINT);
4281# endif
4282 if (wpid > 0)
4283 kill(wpid, SIGINT);
4284 }
4285# endif
4286}
4287
Bram Moolenaar197c6b72019-11-03 23:37:12 +01004288#if !defined(USE_SYSTEM) || defined(FEAT_TERMINAL) || defined(PROTO)
Bram Moolenaar13568252018-03-16 20:46:58 +01004289
Bram Moolenaar0f873732019-12-05 20:28:46 +01004290/*
4291 * Parse "cmd" and return the result in "argvp" which is an allocated array of
4292 * pointers, the last one is NULL.
4293 * The "sh_tofree" and "shcf_tofree" must be later freed by the caller.
4294 */
Bram Moolenaar197c6b72019-11-03 23:37:12 +01004295 int
4296unix_build_argv(
Bram Moolenaar13568252018-03-16 20:46:58 +01004297 char_u *cmd,
4298 char ***argvp,
4299 char_u **sh_tofree,
4300 char_u **shcf_tofree)
4301{
4302 char **argv = NULL;
4303 int argc;
4304
4305 *sh_tofree = vim_strsave(p_sh);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004306 if (*sh_tofree == NULL) // out of memory
Bram Moolenaar13568252018-03-16 20:46:58 +01004307 return FAIL;
4308
4309 if (mch_parse_cmd(*sh_tofree, TRUE, &argv, &argc) == FAIL)
4310 return FAIL;
4311 *argvp = argv;
4312
4313 if (cmd != NULL)
4314 {
4315 char_u *s;
4316 char_u *p;
4317
4318 if (extra_shell_arg != NULL)
4319 argv[argc++] = (char *)extra_shell_arg;
4320
Bram Moolenaar0f873732019-12-05 20:28:46 +01004321 // Break 'shellcmdflag' into white separated parts. This doesn't
4322 // handle quoted strings, they are very unlikely to appear.
Bram Moolenaar964b3742019-05-24 18:54:09 +02004323 *shcf_tofree = alloc(STRLEN(p_shcf) + 1);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004324 if (*shcf_tofree == NULL) // out of memory
Bram Moolenaar13568252018-03-16 20:46:58 +01004325 return FAIL;
4326 s = *shcf_tofree;
4327 p = p_shcf;
4328 while (*p != NUL)
4329 {
4330 argv[argc++] = (char *)s;
4331 while (*p && *p != ' ' && *p != TAB)
4332 *s++ = *p++;
4333 *s++ = NUL;
4334 p = skipwhite(p);
4335 }
4336
4337 argv[argc++] = (char *)cmd;
4338 }
4339 argv[argc] = NULL;
4340 return OK;
4341}
4342#endif
4343
4344#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
4345/*
4346 * Use a terminal window to run a shell command in.
4347 */
4348 static int
4349mch_call_shell_terminal(
4350 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004351 int options UNUSED) // SHELL_*, see vim.h
Bram Moolenaar13568252018-03-16 20:46:58 +01004352{
4353 jobopt_T opt;
4354 char **argv = NULL;
4355 char_u *tofree1 = NULL;
4356 char_u *tofree2 = NULL;
4357 int retval = -1;
4358 buf_T *buf;
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004359 job_T *job;
Bram Moolenaar13568252018-03-16 20:46:58 +01004360 aco_save_T aco;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004361 oparg_T oa; // operator arguments
Bram Moolenaar13568252018-03-16 20:46:58 +01004362
Bram Moolenaar197c6b72019-11-03 23:37:12 +01004363 if (unix_build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
Bram Moolenaar13568252018-03-16 20:46:58 +01004364 goto theend;
4365
4366 init_job_options(&opt);
4367 ch_log(NULL, "starting terminal for system command '%s'", cmd);
4368 buf = term_start(NULL, argv, &opt, TERM_START_SYSTEM);
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004369 if (buf == NULL)
4370 goto theend;
4371
4372 job = term_getjob(buf->b_term);
4373 ++job->jv_refcount;
Bram Moolenaar13568252018-03-16 20:46:58 +01004374
Bram Moolenaar0f873732019-12-05 20:28:46 +01004375 // Find a window to make "buf" curbuf.
Bram Moolenaar13568252018-03-16 20:46:58 +01004376 aucmd_prepbuf(&aco, buf);
4377
4378 clear_oparg(&oa);
4379 while (term_use_loop())
4380 {
4381 if (oa.op_type == OP_NOP && oa.regname == NUL && !VIsual_active)
4382 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004383 // If terminal_loop() returns OK we got a key that is handled
4384 // in Normal model. We don't do redrawing anyway.
Bram Moolenaar13568252018-03-16 20:46:58 +01004385 if (terminal_loop(TRUE) == OK)
4386 normal_cmd(&oa, TRUE);
4387 }
4388 else
4389 normal_cmd(&oa, TRUE);
4390 }
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004391 retval = job->jv_exitval;
Bram Moolenaar13568252018-03-16 20:46:58 +01004392 ch_log(NULL, "system command finished");
4393
Bram Moolenaarf9c38832018-06-19 19:59:20 +02004394 job_unref(job);
4395
Bram Moolenaar0f873732019-12-05 20:28:46 +01004396 // restore curwin/curbuf and a few other things
Bram Moolenaar13568252018-03-16 20:46:58 +01004397 aucmd_restbuf(&aco);
4398
4399 wait_return(TRUE);
4400 do_buffer(DOBUF_WIPE, DOBUF_FIRST, FORWARD, buf->b_fnum, TRUE);
4401
4402theend:
4403 vim_free(argv);
4404 vim_free(tofree1);
4405 vim_free(tofree2);
4406 return retval;
4407}
4408#endif
4409
4410#ifdef USE_SYSTEM
4411/*
4412 * Use system() to start the shell: simple but slow.
4413 */
4414 static int
4415mch_call_shell_system(
Bram Moolenaar05540972016-01-30 20:31:25 +01004416 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004417 int options) // SHELL_*, see vim.h
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418{
4419#ifdef VMS
4420 char *ifn = NULL;
4421 char *ofn = NULL;
4422#endif
4423 int tmode = cur_tmode;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004424 char_u *newcmd; // only needed for unix
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01004425 int x;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004426
4427 out_flush();
4428
4429 if (options & SHELL_COOKED)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004430 settmode(TMODE_COOK); // set to normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004431
Bram Moolenaar62b42182010-09-21 22:09:37 +02004432# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004433 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004434 loose_clipboard();
4435# endif
4436
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 if (cmd == NULL)
4438 x = system((char *)p_sh);
4439 else
4440 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004441# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004442 if (ofn = strchr((char *)cmd, '>'))
4443 *ofn++ = '\0';
4444 if (ifn = strchr((char *)cmd, '<'))
4445 {
4446 char *p;
4447
4448 *ifn++ = '\0';
Bram Moolenaar0f873732019-12-05 20:28:46 +01004449 p = strchr(ifn,' '); // chop off any trailing spaces
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 if (p)
4451 *p = '\0';
4452 }
4453 if (ofn)
4454 x = vms_sys((char *)cmd, ofn, ifn);
4455 else
4456 x = system((char *)cmd);
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004457# else
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004458 newcmd = alloc(STRLEN(p_sh)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
Bram Moolenaar18a4ba22019-05-24 19:39:03 +02004460 + STRLEN(p_shcf) + STRLEN(cmd) + 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 if (newcmd == NULL)
4462 x = 0;
4463 else
4464 {
4465 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4466 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4467 (char *)p_shcf,
4468 (char *)cmd);
4469 x = system((char *)newcmd);
4470 vim_free(newcmd);
4471 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004472# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 }
4474# ifdef VMS
4475 x = vms_sys_status(x);
4476# endif
4477 if (emsg_silent)
4478 ;
4479 else if (x == 127)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004480 msg_puts(_("\nCannot execute shell sh\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 else if (x && !(options & SHELL_SILENT))
4482 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004483 msg_puts(_("\nshell returned "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 msg_outnum((long)x);
4485 msg_putchar('\n');
4486 }
4487
4488 if (tmode == TMODE_RAW)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004489 settmode(TMODE_RAW); // set to raw mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490# ifdef FEAT_TITLE
4491 resettitle();
4492# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004493# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4494 restore_clipboard();
4495# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004496 return x;
Bram Moolenaar13568252018-03-16 20:46:58 +01004497}
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498
Bram Moolenaar0f873732019-12-05 20:28:46 +01004499#else // USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500
Bram Moolenaar0f873732019-12-05 20:28:46 +01004501# define EXEC_FAILED 122 // Exit code when shell didn't execute. Don't use
4502 // 127, some shells use that already
4503# define OPEN_NULL_FAILED 123 // Exit code if /dev/null can't be opened
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504
Bram Moolenaar13568252018-03-16 20:46:58 +01004505/*
4506 * Don't use system(), use fork()/exec().
4507 */
4508 static int
4509mch_call_shell_fork(
4510 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01004511 int options) // SHELL_*, see vim.h
Bram Moolenaar13568252018-03-16 20:46:58 +01004512{
4513 int tmode = cur_tmode;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004514 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004515 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 pid_t wait_pid = 0;
4517# ifdef HAVE_UNION_WAIT
4518 union wait status;
4519# else
4520 int status = -1;
4521# endif
4522 int retval = -1;
4523 char **argv = NULL;
Bram Moolenaar13568252018-03-16 20:46:58 +01004524 char_u *tofree1 = NULL;
4525 char_u *tofree2 = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 int i;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004527 int pty_master_fd = -1; // for pty's
Bram Moolenaardf177f62005-02-22 08:39:57 +00004528# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004529 int pty_slave_fd = -1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004530# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01004531 int fd_toshell[2]; // for pipes
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 int fd_fromshell[2];
4533 int pipe_error = FALSE;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004534 int did_settmode = FALSE; // settmode(TMODE_RAW) called
Bram Moolenaar071d4272004-06-13 20:20:40 +00004535
4536 out_flush();
4537 if (options & SHELL_COOKED)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004538 settmode(TMODE_COOK); // set to normal mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539
Bram Moolenaar197c6b72019-11-03 23:37:12 +01004540 if (unix_build_argv(cmd, &argv, &tofree1, &tofree2) == FAIL)
Bram Moolenaar835dc632016-02-07 14:27:38 +01004541 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004542
Bram Moolenaar071d4272004-06-13 20:20:40 +00004543 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004544 * For the GUI, when writing the output into the buffer and when reading
4545 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4546 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004548 if ((options & (SHELL_READ|SHELL_WRITE))
4549# ifdef FEAT_GUI
4550 || (gui.in_use && show_shell_mess)
4551# endif
4552 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004554# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 /*
4556 * Try to open a master pty.
4557 * If this works, open the slave pty.
4558 * If the slave can't be opened, close the master pty.
4559 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004560 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar59386482019-02-10 22:43:46 +01004561 open_pty(&pty_master_fd, &pty_slave_fd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004562 /*
4563 * If not opening a pty or it didn't work, try using pipes.
4564 */
4565 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004566# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004567 {
4568 pipe_error = (pipe(fd_toshell) < 0);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004569 if (!pipe_error) // pipe create OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 {
4571 pipe_error = (pipe(fd_fromshell) < 0);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004572 if (pipe_error) // pipe create failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 {
4574 close(fd_toshell[0]);
4575 close(fd_toshell[1]);
4576 }
4577 }
4578 if (pipe_error)
4579 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004580 msg_puts(_("\nCannot create pipes\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004581 out_flush();
4582 }
4583 }
4584 }
4585
Bram Moolenaar0f873732019-12-05 20:28:46 +01004586 if (!pipe_error) // pty or pipe opened or not used
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004588 SIGSET_DECL(curset)
4589
Bram Moolenaarb3f74062020-02-26 16:16:53 +01004590# if defined(__BEOS__) && USE_THREAD_FOR_INPUT_WITH_TIMEOUT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004591 beos_cleanup_read_thread();
4592# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004593
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004594 BLOCK_SIGNALS(&curset);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004595 pid = fork(); // maybe we should use vfork()
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004596 if (pid == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004598 UNBLOCK_SIGNALS(&curset);
4599
Bram Moolenaar32526b32019-01-19 17:43:09 +01004600 msg_puts(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004601 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004602# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004603 || (gui.in_use && show_shell_mess)
4604# endif
4605 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004606 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004607# ifdef FEAT_GUI
Bram Moolenaar0f873732019-12-05 20:28:46 +01004608 if (pty_master_fd >= 0) // close the pseudo tty
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609 {
4610 close(pty_master_fd);
4611 close(pty_slave_fd);
4612 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004613 else // close the pipes
Bram Moolenaardf177f62005-02-22 08:39:57 +00004614# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 {
4616 close(fd_toshell[0]);
4617 close(fd_toshell[1]);
4618 close(fd_fromshell[0]);
4619 close(fd_fromshell[1]);
4620 }
4621 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004622 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004623 else if (pid == 0) // child
Bram Moolenaar071d4272004-06-13 20:20:40 +00004624 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004625 reset_signals(); // handle signals normally
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004626 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627
Bram Moolenaar819524702018-02-27 19:10:00 +01004628# ifdef FEAT_JOB_CHANNEL
4629 if (ch_log_active())
Bram Moolenaar0f873732019-12-05 20:28:46 +01004630 // close the log file in the child
Bram Moolenaar819524702018-02-27 19:10:00 +01004631 ch_logfile((char_u *)"", (char_u *)"");
4632# endif
4633
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634 if (!show_shell_mess || (options & SHELL_EXPAND))
4635 {
4636 int fd;
4637
4638 /*
4639 * Don't want to show any message from the shell. Can't just
4640 * close stdout and stderr though, because some systems will
4641 * break if you try to write to them after that, so we must
4642 * use dup() to replace them with something else -- webb
4643 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4644 * waiting for input.
4645 */
4646 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4647 fclose(stdin);
4648 fclose(stdout);
4649 fclose(stderr);
4650
4651 /*
4652 * If any of these open()'s and dup()'s fail, we just continue
4653 * anyway. It's not fatal, and on most systems it will make
4654 * no difference at all. On a few it will cause the execvp()
4655 * to exit with a non-zero status even when the completion
4656 * could be done, which is nothing too serious. If the open()
4657 * or dup() failed we'd just do the same thing ourselves
4658 * anyway -- webb
4659 */
4660 if (fd >= 0)
4661 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004662 vim_ignored = dup(fd); // To replace stdin (fd 0)
4663 vim_ignored = dup(fd); // To replace stdout (fd 1)
4664 vim_ignored = dup(fd); // To replace stderr (fd 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665
Bram Moolenaar0f873732019-12-05 20:28:46 +01004666 // Don't need this now that we've duplicated it
Bram Moolenaar071d4272004-06-13 20:20:40 +00004667 close(fd);
4668 }
4669 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004670 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004672 || gui.in_use
4673# endif
4674 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 {
4676
Bram Moolenaardf177f62005-02-22 08:39:57 +00004677# ifdef HAVE_SETSID
Bram Moolenaar0f873732019-12-05 20:28:46 +01004678 // Create our own process group, so that the child and all its
4679 // children can be kill()ed. Don't do this when using pipes,
4680 // because stdin is not a tty, we would lose /dev/tty.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004681 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004682 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004683 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004684# if defined(SIGHUP)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004685 // When doing "!xterm&" and 'shell' is bash: the shell
4686 // will exit and send SIGHUP to all processes in its
4687 // group, killing the just started process. Ignore SIGHUP
4688 // to avoid that. (suggested by Simon Schubert)
Bram Moolenaar07256082009-02-04 13:19:42 +00004689 signal(SIGHUP, SIG_IGN);
4690# endif
4691 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004692# endif
4693# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004694 if (pty_slave_fd >= 0)
4695 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004696 // push stream discipline modules
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004697 if (options & SHELL_COOKED)
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01004698 setup_slavepty(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699# ifdef TIOCSCTTY
Bram Moolenaar0f873732019-12-05 20:28:46 +01004700 // Try to become controlling tty (probably doesn't work,
4701 // unless run by root)
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004702 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004704 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004705# endif
Bram Moolenaar493359e2018-06-12 20:25:52 +02004706 set_default_child_environment(FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707
Bram Moolenaara5792f52005-11-23 21:25:05 +00004708 /*
4709 * stderr is only redirected when using the GUI, so that a
4710 * program like gpg can still access the terminal to get a
4711 * passphrase using stderr.
4712 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004713# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004714 if (pty_master_fd >= 0)
4715 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004716 close(pty_master_fd); // close master side of pty
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717
Bram Moolenaar0f873732019-12-05 20:28:46 +01004718 // set up stdin/stdout/stderr for the child
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004720 vim_ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 close(1);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004722 vim_ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004723 if (gui.in_use)
4724 {
4725 close(2);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004726 vim_ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004727 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004728
Bram Moolenaar0f873732019-12-05 20:28:46 +01004729 close(pty_slave_fd); // has been dupped, close it now
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730 }
4731 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004732# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004734 // set up stdin for the child
Bram Moolenaar071d4272004-06-13 20:20:40 +00004735 close(fd_toshell[1]);
4736 close(0);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004737 vim_ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004738 close(fd_toshell[0]);
4739
Bram Moolenaar0f873732019-12-05 20:28:46 +01004740 // set up stdout for the child
Bram Moolenaar071d4272004-06-13 20:20:40 +00004741 close(fd_fromshell[0]);
4742 close(1);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004743 vim_ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 close(fd_fromshell[1]);
4745
Bram Moolenaara5792f52005-11-23 21:25:05 +00004746# ifdef FEAT_GUI
4747 if (gui.in_use)
4748 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004749 // set up stderr for the child
Bram Moolenaara5792f52005-11-23 21:25:05 +00004750 close(2);
Bram Moolenaar42335f52018-09-13 15:33:43 +02004751 vim_ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004752 }
4753# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 }
4755 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004756
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 /*
4758 * There is no type cast for the argv, because the type may be
4759 * different on different machines. This may cause a warning
4760 * message with strict compilers, don't worry about it.
4761 * Call _exit() instead of exit() to avoid closing the connection
4762 * to the X server (esp. with GTK, which uses atexit()).
4763 */
4764 execvp(argv[0], argv);
Bram Moolenaar0f873732019-12-05 20:28:46 +01004765 _exit(EXEC_FAILED); // exec failed, return failure code
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004767 else // parent
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 {
4769 /*
4770 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004771 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 */
4773 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004774 catch_int_signal();
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004775 UNBLOCK_SIGNALS(&curset);
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01004776# ifdef FEAT_JOB_CHANNEL
4777 ++dont_check_job_ended;
4778# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004779 /*
4780 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004781 * This is also used to pipe stdin/stdout to/from the external
4782 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004784 if ((options & (SHELL_READ|SHELL_WRITE))
4785# ifdef FEAT_GUI
4786 || (gui.in_use && show_shell_mess)
4787# endif
4788 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004790# define BUFLEN 100 // length for buffer, pseudo tty limit is 128
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 char_u buffer[BUFLEN + 1];
Bram Moolenaar0f873732019-12-05 20:28:46 +01004792 int buffer_off = 0; // valid bytes in buffer[]
4793 char_u ta_buf[BUFLEN + 1]; // TypeAHead
4794 int ta_len = 0; // valid bytes in ta_buf[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 int len;
4796 int p_more_save;
4797 int old_State;
4798 int c;
4799 int toshell_fd;
4800 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004801 garray_T ga;
4802 int noread_cnt;
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01004803# ifdef ELAPSED_FUNC
4804 elapsed_T start_tv;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004805# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806
Bram Moolenaardf177f62005-02-22 08:39:57 +00004807# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 if (pty_master_fd >= 0)
4809 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004810 fromshell_fd = pty_master_fd;
4811 toshell_fd = dup(pty_master_fd);
4812 }
4813 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004814# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004815 {
4816 close(fd_toshell[0]);
4817 close(fd_fromshell[1]);
4818 toshell_fd = fd_toshell[1];
4819 fromshell_fd = fd_fromshell[0];
4820 }
4821
4822 /*
4823 * Write to the child if there are typed characters.
4824 * Read from the child if there are characters available.
4825 * Repeat the reading a few times if more characters are
4826 * available. Need to check for typed keys now and then, but
4827 * not too often (delays when no chars are available).
4828 * This loop is quit if no characters can be read from the pty
4829 * (WaitForChar detected special condition), or there are no
4830 * characters available and the child has exited.
4831 * Only check if the child has exited when there is no more
4832 * output. The child may exit before all the output has
4833 * been printed.
4834 *
4835 * Currently this busy loops!
4836 * This can probably dead-lock when the write blocks!
4837 */
4838 p_more_save = p_more;
4839 p_more = FALSE;
4840 old_State = State;
Bram Moolenaar0f873732019-12-05 20:28:46 +01004841 State = EXTERNCMD; // don't redraw at window resize
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004843 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004844 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004845 // Fork a process that will write the lines to the
4846 // external program.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004847 if ((wpid = fork()) == -1)
4848 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004849 msg_puts(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004850 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004851 else if (wpid == 0) // child
Bram Moolenaardf177f62005-02-22 08:39:57 +00004852 {
4853 linenr_T lnum = curbuf->b_op_start.lnum;
4854 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004855 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004856 size_t l;
4857
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004858 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004859 for (;;)
4860 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004861 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004862 if (l == 0)
4863 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004864 else if (lp[written] == NL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01004865 // NL -> NUL translation
Bram Moolenaardf177f62005-02-22 08:39:57 +00004866 len = write(toshell_fd, "", (size_t)1);
4867 else
4868 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004869 char_u *s = vim_strchr(lp + written, NL);
4870
Bram Moolenaar89d40322006-08-29 15:30:07 +00004871 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004872 s == NULL ? l
4873 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004874 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004875 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004876 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004877 // Finished a line, add a NL, unless this line
4878 // should not have one.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004879 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004880 || (!curbuf->b_p_bin
4881 && curbuf->b_p_fixeol)
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004882 || (lnum != curbuf->b_no_eol_lnum
Bram Moolenaardf177f62005-02-22 08:39:57 +00004883 && (lnum !=
4884 curbuf->b_ml.ml_line_count
4885 || curbuf->b_p_eol)))
Bram Moolenaar42335f52018-09-13 15:33:43 +02004886 vim_ignored = write(toshell_fd, "\n",
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004887 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004888 ++lnum;
4889 if (lnum > curbuf->b_op_end.lnum)
4890 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004891 // finished all the lines, close pipe
Bram Moolenaardf177f62005-02-22 08:39:57 +00004892 close(toshell_fd);
4893 toshell_fd = -1;
4894 break;
4895 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004896 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004897 written = 0;
4898 }
4899 else if (len > 0)
4900 written += len;
4901 }
4902 _exit(0);
4903 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01004904 else // parent
Bram Moolenaardf177f62005-02-22 08:39:57 +00004905 {
4906 close(toshell_fd);
4907 toshell_fd = -1;
4908 }
4909 }
4910
4911 if (options & SHELL_READ)
4912 ga_init2(&ga, 1, BUFLEN);
4913
4914 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004915# ifdef ELAPSED_FUNC
4916 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004917# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918 for (;;)
4919 {
4920 /*
4921 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004922 * if there are any.
4923 * Don't do this if we are expanding wild cards (would eat
4924 * typeahead).
4925 * Don't do this when filtering and terminal is in cooked
4926 * mode, the shell command will handle the I/O. Avoids
4927 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004928 * Don't get characters when the child has already
4929 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004930 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004931 * while (noread_cnt > 4), avoids that ":r !ls" eats
4932 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 */
4934 len = 0;
4935 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004936 && ((options &
4937 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4938 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004939# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004940 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004941# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004942 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004943 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004944 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004946 if (ta_len == 0)
4947 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01004948 // Get extra characters when we don't have any.
4949 // Reset the counter and timer.
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004950 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004951# ifdef ELAPSED_FUNC
4952 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004953# endif
4954 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4955 }
4956 if (ta_len > 0 || len > 0)
4957 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004958 /*
4959 * For pipes:
4960 * Check for CTRL-C: send interrupt signal to child.
4961 * Check for CTRL-D: EOF, close pipe to child.
4962 */
4963 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4964 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 /*
4966 * Send SIGINT to the child's group or all
4967 * processes in our group.
4968 */
Bram Moolenaarfae42832017-08-01 22:24:26 +02004969 may_send_sigint(ta_buf[ta_len], pid, wpid);
4970
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 if (pty_master_fd < 0 && toshell_fd >= 0
4972 && ta_buf[ta_len] == Ctrl_D)
4973 {
4974 close(toshell_fd);
4975 toshell_fd = -1;
4976 }
4977 }
4978
Bram Moolenaarf4140482020-02-15 23:06:45 +01004979 term_replace_bs_del_keycode(ta_buf, ta_len, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980
4981 /*
4982 * For pipes: echo the typed characters.
4983 * For a pty this does not seem to work.
4984 */
4985 if (pty_master_fd < 0)
4986 {
4987 for (i = ta_len; i < ta_len + len; ++i)
4988 {
4989 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4990 msg_putchar(ta_buf[i]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991 else if (has_mbyte)
4992 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004993 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994
4995 msg_outtrans_len(ta_buf + i, l);
4996 i += l - 1;
4997 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 else
4999 msg_outtrans_len(ta_buf + i, 1);
5000 }
5001 windgoto(msg_row, msg_col);
5002 out_flush();
5003 }
5004
5005 ta_len += len;
5006
5007 /*
5008 * Write the characters to the child, unless EOF has
5009 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00005010 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005011 * When writing buffer lines, drop the typed
5012 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005013 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005014 if (options & SHELL_WRITE)
5015 ta_len = 0;
5016 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 {
5018 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
5019 if (len > 0)
5020 {
5021 ta_len -= len;
5022 mch_memmove(ta_buf, ta_buf + len, ta_len);
5023 }
5024 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005025 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005026 }
5027
Bram Moolenaardf177f62005-02-22 08:39:57 +00005028 if (got_int)
5029 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005030 // CTRL-C sends a signal to the child, we ignore it
5031 // ourselves
Bram Moolenaardf177f62005-02-22 08:39:57 +00005032# ifdef HAVE_SETSID
5033 kill(-pid, SIGINT);
5034# else
5035 kill(0, SIGINT);
5036# endif
5037 if (wpid > 0)
5038 kill(wpid, SIGINT);
5039 got_int = FALSE;
5040 }
5041
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 /*
5043 * Check if the child has any characters to be printed.
5044 * Read them and write them to our window. Repeat this as
5045 * long as there is something to do, avoid the 10ms wait
5046 * for mch_inchar(), or sending typeahead characters to
5047 * the external process.
5048 * TODO: This should handle escape sequences, compatible
5049 * to some terminal (vt52?).
5050 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005051 ++noread_cnt;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005052 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01005054 len = read_eintr(fromshell_fd, buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00005055 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 );
Bram Moolenaar0f873732019-12-05 20:28:46 +01005057 if (len <= 0) // end of file or error
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005059
5060 noread_cnt = 0;
5061 if (options & SHELL_READ)
5062 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005063 // Do NUL -> NL translation, append NL separated
5064 // lines to the current buffer.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005065 for (i = 0; i < len; ++i)
5066 {
5067 if (buffer[i] == NL)
5068 append_ga_line(&ga);
5069 else if (buffer[i] == NUL)
5070 ga_append(&ga, NL);
5071 else
5072 ga_append(&ga, buffer[i]);
5073 }
5074 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005075 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 {
5077 int l;
Bram Moolenaara2150ac2018-03-17 13:15:17 +01005078 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079
Bram Moolenaardf177f62005-02-22 08:39:57 +00005080 len += buffer_off;
5081 buffer[len] = NUL;
5082
Bram Moolenaar0f873732019-12-05 20:28:46 +01005083 // Check if the last character in buffer[] is
5084 // incomplete, keep these bytes for the next
5085 // round.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 for (p = buffer; p < buffer + len; p += l)
5087 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02005088 l = MB_CPTR2LEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 if (l == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01005090 l = 1; // NUL byte?
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 else if (MB_BYTE2LEN(*p) != l)
5092 break;
5093 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01005094 if (p == buffer) // no complete character
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005096 // avoid getting stuck at an illegal byte
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097 if (len >= 12)
5098 ++p;
5099 else
5100 {
5101 buffer_off = len;
5102 continue;
5103 }
5104 }
5105 c = *p;
5106 *p = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01005107 msg_puts((char *)buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005108 if (p < buffer + len)
5109 {
5110 *p = c;
5111 buffer_off = (buffer + len) - p;
5112 mch_memmove(buffer, p, buffer_off);
5113 continue;
5114 }
5115 buffer_off = 0;
5116 }
5117 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 {
5119 buffer[len] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01005120 msg_puts((char *)buffer);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005121 }
5122
5123 windgoto(msg_row, msg_col);
5124 cursor_on();
5125 out_flush();
5126 if (got_int)
5127 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005128
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005129# ifdef ELAPSED_FUNC
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005130 if (wait_pid == 0)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005131 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005132 long msec = ELAPSED_FUNC(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005133
Bram Moolenaar0f873732019-12-05 20:28:46 +01005134 // Avoid that we keep looping here without
5135 // checking for a CTRL-C for a long time. Don't
5136 // break out too often to avoid losing typeahead.
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005137 if (msec > 2000)
5138 {
5139 noread_cnt = 5;
5140 break;
5141 }
5142 }
5143# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 }
5145
Bram Moolenaar0f873732019-12-05 20:28:46 +01005146 // If we already detected the child has finished, continue
5147 // reading output for a short while. Some text may be
5148 // buffered.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005149 if (wait_pid == pid)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005150 {
5151 if (noread_cnt < 5)
5152 continue;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005153 break;
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005154 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005155
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 /*
5157 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00005158 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005159 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005160# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02005161 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005162# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005163 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005164# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005165 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5166 || (wait_pid == pid && WIFEXITED(status)))
5167 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005168 // Don't break the loop yet, try reading more
5169 // characters from "fromshell_fd" first. When using
5170 // pipes there might still be something to read and
5171 // then we'll break the loop at the "break" above.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005173 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005174 else
5175 wait_pid = 0;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005176
Bram Moolenaar95a51352013-03-21 22:53:50 +01005177# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar0f873732019-12-05 20:28:46 +01005178 // Handle any X events, e.g. serving the clipboard.
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005179 clip_update();
5180# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005181 }
5182finished:
5183 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005184 if (options & SHELL_READ)
5185 {
5186 if (ga.ga_len > 0)
5187 {
5188 append_ga_line(&ga);
Bram Moolenaar0f873732019-12-05 20:28:46 +01005189 // remember that the NL was missing
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005190 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005191 }
5192 else
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005193 curbuf->b_no_eol_lnum = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005194 ga_clear(&ga);
5195 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005196
Bram Moolenaar071d4272004-06-13 20:20:40 +00005197 /*
5198 * Give all typeahead that wasn't used back to ui_inchar().
5199 */
5200 if (ta_len)
5201 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005202 State = old_State;
5203 if (toshell_fd >= 0)
5204 close(toshell_fd);
5205 close(fromshell_fd);
5206 }
Bram Moolenaar95a51352013-03-21 22:53:50 +01005207# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005208 else
5209 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005210 long delay_msec = 1;
5211
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005212 /*
5213 * Similar to the loop above, but only handle X events, no
5214 * I/O.
5215 */
5216 for (;;)
5217 {
5218 if (got_int)
5219 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005220 // CTRL-C sends a signal to the child, we ignore it
5221 // ourselves
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005222# ifdef HAVE_SETSID
5223 kill(-pid, SIGINT);
5224# else
5225 kill(0, SIGINT);
5226# endif
5227 got_int = FALSE;
5228 }
5229# ifdef __NeXT__
5230 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
5231# else
5232 wait_pid = waitpid(pid, &status, WNOHANG);
5233# endif
5234 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5235 || (wait_pid == pid && WIFEXITED(status)))
5236 {
5237 wait_pid = pid;
5238 break;
5239 }
5240
Bram Moolenaar0f873732019-12-05 20:28:46 +01005241 // Handle any X events, e.g. serving the clipboard.
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005242 clip_update();
5243
Bram Moolenaar0f873732019-12-05 20:28:46 +01005244 // Wait for 1 to 10 msec. 1 is faster but gives the child
5245 // less time.
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005246 mch_delay(delay_msec, TRUE);
5247 if (++delay_msec > 10)
5248 delay_msec = 10;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005249 }
5250 }
5251# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005252
5253 /*
5254 * Wait until our child has exited.
5255 * Ignore wait() returning pids of other children and returning
5256 * because of some signal like SIGWINCH.
5257 * Don't wait if wait_pid was already set above, indicating the
5258 * child already exited.
5259 */
Bram Moolenaar205b8862011-09-07 15:04:31 +02005260 if (wait_pid != pid)
5261 wait_pid = wait4pid(pid, &status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262
Bram Moolenaar624891f2010-10-13 16:22:09 +02005263# ifdef FEAT_GUI
Bram Moolenaar0f873732019-12-05 20:28:46 +01005264 // Close slave side of pty. Only do this after the child has
5265 // exited, otherwise the child may hang when it tries to write on
5266 // the pty.
Bram Moolenaar624891f2010-10-13 16:22:09 +02005267 if (pty_master_fd >= 0)
5268 close(pty_slave_fd);
5269# endif
5270
Bram Moolenaar0f873732019-12-05 20:28:46 +01005271 // Make sure the child that writes to the external program is
5272 // dead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00005273 if (wpid > 0)
Bram Moolenaar205b8862011-09-07 15:04:31 +02005274 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005275 kill(wpid, SIGKILL);
Bram Moolenaar205b8862011-09-07 15:04:31 +02005276 wait4pid(wpid, NULL);
5277 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005278
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005279# ifdef FEAT_JOB_CHANNEL
5280 --dont_check_job_ended;
5281# endif
5282
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 /*
5284 * Set to raw mode right now, otherwise a CTRL-C after
5285 * catch_signals() will kill Vim.
5286 */
5287 if (tmode == TMODE_RAW)
5288 settmode(TMODE_RAW);
5289 did_settmode = TRUE;
5290 set_signals();
5291
5292 if (WIFEXITED(status))
5293 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005294 // LINTED avoid "bitwise operation on signed value"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005295 retval = WEXITSTATUS(status);
Bram Moolenaar75676462013-01-30 14:55:42 +01005296 if (retval != 0 && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005297 {
5298 if (retval == EXEC_FAILED)
5299 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005300 msg_puts(_("\nCannot execute shell "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005301 msg_outtrans(p_sh);
5302 msg_putchar('\n');
5303 }
5304 else if (!(options & SHELL_SILENT))
5305 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005306 msg_puts(_("\nshell returned "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005307 msg_outnum((long)retval);
5308 msg_putchar('\n');
5309 }
5310 }
5311 }
5312 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01005313 msg_puts(_("\nCommand terminated\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005314 }
5315 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005316
5317error:
5318 if (!did_settmode)
5319 if (tmode == TMODE_RAW)
Bram Moolenaar0f873732019-12-05 20:28:46 +01005320 settmode(TMODE_RAW); // set to raw mode
Bram Moolenaar071d4272004-06-13 20:20:40 +00005321# ifdef FEAT_TITLE
5322 resettitle();
5323# endif
Bram Moolenaar13568252018-03-16 20:46:58 +01005324 vim_free(argv);
5325 vim_free(tofree1);
5326 vim_free(tofree2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005327
5328 return retval;
Bram Moolenaar13568252018-03-16 20:46:58 +01005329}
Bram Moolenaar0f873732019-12-05 20:28:46 +01005330#endif // USE_SYSTEM
Bram Moolenaar13568252018-03-16 20:46:58 +01005331
5332 int
5333mch_call_shell(
5334 char_u *cmd,
Bram Moolenaar0f873732019-12-05 20:28:46 +01005335 int options) // SHELL_*, see vim.h
Bram Moolenaar13568252018-03-16 20:46:58 +01005336{
5337#if defined(FEAT_GUI) && defined(FEAT_TERMINAL)
5338 if (gui.in_use && vim_strchr(p_go, GO_TERMINAL) != NULL)
5339 return mch_call_shell_terminal(cmd, options);
5340#endif
5341#ifdef USE_SYSTEM
5342 return mch_call_shell_system(cmd, options);
5343#else
5344 return mch_call_shell_fork(cmd, options);
5345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005346}
5347
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005348#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005349 void
Bram Moolenaar493359e2018-06-12 20:25:52 +02005350mch_job_start(char **argv, job_T *job, jobopt_T *options, int is_terminal)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005351{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005352 pid_t pid;
Bram Moolenaar0f873732019-12-05 20:28:46 +01005353 int fd_in[2] = {-1, -1}; // for stdin
5354 int fd_out[2] = {-1, -1}; // for stdout
5355 int fd_err[2] = {-1, -1}; // for stderr
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005356 int pty_master_fd = -1;
5357 int pty_slave_fd = -1;
Bram Moolenaar16eb4f82016-02-14 23:02:34 +01005358 channel_T *channel = NULL;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005359 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5360 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5361 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005362 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005363 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5364 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
Bram Moolenaarb2412082017-08-20 18:09:14 +02005365 int use_buffer_for_in = options->jo_io[PART_IN] == JIO_BUFFER;
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005366 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005367 SIGSET_DECL(curset)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005368
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005369 if (use_out_for_err && use_null_for_out)
5370 use_null_for_err = TRUE;
5371
Bram Moolenaar0f873732019-12-05 20:28:46 +01005372 // default is to fail
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005373 job->jv_status = JOB_FAILED;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005374
Bram Moolenaarb2412082017-08-20 18:09:14 +02005375 if (options->jo_pty
5376 && (!(use_file_for_in || use_null_for_in)
Bram Moolenaar59386482019-02-10 22:43:46 +01005377 || !(use_file_for_out || use_null_for_out)
Bram Moolenaarb2412082017-08-20 18:09:14 +02005378 || !(use_out_for_err || use_file_for_err || use_null_for_err)))
Bram Moolenaar59386482019-02-10 22:43:46 +01005379 open_pty(&pty_master_fd, &pty_slave_fd,
5380 &job->jv_tty_out, &job->jv_tty_in);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005381
Bram Moolenaar0f873732019-12-05 20:28:46 +01005382 // TODO: without the channel feature connect the child to /dev/null?
5383 // Open pipes for stdin, stdout, stderr.
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005384 if (use_file_for_in)
5385 {
5386 char_u *fname = options->jo_io_name[PART_IN];
5387
5388 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0);
5389 if (fd_in[0] < 0)
5390 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005391 semsg(_(e_notopen), fname);
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005392 goto failed;
5393 }
5394 }
Bram Moolenaarb2412082017-08-20 18:09:14 +02005395 else
Bram Moolenaar0f873732019-12-05 20:28:46 +01005396 // When writing buffer lines to the input don't use the pty, so that
5397 // the pipe can be closed when all lines were written.
Bram Moolenaarb2412082017-08-20 18:09:14 +02005398 if (!use_null_for_in && (pty_master_fd < 0 || use_buffer_for_in)
5399 && pipe(fd_in) < 0)
5400 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005401
5402 if (use_file_for_out)
5403 {
5404 char_u *fname = options->jo_io_name[PART_OUT];
5405
5406 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
5407 if (fd_out[1] < 0)
5408 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005409 semsg(_(e_notopen), fname);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005410 goto failed;
5411 }
5412 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005413 else if (!use_null_for_out && pty_master_fd < 0 && pipe(fd_out) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005414 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005415
5416 if (use_file_for_err)
5417 {
5418 char_u *fname = options->jo_io_name[PART_ERR];
5419
5420 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
5421 if (fd_err[1] < 0)
5422 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005423 semsg(_(e_notopen), fname);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005424 goto failed;
5425 }
5426 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005427 else if (!use_out_for_err && !use_null_for_err
5428 && pty_master_fd < 0 && pipe(fd_err) < 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005429 goto failed;
5430
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005431 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5432 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005433 if (options->jo_set & JO_CHANNEL)
5434 {
5435 channel = options->jo_channel;
5436 if (channel != NULL)
5437 ++channel->ch_refcount;
5438 }
5439 else
5440 channel = add_channel();
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005441 if (channel == NULL)
5442 goto failed;
Bram Moolenaarf3360612017-10-01 16:21:31 +02005443 if (job->jv_tty_out != NULL)
5444 ch_log(channel, "using pty %s on fd %d",
5445 job->jv_tty_out, pty_master_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005446 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005447
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005448 BLOCK_SIGNALS(&curset);
Bram Moolenaar0f873732019-12-05 20:28:46 +01005449 pid = fork(); // maybe we should use vfork()
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005450 if (pid == -1)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005451 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005452 // failed to fork
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005453 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005454 goto failed;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005455 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005456 if (pid == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005457 {
Bram Moolenaar4694a172016-04-21 14:05:23 +02005458 int null_fd = -1;
5459 int stderr_works = TRUE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005460
Bram Moolenaar0f873732019-12-05 20:28:46 +01005461 // child
5462 reset_signals(); // handle signals normally
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005463 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005464
Bram Moolenaar819524702018-02-27 19:10:00 +01005465# ifdef FEAT_JOB_CHANNEL
5466 if (ch_log_active())
Bram Moolenaar0f873732019-12-05 20:28:46 +01005467 // close the log file in the child
Bram Moolenaar819524702018-02-27 19:10:00 +01005468 ch_logfile((char_u *)"", (char_u *)"");
5469# endif
5470
Bram Moolenaar835dc632016-02-07 14:27:38 +01005471# ifdef HAVE_SETSID
Bram Moolenaar0f873732019-12-05 20:28:46 +01005472 // Create our own process group, so that the child and all its
5473 // children can be kill()ed. Don't do this when using pipes,
5474 // because stdin is not a tty, we would lose /dev/tty.
Bram Moolenaar835dc632016-02-07 14:27:38 +01005475 (void)setsid();
5476# endif
5477
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005478# ifdef FEAT_TERMINAL
5479 if (options->jo_term_rows > 0)
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005480 {
5481 char *term = (char *)T_NAME;
5482
5483#ifdef FEAT_GUI
5484 if (term_is_gui(T_NAME))
Bram Moolenaar0f873732019-12-05 20:28:46 +01005485 // In the GUI 'term' is not what we want, use $TERM.
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005486 term = getenv("TERM");
5487#endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01005488 // Use 'term' or $TERM if it starts with "xterm", otherwise fall
Bram Moolenaar4d5d0df2020-04-14 20:56:31 +02005489 // back to "xterm" or "xterm-color".
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005490 if (term == NULL || *term == NUL || STRNCMP(term, "xterm", 5) != 0)
Bram Moolenaar5ba8d352020-04-05 21:42:12 +02005491 {
Bram Moolenaar5ba8d352020-04-05 21:42:12 +02005492 if (t_colors >= 256)
Bram Moolenaar4d5d0df2020-04-14 20:56:31 +02005493 // TODO: should we check this name is supported?
Bram Moolenaar5ba8d352020-04-05 21:42:12 +02005494 term = "xterm-256color";
Bram Moolenaar4d5d0df2020-04-14 20:56:31 +02005495 else if (t_colors > 16)
5496 term = "xterm-color";
Bram Moolenaar5ba8d352020-04-05 21:42:12 +02005497 else
5498 term = "xterm";
5499 }
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005500 set_child_environment(
5501 (long)options->jo_term_rows,
5502 (long)options->jo_term_cols,
Bram Moolenaar493359e2018-06-12 20:25:52 +02005503 term,
5504 is_terminal);
Bram Moolenaar9a993e32018-04-05 22:15:22 +02005505 }
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005506 else
5507# endif
Bram Moolenaar493359e2018-06-12 20:25:52 +02005508 set_default_child_environment(is_terminal);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005509
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005510 if (options->jo_env != NULL)
5511 {
5512 dict_T *dict = options->jo_env;
5513 hashitem_T *hi;
5514 int todo = (int)dict->dv_hashtab.ht_used;
5515
5516 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
5517 if (!HASHITEM_EMPTY(hi))
5518 {
5519 typval_T *item = &dict_lookup(hi)->di_tv;
5520
Bram Moolenaard155d7a2018-12-21 16:04:21 +01005521 vim_setenv((char_u*)hi->hi_key, tv_get_string(item));
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005522 --todo;
5523 }
5524 }
5525
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005526 if (use_null_for_in || use_null_for_out || use_null_for_err)
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005527 {
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005528 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005529 if (null_fd < 0)
5530 {
5531 perror("opening /dev/null failed");
5532 _exit(OPEN_NULL_FAILED);
5533 }
5534 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005535
Bram Moolenaar223896d2017-08-02 22:33:28 +02005536 if (pty_slave_fd >= 0)
5537 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005538 // push stream discipline modules
Bram Moolenaar1ecc5e42019-01-26 15:12:55 +01005539 setup_slavepty(pty_slave_fd);
Bram Moolenaar223896d2017-08-02 22:33:28 +02005540# ifdef TIOCSCTTY
Bram Moolenaar0f873732019-12-05 20:28:46 +01005541 // Try to become controlling tty (probably doesn't work,
5542 // unless run by root)
Bram Moolenaar223896d2017-08-02 22:33:28 +02005543 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
5544# endif
5545 }
5546
Bram Moolenaar0f873732019-12-05 20:28:46 +01005547 // set up stdin for the child
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005548 close(0);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005549 if (use_null_for_in && null_fd >= 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005550 vim_ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005551 else if (fd_in[0] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005552 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005553 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005554 vim_ignored = dup(fd_in[0]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005555
Bram Moolenaar0f873732019-12-05 20:28:46 +01005556 // set up stderr for the child
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005557 close(2);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005558 if (use_null_for_err && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005559 {
Bram Moolenaar42335f52018-09-13 15:33:43 +02005560 vim_ignored = dup(null_fd);
Bram Moolenaar4694a172016-04-21 14:05:23 +02005561 stderr_works = FALSE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005562 }
5563 else if (use_out_for_err)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005564 vim_ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005565 else if (fd_err[1] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005566 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005567 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005568 vim_ignored = dup(fd_err[1]);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005569
Bram Moolenaar0f873732019-12-05 20:28:46 +01005570 // set up stdout for the child
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005571 close(1);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005572 if (use_null_for_out && null_fd >= 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005573 vim_ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005574 else if (fd_out[1] < 0)
Bram Moolenaar42335f52018-09-13 15:33:43 +02005575 vim_ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005576 else
Bram Moolenaar42335f52018-09-13 15:33:43 +02005577 vim_ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005578
5579 if (fd_in[0] >= 0)
5580 close(fd_in[0]);
5581 if (fd_in[1] >= 0)
5582 close(fd_in[1]);
5583 if (fd_out[0] >= 0)
5584 close(fd_out[0]);
5585 if (fd_out[1] >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005586 close(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005587 if (fd_err[0] >= 0)
5588 close(fd_err[0]);
5589 if (fd_err[1] >= 0)
5590 close(fd_err[1]);
5591 if (pty_master_fd >= 0)
5592 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005593 close(pty_master_fd); // not used in the child
5594 close(pty_slave_fd); // was duped above
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005595 }
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005596
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005597 if (null_fd >= 0)
5598 close(null_fd);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005599
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005600 if (options->jo_cwd != NULL && mch_chdir((char *)options->jo_cwd) != 0)
5601 _exit(EXEC_FAILED);
5602
Bram Moolenaar0f873732019-12-05 20:28:46 +01005603 // See above for type of argv.
Bram Moolenaar835dc632016-02-07 14:27:38 +01005604 execvp(argv[0], argv);
5605
Bram Moolenaar4694a172016-04-21 14:05:23 +02005606 if (stderr_works)
5607 perror("executing job failed");
Bram Moolenaarfae42832017-08-01 22:24:26 +02005608# ifdef EXITFREE
Bram Moolenaar0f873732019-12-05 20:28:46 +01005609 // calling free_all_mem() here causes problems. Ignore valgrind
5610 // reporting possibly leaked memory.
Bram Moolenaarfae42832017-08-01 22:24:26 +02005611# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01005612 _exit(EXEC_FAILED); // exec failed, return failure code
Bram Moolenaar835dc632016-02-07 14:27:38 +01005613 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005614
Bram Moolenaar0f873732019-12-05 20:28:46 +01005615 // parent
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005616 UNBLOCK_SIGNALS(&curset);
5617
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005618 job->jv_pid = pid;
5619 job->jv_status = JOB_STARTED;
Bram Moolenaar0f873732019-12-05 20:28:46 +01005620 job->jv_channel = channel; // ch_refcount was set above
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005621
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005622 if (pty_master_fd >= 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01005623 close(pty_slave_fd); // not used in the parent
5624 // close child stdin, stdout and stderr
Bram Moolenaar819524702018-02-27 19:10:00 +01005625 if (fd_in[0] >= 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005626 close(fd_in[0]);
Bram Moolenaar819524702018-02-27 19:10:00 +01005627 if (fd_out[1] >= 0)
Bram Moolenaare98d1212016-03-08 15:37:41 +01005628 close(fd_out[1]);
Bram Moolenaar819524702018-02-27 19:10:00 +01005629 if (fd_err[1] >= 0)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005630 close(fd_err[1]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005631 if (channel != NULL)
5632 {
Bram Moolenaar652de232019-04-04 20:13:09 +02005633 int in_fd = INVALID_FD;
5634 int out_fd = INVALID_FD;
5635 int err_fd = INVALID_FD;
5636
5637 if (!(use_file_for_in || use_null_for_in))
5638 in_fd = fd_in[1] >= 0 ? fd_in[1] : pty_master_fd;
5639
5640 if (!(use_file_for_out || use_null_for_out))
5641 out_fd = fd_out[0] >= 0 ? fd_out[0] : pty_master_fd;
5642
5643 // When using pty_master_fd only set it for stdout, do not duplicate
5644 // it for stderr, it only needs to be read once.
5645 if (!(use_out_for_err || use_file_for_err || use_null_for_err))
5646 {
5647 if (fd_err[0] >= 0)
5648 err_fd = fd_err[0];
5649 else if (out_fd != pty_master_fd)
5650 err_fd = pty_master_fd;
5651 }
Bram Moolenaar4e9d4432018-04-24 20:54:07 +02005652
5653 channel_set_pipes(channel, in_fd, out_fd, err_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005654 channel_set_job(channel, job, options);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005655 }
Bram Moolenaar979e8c52017-08-01 15:08:07 +02005656 else
5657 {
5658 if (fd_in[1] >= 0)
5659 close(fd_in[1]);
5660 if (fd_out[0] >= 0)
5661 close(fd_out[0]);
5662 if (fd_err[0] >= 0)
5663 close(fd_err[0]);
5664 if (pty_master_fd >= 0)
5665 close(pty_master_fd);
5666 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005667
Bram Moolenaar0f873732019-12-05 20:28:46 +01005668 // success!
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005669 return;
5670
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005671failed:
Bram Moolenaarde279892016-03-11 22:19:44 +01005672 channel_unref(channel);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005673 if (fd_in[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005674 close(fd_in[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005675 if (fd_in[1] >= 0)
5676 close(fd_in[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005677 if (fd_out[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005678 close(fd_out[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005679 if (fd_out[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005680 close(fd_out[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005681 if (fd_err[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005682 close(fd_err[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005683 if (fd_err[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005684 close(fd_err[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005685 if (pty_master_fd >= 0)
5686 close(pty_master_fd);
5687 if (pty_slave_fd >= 0)
5688 close(pty_slave_fd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005689}
5690
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005691 static char_u *
5692get_signal_name(int sig)
5693{
5694 int i;
5695 char_u numbuf[NUMBUFLEN];
5696
5697 if (sig == SIGKILL)
5698 return vim_strsave((char_u *)"kill");
5699
5700 for (i = 0; signal_info[i].sig != -1; i++)
5701 if (sig == signal_info[i].sig)
5702 return strlow_save((char_u *)signal_info[i].name);
5703
5704 vim_snprintf((char *)numbuf, NUMBUFLEN, "%d", sig);
5705 return vim_strsave(numbuf);
5706}
5707
Bram Moolenaar835dc632016-02-07 14:27:38 +01005708 char *
5709mch_job_status(job_T *job)
5710{
5711# ifdef HAVE_UNION_WAIT
5712 union wait status;
5713# else
5714 int status = -1;
5715# endif
5716 pid_t wait_pid = 0;
5717
5718# ifdef __NeXT__
5719 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0);
5720# else
5721 wait_pid = waitpid(job->jv_pid, &status, WNOHANG);
5722# endif
5723 if (wait_pid == -1)
5724 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005725 // process must have exited
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005726 if (job->jv_status < JOB_ENDED)
5727 ch_log(job->jv_channel, "Job no longer exists: %s",
5728 strerror(errno));
Bram Moolenaar97792de2016-10-15 18:36:49 +02005729 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005730 }
5731 if (wait_pid == 0)
5732 return "run";
5733 if (WIFEXITED(status))
5734 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01005735 // LINTED avoid "bitwise operation on signed value"
Bram Moolenaar835dc632016-02-07 14:27:38 +01005736 job->jv_exitval = WEXITSTATUS(status);
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005737 if (job->jv_status < JOB_ENDED)
5738 ch_log(job->jv_channel, "Job exited with %d", job->jv_exitval);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005739 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005740 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005741 if (WIFSIGNALED(status))
5742 {
5743 job->jv_exitval = -1;
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005744 job->jv_termsig = get_signal_name(WTERMSIG(status));
5745 if (job->jv_status < JOB_ENDED && job->jv_termsig != NULL)
5746 ch_log(job->jv_channel, "Job terminated by signal \"%s\"",
5747 job->jv_termsig);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005748 goto return_dead;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005749 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01005750 return "run";
Bram Moolenaar97792de2016-10-15 18:36:49 +02005751
5752return_dead:
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005753 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005754 job->jv_status = JOB_ENDED;
Bram Moolenaar97792de2016-10-15 18:36:49 +02005755 return "dead";
5756}
5757
5758 job_T *
5759mch_detect_ended_job(job_T *job_list)
5760{
5761# ifdef HAVE_UNION_WAIT
5762 union wait status;
5763# else
5764 int status = -1;
5765# endif
5766 pid_t wait_pid = 0;
5767 job_T *job;
5768
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005769# ifndef USE_SYSTEM
Bram Moolenaar0f873732019-12-05 20:28:46 +01005770 // Do not do this when waiting for a shell command to finish, we would get
5771 // the exit value here (and discard it), the exit value obtained there
5772 // would then be wrong.
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005773 if (dont_check_job_ended > 0)
5774 return NULL;
5775# endif
5776
Bram Moolenaar97792de2016-10-15 18:36:49 +02005777# ifdef __NeXT__
5778 wait_pid = wait4(-1, &status, WNOHANG, (struct rusage *)0);
5779# else
5780 wait_pid = waitpid(-1, &status, WNOHANG);
5781# endif
5782 if (wait_pid <= 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01005783 // no process ended
Bram Moolenaar97792de2016-10-15 18:36:49 +02005784 return NULL;
5785 for (job = job_list; job != NULL; job = job->jv_next)
5786 {
5787 if (job->jv_pid == wait_pid)
5788 {
5789 if (WIFEXITED(status))
Bram Moolenaar0f873732019-12-05 20:28:46 +01005790 // LINTED avoid "bitwise operation on signed value"
Bram Moolenaar97792de2016-10-15 18:36:49 +02005791 job->jv_exitval = WEXITSTATUS(status);
5792 else if (WIFSIGNALED(status))
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005793 {
Bram Moolenaar97792de2016-10-15 18:36:49 +02005794 job->jv_exitval = -1;
Bram Moolenaarb3051ce2019-01-31 15:52:11 +01005795 job->jv_termsig = get_signal_name(WTERMSIG(status));
5796 }
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005797 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005798 {
5799 ch_log(job->jv_channel, "Job ended");
5800 job->jv_status = JOB_ENDED;
5801 }
5802 return job;
5803 }
5804 }
5805 return NULL;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005806}
5807
Bram Moolenaar3a117e12016-10-30 21:57:52 +01005808/*
5809 * Send a (deadly) signal to "job".
5810 * Return FAIL if "how" is not a valid name.
5811 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01005812 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005813mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005814{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005815 int sig = -1;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005816
Bram Moolenaar923d9262016-02-25 20:56:01 +01005817 if (*how == NUL || STRCMP(how, "term") == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005818 sig = SIGTERM;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005819 else if (STRCMP(how, "hup") == 0)
5820 sig = SIGHUP;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005821 else if (STRCMP(how, "quit") == 0)
5822 sig = SIGQUIT;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005823 else if (STRCMP(how, "int") == 0)
5824 sig = SIGINT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005825 else if (STRCMP(how, "kill") == 0)
5826 sig = SIGKILL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02005827#ifdef SIGWINCH
5828 else if (STRCMP(how, "winch") == 0)
5829 sig = SIGWINCH;
5830#endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005831 else if (isdigit(*how))
5832 sig = atoi((char *)how);
5833 else
5834 return FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005835
Bram Moolenaar76ab4fd2018-12-08 14:39:05 +01005836 // Never kill ourselves!
5837 if (job->jv_pid != 0)
5838 {
5839 // TODO: have an option to only kill the process, not the group?
5840 kill(-job->jv_pid, sig);
5841 kill(job->jv_pid, sig);
5842 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005843
Bram Moolenaar835dc632016-02-07 14:27:38 +01005844 return OK;
5845}
Bram Moolenaar76467df2016-02-12 19:30:26 +01005846
5847/*
5848 * Clear the data related to "job".
5849 */
5850 void
5851mch_clear_job(job_T *job)
5852{
Bram Moolenaar0f873732019-12-05 20:28:46 +01005853 // call waitpid because child process may become zombie
Bram Moolenaar76467df2016-02-12 19:30:26 +01005854# ifdef __NeXT__
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005855 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005856# else
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005857 (void)waitpid(job->jv_pid, NULL, WNOHANG);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005858# endif
5859}
Bram Moolenaar835dc632016-02-07 14:27:38 +01005860#endif
5861
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005862#if defined(FEAT_TERMINAL) || defined(PROTO)
5863 int
5864mch_create_pty_channel(job_T *job, jobopt_T *options)
5865{
5866 int pty_master_fd = -1;
5867 int pty_slave_fd = -1;
5868 channel_T *channel;
5869
Bram Moolenaar59386482019-02-10 22:43:46 +01005870 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_out, &job->jv_tty_in);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005871 close(pty_slave_fd);
5872
5873 channel = add_channel();
5874 if (channel == NULL)
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005875 {
5876 close(pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005877 return FAIL;
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005878 }
Bram Moolenaarf3360612017-10-01 16:21:31 +02005879 if (job->jv_tty_out != NULL)
5880 ch_log(channel, "using pty %s on fd %d",
5881 job->jv_tty_out, pty_master_fd);
Bram Moolenaar0f873732019-12-05 20:28:46 +01005882 job->jv_channel = channel; // ch_refcount was set by add_channel()
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005883 channel->ch_keep_open = TRUE;
5884
Bram Moolenaar0f873732019-12-05 20:28:46 +01005885 // Only set the pty_master_fd for stdout, do not duplicate it for stderr,
5886 // it only needs to be read once.
Bram Moolenaarb0b98d52018-05-05 21:01:00 +02005887 channel_set_pipes(channel, pty_master_fd, pty_master_fd, INVALID_FD);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005888 channel_set_job(channel, job, options);
5889 return OK;
5890}
5891#endif
5892
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893/*
5894 * Check for CTRL-C typed by reading all available characters.
5895 * In cooked mode we should get SIGINT, no need to check.
5896 */
5897 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005898mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005900 if ((curr_tmode == TMODE_RAW || force)
5901 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 fill_input_buf(FALSE);
5903}
5904
5905/*
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005906 * Wait "msec" msec until a character is available from the mouse, keyboard,
5907 * from inbuf[].
5908 * "msec" == -1 will block forever.
5909 * Invokes timer callbacks when needed.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005910 * When "ignore_input" is TRUE even check for pending input when input is
5911 * already available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005912 * "interrupted" (if not NULL) is set to TRUE when no character is available
5913 * but something else needs to be done.
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005914 * Returns TRUE when a character is available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005915 * When a GUI is being used, this will never get called -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005916 */
5917 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005918WaitForChar(long msec, int *interrupted, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919{
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005920#ifdef FEAT_TIMERS
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01005921 return ui_wait_for_chars_or_timer(
5922 msec, WaitForCharOrMouse, interrupted, ignore_input) == OK;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005923#else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005924 return WaitForCharOrMouse(msec, interrupted, ignore_input);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005925#endif
5926}
5927
5928/*
5929 * Wait "msec" msec until a character is available from the mouse or keyboard
5930 * or from inbuf[].
5931 * "msec" == -1 will block forever.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005932 * for "ignore_input" see WaitForCharOr().
Bram Moolenaarcda77642016-06-04 13:32:35 +02005933 * "interrupted" (if not NULL) is set to TRUE when no character is available
5934 * but something else needs to be done.
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005935 * When a GUI is being used, this will never get called -- webb
5936 */
5937 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005938WaitForCharOrMouse(long msec, int *interrupted, int ignore_input)
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005939{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940#ifdef FEAT_MOUSE_GPM
5941 int gpm_process_wanted;
5942#endif
5943#ifdef FEAT_XCLIPBOARD
5944 int rest;
5945#endif
5946 int avail;
5947
Bram Moolenaar0f873732019-12-05 20:28:46 +01005948 if (!ignore_input && input_available()) // something in inbuf[]
Bram Moolenaar071d4272004-06-13 20:20:40 +00005949 return 1;
5950
5951#if defined(FEAT_MOUSE_DEC)
Bram Moolenaar0f873732019-12-05 20:28:46 +01005952 // May need to query the mouse position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953 if (WantQueryMouse)
5954 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005955 WantQueryMouse = FALSE;
Bram Moolenaar92fd5992019-05-02 23:00:22 +02005956 if (!no_query_mouse_for_testing)
5957 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005958 }
5959#endif
5960
5961 /*
5962 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
5963 * events. This is a bit complicated, because they might both be defined.
5964 */
5965#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
5966# ifdef FEAT_XCLIPBOARD
5967 rest = 0;
5968 if (do_xterm_trace())
5969 rest = msec;
5970# endif
5971 do
5972 {
5973# ifdef FEAT_XCLIPBOARD
5974 if (rest != 0)
5975 {
5976 msec = XT_TRACE_DELAY;
5977 if (rest >= 0 && rest < XT_TRACE_DELAY)
5978 msec = rest;
5979 if (rest >= 0)
5980 rest -= msec;
5981 }
5982# endif
Bram Moolenaar28e67e02019-08-15 23:05:49 +02005983# ifdef FEAT_SOUND_CANBERRA
5984 // Invoke any pending sound callbacks.
5985 if (has_sound_callback_in_queue())
5986 invoke_sound_callback();
5987# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005988# ifdef FEAT_MOUSE_GPM
5989 gpm_process_wanted = 0;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005990 avail = RealWaitForChar(read_cmd_fd, msec,
Bram Moolenaarcda77642016-06-04 13:32:35 +02005991 &gpm_process_wanted, interrupted);
Bram Moolenaarb5432d82019-08-30 19:28:25 +02005992 if (!avail && !gpm_process_wanted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005993# else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005994 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005995 if (!avail)
Bram Moolenaarb5432d82019-08-30 19:28:25 +02005996# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005998 if (!ignore_input && input_available())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 return 1;
6000# ifdef FEAT_XCLIPBOARD
6001 if (rest == 0 || !do_xterm_trace())
6002# endif
6003 break;
6004 }
6005 }
6006 while (FALSE
6007# ifdef FEAT_MOUSE_GPM
6008 || (gpm_process_wanted && mch_gpm_process() == 0)
6009# endif
6010# ifdef FEAT_XCLIPBOARD
6011 || (!avail && rest != 0)
6012# endif
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01006013 )
6014 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015
6016#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02006017 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006018#endif
6019 return avail;
6020}
6021
Bram Moolenaar4ffa0702013-12-11 17:12:37 +01006022#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023/*
6024 * Wait "msec" msec until a character is available from file descriptor "fd".
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006025 * "msec" == 0 will check for characters once.
6026 * "msec" == -1 will block until a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006027 * When a GUI is being used, this will not be used for input -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00006028 * Or when a Linux GPM mouse event is waiting.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006029 * Or when a clientserver message is on the queue.
Bram Moolenaarcda77642016-06-04 13:32:35 +02006030 * "interrupted" (if not NULL) is set to TRUE when no character is available
6031 * but something else needs to be done.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006033#if defined(__BEOS__)
6034 int
6035#else
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006036 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006038RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006039{
6040 int ret;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006041 int result;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006042#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 static int busy = FALSE;
6044
Bram Moolenaar0f873732019-12-05 20:28:46 +01006045 // May retry getting characters after an event was handled.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046# define MAY_LOOP
6047
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006048# ifdef ELAPSED_FUNC
Bram Moolenaar0f873732019-12-05 20:28:46 +01006049 // Remember at what time we started, so that we know how much longer we
6050 // should wait after being interrupted.
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01006051 long start_msec = msec;
6052 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02006054 if (msec > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006055 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006056# endif
6057
Bram Moolenaar0f873732019-12-05 20:28:46 +01006058 // Handle being called recursively. This may happen for the session
6059 // manager stuff, it may save the file, which does a breakcheck.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006060 if (busy)
6061 return 0;
6062#endif
6063
6064#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00006065 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006066#endif
6067 {
6068#ifdef MAY_LOOP
Bram Moolenaar0f873732019-12-05 20:28:46 +01006069 int finished = TRUE; // default is to 'loop' just once
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006070# ifdef FEAT_MZSCHEME
6071 int mzquantum_used = FALSE;
6072# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073#endif
6074#ifndef HAVE_SELECT
Bram Moolenaar0f873732019-12-05 20:28:46 +01006075 // each channel may use in, out and err
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006076 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077 int nfd;
6078# ifdef FEAT_XCLIPBOARD
6079 int xterm_idx = -1;
6080# endif
6081# ifdef FEAT_MOUSE_GPM
6082 int gpm_idx = -1;
6083# endif
6084# ifdef USE_XSMP
6085 int xsmp_idx = -1;
6086# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006087 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006088
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006089# ifdef FEAT_MZSCHEME
6090 mzvim_check_threads();
6091 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6092 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006093 towait = (int)p_mzq; // don't wait longer than 'mzquantum'
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006094 mzquantum_used = TRUE;
6095 }
6096# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006097 fds[0].fd = fd;
6098 fds[0].events = POLLIN;
6099 nfd = 1;
6100
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006102 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103 if (xterm_Shell != (Widget)0)
6104 {
6105 xterm_idx = nfd;
6106 fds[nfd].fd = ConnectionNumber(xterm_dpy);
6107 fds[nfd].events = POLLIN;
6108 nfd++;
6109 }
6110# endif
6111# ifdef FEAT_MOUSE_GPM
6112 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6113 {
6114 gpm_idx = nfd;
6115 fds[nfd].fd = gpm_fd;
6116 fds[nfd].events = POLLIN;
6117 nfd++;
6118 }
6119# endif
6120# ifdef USE_XSMP
6121 if (xsmp_icefd != -1)
6122 {
6123 xsmp_idx = nfd;
6124 fds[nfd].fd = xsmp_icefd;
6125 fds[nfd].events = POLLIN;
6126 nfd++;
6127 }
6128# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006129#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006130 nfd = channel_poll_setup(nfd, &fds, &towait);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006131#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006132 if (interrupted != NULL)
6133 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006135 ret = poll(fds, nfd, towait);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006136
6137 result = ret > 0 && (fds[0].revents & POLLIN);
Bram Moolenaarcda77642016-06-04 13:32:35 +02006138 if (result == 0 && interrupted != NULL && ret > 0)
6139 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006140
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006141# ifdef FEAT_MZSCHEME
6142 if (ret == 0 && mzquantum_used)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006143 // MzThreads scheduling is required and timeout occurred
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006144 finished = FALSE;
6145# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146
Bram Moolenaar071d4272004-06-13 20:20:40 +00006147# ifdef FEAT_XCLIPBOARD
6148 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
6149 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006150 xterm_update(); // Maybe we should hand out clipboard
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151 if (--ret == 0 && !input_available())
Bram Moolenaar0f873732019-12-05 20:28:46 +01006152 // Try again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 finished = FALSE;
6154 }
6155# endif
6156# ifdef FEAT_MOUSE_GPM
6157 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006158 *check_for_gpm = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006159# endif
6160# ifdef USE_XSMP
6161 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
6162 {
6163 if (fds[xsmp_idx].revents & POLLIN)
6164 {
6165 busy = TRUE;
6166 xsmp_handle_requests();
6167 busy = FALSE;
6168 }
6169 else if (fds[xsmp_idx].revents & POLLHUP)
6170 {
6171 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006172 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006173 xsmp_close();
6174 }
6175 if (--ret == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006176 finished = FALSE; // Try again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006177 }
6178# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006179#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar2c519cf2019-03-21 21:45:34 +01006180 // also call when ret == 0, we may be polling a keep-open channel
Bram Moolenaarf3360612017-10-01 16:21:31 +02006181 if (ret >= 0)
Bram Moolenaar2c519cf2019-03-21 21:45:34 +01006182 channel_poll_check(ret, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006183#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006184
Bram Moolenaar0f873732019-12-05 20:28:46 +01006185#else // HAVE_SELECT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006186
6187 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006188 struct timeval *tvp;
Bram Moolenaar61fb8d82018-11-12 21:45:08 +01006189 // These are static because they can take 8 Kbyte each and cause the
6190 // signal stack to run out with -O3.
6191 static fd_set rfds, wfds, efds;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006192 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006193 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006195# ifdef FEAT_MZSCHEME
6196 mzvim_check_threads();
6197 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6198 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006199 towait = p_mzq; // don't wait longer than 'mzquantum'
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006200 mzquantum_used = TRUE;
6201 }
6202# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006203
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006204 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006205 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006206 tv.tv_sec = towait / 1000;
6207 tv.tv_usec = (towait % 1000) * (1000000/1000);
6208 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006209 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006210 else
6211 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006212
6213 /*
6214 * Select on ready for reading and exceptional condition (end of file).
6215 */
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006216select_eintr:
6217 FD_ZERO(&rfds);
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006218 FD_ZERO(&wfds);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006219 FD_ZERO(&efds);
6220 FD_SET(fd, &rfds);
6221# if !defined(__QNX__) && !defined(__CYGWIN32__)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006222 // For QNX select() always returns 1 if this is set. Why?
Bram Moolenaar071d4272004-06-13 20:20:40 +00006223 FD_SET(fd, &efds);
6224# endif
6225 maxfd = fd;
6226
Bram Moolenaar071d4272004-06-13 20:20:40 +00006227# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006228 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006229 if (xterm_Shell != (Widget)0)
6230 {
6231 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
6232 if (maxfd < ConnectionNumber(xterm_dpy))
6233 maxfd = ConnectionNumber(xterm_dpy);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006234
Bram Moolenaar0f873732019-12-05 20:28:46 +01006235 // An event may have already been read but not handled. In
6236 // particularly, XFlush may cause this.
Bram Moolenaardd82d692012-08-15 17:26:57 +02006237 xterm_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238 }
6239# endif
6240# ifdef FEAT_MOUSE_GPM
6241 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6242 {
6243 FD_SET(gpm_fd, &rfds);
6244 FD_SET(gpm_fd, &efds);
6245 if (maxfd < gpm_fd)
6246 maxfd = gpm_fd;
6247 }
6248# endif
6249# ifdef USE_XSMP
6250 if (xsmp_icefd != -1)
6251 {
6252 FD_SET(xsmp_icefd, &rfds);
6253 FD_SET(xsmp_icefd, &efds);
6254 if (maxfd < xsmp_icefd)
6255 maxfd = xsmp_icefd;
6256 }
6257# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006258# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006259 maxfd = channel_select_setup(maxfd, &rfds, &wfds, &tv, &tvp);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006260# endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006261 if (interrupted != NULL)
6262 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263
Bram Moolenaar643b6142018-09-12 20:29:09 +02006264 ret = select(maxfd + 1, SELECT_TYPE_ARG234 &rfds,
6265 SELECT_TYPE_ARG234 &wfds, SELECT_TYPE_ARG234 &efds, tvp);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006266 result = ret > 0 && FD_ISSET(fd, &rfds);
6267 if (result)
6268 --ret;
Bram Moolenaarcda77642016-06-04 13:32:35 +02006269 else if (interrupted != NULL && ret > 0)
6270 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006271
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006272# ifdef EINTR
6273 if (ret == -1 && errno == EINTR)
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006274 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006275 // Check whether window has been resized, EINTR may be caused by
6276 // SIGWINCH.
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006277 if (do_resize)
6278 handle_resize();
6279
Bram Moolenaar0f873732019-12-05 20:28:46 +01006280 // Interrupted by a signal, need to try again. We ignore msec
6281 // here, because we do want to check even after a timeout if
6282 // characters are available. Needed for reading output of an
6283 // external command after the process has finished.
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006284 goto select_eintr;
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006285 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006286# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00006287# ifdef __TANDEM
6288 if (ret == -1 && errno == ENOTSUP)
6289 {
6290 FD_ZERO(&rfds);
6291 FD_ZERO(&efds);
6292 ret = 0;
6293 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006294# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006295# ifdef FEAT_MZSCHEME
6296 if (ret == 0 && mzquantum_used)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006297 // loop if MzThreads must be scheduled and timeout occurred
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006298 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006299# endif
6300
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301# ifdef FEAT_XCLIPBOARD
6302 if (ret > 0 && xterm_Shell != (Widget)0
6303 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
6304 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006305 xterm_update(); // Maybe we should hand out clipboard
6306 // continue looping when we only got the X event and the input
6307 // buffer is empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00006308 if (--ret == 0 && !input_available())
6309 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006310 // Try again
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311 finished = FALSE;
6312 }
6313 }
6314# endif
6315# ifdef FEAT_MOUSE_GPM
6316 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
6317 {
6318 if (FD_ISSET(gpm_fd, &efds))
6319 gpm_close();
6320 else if (FD_ISSET(gpm_fd, &rfds))
6321 *check_for_gpm = 1;
6322 }
6323# endif
6324# ifdef USE_XSMP
6325 if (ret > 0 && xsmp_icefd != -1)
6326 {
6327 if (FD_ISSET(xsmp_icefd, &efds))
6328 {
6329 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01006330 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006331 xsmp_close();
6332 if (--ret == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006333 finished = FALSE; // keep going if event was only one
Bram Moolenaar071d4272004-06-13 20:20:40 +00006334 }
6335 else if (FD_ISSET(xsmp_icefd, &rfds))
6336 {
6337 busy = TRUE;
6338 xsmp_handle_requests();
6339 busy = FALSE;
6340 if (--ret == 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006341 finished = FALSE; // keep going if event was only one
Bram Moolenaar071d4272004-06-13 20:20:40 +00006342 }
6343 }
6344# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006345#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar0f873732019-12-05 20:28:46 +01006346 // also call when ret == 0, we may be polling a keep-open channel
Bram Moolenaarf3360612017-10-01 16:21:31 +02006347 if (ret >= 0)
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006348 ret = channel_select_check(ret, &rfds, &wfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006349#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006350
Bram Moolenaar0f873732019-12-05 20:28:46 +01006351#endif // HAVE_SELECT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006352
6353#ifdef MAY_LOOP
6354 if (finished || msec == 0)
6355 break;
6356
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006357# ifdef FEAT_CLIENTSERVER
6358 if (server_waiting())
6359 break;
6360# endif
6361
Bram Moolenaar0f873732019-12-05 20:28:46 +01006362 // We're going to loop around again, find out for how long
Bram Moolenaar071d4272004-06-13 20:20:40 +00006363 if (msec > 0)
6364 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006365# ifdef ELAPSED_FUNC
Bram Moolenaar0f873732019-12-05 20:28:46 +01006366 // Compute remaining wait time.
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006367 msec = start_msec - ELAPSED_FUNC(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368# else
Bram Moolenaar0f873732019-12-05 20:28:46 +01006369 // Guess we got interrupted halfway.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006370 msec = msec / 2;
6371# endif
6372 if (msec <= 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006373 break; // waited long enough
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 }
6375#endif
6376 }
6377
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006378 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379}
6380
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381/*
Bram Moolenaar02743632005-07-25 20:42:36 +00006382 * Expand a path into all matching files and/or directories. Handles "*",
6383 * "?", "[a-z]", "**", etc.
6384 * "path" has backslashes before chars that are not to be expanded.
6385 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006386 */
6387 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006388mch_expandpath(
6389 garray_T *gap,
6390 char_u *path,
Bram Moolenaar0f873732019-12-05 20:28:46 +01006391 int flags) // EW_* flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00006392{
Bram Moolenaar02743632005-07-25 20:42:36 +00006393 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395
6396/*
6397 * mch_expand_wildcards() - this code does wild-card pattern matching using
6398 * the shell
6399 *
6400 * return OK for success, FAIL for error (you may lose some memory) and put
6401 * an error message in *file.
6402 *
6403 * num_pat is number of input patterns
6404 * pat is array of pointers to input patterns
6405 * num_file is pointer to number of matched file names
6406 * file is pointer to array of pointers to matched file names
6407 */
6408
6409#ifndef SEEK_SET
6410# define SEEK_SET 0
6411#endif
6412#ifndef SEEK_END
6413# define SEEK_END 2
6414#endif
6415
Bram Moolenaar5555acc2006-04-07 21:33:12 +00006416#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00006417
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006419mch_expand_wildcards(
6420 int num_pat,
6421 char_u **pat,
6422 int *num_file,
6423 char_u ***file,
Bram Moolenaar0f873732019-12-05 20:28:46 +01006424 int flags) // EW_* flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425{
6426 int i;
6427 size_t len;
Bram Moolenaar85325f82017-03-30 21:18:45 +02006428 long llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 char_u *p;
6430 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006431
Bram Moolenaarc7247912008-01-13 12:54:11 +00006432 /*
6433 * This is the non-OS/2 implementation (really Unix).
6434 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006435 int j;
6436 char_u *tempname;
6437 char_u *command;
6438 FILE *fd;
6439 char_u *buffer;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006440#define STYLE_ECHO 0 // use "echo", the default
6441#define STYLE_GLOB 1 // use "glob", for csh
6442#define STYLE_VIMGLOB 2 // use "vimglob", for Posix sh
6443#define STYLE_PRINT 3 // use "print -N", for zsh
6444#define STYLE_BT 4 // `cmd` expansion, execute the pattern
6445 // directly
Bram Moolenaar071d4272004-06-13 20:20:40 +00006446 int shell_style = STYLE_ECHO;
6447 int check_spaces;
6448 static int did_find_nul = FALSE;
Bram Moolenaarbdace832019-03-02 10:13:42 +01006449 int ampersand = FALSE;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006450 // vimglob() function to define for Posix shell
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006451 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006452
Bram Moolenaar0f873732019-12-05 20:28:46 +01006453 *num_file = 0; // default: no files found
Bram Moolenaar071d4272004-06-13 20:20:40 +00006454 *file = NULL;
6455
6456 /*
6457 * If there are no wildcards, just copy the names to allocated memory.
6458 * Saves a lot of time, because we don't have to start a new shell.
6459 */
6460 if (!have_wildcard(num_pat, pat))
6461 return save_patterns(num_pat, pat, num_file, file);
6462
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006463# ifdef HAVE_SANDBOX
Bram Moolenaar0f873732019-12-05 20:28:46 +01006464 // Don't allow any shell command in the sandbox.
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006465 if (sandbox != 0 && check_secure())
6466 return FAIL;
6467# endif
6468
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469 /*
6470 * Don't allow the use of backticks in secure and restricted mode.
6471 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006472 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006473 for (i = 0; i < num_pat; ++i)
6474 if (vim_strchr(pat[i], '`') != NULL
6475 && (check_restricted() || check_secure()))
6476 return FAIL;
6477
6478 /*
6479 * get a name for the temp file
6480 */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02006481 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006482 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006483 emsg(_(e_notmp));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006484 return FAIL;
6485 }
6486
6487 /*
6488 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00006489 * file.
6490 * STYLE_BT: NL separated
6491 * If expanding `cmd` execute it directly.
6492 * STYLE_GLOB: NUL separated
6493 * If we use *csh, "glob" will work better than "echo".
6494 * STYLE_PRINT: NL or NUL separated
6495 * If we use *zsh, "print -N" will work better than "glob".
6496 * STYLE_VIMGLOB: NL separated
6497 * If we use *sh*, we define "vimglob()".
6498 * STYLE_ECHO: space separated.
6499 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006500 */
6501 if (num_pat == 1 && *pat[0] == '`'
6502 && (len = STRLEN(pat[0])) > 2
6503 && *(pat[0] + len - 1) == '`')
6504 shell_style = STYLE_BT;
6505 else if ((len = STRLEN(p_sh)) >= 3)
6506 {
6507 if (STRCMP(p_sh + len - 3, "csh") == 0)
6508 shell_style = STYLE_GLOB;
6509 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
6510 shell_style = STYLE_PRINT;
6511 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006512 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
6513 "sh") != NULL)
6514 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006515
Bram Moolenaar0f873732019-12-05 20:28:46 +01006516 // Compute the length of the command. We need 2 extra bytes: for the
6517 // optional '&' and for the NUL.
6518 // Worst case: "unset nonomatch; print -N >" plus two is 29
Bram Moolenaar071d4272004-06-13 20:20:40 +00006519 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006520 if (shell_style == STYLE_VIMGLOB)
6521 len += STRLEN(sh_vimglob_func);
6522
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006523 for (i = 0; i < num_pat; ++i)
6524 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006525 // Count the length of the patterns in the same way as they are put in
6526 // "command" below.
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006527#ifdef USE_SYSTEM
Bram Moolenaar0f873732019-12-05 20:28:46 +01006528 len += STRLEN(pat[i]) + 3; // add space and two quotes
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006529#else
Bram Moolenaar0f873732019-12-05 20:28:46 +01006530 ++len; // add space
Bram Moolenaar316059c2006-01-14 21:18:42 +00006531 for (j = 0; pat[i][j] != NUL; ++j)
6532 {
6533 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006534 ++len; // may add a backslash
Bram Moolenaar316059c2006-01-14 21:18:42 +00006535 ++len;
6536 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006537#endif
6538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006539 command = alloc(len);
6540 if (command == NULL)
6541 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006542 // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00006543 vim_free(tempname);
6544 return FAIL;
6545 }
6546
6547 /*
6548 * Build the shell command:
6549 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
6550 * recognizes this).
6551 * - Add the shell command to print the expanded names.
6552 * - Add the temp file name.
6553 * - Add the file name patterns.
6554 */
6555 if (shell_style == STYLE_BT)
6556 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006557 // change `command; command& ` to (command; command )
Bram Moolenaar316059c2006-01-14 21:18:42 +00006558 STRCPY(command, "(");
Bram Moolenaar0f873732019-12-05 20:28:46 +01006559 STRCAT(command, pat[0] + 1); // exclude first backtick
Bram Moolenaar071d4272004-06-13 20:20:40 +00006560 p = command + STRLEN(command) - 1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006561 *p-- = ')'; // remove last backtick
Bram Moolenaar1c465442017-03-12 20:10:05 +01006562 while (p > command && VIM_ISWHITE(*p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563 --p;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006564 if (*p == '&') // remove trailing '&'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006565 {
Bram Moolenaarbdace832019-03-02 10:13:42 +01006566 ampersand = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006567 *p = ' ';
6568 }
6569 STRCAT(command, ">");
6570 }
6571 else
6572 {
6573 if (flags & EW_NOTFOUND)
6574 STRCPY(command, "set nonomatch; ");
6575 else
6576 STRCPY(command, "unset nonomatch; ");
6577 if (shell_style == STYLE_GLOB)
6578 STRCAT(command, "glob >");
6579 else if (shell_style == STYLE_PRINT)
6580 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00006581 else if (shell_style == STYLE_VIMGLOB)
6582 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583 else
6584 STRCAT(command, "echo >");
6585 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006586
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00006588
Bram Moolenaar071d4272004-06-13 20:20:40 +00006589 if (shell_style != STYLE_BT)
6590 for (i = 0; i < num_pat; ++i)
6591 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006592 // When using system() always add extra quotes, because the shell
6593 // is started twice. Otherwise put a backslash before special
6594 // characters, except inside ``.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006595#ifdef USE_SYSTEM
6596 STRCAT(command, " \"");
6597 STRCAT(command, pat[i]);
6598 STRCAT(command, "\"");
6599#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00006600 int intick = FALSE;
6601
Bram Moolenaar071d4272004-06-13 20:20:40 +00006602 p = command + STRLEN(command);
6603 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00006604 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00006605 {
6606 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00006607 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006608 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
6609 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006610 // Remove a backslash, take char literally. But keep
6611 // backslash inside backticks, before a special character
6612 // and before a backtick.
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006613 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00006614 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
6615 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006616 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006617 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006618 }
Bram Moolenaare4df1642014-08-29 12:58:44 +02006619 else if (!intick
6620 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$')
6621 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006622 // Put a backslash before a special character, but not
6623 // when inside ``. And not for $var when EW_KEEPDOLLAR is
6624 // set.
Bram Moolenaar316059c2006-01-14 21:18:42 +00006625 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006626
Bram Moolenaar0f873732019-12-05 20:28:46 +01006627 // Copy one character.
Bram Moolenaar280f1262006-01-30 00:14:18 +00006628 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00006629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006630 *p = NUL;
6631#endif
6632 }
6633 if (flags & EW_SILENT)
6634 show_shell_mess = FALSE;
Bram Moolenaarbdace832019-03-02 10:13:42 +01006635 if (ampersand)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006636 STRCAT(command, "&"); // put the '&' after the redirection
Bram Moolenaar071d4272004-06-13 20:20:40 +00006637
6638 /*
6639 * Using zsh -G: If a pattern has no matches, it is just deleted from
6640 * the argument list, otherwise zsh gives an error message and doesn't
6641 * expand any other pattern.
6642 */
6643 if (shell_style == STYLE_PRINT)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006644 extra_shell_arg = (char_u *)"-G"; // Use zsh NULL_GLOB option
Bram Moolenaar071d4272004-06-13 20:20:40 +00006645
6646 /*
6647 * If we use -f then shell variables set in .cshrc won't get expanded.
6648 * vi can do it, so we will too, but it is only necessary if there is a "$"
6649 * in one of the patterns, otherwise we can still use the fast option.
6650 */
6651 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
Bram Moolenaar0f873732019-12-05 20:28:46 +01006652 extra_shell_arg = (char_u *)"-f"; // Use csh fast option
Bram Moolenaar071d4272004-06-13 20:20:40 +00006653
6654 /*
6655 * execute the shell command
6656 */
6657 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6658
Bram Moolenaar0f873732019-12-05 20:28:46 +01006659 // When running in the background, give it some time to create the temp
6660 // file, but don't wait for it to finish.
Bram Moolenaarbdace832019-03-02 10:13:42 +01006661 if (ampersand)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006662 mch_delay(10L, TRUE);
6663
Bram Moolenaar0f873732019-12-05 20:28:46 +01006664 extra_shell_arg = NULL; // cleanup
Bram Moolenaar071d4272004-06-13 20:20:40 +00006665 show_shell_mess = TRUE;
6666 vim_free(command);
6667
Bram Moolenaar0f873732019-12-05 20:28:46 +01006668 if (i != 0) // mch_call_shell() failed
Bram Moolenaar071d4272004-06-13 20:20:40 +00006669 {
6670 mch_remove(tempname);
6671 vim_free(tempname);
6672 /*
6673 * With interactive completion, the error message is not printed.
6674 * However with USE_SYSTEM, I don't know how to turn off error messages
6675 * from the shell, so screen may still get messed up -- webb.
6676 */
6677#ifndef USE_SYSTEM
6678 if (!(flags & EW_SILENT))
6679#endif
6680 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006681 redraw_later_clear(); // probably messed up screen
6682 msg_putchar('\n'); // clear bottom line quickly
6683 cmdline_row = Rows - 1; // continue on last line
Bram Moolenaar071d4272004-06-13 20:20:40 +00006684#ifdef USE_SYSTEM
6685 if (!(flags & EW_SILENT))
6686#endif
6687 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006688 msg(_(e_wildexpand));
Bram Moolenaar0f873732019-12-05 20:28:46 +01006689 msg_start(); // don't overwrite this message
Bram Moolenaar071d4272004-06-13 20:20:40 +00006690 }
6691 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006692 // If a `cmd` expansion failed, don't list `cmd` as a match, even when
6693 // EW_NOTFOUND is given
Bram Moolenaar071d4272004-06-13 20:20:40 +00006694 if (shell_style == STYLE_BT)
6695 return FAIL;
6696 goto notfound;
6697 }
6698
6699 /*
6700 * read the names from the file into memory
6701 */
6702 fd = fopen((char *)tempname, READBIN);
6703 if (fd == NULL)
6704 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006705 // Something went wrong, perhaps a file name with a special char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006706 if (!(flags & EW_SILENT))
6707 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01006708 msg(_(e_wildexpand));
Bram Moolenaar0f873732019-12-05 20:28:46 +01006709 msg_start(); // don't overwrite this message
Bram Moolenaar071d4272004-06-13 20:20:40 +00006710 }
6711 vim_free(tempname);
6712 goto notfound;
6713 }
6714 fseek(fd, 0L, SEEK_END);
Bram Moolenaar0f873732019-12-05 20:28:46 +01006715 llen = ftell(fd); // get size of temp file
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 fseek(fd, 0L, SEEK_SET);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006717 if (llen < 0)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006718 // just in case ftell() would fail
Bram Moolenaar85325f82017-03-30 21:18:45 +02006719 buffer = NULL;
6720 else
6721 buffer = alloc(llen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006722 if (buffer == NULL)
6723 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006724 // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00006725 mch_remove(tempname);
6726 vim_free(tempname);
6727 fclose(fd);
6728 return FAIL;
6729 }
Bram Moolenaar85325f82017-03-30 21:18:45 +02006730 len = llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006731 i = fread((char *)buffer, 1, len, fd);
6732 fclose(fd);
6733 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00006734 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006736 // unexpected read error
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01006737 semsg(_(e_notread), tempname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738 vim_free(tempname);
6739 vim_free(buffer);
6740 return FAIL;
6741 }
6742 vim_free(tempname);
6743
Bram Moolenaar1eed5322019-02-26 17:03:54 +01006744# ifdef __CYGWIN__
Bram Moolenaar0f873732019-12-05 20:28:46 +01006745 // Translate <CR><NL> into <NL>. Caution, buffer may contain NUL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 p = buffer;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02006747 for (i = 0; i < (int)len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006748 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
6749 *p++ = buffer[i];
6750 len = p - buffer;
6751# endif
6752
6753
Bram Moolenaar0f873732019-12-05 20:28:46 +01006754 // file names are separated with Space
Bram Moolenaar071d4272004-06-13 20:20:40 +00006755 if (shell_style == STYLE_ECHO)
6756 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006757 buffer[len] = '\n'; // make sure the buffer ends in NL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006758 p = buffer;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006759 for (i = 0; *p != '\n'; ++i) // count number of entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760 {
6761 while (*p != ' ' && *p != '\n')
6762 ++p;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006763 p = skipwhite(p); // skip to next entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006764 }
6765 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006766 // file names are separated with NL
Bram Moolenaarc7247912008-01-13 12:54:11 +00006767 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006768 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006769 buffer[len] = NUL; // make sure the buffer ends in NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006770 p = buffer;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006771 for (i = 0; *p != NUL; ++i) // count number of entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00006772 {
6773 while (*p != '\n' && *p != NUL)
6774 ++p;
6775 if (*p != NUL)
6776 ++p;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006777 p = skipwhite(p); // skip leading white space
Bram Moolenaar071d4272004-06-13 20:20:40 +00006778 }
6779 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006780 // file names are separated with NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006781 else
6782 {
6783 /*
6784 * Some versions of zsh use spaces instead of NULs to separate
6785 * results. Only do this when there is no NUL before the end of the
6786 * buffer, otherwise we would never be able to use file names with
6787 * embedded spaces when zsh does use NULs.
6788 * When we found a NUL once, we know zsh is OK, set did_find_nul and
6789 * don't check for spaces again.
6790 */
6791 check_spaces = FALSE;
6792 if (shell_style == STYLE_PRINT && !did_find_nul)
6793 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006794 // If there is a NUL, set did_find_nul, else set check_spaces
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02006795 buffer[len] = NUL;
Bram Moolenaarb011af92013-12-11 13:21:51 +01006796 if (len && (int)STRLEN(buffer) < (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006797 did_find_nul = TRUE;
6798 else
6799 check_spaces = TRUE;
6800 }
6801
6802 /*
6803 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
6804 * already is one, for STYLE_GLOB it needs to be added.
6805 */
6806 if (len && buffer[len - 1] == NUL)
6807 --len;
6808 else
6809 buffer[len] = NUL;
6810 i = 0;
6811 for (p = buffer; p < buffer + len; ++p)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006812 if (*p == NUL || (*p == ' ' && check_spaces)) // count entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006813 {
6814 ++i;
6815 *p = NUL;
6816 }
6817 if (len)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006818 ++i; // count last entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006819 }
6820 if (i == 0)
6821 {
6822 /*
6823 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
6824 * /bin/sh will happily expand it to nothing rather than returning an
6825 * error; and hey, it's good to check anyway -- webb.
6826 */
6827 vim_free(buffer);
6828 goto notfound;
6829 }
6830 *num_file = i;
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006831 *file = ALLOC_MULT(char_u *, i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006832 if (*file == NULL)
6833 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006834 // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00006835 vim_free(buffer);
6836 return FAIL;
6837 }
6838
6839 /*
6840 * Isolate the individual file names.
6841 */
6842 p = buffer;
6843 for (i = 0; i < *num_file; ++i)
6844 {
6845 (*file)[i] = p;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006846 // Space or NL separates
Bram Moolenaarc7247912008-01-13 12:54:11 +00006847 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
6848 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006849 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00006850 while (!(shell_style == STYLE_ECHO && *p == ' ')
6851 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006852 ++p;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006853 if (p == buffer + len) // last entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854 *p = NUL;
6855 else
6856 {
6857 *p++ = NUL;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006858 p = skipwhite(p); // skip to next entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006859 }
6860 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01006861 else // NUL separates
Bram Moolenaar071d4272004-06-13 20:20:40 +00006862 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006863 while (*p && p < buffer + len) // skip entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00006864 ++p;
Bram Moolenaar0f873732019-12-05 20:28:46 +01006865 ++p; // skip NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00006866 }
6867 }
6868
6869 /*
6870 * Move the file names to allocated memory.
6871 */
6872 for (j = 0, i = 0; i < *num_file; ++i)
6873 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01006874 // Require the files to exist. Helps when using /bin/sh
Bram Moolenaar071d4272004-06-13 20:20:40 +00006875 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6876 continue;
6877
Bram Moolenaar0f873732019-12-05 20:28:46 +01006878 // check if this entry should be included
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879 dir = (mch_isdir((*file)[i]));
6880 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6881 continue;
6882
Bram Moolenaar0f873732019-12-05 20:28:46 +01006883 // Skip files that are not executable if we check for that.
Bram Moolenaarb5971142015-03-21 17:32:19 +01006884 if (!dir && (flags & EW_EXEC)
6885 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006886 continue;
6887
Bram Moolenaar964b3742019-05-24 18:54:09 +02006888 p = alloc(STRLEN((*file)[i]) + 1 + dir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006889 if (p)
6890 {
6891 STRCPY(p, (*file)[i]);
6892 if (dir)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006893 add_pathsep(p); // add '/' to a directory name
Bram Moolenaar071d4272004-06-13 20:20:40 +00006894 (*file)[j++] = p;
6895 }
6896 }
6897 vim_free(buffer);
6898 *num_file = j;
6899
Bram Moolenaar0f873732019-12-05 20:28:46 +01006900 if (*num_file == 0) // rejected all entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00006901 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01006902 VIM_CLEAR(*file);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006903 goto notfound;
6904 }
6905
6906 return OK;
6907
6908notfound:
6909 if (flags & EW_NOTFOUND)
6910 return save_patterns(num_pat, pat, num_file, file);
6911 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006912}
6913
Bram Moolenaar0f873732019-12-05 20:28:46 +01006914#endif // VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00006915
Bram Moolenaar071d4272004-06-13 20:20:40 +00006916 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006917save_patterns(
6918 int num_pat,
6919 char_u **pat,
6920 int *num_file,
6921 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006922{
6923 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006924 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006925
Bram Moolenaarc799fe22019-05-28 23:08:19 +02006926 *file = ALLOC_MULT(char_u *, num_pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006927 if (*file == NULL)
6928 return FAIL;
6929 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00006930 {
6931 s = vim_strsave(pat[i]);
6932 if (s != NULL)
Bram Moolenaar0f873732019-12-05 20:28:46 +01006933 // Be compatible with expand_filename(): halve the number of
6934 // backslashes.
Bram Moolenaard8b02732005-01-14 21:48:43 +00006935 backslash_halve(s);
6936 (*file)[i] = s;
6937 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006938 *num_file = num_pat;
6939 return OK;
6940}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006941
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942/*
6943 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
6944 * expand.
6945 */
6946 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006947mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006948{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006949 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006951 if (*p == '\\' && p[1] != NUL)
6952 ++p;
6953 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954 if (vim_strchr((char_u *)
6955#ifdef VMS
6956 "*?%"
6957#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958 "*?[{'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006959#endif
6960 , *p) != NULL)
6961 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006962 }
6963 return FALSE;
6964}
6965
6966/*
6967 * Return TRUE if the string "p" contains a wildcard.
6968 * Don't recognize '~' at the end as a wildcard.
6969 */
6970 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006971mch_has_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 || (*p == '~' && p[1] != NUL))
6986 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006987 }
6988 return FALSE;
6989}
6990
Bram Moolenaar071d4272004-06-13 20:20:40 +00006991 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006992have_wildcard(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006993{
6994 int i;
6995
6996 for (i = 0; i < num; i++)
6997 if (mch_has_wildcard(file[i]))
6998 return 1;
6999 return 0;
7000}
7001
7002 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007003have_dollars(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007004{
7005 int i;
7006
7007 for (i = 0; i < num; i++)
7008 if (vim_strchr(file[i], '$') != NULL)
7009 return TRUE;
7010 return FALSE;
7011}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007012
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01007013#if !defined(HAVE_RENAME) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007014/*
7015 * Scaled-down version of rename(), which is missing in Xenix.
7016 * This version can only move regular files and will fail if the
7017 * destination exists.
7018 */
7019 int
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01007020mch_rename(const char *src, const char *dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007021{
7022 struct stat st;
7023
Bram Moolenaar0f873732019-12-05 20:28:46 +01007024 if (stat(dest, &st) >= 0) // fail if destination exists
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025 return -1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007026 if (link(src, dest) != 0) // link file to new name
Bram Moolenaar071d4272004-06-13 20:20:40 +00007027 return -1;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007028 if (mch_remove(src) == 0) // delete link to old name
Bram Moolenaar071d4272004-06-13 20:20:40 +00007029 return 0;
7030 return -1;
7031}
Bram Moolenaar0f873732019-12-05 20:28:46 +01007032#endif // !HAVE_RENAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00007033
Bram Moolenaar4b8366b2019-05-04 17:34:34 +02007034#if defined(FEAT_MOUSE_GPM) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007035/*
7036 * Initializes connection with gpm (if it isn't already opened)
7037 * Return 1 if succeeded (or connection already opened), 0 if failed
7038 */
7039 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007040gpm_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007041{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007042 static Gpm_Connect gpm_connect; // Must it be kept till closing ?
Bram Moolenaar071d4272004-06-13 20:20:40 +00007043
7044 if (!gpm_flag)
7045 {
7046 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
7047 gpm_connect.defaultMask = ~GPM_HARD;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007048 // Default handling for mouse move
7049 gpm_connect.minMod = 0; // Handle any modifier keys
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 gpm_connect.maxMod = 0xffff;
7051 if (Gpm_Open(&gpm_connect, 0) > 0)
7052 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007053 // gpm library tries to handling TSTP causes
7054 // problems. Anyways, we close connection to Gpm whenever
7055 // we are going to suspend or starting an external process
7056 // so we shouldn't have problem with this
Bram Moolenaar76243bd2009-03-02 01:47:02 +00007057# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007058 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00007059# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007060 return 1; // succeed
Bram Moolenaar071d4272004-06-13 20:20:40 +00007061 }
7062 if (gpm_fd == -2)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007063 Gpm_Close(); // We don't want to talk to xterm via gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00007064 return 0;
7065 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01007066 return 1; // already open
Bram Moolenaar071d4272004-06-13 20:20:40 +00007067}
7068
7069/*
Bram Moolenaar4b8366b2019-05-04 17:34:34 +02007070 * Returns TRUE if the GPM mouse is enabled.
7071 */
7072 int
7073gpm_enabled(void)
7074{
7075 return gpm_flag && gpm_fd >= 0;
7076}
7077
7078/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007079 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00007080 */
7081 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007082gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007083{
Bram Moolenaar4b8366b2019-05-04 17:34:34 +02007084 if (gpm_enabled())
Bram Moolenaar071d4272004-06-13 20:20:40 +00007085 Gpm_Close();
7086}
7087
Bram Moolenaarbedf0912019-05-04 16:58:45 +02007088/*
7089 * Reads gpm event and adds special keys to input buf. Returns length of
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02007091 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00007092 */
7093 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007094mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007095{
7096 int button;
7097 static Gpm_Event gpm_event;
7098 char_u string[6];
7099 int_u vim_modifiers;
7100 int row,col;
7101 unsigned char buttons_mask;
7102 unsigned char gpm_modifiers;
7103 static unsigned char old_buttons = 0;
7104
7105 Gpm_GetEvent(&gpm_event);
7106
7107#ifdef FEAT_GUI
Bram Moolenaar0f873732019-12-05 20:28:46 +01007108 // Don't put events in the input queue now.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109 if (hold_gui_events)
7110 return 0;
7111#endif
7112
7113 row = gpm_event.y - 1;
7114 col = gpm_event.x - 1;
7115
Bram Moolenaar0f873732019-12-05 20:28:46 +01007116 string[0] = ESC; // Our termcode
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 string[1] = 'M';
7118 string[2] = 'G';
7119 switch (GPM_BARE_EVENTS(gpm_event.type))
7120 {
7121 case GPM_DRAG:
7122 string[3] = MOUSE_DRAG;
7123 break;
7124 case GPM_DOWN:
7125 buttons_mask = gpm_event.buttons & ~old_buttons;
7126 old_buttons = gpm_event.buttons;
7127 switch (buttons_mask)
7128 {
7129 case GPM_B_LEFT:
7130 button = MOUSE_LEFT;
7131 break;
7132 case GPM_B_MIDDLE:
7133 button = MOUSE_MIDDLE;
7134 break;
7135 case GPM_B_RIGHT:
7136 button = MOUSE_RIGHT;
7137 break;
7138 default:
7139 return 0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007140 // Don't know what to do. Can more than one button be
7141 // reported in one event?
Bram Moolenaar071d4272004-06-13 20:20:40 +00007142 }
7143 string[3] = (char_u)(button | 0x20);
7144 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
7145 break;
7146 case GPM_UP:
7147 string[3] = MOUSE_RELEASE;
7148 old_buttons &= ~gpm_event.buttons;
7149 break;
7150 default:
7151 return 0;
7152 }
Bram Moolenaar0f873732019-12-05 20:28:46 +01007153 // This code is based on gui_x11_mouse_cb in gui_x11.c
Bram Moolenaar071d4272004-06-13 20:20:40 +00007154 gpm_modifiers = gpm_event.modifiers;
7155 vim_modifiers = 0x0;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007156 // I ignore capslock stats. Aren't we all just hate capslock mixing with
7157 // Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
7158 // K_CAPSSHIFT is defined 8, so it probably isn't even reported
Bram Moolenaar071d4272004-06-13 20:20:40 +00007159 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
7160 vim_modifiers |= MOUSE_SHIFT;
7161
7162 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
7163 vim_modifiers |= MOUSE_CTRL;
7164 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
7165 vim_modifiers |= MOUSE_ALT;
7166 string[3] |= vim_modifiers;
7167 string[4] = (char_u)(col + ' ' + 1);
7168 string[5] = (char_u)(row + ' ' + 1);
7169 add_to_input_buf(string, 6);
7170 return 6;
7171}
Bram Moolenaar0f873732019-12-05 20:28:46 +01007172#endif // FEAT_MOUSE_GPM
Bram Moolenaar071d4272004-06-13 20:20:40 +00007173
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007174#ifdef FEAT_SYSMOUSE
7175/*
7176 * Initialize connection with sysmouse.
7177 * Let virtual console inform us with SIGUSR2 for pending sysmouse
7178 * output, any sysmouse output than will be processed via sig_sysmouse().
7179 * Return OK if succeeded, FAIL if failed.
7180 */
7181 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007182sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007183{
7184 struct mouse_info mouse;
7185
7186 mouse.operation = MOUSE_MODE;
7187 mouse.u.mode.mode = 0;
7188 mouse.u.mode.signal = SIGUSR2;
7189 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
7190 {
7191 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
7192 mouse.operation = MOUSE_SHOW;
7193 ioctl(1, CONS_MOUSECTL, &mouse);
7194 return OK;
7195 }
7196 return FAIL;
7197}
7198
7199/*
7200 * Stop processing SIGUSR2 signals, and also make sure that
7201 * virtual console do not send us any sysmouse related signal.
7202 */
7203 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007204sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007205{
7206 struct mouse_info mouse;
7207
7208 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
7209 mouse.operation = MOUSE_MODE;
7210 mouse.u.mode.mode = 0;
7211 mouse.u.mode.signal = 0;
7212 ioctl(1, CONS_MOUSECTL, &mouse);
7213}
7214
7215/*
7216 * Gets info from sysmouse and adds special keys to input buf.
7217 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007218 static RETSIGTYPE
7219sig_sysmouse SIGDEFARG(sigarg)
7220{
7221 struct mouse_info mouse;
7222 struct video_info video;
7223 char_u string[6];
7224 int row, col;
7225 int button;
7226 int buttons;
7227 static int oldbuttons = 0;
7228
7229#ifdef FEAT_GUI
Bram Moolenaar0f873732019-12-05 20:28:46 +01007230 // Don't put events in the input queue now.
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007231 if (hold_gui_events)
7232 return;
7233#endif
7234
7235 mouse.operation = MOUSE_GETINFO;
7236 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
7237 && ioctl(1, FBIO_MODEINFO, &video) != -1
7238 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
7239 && video.vi_cheight > 0 && video.vi_cwidth > 0)
7240 {
7241 row = mouse.u.data.y / video.vi_cheight;
7242 col = mouse.u.data.x / video.vi_cwidth;
7243 buttons = mouse.u.data.buttons;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007244 string[0] = ESC; // Our termcode
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007245 string[1] = 'M';
7246 string[2] = 'S';
7247 if (oldbuttons == buttons && buttons != 0)
7248 {
7249 button = MOUSE_DRAG;
7250 }
7251 else
7252 {
7253 switch (buttons)
7254 {
7255 case 0:
7256 button = MOUSE_RELEASE;
7257 break;
7258 case 1:
7259 button = MOUSE_LEFT;
7260 break;
7261 case 2:
7262 button = MOUSE_MIDDLE;
7263 break;
7264 case 4:
7265 button = MOUSE_RIGHT;
7266 break;
7267 default:
7268 return;
7269 }
7270 oldbuttons = buttons;
7271 }
7272 string[3] = (char_u)(button);
7273 string[4] = (char_u)(col + ' ' + 1);
7274 string[5] = (char_u)(row + ' ' + 1);
7275 add_to_input_buf(string, 6);
7276 }
7277 return;
7278}
Bram Moolenaar0f873732019-12-05 20:28:46 +01007279#endif // FEAT_SYSMOUSE
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007280
Bram Moolenaar071d4272004-06-13 20:20:40 +00007281#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01007282typedef char_u * (*STRPROCSTR)(char_u *);
7283typedef char_u * (*INTPROCSTR)(int);
7284typedef int (*STRPROCINT)(char_u *);
7285typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007286
7287/*
7288 * Call a DLL routine which takes either a string or int param
7289 * and returns an allocated string.
7290 */
7291 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007292mch_libcall(
7293 char_u *libname,
7294 char_u *funcname,
Bram Moolenaar0f873732019-12-05 20:28:46 +01007295 char_u *argstring, // NULL when using a argint
Bram Moolenaar05540972016-01-30 20:31:25 +01007296 int argint,
Bram Moolenaar0f873732019-12-05 20:28:46 +01007297 char_u **string_result, // NULL when using number_result
Bram Moolenaar05540972016-01-30 20:31:25 +01007298 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007299{
7300# if defined(USE_DLOPEN)
7301 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007302 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007303# else
7304 shl_t hinstLib;
7305# endif
7306 STRPROCSTR ProcAdd;
7307 INTPROCSTR ProcAddI;
7308 char_u *retval_str = NULL;
7309 int retval_int = 0;
7310 int success = FALSE;
7311
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007312 /*
7313 * Get a handle to the DLL module.
7314 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007315# if defined(USE_DLOPEN)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007316 // First clear any error, it's not cleared by the dlopen() call.
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007317 (void)dlerror();
7318
Bram Moolenaar071d4272004-06-13 20:20:40 +00007319 hinstLib = dlopen((char *)libname, RTLD_LAZY
7320# ifdef RTLD_LOCAL
7321 | RTLD_LOCAL
7322# endif
7323 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007324 if (hinstLib == NULL)
7325 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007326 // "dlerr" must be used before dlclose()
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007327 dlerr = (char *)dlerror();
7328 if (dlerr != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007329 semsg(_("dlerror = \"%s\""), dlerr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007330 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007331# else
7332 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
7333# endif
7334
Bram Moolenaar0f873732019-12-05 20:28:46 +01007335 // If the handle is valid, try to get the function address.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336 if (hinstLib != NULL)
7337 {
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007338# ifdef USING_SETJMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 /*
7340 * Catch a crash when calling the library function. For example when
7341 * using a number where a string pointer is expected.
7342 */
7343 mch_startjmp();
7344 if (SETJMP(lc_jump_env) != 0)
7345 {
7346 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007347# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007348 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007349# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007350 mch_didjmp();
7351 }
7352 else
7353# endif
7354 {
7355 retval_str = NULL;
7356 retval_int = 0;
7357
7358 if (argstring != NULL)
7359 {
7360# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007361 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007362 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007363# else
7364 if (shl_findsym(&hinstLib, (const char *)funcname,
7365 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
7366 ProcAdd = NULL;
7367# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007368 if ((success = (ProcAdd != NULL
7369# if defined(USE_DLOPEN)
7370 && dlerr == NULL
7371# endif
7372 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007373 {
7374 if (string_result == NULL)
7375 retval_int = ((STRPROCINT)ProcAdd)(argstring);
7376 else
7377 retval_str = (ProcAdd)(argstring);
7378 }
7379 }
7380 else
7381 {
7382# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007383 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007384 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007385# else
7386 if (shl_findsym(&hinstLib, (const char *)funcname,
7387 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
7388 ProcAddI = NULL;
7389# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007390 if ((success = (ProcAddI != NULL
7391# if defined(USE_DLOPEN)
7392 && dlerr == NULL
7393# endif
7394 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007395 {
7396 if (string_result == NULL)
7397 retval_int = ((INTPROCINT)ProcAddI)(argint);
7398 else
7399 retval_str = (ProcAddI)(argint);
7400 }
7401 }
7402
Bram Moolenaar0f873732019-12-05 20:28:46 +01007403 // Save the string before we free the library.
7404 // Assume that a "1" or "-1" result is an illegal pointer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007405 if (string_result == NULL)
7406 *number_result = retval_int;
7407 else if (retval_str != NULL
7408 && retval_str != (char_u *)1
7409 && retval_str != (char_u *)-1)
7410 *string_result = vim_strsave(retval_str);
7411 }
7412
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007413# ifdef USING_SETJMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00007414 mch_endjmp();
7415# ifdef SIGHASARG
7416 if (lc_signal != 0)
7417 {
7418 int i;
7419
Bram Moolenaar0f873732019-12-05 20:28:46 +01007420 // try to find the name of this signal
Bram Moolenaar071d4272004-06-13 20:20:40 +00007421 for (i = 0; signal_info[i].sig != -1; i++)
7422 if (lc_signal == signal_info[i].sig)
7423 break;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007424 semsg("E368: got SIG%s in libcall()", signal_info[i].name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007425 }
7426# endif
7427# endif
7428
Bram Moolenaar071d4272004-06-13 20:20:40 +00007429# if defined(USE_DLOPEN)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007430 // "dlerr" must be used before dlclose()
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007431 if (dlerr != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007432 semsg(_("dlerror = \"%s\""), dlerr);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007433
Bram Moolenaar0f873732019-12-05 20:28:46 +01007434 // Free the DLL module.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007435 (void)dlclose(hinstLib);
7436# else
7437 (void)shl_unload(hinstLib);
7438# endif
7439 }
7440
7441 if (!success)
7442 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01007443 semsg(_(e_libcall), funcname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007444 return FAIL;
7445 }
7446
7447 return OK;
7448}
7449#endif
7450
7451#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007452static int xterm_trace = -1; // default: disabled
Bram Moolenaar071d4272004-06-13 20:20:40 +00007453static int xterm_button;
7454
7455/*
7456 * Setup a dummy window for X selections in a terminal.
7457 */
7458 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007459setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007460{
7461 int z = 0;
7462 char *strp = "";
7463 Widget AppShell;
7464
7465 if (!x_connect_to_server())
7466 return;
7467
7468 open_app_context();
7469 if (app_context != NULL && xterm_Shell == (Widget)0)
7470 {
7471 int (*oldhandler)();
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007472# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007473 int (*oldIOhandler)();
Bram Moolenaaredce7422019-01-20 18:39:30 +01007474# endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007475# ifdef ELAPSED_FUNC
Bram Moolenaar1ac56c22019-01-17 22:28:22 +01007476 elapsed_T start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007477
7478 if (p_verbose > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007479 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007480# endif
7481
Bram Moolenaar0f873732019-12-05 20:28:46 +01007482 // Ignore X errors while opening the display
Bram Moolenaar071d4272004-06-13 20:20:40 +00007483 oldhandler = XSetErrorHandler(x_error_check);
7484
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007485# if defined(USING_SETJMP)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007486 // Ignore X IO errors while opening the display
Bram Moolenaar071d4272004-06-13 20:20:40 +00007487 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7488 mch_startjmp();
7489 if (SETJMP(lc_jump_env) != 0)
7490 {
7491 mch_didjmp();
7492 xterm_dpy = NULL;
7493 }
7494 else
Bram Moolenaaredce7422019-01-20 18:39:30 +01007495# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007496 {
7497 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7498 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
Bram Moolenaard155d7a2018-12-21 16:04:21 +01007499 if (xterm_dpy != NULL)
7500 xterm_dpy_retry_count = 0;
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007501# if defined(USING_SETJMP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007502 mch_endjmp();
Bram Moolenaaredce7422019-01-20 18:39:30 +01007503# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007504 }
7505
Bram Moolenaarb2148f52019-01-20 23:43:57 +01007506# if defined(USING_SETJMP)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007507 // Now handle X IO errors normally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007508 (void)XSetIOErrorHandler(oldIOhandler);
Bram Moolenaaredce7422019-01-20 18:39:30 +01007509# endif
Bram Moolenaar0f873732019-12-05 20:28:46 +01007510 // Now handle X errors normally.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007511 (void)XSetErrorHandler(oldhandler);
7512
7513 if (xterm_dpy == NULL)
7514 {
7515 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007516 verb_msg(_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007517 return;
7518 }
7519
Bram Moolenaar0f873732019-12-05 20:28:46 +01007520 // Catch terminating error of the X server connection.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007521 (void)XSetIOErrorHandler(x_IOerror_handler);
7522
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007523# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00007524 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007525 {
7526 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007527 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007528 verbose_leave();
7529 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007530# endif
7531
Bram Moolenaar0f873732019-12-05 20:28:46 +01007532 // Create a Shell to make converters work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007533 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7534 applicationShellWidgetClass, xterm_dpy,
7535 NULL);
7536 if (AppShell == (Widget)0)
7537 return;
7538 xterm_Shell = XtVaCreatePopupShell("VIM",
7539 topLevelShellWidgetClass, AppShell,
7540 XtNmappedWhenManaged, 0,
7541 XtNwidth, 1,
7542 XtNheight, 1,
7543 NULL);
7544 if (xterm_Shell == (Widget)0)
7545 return;
7546
7547 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007548 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007549 if (x11_display == NULL)
7550 x11_display = xterm_dpy;
7551
7552 XtRealizeWidget(xterm_Shell);
7553 XSync(xterm_dpy, False);
7554 xterm_update();
7555 }
7556 if (xterm_Shell != (Widget)0)
7557 {
7558 clip_init(TRUE);
7559 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7560 x11_window = (Window)atol(strp);
Bram Moolenaar0f873732019-12-05 20:28:46 +01007561 // Check if $WINDOWID is valid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007562 if (test_x11_window(xterm_dpy) == FAIL)
7563 x11_window = 0;
7564 if (x11_window != 0)
7565 xterm_trace = 0;
7566 }
7567}
7568
7569 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007570start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007571{
7572 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7573 return;
7574 xterm_trace = 1;
7575 xterm_button = button;
7576 do_xterm_trace();
7577}
7578
7579
7580 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007581stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007582{
7583 if (xterm_trace < 0)
7584 return;
7585 xterm_trace = 0;
7586}
7587
7588/*
7589 * Query the xterm pointer and generate mouse termcodes if necessary
7590 * return TRUE if dragging is active, else FALSE
7591 */
7592 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007593do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007594{
7595 Window root, child;
7596 int root_x, root_y;
7597 int win_x, win_y;
7598 int row, col;
7599 int_u mask_return;
7600 char_u buf[50];
7601 char_u *strp;
7602 long got_hints;
7603 static char_u *mouse_code;
7604 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7605 static int prev_row = 0, prev_col = 0;
7606 static XSizeHints xterm_hints;
7607
7608 if (xterm_trace <= 0)
7609 return FALSE;
7610
7611 if (xterm_trace == 1)
7612 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007613 // Get the hints just before tracking starts. The font size might
7614 // have changed recently.
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007615 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7616 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007617 || xterm_hints.width_inc <= 1
7618 || xterm_hints.height_inc <= 1)
7619 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007620 xterm_trace = -1; // Not enough data -- disable tracing
Bram Moolenaar071d4272004-06-13 20:20:40 +00007621 return FALSE;
7622 }
7623
Bram Moolenaar0f873732019-12-05 20:28:46 +01007624 // Rely on the same mouse code for the duration of this
Bram Moolenaar071d4272004-06-13 20:20:40 +00007625 mouse_code = find_termcode(mouse_name);
7626 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007627 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007628 xterm_trace = 2;
7629
Bram Moolenaar0f873732019-12-05 20:28:46 +01007630 // Find the offset of the chars, there might be a scrollbar on the
7631 // left of the window and/or a menu on the top (eterm etc.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007632 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7633 &win_x, &win_y, &mask_return);
7634 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7635 - (xterm_hints.height_inc / 2);
7636 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7637 xterm_hints.y = 2;
7638 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7639 - (xterm_hints.width_inc / 2);
7640 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7641 xterm_hints.x = 2;
7642 return TRUE;
7643 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007644 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007645 {
7646 xterm_trace = 0;
7647 return FALSE;
7648 }
7649
7650 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7651 &win_x, &win_y, &mask_return);
7652
7653 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7654 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7655 if (row == prev_row && col == prev_col)
7656 return TRUE;
7657
7658 STRCPY(buf, mouse_code);
7659 strp = buf + STRLEN(buf);
7660 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7661 *strp++ = (char_u)(col + ' ' + 1);
7662 *strp++ = (char_u)(row + ' ' + 1);
7663 *strp = 0;
7664 add_to_input_buf(buf, STRLEN(buf));
7665
7666 prev_row = row;
7667 prev_col = col;
7668 return TRUE;
7669}
7670
Bram Moolenaard4aa83a2019-05-09 18:59:31 +02007671# if defined(FEAT_GUI) || defined(FEAT_XCLIPBOARD) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007672/*
7673 * Destroy the display, window and app_context. Required for GTK.
7674 */
7675 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007676clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007677{
7678 if (xterm_Shell != (Widget)0)
7679 {
7680 XtDestroyWidget(xterm_Shell);
7681 xterm_Shell = (Widget)0;
7682 }
7683 if (xterm_dpy != NULL)
7684 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007685# if 0
Bram Moolenaar0f873732019-12-05 20:28:46 +01007686 // Lesstif and Solaris crash here, lose some memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00007687 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007688# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007689 if (x11_display == xterm_dpy)
7690 x11_display = NULL;
7691 xterm_dpy = NULL;
7692 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007693# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007694 if (app_context != (XtAppContext)NULL)
7695 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007696 // Lesstif and Solaris crash here, lose some memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00007697 XtDestroyApplicationContext(app_context);
7698 app_context = (XtAppContext)NULL;
7699 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007700# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007701}
7702# endif
7703
7704/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007705 * Catch up with GUI or X events.
7706 */
7707 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007708clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007709{
7710# ifdef FEAT_GUI
7711 if (gui.in_use)
7712 gui_mch_update();
7713 else
7714# endif
7715 if (xterm_Shell != (Widget)0)
7716 xterm_update();
7717}
7718
7719/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007720 * Catch up with any queued X events. This may put keyboard input into the
7721 * input buffer, call resize call-backs, trigger timers etc. If there is
7722 * nothing in the X event queue (& no timers pending), then we return
7723 * immediately.
7724 */
7725 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007726xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007727{
7728 XEvent event;
7729
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007730 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007731 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007732 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007733
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007734 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007735 break;
7736
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007737 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007738 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007739 // There is an event to process.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007740 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007741#ifdef FEAT_CLIENTSERVER
7742 {
7743 XPropertyEvent *e = (XPropertyEvent *)&event;
7744
7745 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007746 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007747 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007748 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007749#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007750 XtDispatchEvent(&event);
7751 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007752 else
7753 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007754 // There is something else than an event to process.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007755 XtAppProcessEvent(app_context, mask);
7756 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007757 }
7758}
7759
7760 int
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007761clip_xterm_own_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007762{
7763 if (xterm_Shell != (Widget)0)
7764 return clip_x11_own_selection(xterm_Shell, cbd);
7765 return FAIL;
7766}
7767
7768 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007769clip_xterm_lose_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007770{
7771 if (xterm_Shell != (Widget)0)
7772 clip_x11_lose_selection(xterm_Shell, cbd);
7773}
7774
7775 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007776clip_xterm_request_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007777{
7778 if (xterm_Shell != (Widget)0)
7779 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7780}
7781
7782 void
Bram Moolenaar0554fa42019-06-14 21:36:54 +02007783clip_xterm_set_selection(Clipboard_T *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007784{
7785 clip_x11_set_selection(cbd);
7786}
7787#endif
7788
7789
7790#if defined(USE_XSMP) || defined(PROTO)
7791/*
7792 * Code for X Session Management Protocol.
7793 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007794
7795# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007796/*
7797 * This is our chance to ask the user if they want to save,
7798 * or abort the logout
7799 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007800 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007801xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007802{
7803 cmdmod_T save_cmdmod;
7804 int cancel_shutdown = False;
7805
7806 save_cmdmod = cmdmod;
7807 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007808 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar0f873732019-12-05 20:28:46 +01007809 // Mustn't logout
Bram Moolenaar071d4272004-06-13 20:20:40 +00007810 cancel_shutdown = True;
7811 cmdmod = save_cmdmod;
Bram Moolenaar0f873732019-12-05 20:28:46 +01007812 setcursor(); // position cursor
Bram Moolenaar071d4272004-06-13 20:20:40 +00007813 out_flush();
7814
Bram Moolenaar0f873732019-12-05 20:28:46 +01007815 // Done interaction
Bram Moolenaar071d4272004-06-13 20:20:40 +00007816 SmcInteractDone(smc_conn, cancel_shutdown);
7817
Bram Moolenaar0f873732019-12-05 20:28:46 +01007818 // Finish off
7819 // Only end save-yourself here if we're not cancelling shutdown;
7820 // we'll get a cancelled callback later in which we'll end it.
7821 // Hopefully get around glitchy SMs (like GNOME-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007822 if (!cancel_shutdown)
7823 {
7824 xsmp.save_yourself = False;
7825 SmcSaveYourselfDone(smc_conn, True);
7826 }
7827}
7828# endif
7829
7830/*
7831 * Callback that starts save-yourself.
7832 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007833 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007834xsmp_handle_save_yourself(
7835 SmcConn smc_conn,
7836 SmPointer client_data UNUSED,
7837 int save_type UNUSED,
7838 Bool shutdown,
7839 int interact_style UNUSED,
7840 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007841{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007842 // Handle already being in saveyourself
Bram Moolenaar071d4272004-06-13 20:20:40 +00007843 if (xsmp.save_yourself)
7844 SmcSaveYourselfDone(smc_conn, True);
7845 xsmp.save_yourself = True;
7846 xsmp.shutdown = shutdown;
7847
Bram Moolenaar0f873732019-12-05 20:28:46 +01007848 // First up, preserve all files
Bram Moolenaar071d4272004-06-13 20:20:40 +00007849 out_flush();
Bram Moolenaar0f873732019-12-05 20:28:46 +01007850 ml_sync_all(FALSE, FALSE); // preserve all swap files
Bram Moolenaar071d4272004-06-13 20:20:40 +00007851
7852 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007853 verb_msg(_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007854
7855# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007856 // Now see if we can ask about unsaved files
Bram Moolenaar071d4272004-06-13 20:20:40 +00007857 if (shutdown && !fast && gui.in_use)
Bram Moolenaar0f873732019-12-05 20:28:46 +01007858 // Need to interact with user, but need SM's permission
Bram Moolenaar071d4272004-06-13 20:20:40 +00007859 SmcInteractRequest(smc_conn, SmDialogError,
7860 xsmp_handle_interaction, client_data);
7861 else
7862# endif
7863 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007864 // Can stop the cycle here
Bram Moolenaar071d4272004-06-13 20:20:40 +00007865 SmcSaveYourselfDone(smc_conn, True);
7866 xsmp.save_yourself = False;
7867 }
7868}
7869
7870
7871/*
7872 * Callback to warn us of imminent death.
7873 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007874 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007875xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007876{
7877 xsmp_close();
7878
Bram Moolenaar0f873732019-12-05 20:28:46 +01007879 // quit quickly leaving swapfiles for modified buffers behind
Bram Moolenaar071d4272004-06-13 20:20:40 +00007880 getout_preserve_modified(0);
7881}
7882
7883
7884/*
7885 * Callback to tell us that save-yourself has completed.
7886 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007887 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007888xsmp_save_complete(
7889 SmcConn smc_conn UNUSED,
7890 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007891{
7892 xsmp.save_yourself = False;
7893}
7894
7895
7896/*
7897 * Callback to tell us that an instigated shutdown was cancelled
7898 * (maybe even by us)
7899 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007900 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007901xsmp_shutdown_cancelled(
7902 SmcConn smc_conn,
7903 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007904{
7905 if (xsmp.save_yourself)
7906 SmcSaveYourselfDone(smc_conn, True);
7907 xsmp.save_yourself = False;
7908 xsmp.shutdown = False;
7909}
7910
7911
7912/*
7913 * Callback to tell us that a new ICE connection has been established.
7914 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007915 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007916xsmp_ice_connection(
7917 IceConn iceConn,
7918 IcePointer clientData UNUSED,
7919 Bool opening,
7920 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007921{
Bram Moolenaar0f873732019-12-05 20:28:46 +01007922 // Intercept creation of ICE connection fd
Bram Moolenaar071d4272004-06-13 20:20:40 +00007923 if (opening)
7924 {
7925 xsmp_icefd = IceConnectionNumber(iceConn);
7926 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7927 }
7928}
7929
7930
Bram Moolenaar0f873732019-12-05 20:28:46 +01007931// Handle any ICE processing that's required; return FAIL if SM lost
Bram Moolenaar071d4272004-06-13 20:20:40 +00007932 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007933xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007934{
7935 Bool rep;
7936
7937 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7938 == IceProcessMessagesIOError)
7939 {
Bram Moolenaar0f873732019-12-05 20:28:46 +01007940 // Lost ICE
Bram Moolenaar071d4272004-06-13 20:20:40 +00007941 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007942 verb_msg(_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007943 xsmp_close();
7944 return FAIL;
7945 }
7946 else
7947 return OK;
7948}
7949
7950static int dummy;
7951
Bram Moolenaar0f873732019-12-05 20:28:46 +01007952// Set up X Session Management Protocol
Bram Moolenaar071d4272004-06-13 20:20:40 +00007953 void
7954xsmp_init(void)
7955{
7956 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007957 SmcCallbacks smcallbacks;
7958#if 0
7959 SmPropValue smname;
7960 SmProp smnameprop;
7961 SmProp *smprops[1];
7962#endif
7963
7964 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007965 verb_msg(_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007966
7967 xsmp.save_yourself = xsmp.shutdown = False;
7968
Bram Moolenaar0f873732019-12-05 20:28:46 +01007969 // Set up SM callbacks - must have all, even if they're not used
Bram Moolenaar071d4272004-06-13 20:20:40 +00007970 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7971 smcallbacks.save_yourself.client_data = NULL;
7972 smcallbacks.die.callback = xsmp_die;
7973 smcallbacks.die.client_data = NULL;
7974 smcallbacks.save_complete.callback = xsmp_save_complete;
7975 smcallbacks.save_complete.client_data = NULL;
7976 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
7977 smcallbacks.shutdown_cancelled.client_data = NULL;
7978
Bram Moolenaar0f873732019-12-05 20:28:46 +01007979 // Set up a watch on ICE connection creations. The "dummy" argument is
7980 // apparently required for FreeBSD (we get a BUS error when using NULL).
Bram Moolenaar071d4272004-06-13 20:20:40 +00007981 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
7982 {
7983 if (p_verbose > 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01007984 verb_msg(_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007985 return;
7986 }
7987
Bram Moolenaar0f873732019-12-05 20:28:46 +01007988 // Create an SM connection
Bram Moolenaar071d4272004-06-13 20:20:40 +00007989 xsmp.smcconn = SmcOpenConnection(
7990 NULL,
7991 NULL,
7992 SmProtoMajor,
7993 SmProtoMinor,
7994 SmcSaveYourselfProcMask | SmcDieProcMask
7995 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
7996 &smcallbacks,
7997 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00007998 &xsmp.clientid,
Bram Moolenaar4841a7c2018-09-22 14:08:49 +02007999 sizeof(errorstring) - 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00008000 errorstring);
8001 if (xsmp.smcconn == NULL)
8002 {
8003 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00008004
Bram Moolenaar071d4272004-06-13 20:20:40 +00008005 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008006 {
8007 vim_snprintf(errorreport, sizeof(errorreport),
8008 _("XSMP SmcOpenConnection failed: %s"), errorstring);
Bram Moolenaar32526b32019-01-19 17:43:09 +01008009 verb_msg(errorreport);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008010 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008011 return;
8012 }
8013 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
8014
8015#if 0
Bram Moolenaar0f873732019-12-05 20:28:46 +01008016 // ID ourselves
Bram Moolenaar071d4272004-06-13 20:20:40 +00008017 smname.value = "vim";
8018 smname.length = 3;
8019 smnameprop.name = "SmProgram";
8020 smnameprop.type = "SmARRAY8";
8021 smnameprop.num_vals = 1;
8022 smnameprop.vals = &smname;
8023
8024 smprops[0] = &smnameprop;
8025 SmcSetProperties(xsmp.smcconn, 1, smprops);
8026#endif
8027}
8028
8029
Bram Moolenaar0f873732019-12-05 20:28:46 +01008030// Shut down XSMP comms.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008031 void
Bram Moolenaar05540972016-01-30 20:31:25 +01008032xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008033{
8034 if (xsmp_icefd != -1)
8035 {
8036 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00008037 if (xsmp.clientid != NULL)
8038 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00008039 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008040 xsmp_icefd = -1;
8041 }
8042}
Bram Moolenaar0f873732019-12-05 20:28:46 +01008043#endif // USE_XSMP
Bram Moolenaar071d4272004-06-13 20:20:40 +00008044
8045
8046#ifdef EBCDIC
Bram Moolenaar0f873732019-12-05 20:28:46 +01008047// Translate character to its CTRL- value
Bram Moolenaar071d4272004-06-13 20:20:40 +00008048char CtrlTable[] =
8049{
8050/* 00 - 5E */
8051 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8052 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8053 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8054 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8055 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8056 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8057/* ^ */ 0x1E,
8058/* - */ 0x1F,
8059/* 61 - 6C */
8060 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8061/* _ */ 0x1F,
8062/* 6E - 80 */
8063 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8064/* a */ 0x01,
8065/* b */ 0x02,
8066/* c */ 0x03,
8067/* d */ 0x37,
8068/* e */ 0x2D,
8069/* f */ 0x2E,
8070/* g */ 0x2F,
8071/* h */ 0x16,
8072/* i */ 0x05,
8073/* 8A - 90 */
8074 0, 0, 0, 0, 0, 0, 0,
8075/* j */ 0x15,
8076/* k */ 0x0B,
8077/* l */ 0x0C,
8078/* m */ 0x0D,
8079/* n */ 0x0E,
8080/* o */ 0x0F,
8081/* p */ 0x10,
8082/* q */ 0x11,
8083/* r */ 0x12,
8084/* 9A - A1 */
8085 0, 0, 0, 0, 0, 0, 0, 0,
8086/* s */ 0x13,
8087/* t */ 0x3C,
8088/* u */ 0x3D,
8089/* v */ 0x32,
8090/* w */ 0x26,
8091/* x */ 0x18,
8092/* y */ 0x19,
8093/* z */ 0x3F,
8094/* AA - AC */
8095 0, 0, 0,
8096/* [ */ 0x27,
8097/* AE - BC */
8098 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8099/* ] */ 0x1D,
8100/* BE - C0 */ 0, 0, 0,
8101/* A */ 0x01,
8102/* B */ 0x02,
8103/* C */ 0x03,
8104/* D */ 0x37,
8105/* E */ 0x2D,
8106/* F */ 0x2E,
8107/* G */ 0x2F,
8108/* H */ 0x16,
8109/* I */ 0x05,
8110/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
8111/* J */ 0x15,
8112/* K */ 0x0B,
8113/* L */ 0x0C,
8114/* M */ 0x0D,
8115/* N */ 0x0E,
8116/* O */ 0x0F,
8117/* P */ 0x10,
8118/* Q */ 0x11,
8119/* R */ 0x12,
8120/* DA - DF */ 0, 0, 0, 0, 0, 0,
8121/* \ */ 0x1C,
8122/* E1 */ 0,
8123/* S */ 0x13,
8124/* T */ 0x3C,
8125/* U */ 0x3D,
8126/* V */ 0x32,
8127/* W */ 0x26,
8128/* X */ 0x18,
8129/* Y */ 0x19,
8130/* Z */ 0x3F,
8131/* EA - FF*/ 0, 0, 0, 0, 0, 0,
8132 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
8133};
8134
8135char MetaCharTable[]=
Bram Moolenaar0f873732019-12-05 20:28:46 +01008136{// 0 1 2 3 4 5 6 7 8 9 A B C D E F
Bram Moolenaar071d4272004-06-13 20:20:40 +00008137 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
8138 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
8139 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
8140 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
8141};
8142
8143
Bram Moolenaar0f873732019-12-05 20:28:46 +01008144// TODO: Use characters NOT numbers!!!
Bram Moolenaar071d4272004-06-13 20:20:40 +00008145char CtrlCharTable[]=
Bram Moolenaar0f873732019-12-05 20:28:46 +01008146{// 0 1 2 3 4 5 6 7 8 9 A B C D E F
Bram Moolenaar071d4272004-06-13 20:20:40 +00008147 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
8148 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
8149 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
8150 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
8151};
8152
8153
8154#endif