blob: ff0b0e88d61940fdb670b439ece8c8197082ed0f [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
21/*
22 * Some systems have a prototype for select() that has (int *) instead of
23 * (fd_set *), which is wrong. This define removes that prototype. We define
24 * our own prototype below.
25 * Don't use it for the Mac, it causes a warning for precompiled headers.
26 * TODO: use a configure check for precompiled headers?
27 */
Bram Moolenaar311d9822007-02-27 15:48:28 +000028#if !defined(__APPLE__) && !defined(__TANDEM)
Bram Moolenaar071d4272004-06-13 20:20:40 +000029# define select select_declared_wrong
30#endif
31
32#include "vim.h"
33
Bram Moolenaar325b7a22004-07-05 15:58:32 +000034#ifdef FEAT_MZSCHEME
35# include "if_mzsch.h"
36#endif
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#include "os_unixx.h" /* unix includes for os_unix.c only */
39
40#ifdef USE_XSMP
41# include <X11/SM/SMlib.h>
42#endif
43
Bram Moolenaar588ebeb2008-05-07 17:09:24 +000044#ifdef HAVE_SELINUX
45# include <selinux/selinux.h>
46static int selinux_enabled = -1;
47#endif
48
Bram Moolenaar5bd32f42014-04-02 14:05:38 +020049#ifdef HAVE_SMACK
50# include <attr/xattr.h>
51# include <linux/xattr.h>
52# ifndef SMACK_LABEL_LEN
53# define SMACK_LABEL_LEN 1024
54# endif
55#endif
56
Bram Moolenaar071d4272004-06-13 20:20:40 +000057/*
58 * Use this prototype for select, some include files have a wrong prototype
59 */
Bram Moolenaar311d9822007-02-27 15:48:28 +000060#ifndef __TANDEM
61# undef select
62# ifdef __BEOS__
63# define select beos_select
64# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000065#endif
66
Bram Moolenaara2442432007-04-26 14:26:37 +000067#ifdef __CYGWIN__
68# ifndef WIN32
Bram Moolenaar0d1498e2008-06-29 12:00:49 +000069# include <cygwin/version.h>
70# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or
71 * for cygwin_conv_path() */
Bram Moolenaar693e40c2013-02-26 14:56:42 +010072# ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
73# define WIN32_LEAN_AND_MEAN
74# include <windows.h>
75# include "winclip.pro"
76# endif
Bram Moolenaara2442432007-04-26 14:26:37 +000077# endif
78#endif
79
Bram Moolenaar071d4272004-06-13 20:20:40 +000080#if defined(HAVE_SELECT)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +010081extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
Bram Moolenaar071d4272004-06-13 20:20:40 +000082#endif
83
84#ifdef FEAT_MOUSE_GPM
85# include <gpm.h>
86/* <linux/keyboard.h> contains defines conflicting with "keymap.h",
87 * I just copied relevant defines here. A cleaner solution would be to put gpm
88 * code into separate file and include there linux/keyboard.h
89 */
90/* #include <linux/keyboard.h> */
91# define KG_SHIFT 0
92# define KG_CTRL 2
93# define KG_ALT 3
94# define KG_ALTGR 1
95# define KG_SHIFTL 4
96# define KG_SHIFTR 5
97# define KG_CTRLL 6
98# define KG_CTRLR 7
99# define KG_CAPSSHIFT 8
100
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100101static void gpm_close(void);
102static int gpm_open(void);
103static int mch_gpm_process(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104#endif
105
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000106#ifdef FEAT_SYSMOUSE
107# include <sys/consio.h>
108# include <sys/fbio.h>
109
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100110static int sysmouse_open(void);
111static void sysmouse_close(void);
Bram Moolenaard99df422016-01-29 23:20:40 +0100112static RETSIGTYPE sig_sysmouse SIGPROTOARG;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000113#endif
114
Bram Moolenaar071d4272004-06-13 20:20:40 +0000115/*
116 * end of autoconf section. To be extended...
117 */
118
119/* Are the following #ifdefs still required? And why? Is that for X11? */
120
121#if defined(ESIX) || defined(M_UNIX) && !defined(SCO)
122# ifdef SIGWINCH
123# undef SIGWINCH
124# endif
125# ifdef TIOCGWINSZ
126# undef TIOCGWINSZ
127# endif
128#endif
129
130#if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */
131# define SIGWINCH SIGWINDOW
132#endif
133
134#ifdef FEAT_X11
135# include <X11/Xlib.h>
136# include <X11/Xutil.h>
137# include <X11/Xatom.h>
138# ifdef FEAT_XCLIPBOARD
139# include <X11/Intrinsic.h>
140# include <X11/Shell.h>
141# include <X11/StringDefs.h>
142static Widget xterm_Shell = (Widget)0;
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100143static void clip_update(void);
144static void xterm_update(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145# endif
146
147# if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)
148Window x11_window = 0;
149# endif
150Display *x11_display = NULL;
151
152# ifdef FEAT_TITLE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100153static int get_x11_windis(void);
154static void set_x11_title(char_u *);
155static void set_x11_icon(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000156# endif
157#endif
158
159#ifdef FEAT_TITLE
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100160static int get_x11_title(int);
161static int get_x11_icon(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162
163static char_u *oldtitle = NULL;
164static int did_set_title = FALSE;
165static char_u *oldicon = NULL;
166static int did_set_icon = FALSE;
167#endif
168
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100169static void may_core_dump(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000170
Bram Moolenaar205b8862011-09-07 15:04:31 +0200171#ifdef HAVE_UNION_WAIT
172typedef union wait waitstatus;
173#else
174typedef int waitstatus;
175#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100176static pid_t wait4pid(pid_t, waitstatus *);
Bram Moolenaar205b8862011-09-07 15:04:31 +0200177
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200178static int WaitForChar(long msec, int *interrupted, int ignore_input);
179static int WaitForCharOrMouse(long msec, int *interrupted, int ignore_input);
Bram Moolenaar4ffa0702013-12-11 17:12:37 +0100180#if defined(__BEOS__) || defined(VMS)
Bram Moolenaarcda77642016-06-04 13:32:35 +0200181int RealWaitForChar(int, long, int *, int *interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182#else
Bram Moolenaarcda77642016-06-04 13:32:35 +0200183static int RealWaitForChar(int, long, int *, int *interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000184#endif
185
186#ifdef FEAT_XCLIPBOARD
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100187static int do_xterm_trace(void);
Bram Moolenaarcf851ce2005-06-16 21:52:47 +0000188# define XT_TRACE_DELAY 50 /* delay for xterm tracing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189#endif
190
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100191static void handle_resize(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000192
193#if defined(SIGWINCH)
Bram Moolenaard99df422016-01-29 23:20:40 +0100194static RETSIGTYPE sig_winch SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000195#endif
196#if defined(SIGINT)
Bram Moolenaard99df422016-01-29 23:20:40 +0100197static RETSIGTYPE catch_sigint SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000198#endif
199#if defined(SIGPWR)
Bram Moolenaard99df422016-01-29 23:20:40 +0100200static RETSIGTYPE catch_sigpwr SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000201#endif
202#if defined(SIGALRM) && defined(FEAT_X11) \
203 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK)
204# define SET_SIG_ALARM
Bram Moolenaard99df422016-01-29 23:20:40 +0100205static RETSIGTYPE sig_alarm SIGPROTOARG;
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000206/* volatile because it is used in signal handler sig_alarm(). */
207static volatile int sig_alarm_called;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208#endif
Bram Moolenaard99df422016-01-29 23:20:40 +0100209static RETSIGTYPE deathtrap SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100211static void catch_int_signal(void);
212static void set_signals(void);
213static void catch_signals(RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)());
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +0200214#ifdef HAVE_SIGPROCMASK
215# define SIGSET_DECL(set) sigset_t set;
216# define BLOCK_SIGNALS(set) block_signals(set)
217# define UNBLOCK_SIGNALS(set) unblock_signals(set)
218#else
219# define SIGSET_DECL(set)
220# define BLOCK_SIGNALS(set) do { /**/ } while (0)
221# define UNBLOCK_SIGNALS(set) do { /**/ } while (0)
222#endif
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100223static int have_wildcard(int, char_u **);
224static int have_dollars(int, char_u **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100226static int save_patterns(int num_pat, char_u **pat, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227
228#ifndef SIG_ERR
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000229# define SIG_ERR ((RETSIGTYPE (*)())-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000230#endif
231
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000232/* volatile because it is used in signal handler sig_winch(). */
233static volatile int do_resize = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234static char_u *extra_shell_arg = NULL;
235static int show_shell_mess = TRUE;
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000236/* volatile because it is used in signal handler deathtrap(). */
237static volatile int deadly_signal = 0; /* The signal we caught */
238/* volatile because it is used in signal handler deathtrap(). */
239static volatile int in_mch_delay = FALSE; /* sleeping in mch_delay() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000240
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +0100241#if defined(FEAT_JOB_CHANNEL) && !defined(USE_SYSTEM)
242static int dont_check_job_ended = 0;
243#endif
244
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245static int curr_tmode = TMODE_COOK; /* contains current terminal mode */
246
247#ifdef USE_XSMP
248typedef struct
249{
250 SmcConn smcconn; /* The SM connection ID */
251 IceConn iceconn; /* The ICE connection ID */
Bram Moolenaar67c53842010-05-22 18:28:27 +0200252 char *clientid; /* The client ID for the current smc session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000253 Bool save_yourself; /* If we're in the middle of a save_yourself */
254 Bool shutdown; /* If we're in shutdown mode */
255} xsmp_config_T;
256
257static xsmp_config_T xsmp;
258#endif
259
260#ifdef SYS_SIGLIST_DECLARED
261/*
262 * I have seen
263 * extern char *_sys_siglist[NSIG];
264 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
265 * that describe the signals. That is nearly what we want here. But
266 * autoconf does only check for sys_siglist (without the underscore), I
267 * do not want to change everything today.... jw.
Bram Moolenaar3f7d0902016-11-12 21:13:42 +0100268 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.ac.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 */
270#endif
271
272static struct signalinfo
273{
274 int sig; /* Signal number, eg. SIGSEGV etc */
275 char *name; /* Signal name (not char_u!). */
276 char deadly; /* Catch as a deadly signal? */
277} signal_info[] =
278{
279#ifdef SIGHUP
280 {SIGHUP, "HUP", TRUE},
281#endif
282#ifdef SIGQUIT
283 {SIGQUIT, "QUIT", TRUE},
284#endif
285#ifdef SIGILL
286 {SIGILL, "ILL", TRUE},
287#endif
288#ifdef SIGTRAP
289 {SIGTRAP, "TRAP", TRUE},
290#endif
291#ifdef SIGABRT
292 {SIGABRT, "ABRT", TRUE},
293#endif
294#ifdef SIGEMT
295 {SIGEMT, "EMT", TRUE},
296#endif
297#ifdef SIGFPE
298 {SIGFPE, "FPE", TRUE},
299#endif
300#ifdef SIGBUS
301 {SIGBUS, "BUS", TRUE},
302#endif
Bram Moolenaar75676462013-01-30 14:55:42 +0100303#if defined(SIGSEGV) && !defined(FEAT_MZSCHEME)
304 /* MzScheme uses SEGV in its garbage collector */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305 {SIGSEGV, "SEGV", TRUE},
306#endif
307#ifdef SIGSYS
308 {SIGSYS, "SYS", TRUE},
309#endif
310#ifdef SIGALRM
311 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */
312#endif
313#ifdef SIGTERM
314 {SIGTERM, "TERM", TRUE},
315#endif
Bram Moolenaarb292a2a2011-02-09 18:47:40 +0100316#if defined(SIGVTALRM) && !defined(FEAT_RUBY)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 {SIGVTALRM, "VTALRM", TRUE},
318#endif
Bram Moolenaar02f07e02008-03-12 12:17:28 +0000319#if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
320 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
321 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 {SIGPROF, "PROF", TRUE},
323#endif
324#ifdef SIGXCPU
325 {SIGXCPU, "XCPU", TRUE},
326#endif
327#ifdef SIGXFSZ
328 {SIGXFSZ, "XFSZ", TRUE},
329#endif
330#ifdef SIGUSR1
331 {SIGUSR1, "USR1", TRUE},
332#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000333#if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE)
334 /* Used for sysmouse handling */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 {SIGUSR2, "USR2", TRUE},
336#endif
337#ifdef SIGINT
338 {SIGINT, "INT", FALSE},
339#endif
340#ifdef SIGWINCH
341 {SIGWINCH, "WINCH", FALSE},
342#endif
343#ifdef SIGTSTP
344 {SIGTSTP, "TSTP", FALSE},
345#endif
346#ifdef SIGPIPE
347 {SIGPIPE, "PIPE", FALSE},
348#endif
349 {-1, "Unknown!", FALSE}
350};
351
Bram Moolenaar25724922009-07-14 15:38:41 +0000352 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100353mch_chdir(char *path)
Bram Moolenaar25724922009-07-14 15:38:41 +0000354{
355 if (p_verbose >= 5)
356 {
357 verbose_enter();
358 smsg((char_u *)"chdir(%s)", path);
359 verbose_leave();
360 }
361# ifdef VMS
362 return chdir(vms_fixfilename(path));
363# else
364 return chdir(path);
365# endif
366}
367
Bram Moolenaar4f44b882017-08-13 20:06:18 +0200368/* Why is NeXT excluded here (and not in os_unixx.h)? */
369#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
370# define NEW_TTY_SYSTEM
371#endif
372
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000373/*
374 * Write s[len] to the screen.
375 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100377mch_write(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378{
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000379 ignored = (int)write(1, (char *)s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 if (p_wd) /* Unix is too fast, slow down a bit more */
Bram Moolenaar8fdd7212016-03-26 19:41:48 +0100381 RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000382}
383
384/*
Bram Moolenaarc2a27c32007-12-01 16:19:33 +0000385 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 * Get a characters from the keyboard.
387 * Return the number of characters that are available.
388 * If wtime == 0 do not wait for characters.
389 * If wtime == n wait a short time for characters.
390 * If wtime == -1 wait forever for characters.
391 */
392 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100393mch_inchar(
394 char_u *buf,
395 int maxlen,
396 long wtime, /* don't use "time", MIPS cannot handle it */
397 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398{
399 int len;
Bram Moolenaarcda77642016-06-04 13:32:35 +0200400 int interrupted = FALSE;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200401 int did_start_blocking = FALSE;
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200402 long wait_time;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200403 long elapsed_time = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +0100404#ifdef ELAPSED_FUNC
405 ELAPSED_TYPE start_tv;
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200406
Bram Moolenaar833eb1d2016-11-24 17:22:50 +0100407 ELAPSED_INIT(start_tv);
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200408#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200410 /* repeat until we got a character or waited long enough */
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200411 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412 {
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200413 /* Check if window changed size while we were busy, perhaps the ":set
414 * columns=99" command was used. */
415 while (do_resize)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 handle_resize();
Bram Moolenaar67c53842010-05-22 18:28:27 +0200417
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200418#ifdef MESSAGE_QUEUE
419 parse_queued_messages();
Bram Moolenaard85f2712017-07-28 21:51:57 +0200420 /* If input was put directly in typeahead buffer bail out here. */
421 if (typebuf_changed(tb_change_cnt))
422 return 0;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200423#endif
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200424 if (wtime < 0 && did_start_blocking)
425 /* blocking and already waited for p_ut */
426 wait_time = -1;
427 else
428 {
429 if (wtime >= 0)
430 wait_time = wtime;
431 else
432 /* going to block after p_ut */
433 wait_time = p_ut;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +0100434#ifdef ELAPSED_FUNC
435 elapsed_time = ELAPSED_FUNC(start_tv);
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200436#endif
437 wait_time -= elapsed_time;
438 if (wait_time < 0)
439 {
440 if (wtime >= 0)
441 /* no character available within "wtime" */
442 return 0;
443
444 if (wtime < 0)
445 {
446 /* no character available within 'updatetime' */
447 did_start_blocking = TRUE;
448#ifdef FEAT_AUTOCMD
449 if (trigger_cursorhold() && maxlen >= 3
450 && !typebuf_changed(tb_change_cnt))
451 {
452 buf[0] = K_SPECIAL;
453 buf[1] = KS_EXTRA;
454 buf[2] = (int)KE_CURSORHOLD;
455 return 3;
456 }
457#endif
458 /*
459 * If there is no character available within 'updatetime'
460 * seconds flush all the swap files to disk.
461 * Also done when interrupted by SIGWINCH.
462 */
463 before_blocking();
464 continue;
465 }
466 }
467 }
468
469#ifdef FEAT_JOB_CHANNEL
470 /* Checking if a job ended requires polling. Do this every 100 msec. */
471 if (has_pending_job() && (wait_time < 0 || wait_time > 100L))
472 wait_time = 100L;
Bram Moolenaar8a8199e2016-11-26 15:13:33 +0100473 /* If there is readahead then parse_queued_messages() timed out and we
474 * should call it again soon. */
475 if ((wait_time < 0 || wait_time > 100L) && channel_any_readahead())
476 wait_time = 10L;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200477#endif
Bram Moolenaarc3719bd2017-11-18 22:13:31 +0100478#ifdef FEAT_BEVAL_GUI
Bram Moolenaar59716a22017-03-01 20:32:44 +0100479 if (p_beval && wait_time > 100L)
480 /* The 'balloonexpr' may indirectly invoke a callback while waiting
481 * for a character, need to check often. */
482 wait_time = 100L;
483#endif
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200484
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 /*
Bram Moolenaar48bae372010-07-29 23:12:15 +0200486 * We want to be interrupted by the winch signal
487 * or by an event on the monitored file descriptors.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488 */
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200489 if (WaitForChar(wait_time, &interrupted, FALSE))
Bram Moolenaar67c53842010-05-22 18:28:27 +0200490 {
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200491 /* If input was put directly in typeahead buffer bail out here. */
492 if (typebuf_changed(tb_change_cnt))
493 return 0;
494
495 /*
496 * For some terminals we only get one character at a time.
497 * We want the get all available characters, so we could keep on
498 * trying until none is available
499 * For some other terminals this is quite slow, that's why we don't
500 * do it.
501 */
502 len = read_from_input_buf(buf, (long)maxlen);
503 if (len > 0)
504 return len;
505 continue;
Bram Moolenaar67c53842010-05-22 18:28:27 +0200506 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200508 /* no character available */
509#if !(defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H))
510 /* estimate the elapsed time */
Bram Moolenaarde5e2c22016-11-04 20:35:31 +0100511 elapsed_time += wait_time;
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200512#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000513
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200514 if (do_resize /* interrupted by SIGWINCH signal */
515#ifdef FEAT_CLIENTSERVER
516 || server_waiting()
517#endif
518#ifdef MESSAGE_QUEUE
519 || interrupted
520#endif
521 || wait_time > 0
Bram Moolenaar1572e302017-03-25 20:16:28 +0100522 || (wtime < 0 && !did_start_blocking))
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200523 continue;
524
525 /* no character available or interrupted */
526 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000527 }
Bram Moolenaar01688ad2016-10-27 20:00:07 +0200528 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529}
530
531 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100532handle_resize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000533{
534 do_resize = FALSE;
535 shell_resized();
536}
537
538/*
Bram Moolenaar40b1b542016-04-20 20:18:23 +0200539 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000540 */
541 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100542mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000543{
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200544 return WaitForChar(0L, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545}
546
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200547#if defined(FEAT_TERMINAL) || defined(PROTO)
548/*
549 * Check for any pending input or messages.
550 */
551 int
552mch_check_messages(void)
553{
554 return WaitForChar(0L, NULL, TRUE);
555}
556#endif
557
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558#if defined(HAVE_TOTAL_MEM) || defined(PROTO)
559# ifdef HAVE_SYS_RESOURCE_H
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000560# include <sys/resource.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000561# endif
562# if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
563# include <sys/sysctl.h>
564# endif
565# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
566# include <sys/sysinfo.h>
567# endif
568
569/*
Bram Moolenaar914572a2007-05-01 11:37:47 +0000570 * Return total amount of memory available in Kbyte.
571 * Doesn't change when memory has been allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000573 long_u
Bram Moolenaar05540972016-01-30 20:31:25 +0100574mch_total_mem(int special UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000576 long_u mem = 0;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000577 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000578
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200579# ifdef HAVE_SYSCTL
Bram Moolenaar071d4272004-06-13 20:20:40 +0000580 int mib[2], physmem;
581 size_t len;
582
583 /* BSD way of getting the amount of RAM available. */
584 mib[0] = CTL_HW;
585 mib[1] = HW_USERMEM;
586 len = sizeof(physmem);
587 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
588 mem = (long_u)physmem;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200589# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000590
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200591# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000592 if (mem == 0)
593 {
594 struct sysinfo sinfo;
595
596 /* Linux way of getting amount of RAM available */
597 if (sysinfo(&sinfo) == 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000598 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200599# ifdef HAVE_SYSINFO_MEM_UNIT
Bram Moolenaar914572a2007-05-01 11:37:47 +0000600 /* avoid overflow as much as possible */
601 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
602 {
603 sinfo.mem_unit = sinfo.mem_unit >> 1;
604 --shiftright;
605 }
606 mem = sinfo.totalram * sinfo.mem_unit;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200607# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 mem = sinfo.totalram;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200609# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200612# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200614# ifdef HAVE_SYSCONF
Bram Moolenaar071d4272004-06-13 20:20:40 +0000615 if (mem == 0)
616 {
617 long pagesize, pagecount;
618
619 /* Solaris way of getting amount of RAM available */
620 pagesize = sysconf(_SC_PAGESIZE);
621 pagecount = sysconf(_SC_PHYS_PAGES);
622 if (pagesize > 0 && pagecount > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000623 {
624 /* avoid overflow as much as possible */
625 while (shiftright > 0 && (pagesize & 1) == 0)
626 {
Bram Moolenaar3d27a452007-05-10 17:44:18 +0000627 pagesize = (long_u)pagesize >> 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000628 --shiftright;
629 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 mem = (long_u)pagesize * pagecount;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200633# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634
635 /* Return the minimum of the physical memory and the user limit, because
636 * using more than the user limit may cause Vim to be terminated. */
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200637# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638 {
639 struct rlimit rlp;
640
641 if (getrlimit(RLIMIT_DATA, &rlp) == 0
642 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200643# ifdef RLIM_INFINITY
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 && rlp.rlim_cur != RLIM_INFINITY
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200645# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000646 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000647 )
Bram Moolenaar914572a2007-05-01 11:37:47 +0000648 {
649 mem = (long_u)rlp.rlim_cur;
650 shiftright = 10;
651 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000652 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200653# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654
655 if (mem > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000656 return mem >> shiftright;
657 return (long_u)0x1fffff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658}
659#endif
660
661 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100662mch_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000663{
664 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000665#ifdef FEAT_MZSCHEME
666 long total = msec; /* remember original value */
667#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668
669 if (ignoreinput)
670 {
671 /* Go to cooked mode without echo, to allow SIGINT interrupting us
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000672 * here. But we don't want QUIT to kill us (CTRL-\ used in a
673 * shell may produce SIGQUIT). */
674 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 old_tmode = curr_tmode;
676 if (curr_tmode == TMODE_RAW)
677 settmode(TMODE_SLEEP);
678
679 /*
680 * Everybody sleeps in a different way...
681 * Prefer nanosleep(), some versions of usleep() can only sleep up to
682 * one second.
683 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000684#ifdef FEAT_MZSCHEME
685 do
686 {
687 /* if total is large enough, wait by portions in p_mzq */
688 if (total > p_mzq)
689 msec = p_mzq;
690 else
691 msec = total;
692 total -= msec;
693#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000694#ifdef HAVE_NANOSLEEP
695 {
696 struct timespec ts;
697
698 ts.tv_sec = msec / 1000;
699 ts.tv_nsec = (msec % 1000) * 1000000;
700 (void)nanosleep(&ts, NULL);
701 }
702#else
703# ifdef HAVE_USLEEP
704 while (msec >= 1000)
705 {
706 usleep((unsigned int)(999 * 1000));
707 msec -= 999;
708 }
709 usleep((unsigned int)(msec * 1000));
710# else
711# ifndef HAVE_SELECT
712 poll(NULL, 0, (int)msec);
713# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 {
715 struct timeval tv;
716
717 tv.tv_sec = msec / 1000;
718 tv.tv_usec = (msec % 1000) * 1000;
719 /*
720 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
721 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
722 */
723 select(0, NULL, NULL, NULL, &tv);
724 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725# endif /* HAVE_SELECT */
726# endif /* HAVE_NANOSLEEP */
727#endif /* HAVE_USLEEP */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000728#ifdef FEAT_MZSCHEME
729 }
730 while (total > 0);
731#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732
733 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000734 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 }
736 else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +0200737 WaitForChar(msec, NULL, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738}
739
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000740#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000741 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
742# define HAVE_CHECK_STACK_GROWTH
743/*
744 * Support for checking for an almost-out-of-stack-space situation.
745 */
746
747/*
748 * Return a pointer to an item on the stack. Used to find out if the stack
749 * grows up or down.
750 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100751static void check_stack_growth(char *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752static int stack_grows_downwards;
753
754/*
755 * Find out if the stack grows upwards or downwards.
756 * "p" points to a variable on the stack of the caller.
757 */
758 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100759check_stack_growth(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760{
761 int i;
762
763 stack_grows_downwards = (p > (char *)&i);
764}
765#endif
766
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000767#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768static char *stack_limit = NULL;
769
770#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
771# include <pthread.h>
772# include <pthread_np.h>
773#endif
774
775/*
776 * Find out until how var the stack can grow without getting into trouble.
777 * Called when starting up and when switching to the signal stack in
778 * deathtrap().
779 */
780 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100781get_stack_limit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782{
783 struct rlimit rlp;
784 int i;
785 long lim;
786
787 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
788 * limit doesn't fit in a long (rlim_cur might be "long long"). */
789 if (getrlimit(RLIMIT_STACK, &rlp) == 0
790 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
791# ifdef RLIM_INFINITY
792 && rlp.rlim_cur != RLIM_INFINITY
793# endif
794 )
795 {
796 lim = (long)rlp.rlim_cur;
797#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
798 {
799 pthread_attr_t attr;
800 size_t size;
801
802 /* On FreeBSD the initial thread always has a fixed stack size, no
803 * matter what the limits are set to. Normally it's 1 Mbyte. */
804 pthread_attr_init(&attr);
805 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
806 {
807 pthread_attr_getstacksize(&attr, &size);
808 if (lim > (long)size)
809 lim = (long)size;
810 }
811 pthread_attr_destroy(&attr);
812 }
813#endif
814 if (stack_grows_downwards)
815 {
816 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
817 if (stack_limit >= (char *)&i)
818 /* overflow, set to 1/16 of current stack position */
819 stack_limit = (char *)((long)&i / 16L);
820 }
821 else
822 {
823 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
824 if (stack_limit <= (char *)&i)
825 stack_limit = NULL; /* overflow */
826 }
827 }
828}
829
830/*
831 * Return FAIL when running out of stack space.
832 * "p" must point to any variable local to the caller that's on the stack.
833 */
834 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100835mch_stackcheck(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836{
837 if (stack_limit != NULL)
838 {
839 if (stack_grows_downwards)
840 {
841 if (p < stack_limit)
842 return FAIL;
843 }
844 else if (p > stack_limit)
845 return FAIL;
846 }
847 return OK;
848}
849#endif
850
851#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
852/*
853 * Support for using the signal stack.
854 * This helps when we run out of stack space, which causes a SIGSEGV. The
855 * signal handler then must run on another stack, since the normal stack is
856 * completely full.
857 */
858
859#ifndef SIGSTKSZ
860# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
861#endif
862
863# ifdef HAVE_SIGALTSTACK
864static stack_t sigstk; /* for sigaltstack() */
865# else
866static struct sigstack sigstk; /* for sigstack() */
867# endif
868
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100869static void init_signal_stack(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870static char *signal_stack;
871
872 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100873init_signal_stack(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874{
875 if (signal_stack != NULL)
876 {
877# ifdef HAVE_SIGALTSTACK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878# ifdef HAVE_SS_BASE
879 sigstk.ss_base = signal_stack;
880# else
881 sigstk.ss_sp = signal_stack;
882# endif
883 sigstk.ss_size = SIGSTKSZ;
884 sigstk.ss_flags = 0;
885 (void)sigaltstack(&sigstk, NULL);
886# else
887 sigstk.ss_sp = signal_stack;
888 if (stack_grows_downwards)
889 sigstk.ss_sp += SIGSTKSZ - 1;
890 sigstk.ss_onstack = 0;
891 (void)sigstack(&sigstk, NULL);
892# endif
893 }
894}
895#endif
896
897/*
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000898 * We need correct prototypes for a signal function, otherwise mean compilers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 * will barf when the second argument to signal() is ``wrong''.
900 * Let me try it with a few tricky defines from my own osdef.h (jw).
901 */
902#if defined(SIGWINCH)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903 static RETSIGTYPE
904sig_winch SIGDEFARG(sigarg)
905{
906 /* this is not required on all systems, but it doesn't hurt anybody */
907 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
908 do_resize = TRUE;
909 SIGRETURN;
910}
911#endif
912
913#if defined(SIGINT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 static RETSIGTYPE
915catch_sigint SIGDEFARG(sigarg)
916{
917 /* this is not required on all systems, but it doesn't hurt anybody */
918 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
919 got_int = TRUE;
920 SIGRETURN;
921}
922#endif
923
924#if defined(SIGPWR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000925 static RETSIGTYPE
926catch_sigpwr SIGDEFARG(sigarg)
927{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000928 /* this is not required on all systems, but it doesn't hurt anybody */
929 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 /*
931 * I'm not sure we get the SIGPWR signal when the system is really going
932 * down or when the batteries are almost empty. Just preserve the swap
933 * files and don't exit, that can't do any harm.
934 */
935 ml_sync_all(FALSE, FALSE);
936 SIGRETURN;
937}
938#endif
939
940#ifdef SET_SIG_ALARM
941/*
942 * signal function for alarm().
943 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 static RETSIGTYPE
945sig_alarm SIGDEFARG(sigarg)
946{
947 /* doesn't do anything, just to break a system call */
948 sig_alarm_called = TRUE;
949 SIGRETURN;
950}
951#endif
952
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000953#if (defined(HAVE_SETJMP_H) \
954 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
955 || defined(FEAT_LIBCALL))) \
956 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957/*
958 * A simplistic version of setjmp() that only allows one level of using.
959 * Don't call twice before calling mch_endjmp()!.
960 * Usage:
961 * mch_startjmp();
962 * if (SETJMP(lc_jump_env) != 0)
963 * {
964 * mch_didjmp();
965 * EMSG("crash!");
966 * }
967 * else
968 * {
969 * do_the_work;
970 * mch_endjmp();
971 * }
972 * Note: Can't move SETJMP() here, because a function calling setjmp() must
973 * not return before the saved environment is used.
974 * Returns OK for normal return, FAIL when the protected code caused a
975 * problem and LONGJMP() was used.
976 */
977 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100978mch_startjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000979{
980#ifdef SIGHASARG
981 lc_signal = 0;
982#endif
983 lc_active = TRUE;
984}
985
986 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100987mch_endjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988{
989 lc_active = FALSE;
990}
991
992 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100993mch_didjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994{
995# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
996 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
997 * otherwise catching the signal only works once. */
998 init_signal_stack();
999# endif
1000}
1001#endif
1002
1003/*
1004 * This function handles deadly signals.
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001005 * It tries to preserve any swap files and exit properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006 * (partly from Elvis).
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001007 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in
1008 * a deadlock.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009 */
1010 static RETSIGTYPE
1011deathtrap SIGDEFARG(sigarg)
1012{
1013 static int entered = 0; /* count the number of times we got here.
1014 Note: when memory has been corrupted
1015 this may get an arbitrary value! */
1016#ifdef SIGHASARG
1017 int i;
1018#endif
1019
1020#if defined(HAVE_SETJMP_H)
1021 /*
1022 * Catch a crash in protected code.
1023 * Restores the environment saved in lc_jump_env, which looks like
1024 * SETJMP() returns 1.
1025 */
1026 if (lc_active)
1027 {
1028# if defined(SIGHASARG)
1029 lc_signal = sigarg;
1030# endif
1031 lc_active = FALSE; /* don't jump again */
1032 LONGJMP(lc_jump_env, 1);
1033 /* NOTREACHED */
1034 }
1035#endif
1036
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001037#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +00001038# ifdef SIGQUIT
1039 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
1040 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
1041 * pressing CTRL-\, but we don't want Vim to exit then. */
1042 if (in_mch_delay && sigarg == SIGQUIT)
1043 SIGRETURN;
1044# endif
1045
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001046 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
1047 * here. This avoids that a non-reentrant function is interrupted, e.g.,
1048 * free(). Calling free() again may then cause a crash. */
1049 if (entered == 0
1050 && (0
1051# ifdef SIGHUP
1052 || sigarg == SIGHUP
1053# endif
1054# ifdef SIGQUIT
1055 || sigarg == SIGQUIT
1056# endif
1057# ifdef SIGTERM
1058 || sigarg == SIGTERM
1059# endif
1060# ifdef SIGPWR
1061 || sigarg == SIGPWR
1062# endif
1063# ifdef SIGUSR1
1064 || sigarg == SIGUSR1
1065# endif
1066# ifdef SIGUSR2
1067 || sigarg == SIGUSR2
1068# endif
1069 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001070 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001071 SIGRETURN;
1072#endif
1073
Bram Moolenaar071d4272004-06-13 20:20:40 +00001074 /* Remember how often we have been called. */
1075 ++entered;
1076
Bram Moolenaare429e702016-06-10 19:49:14 +02001077#ifdef FEAT_AUTOCMD
1078 /* Executing autocommands is likely to use more stack space than we have
1079 * available in the signal stack. */
1080 block_autocmds();
1081#endif
1082
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083#ifdef FEAT_EVAL
1084 /* Set the v:dying variable. */
1085 set_vim_var_nr(VV_DYING, (long)entered);
1086#endif
1087
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001088#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001089 /* Since we are now using the signal stack, need to reset the stack
1090 * limit. Otherwise using a regexp will fail. */
1091 get_stack_limit();
1092#endif
1093
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001094#if 0
1095 /* This is for opening gdb the moment Vim crashes.
1096 * You need to manually adjust the file name and Vim executable name.
1097 * Suggested by SungHyun Nam. */
1098 {
1099# define VI_GDB_FILE "/tmp/vimgdb"
1100# define VIM_NAME "/usr/bin/vim"
1101 FILE *fp = fopen(VI_GDB_FILE, "w");
1102 if (fp)
1103 {
1104 fprintf(fp,
1105 "file %s\n"
1106 "attach %d\n"
1107 "set height 1000\n"
1108 "bt full\n"
1109 , VIM_NAME, getpid());
1110 fclose(fp);
1111 system("xterm -e gdb -x "VI_GDB_FILE);
1112 unlink(VI_GDB_FILE);
1113 }
1114 }
1115#endif
1116
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117#ifdef SIGHASARG
1118 /* try to find the name of this signal */
1119 for (i = 0; signal_info[i].sig != -1; i++)
1120 if (sigarg == signal_info[i].sig)
1121 break;
1122 deadly_signal = sigarg;
1123#endif
1124
1125 full_screen = FALSE; /* don't write message to the GUI, it might be
1126 * part of the problem... */
1127 /*
1128 * If something goes wrong after entering here, we may get here again.
1129 * When this happens, give a message and try to exit nicely (resetting the
1130 * terminal mode, etc.)
1131 * When this happens twice, just exit, don't even try to give a message,
1132 * stack may be corrupt or something weird.
1133 * When this still happens again (or memory was corrupted in such a way
1134 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1135 */
1136 if (entered >= 3)
1137 {
1138 reset_signals(); /* don't catch any signals anymore */
1139 may_core_dump();
1140 if (entered >= 4)
1141 _exit(8);
1142 exit(7);
1143 }
1144 if (entered == 2)
1145 {
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001146 /* No translation, it may call malloc(). */
1147 OUT_STR("Vim: Double signal, exiting\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 out_flush();
1149 getout(1);
1150 }
1151
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001152 /* No translation, it may call malloc(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153#ifdef SIGHASARG
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001154 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 signal_info[i].name);
1156#else
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001157 sprintf((char *)IObuff, "Vim: Caught deadly signal\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001158#endif
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001159
1160 /* Preserve files and exit. This sets the really_exiting flag to prevent
1161 * calling free(). */
1162 preserve_exit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163
Bram Moolenaare429e702016-06-10 19:49:14 +02001164 /* NOTREACHED */
1165
Bram Moolenaar009b2592004-10-24 19:18:58 +00001166#ifdef NBDEBUG
1167 reset_signals();
1168 may_core_dump();
1169 abort();
1170#endif
1171
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 SIGRETURN;
1173}
1174
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001175#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001176/*
1177 * On Solaris with multi-threading, suspending might not work immediately.
1178 * Catch the SIGCONT signal, which will be used as an indication whether the
1179 * suspending has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001180 *
1181 * On Linux, signal is not always handled immediately either.
1182 * See https://bugs.launchpad.net/bugs/291373
1183 *
Bram Moolenaarb292a2a2011-02-09 18:47:40 +01001184 * volatile because it is used in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001186static volatile int sigcont_received;
Bram Moolenaard99df422016-01-29 23:20:40 +01001187static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188
1189/*
1190 * signal handler for SIGCONT
1191 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 static RETSIGTYPE
1193sigcont_handler SIGDEFARG(sigarg)
1194{
1195 sigcont_received = TRUE;
1196 SIGRETURN;
1197}
1198#endif
1199
Bram Moolenaar62b42182010-09-21 22:09:37 +02001200# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001201static void loose_clipboard(void);
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001202# ifdef USE_SYSTEM
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001203static void save_clipboard(void);
1204static void restore_clipboard(void);
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001205
1206static void *clip_star_save = NULL;
1207static void *clip_plus_save = NULL;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001208# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001209
1210/*
1211 * Called when Vim is going to sleep or execute a shell command.
1212 * We can't respond to requests for the X selections. Lose them, otherwise
1213 * other applications will hang. But first copy the text to cut buffer 0.
1214 */
1215 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001216loose_clipboard(void)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001217{
1218 if (clip_star.owned || clip_plus.owned)
1219 {
1220 x11_export_final_selection();
1221 if (clip_star.owned)
1222 clip_lose_selection(&clip_star);
1223 if (clip_plus.owned)
1224 clip_lose_selection(&clip_plus);
1225 if (x11_display != NULL)
1226 XFlush(x11_display);
1227 }
1228}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001229
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001230# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001231/*
1232 * Save clipboard text to restore later.
1233 */
1234 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001235save_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001236{
1237 if (clip_star.owned)
1238 clip_star_save = get_register('*', TRUE);
1239 if (clip_plus.owned)
1240 clip_plus_save = get_register('+', TRUE);
1241}
1242
1243/*
1244 * Restore clipboard text if no one own the X selection.
1245 */
1246 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001247restore_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001248{
1249 if (clip_star_save != NULL)
1250 {
1251 if (!clip_gen_owner_exists(&clip_star))
1252 put_register('*', clip_star_save);
1253 else
1254 free_register(clip_star_save);
1255 clip_star_save = NULL;
1256 }
1257 if (clip_plus_save != NULL)
1258 {
1259 if (!clip_gen_owner_exists(&clip_plus))
1260 put_register('+', clip_plus_save);
1261 else
1262 free_register(clip_plus_save);
1263 clip_plus_save = NULL;
1264 }
1265}
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001266# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001267#endif
1268
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269/*
1270 * If the machine has job control, use it to suspend the program,
1271 * otherwise fake it by starting a new shell.
1272 */
1273 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001274mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275{
1276 /* BeOS does have SIGTSTP, but it doesn't work. */
1277#if defined(SIGTSTP) && !defined(__BEOS__)
1278 out_flush(); /* needed to make cursor visible on some systems */
1279 settmode(TMODE_COOK);
1280 out_flush(); /* needed to disable mouse on some systems */
1281
1282# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001283 loose_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001284# endif
1285
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001286# if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 sigcont_received = FALSE;
1288# endif
1289 kill(0, SIGTSTP); /* send ourselves a STOP signal */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001290# if defined(_REENTRANT) && defined(SIGCONT)
1291 /*
1292 * Wait for the SIGCONT signal to be handled. It generally happens
1293 * immediately, but somehow not all the time. Do not call pause()
1294 * because there would be race condition which would hang Vim if
1295 * signal happened in between the test of sigcont_received and the
1296 * call to pause(). If signal is not yet received, call sleep(0)
1297 * to just yield CPU. Signal should then be received. If somehow
1298 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1299 * further if signal is not received after 1+2+3+4 ms (not expected
1300 * to happen).
1301 */
1302 {
Bram Moolenaar262735e2009-07-14 10:20:22 +00001303 long wait_time;
1304 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001305 /* Loop is not entered most of the time */
Bram Moolenaar262735e2009-07-14 10:20:22 +00001306 mch_delay(wait_time, FALSE);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001307 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308# endif
1309
1310# ifdef FEAT_TITLE
1311 /*
1312 * Set oldtitle to NULL, so the current title is obtained again.
1313 */
1314 vim_free(oldtitle);
1315 oldtitle = NULL;
1316# endif
1317 settmode(TMODE_RAW);
1318 need_check_timestamps = TRUE;
1319 did_check_timestamps = FALSE;
1320#else
1321 suspend_shell();
1322#endif
1323}
1324
1325 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001326mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327{
1328 Columns = 80;
1329 Rows = 24;
1330
1331 out_flush();
1332 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001333
Bram Moolenaar56718732006-03-15 22:53:57 +00001334#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001335 mac_conv_init();
1336#endif
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001337#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
1338 win_clip_init();
1339#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340}
1341
1342 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001343set_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001344{
1345#if defined(SIGWINCH)
1346 /*
1347 * WINDOW CHANGE signal is handled with sig_winch().
1348 */
1349 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1350#endif
1351
1352 /*
1353 * We want the STOP signal to work, to make mch_suspend() work.
1354 * For "rvim" the STOP signal is ignored.
1355 */
1356#ifdef SIGTSTP
1357 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1358#endif
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001359#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 signal(SIGCONT, sigcont_handler);
1361#endif
1362
1363 /*
1364 * We want to ignore breaking of PIPEs.
1365 */
1366#ifdef SIGPIPE
1367 signal(SIGPIPE, SIG_IGN);
1368#endif
1369
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001371 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372#endif
1373
1374 /*
1375 * Ignore alarm signals (Perl's alarm() generates it).
1376 */
1377#ifdef SIGALRM
1378 signal(SIGALRM, SIG_IGN);
1379#endif
1380
1381 /*
1382 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1383 * work will be lost.
1384 */
1385#ifdef SIGPWR
1386 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1387#endif
1388
1389 /*
1390 * Arrange for other signals to gracefully shutdown Vim.
1391 */
1392 catch_signals(deathtrap, SIG_ERR);
1393
1394#if defined(FEAT_GUI) && defined(SIGHUP)
1395 /*
1396 * When the GUI is running, ignore the hangup signal.
1397 */
1398 if (gui.in_use)
1399 signal(SIGHUP, SIG_IGN);
1400#endif
1401}
1402
Bram Moolenaardf177f62005-02-22 08:39:57 +00001403#if defined(SIGINT) || defined(PROTO)
1404/*
1405 * Catch CTRL-C (only works while in Cooked mode).
1406 */
1407 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001408catch_int_signal(void)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001409{
1410 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1411}
1412#endif
1413
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001415reset_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416{
1417 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001418#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001419 /* SIGCONT isn't in the list, because its default action is ignore */
1420 signal(SIGCONT, SIG_DFL);
1421#endif
1422}
1423
1424 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001425catch_signals(
1426 RETSIGTYPE (*func_deadly)(),
1427 RETSIGTYPE (*func_other)())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428{
1429 int i;
1430
1431 for (i = 0; signal_info[i].sig != -1; i++)
1432 if (signal_info[i].deadly)
1433 {
1434#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1435 struct sigaction sa;
1436
1437 /* Setup to use the alternate stack for the signal function. */
1438 sa.sa_handler = func_deadly;
1439 sigemptyset(&sa.sa_mask);
1440# if defined(__linux__) && defined(_REENTRANT)
1441 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1442 * thread handling in combination with using the alternate stack:
1443 * pthread library functions try to use the stack pointer to
1444 * identify the current thread, causing a SEGV signal, which
1445 * recursively calls deathtrap() and hangs. */
1446 sa.sa_flags = 0;
1447# else
1448 sa.sa_flags = SA_ONSTACK;
1449# endif
1450 sigaction(signal_info[i].sig, &sa, NULL);
1451#else
1452# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1453 struct sigvec sv;
1454
1455 /* Setup to use the alternate stack for the signal function. */
1456 sv.sv_handler = func_deadly;
1457 sv.sv_mask = 0;
1458 sv.sv_flags = SV_ONSTACK;
1459 sigvec(signal_info[i].sig, &sv, NULL);
1460# else
1461 signal(signal_info[i].sig, func_deadly);
1462# endif
1463#endif
1464 }
1465 else if (func_other != SIG_ERR)
1466 signal(signal_info[i].sig, func_other);
1467}
1468
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02001469#ifdef HAVE_SIGPROCMASK
1470 static void
1471block_signals(sigset_t *set)
1472{
1473 sigset_t newset;
1474 int i;
1475
1476 sigemptyset(&newset);
1477
1478 for (i = 0; signal_info[i].sig != -1; i++)
1479 sigaddset(&newset, signal_info[i].sig);
1480
1481# if defined(_REENTRANT) && defined(SIGCONT)
1482 /* SIGCONT isn't in the list, because its default action is ignore */
1483 sigaddset(&newset, SIGCONT);
1484# endif
1485
1486 sigprocmask(SIG_BLOCK, &newset, set);
1487}
1488
1489 static void
1490unblock_signals(sigset_t *set)
1491{
1492 sigprocmask(SIG_SETMASK, set, NULL);
1493}
1494#endif
1495
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001497 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001498 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1499 * return TRUE
1500 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1501 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
Bram Moolenaar67c53842010-05-22 18:28:27 +02001502 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001503 * Returns TRUE when Vim should exit.
1504 */
1505 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001506vim_handle_signal(int sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001507{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001508 static int got_signal = 0;
1509 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001510
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001511 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001512 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001513 case SIGNAL_BLOCK: blocked = TRUE;
1514 break;
1515
1516 case SIGNAL_UNBLOCK: blocked = FALSE;
1517 if (got_signal != 0)
1518 {
1519 kill(getpid(), got_signal);
1520 got_signal = 0;
1521 }
1522 break;
1523
1524 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001525 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001526 got_signal = sig;
1527#ifdef SIGPWR
1528 if (sig != SIGPWR)
1529#endif
1530 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001531 break;
1532 }
1533 return FALSE;
1534}
1535
1536/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001537 * Check_win checks whether we have an interactive stdout.
1538 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001539 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001540mch_check_win(int argc UNUSED, char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 if (isatty(1))
1543 return OK;
1544 return FAIL;
1545}
1546
1547/*
1548 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1549 */
1550 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001551mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001552{
1553 if (isatty(read_cmd_fd))
1554 return TRUE;
1555 return FALSE;
1556}
1557
1558#ifdef FEAT_X11
1559
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001560# if defined(ELAPSED_TIMEVAL) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1562
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563/*
1564 * Give a message about the elapsed time for opening the X window.
1565 */
1566 static void
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001567xopen_message(long elapsed_msec)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001568{
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001569 smsg((char_u *)_("Opening the X display took %ld msec"), elapsed_msec);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001570}
1571# endif
1572#endif
1573
1574#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1575/*
1576 * A few functions shared by X11 title and clipboard code.
1577 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001578static int x_error_handler(Display *dpy, XErrorEvent *error_event);
1579static int x_error_check(Display *dpy, XErrorEvent *error_event);
1580static int x_connect_to_server(void);
1581static int test_x11_window(Display *dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582
1583static int got_x_error = FALSE;
1584
1585/*
1586 * X Error handler, otherwise X just exits! (very rude) -- webb
1587 */
1588 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001589x_error_handler(Display *dpy, XErrorEvent *error_event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001591 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 STRCAT(IObuff, _("\nVim: Got X error\n"));
1593
1594 /* We cannot print a message and continue, because no X calls are allowed
1595 * here (causes my system to hang). Silently continuing might be an
1596 * alternative... */
1597 preserve_exit(); /* preserve files and exit */
1598
1599 return 0; /* NOTREACHED */
1600}
1601
1602/*
1603 * Another X Error handler, just used to check for errors.
1604 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001606x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001607{
1608 got_x_error = TRUE;
1609 return 0;
1610}
1611
1612#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1613# if defined(HAVE_SETJMP_H)
1614/*
1615 * An X IO Error handler, used to catch error while opening the display.
1616 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001617static int x_IOerror_check(Display *dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618
Bram Moolenaar071d4272004-06-13 20:20:40 +00001619 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001620x_IOerror_check(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001621{
1622 /* This function should not return, it causes exit(). Longjump instead. */
1623 LONGJMP(lc_jump_env, 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02001624# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001625 return 0; /* avoid the compiler complains about missing return value */
1626# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627}
1628# endif
1629
1630/*
1631 * An X IO Error handler, used to catch terminal errors.
1632 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001633static int x_IOerror_handler(Display *dpy);
1634static void may_restore_clipboard(void);
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001635static int xterm_dpy_was_reset = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001636
Bram Moolenaar071d4272004-06-13 20:20:40 +00001637 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001638x_IOerror_handler(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001639{
1640 xterm_dpy = NULL;
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001641 xterm_dpy_was_reset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642 x11_window = 0;
1643 x11_display = NULL;
1644 xterm_Shell = (Widget)0;
1645
1646 /* This function should not return, it causes exit(). Longjump instead. */
1647 LONGJMP(x_jump_env, 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02001648# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001649 return 0; /* avoid the compiler complains about missing return value */
1650# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651}
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001652
1653/*
1654 * If the X11 connection was lost try to restore it.
1655 * Helps when the X11 server was stopped and restarted while Vim was inactive
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01001656 * (e.g. through tmux).
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001657 */
1658 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001659may_restore_clipboard(void)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001660{
1661 if (xterm_dpy_was_reset)
1662 {
1663 xterm_dpy_was_reset = FALSE;
Bram Moolenaar527a6782014-12-17 17:59:31 +01001664
1665# ifndef LESSTIF_VERSION
1666 /* This has been reported to avoid Vim getting stuck. */
1667 if (app_context != (XtAppContext)NULL)
1668 {
1669 XtDestroyApplicationContext(app_context);
1670 app_context = (XtAppContext)NULL;
1671 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
1672 }
1673# endif
1674
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001675 setup_term_clip();
1676 get_x11_title(FALSE);
1677 }
1678}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679#endif
1680
1681/*
1682 * Return TRUE when connection to the X server is desired.
1683 */
1684 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001685x_connect_to_server(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687#if defined(FEAT_CLIENTSERVER)
1688 if (x_force_connect)
1689 return TRUE;
1690#endif
1691 if (x_no_connect)
1692 return FALSE;
1693
1694 /* Check for a match with "exclude:" from 'clipboard'. */
1695 if (clip_exclude_prog != NULL)
1696 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01001697 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 return FALSE;
1699 }
1700 return TRUE;
1701}
1702
1703/*
1704 * Test if "dpy" and x11_window are valid by getting the window title.
1705 * I don't actually want it yet, so there may be a simpler call to use, but
1706 * this will cause the error handler x_error_check() to be called if anything
1707 * is wrong, such as the window pointer being invalid (as can happen when the
1708 * user changes his DISPLAY, but not his WINDOWID) -- webb
1709 */
1710 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001711test_x11_window(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001712{
1713 int (*old_handler)();
1714 XTextProperty text_prop;
1715
1716 old_handler = XSetErrorHandler(x_error_check);
1717 got_x_error = FALSE;
1718 if (XGetWMName(dpy, x11_window, &text_prop))
1719 XFree((void *)text_prop.value);
1720 XSync(dpy, False);
1721 (void)XSetErrorHandler(old_handler);
1722
1723 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001724 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725
1726 return (got_x_error ? FAIL : OK);
1727}
1728#endif
1729
1730#ifdef FEAT_TITLE
1731
1732#ifdef FEAT_X11
1733
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001734static int get_x11_thing(int get_title, int test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735
1736/*
1737 * try to get x11 window and display
1738 *
1739 * return FAIL for failure, OK otherwise
1740 */
1741 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001742get_x11_windis(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001743{
1744 char *winid;
1745 static int result = -1;
1746#define XD_NONE 0 /* x11_display not set here */
1747#define XD_HERE 1 /* x11_display opened here */
1748#define XD_GUI 2 /* x11_display used from gui.dpy */
1749#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1750 static int x11_display_from = XD_NONE;
1751 static int did_set_error_handler = FALSE;
1752
1753 if (!did_set_error_handler)
1754 {
1755 /* X just exits if it finds an error otherwise! */
1756 (void)XSetErrorHandler(x_error_handler);
1757 did_set_error_handler = TRUE;
1758 }
1759
Bram Moolenaar9372a112005-12-06 19:59:18 +00001760#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001761 if (gui.in_use)
1762 {
1763 /*
1764 * If the X11 display was opened here before, for the window where Vim
1765 * was started, close that one now to avoid a memory leak.
1766 */
1767 if (x11_display_from == XD_HERE && x11_display != NULL)
1768 {
1769 XCloseDisplay(x11_display);
1770 x11_display_from = XD_NONE;
1771 }
1772 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1773 {
1774 x11_display_from = XD_GUI;
1775 return OK;
1776 }
1777 x11_display = NULL;
1778 return FAIL;
1779 }
1780 else if (x11_display_from == XD_GUI)
1781 {
1782 /* GUI must have stopped somehow, clear x11_display */
1783 x11_window = 0;
1784 x11_display = NULL;
1785 x11_display_from = XD_NONE;
1786 }
1787#endif
1788
1789 /* When started with the "-X" argument, don't try connecting. */
1790 if (!x_connect_to_server())
1791 return FAIL;
1792
1793 /*
1794 * If WINDOWID not set, should try another method to find out
1795 * what the current window number is. The only code I know for
1796 * this is very complicated.
1797 * We assume that zero is invalid for WINDOWID.
1798 */
1799 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1800 x11_window = (Window)atol(winid);
1801
1802#ifdef FEAT_XCLIPBOARD
1803 if (xterm_dpy != NULL && x11_window != 0)
1804 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001805 /* We may have checked it already, but Gnome terminal can move us to
1806 * another window, so we need to check every time. */
1807 if (x11_display_from != XD_XTERM)
1808 {
1809 /*
1810 * If the X11 display was opened here before, for the window where
1811 * Vim was started, close that one now to avoid a memory leak.
1812 */
1813 if (x11_display_from == XD_HERE && x11_display != NULL)
1814 XCloseDisplay(x11_display);
1815 x11_display = xterm_dpy;
1816 x11_display_from = XD_XTERM;
1817 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001818 if (test_x11_window(x11_display) == FAIL)
1819 {
1820 /* probably bad $WINDOWID */
1821 x11_window = 0;
1822 x11_display = NULL;
1823 x11_display_from = XD_NONE;
1824 return FAIL;
1825 }
1826 return OK;
1827 }
1828#endif
1829
1830 if (x11_window == 0 || x11_display == NULL)
1831 result = -1;
1832
1833 if (result != -1) /* Have already been here and set this */
1834 return result; /* Don't do all these X calls again */
1835
1836 if (x11_window != 0 && x11_display == NULL)
1837 {
1838#ifdef SET_SIG_ALARM
1839 RETSIGTYPE (*sig_save)();
1840#endif
1841#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1842 struct timeval start_tv;
1843
1844 if (p_verbose > 0)
1845 gettimeofday(&start_tv, NULL);
1846#endif
1847
1848#ifdef SET_SIG_ALARM
1849 /*
1850 * Opening the Display may hang if the DISPLAY setting is wrong, or
1851 * the network connection is bad. Set an alarm timer to get out.
1852 */
1853 sig_alarm_called = FALSE;
1854 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1855 (RETSIGTYPE (*)())sig_alarm);
1856 alarm(2);
1857#endif
1858 x11_display = XOpenDisplay(NULL);
1859
1860#ifdef SET_SIG_ALARM
1861 alarm(0);
1862 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1863 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001864 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865#endif
1866 if (x11_display != NULL)
1867 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001868# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001870 {
1871 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01001872 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001873 verbose_leave();
1874 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001875# endif
1876 if (test_x11_window(x11_display) == FAIL)
1877 {
1878 /* Maybe window id is bad */
1879 x11_window = 0;
1880 XCloseDisplay(x11_display);
1881 x11_display = NULL;
1882 }
1883 else
1884 x11_display_from = XD_HERE;
1885 }
1886 }
1887 if (x11_window == 0 || x11_display == NULL)
1888 return (result = FAIL);
Bram Moolenaar727c8762010-10-20 19:17:48 +02001889
1890# ifdef FEAT_EVAL
1891 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
1892# endif
1893
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 return (result = OK);
1895}
1896
1897/*
1898 * Determine original x11 Window Title
1899 */
1900 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001901get_x11_title(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001903 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001904}
1905
1906/*
1907 * Determine original x11 Window icon
1908 */
1909 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001910get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911{
1912 int retval = FALSE;
1913
1914 retval = get_x11_thing(FALSE, test_only);
1915
1916 /* could not get old icon, use terminal name */
1917 if (oldicon == NULL && !test_only)
1918 {
1919 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001920 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001922 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923 }
1924
1925 return retval;
1926}
1927
1928 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001929get_x11_thing(
1930 int get_title, /* get title string */
1931 int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001932{
1933 XTextProperty text_prop;
1934 int retval = FALSE;
1935 Status status;
1936
1937 if (get_x11_windis() == OK)
1938 {
1939 /* Get window/icon name if any */
1940 if (get_title)
1941 status = XGetWMName(x11_display, x11_window, &text_prop);
1942 else
1943 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1944
1945 /*
1946 * If terminal is xterm, then x11_window may be a child window of the
1947 * outer xterm window that actually contains the window/icon name, so
1948 * keep traversing up the tree until a window with a title/icon is
1949 * found.
1950 */
1951 /* Previously this was only done for xterm and alikes. I don't see a
1952 * reason why it would fail for other terminal emulators.
1953 * if (term_is_xterm) */
1954 {
1955 Window root;
1956 Window parent;
1957 Window win = x11_window;
1958 Window *children;
1959 unsigned int num_children;
1960
1961 while (!status || text_prop.value == NULL)
1962 {
1963 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1964 &num_children))
1965 break;
1966 if (children)
1967 XFree((void *)children);
1968 if (parent == root || parent == 0)
1969 break;
1970
1971 win = parent;
1972 if (get_title)
1973 status = XGetWMName(x11_display, win, &text_prop);
1974 else
1975 status = XGetWMIconName(x11_display, win, &text_prop);
1976 }
1977 }
1978 if (status && text_prop.value != NULL)
1979 {
1980 retval = TRUE;
1981 if (!test_only)
1982 {
Bram Moolenaarf82bac32010-07-25 22:30:20 +02001983#if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE)
1984 if (text_prop.encoding == XA_STRING
1985# ifdef FEAT_MBYTE
1986 && !has_mbyte
1987# endif
1988 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 {
1990#endif
1991 if (get_title)
1992 oldtitle = vim_strsave((char_u *)text_prop.value);
1993 else
1994 oldicon = vim_strsave((char_u *)text_prop.value);
Bram Moolenaarf82bac32010-07-25 22:30:20 +02001995#if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 }
1997 else
1998 {
1999 char **cl;
2000 Status transform_status;
2001 int n = 0;
2002
2003 transform_status = XmbTextPropertyToTextList(x11_display,
2004 &text_prop,
2005 &cl, &n);
2006 if (transform_status >= Success && n > 0 && cl[0])
2007 {
2008 if (get_title)
2009 oldtitle = vim_strsave((char_u *) cl[0]);
2010 else
2011 oldicon = vim_strsave((char_u *) cl[0]);
2012 XFreeStringList(cl);
2013 }
2014 else
2015 {
2016 if (get_title)
2017 oldtitle = vim_strsave((char_u *)text_prop.value);
2018 else
2019 oldicon = vim_strsave((char_u *)text_prop.value);
2020 }
2021 }
2022#endif
2023 }
2024 XFree((void *)text_prop.value);
2025 }
2026 }
2027 return retval;
2028}
2029
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002030/* Xutf8 functions are not avaialble on older systems. Note that on some
2031 * systems X_HAVE_UTF8_STRING may be defined in a header file but
2032 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for
2033 * that and defines HAVE_XUTF8SETWMPROPERTIES. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002035# if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036# define USE_UTF8_STRING
2037# endif
2038#endif
2039
2040/*
2041 * Set x11 Window Title
2042 *
2043 * get_x11_windis() must be called before this and have returned OK
2044 */
2045 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002046set_x11_title(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002047{
2048 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
2049 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
2050 * supported everywhere and STRING doesn't work for multi-byte titles.
2051 */
2052#ifdef USE_UTF8_STRING
2053 if (enc_utf8)
2054 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
2055 NULL, NULL, 0, NULL, NULL, NULL);
2056 else
2057#endif
2058 {
2059#if XtSpecificationRelease >= 4
2060# ifdef FEAT_XFONTSET
2061 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
2062 NULL, NULL, 0, NULL, NULL, NULL);
2063# else
2064 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002065 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066
2067 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002068 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 XSetWMProperties(x11_display, x11_window, &text_prop,
2070 NULL, NULL, 0, NULL, NULL, NULL);
2071# endif
2072#else
2073 XStoreName(x11_display, x11_window, (char *)title);
2074#endif
2075 }
2076 XFlush(x11_display);
2077}
2078
2079/*
2080 * Set x11 Window icon
2081 *
2082 * get_x11_windis() must be called before this and have returned OK
2083 */
2084 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002085set_x11_icon(char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002086{
2087 /* See above for comments about using X*SetWMProperties(). */
2088#ifdef USE_UTF8_STRING
2089 if (enc_utf8)
2090 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2091 NULL, 0, NULL, NULL, NULL);
2092 else
2093#endif
2094 {
2095#if XtSpecificationRelease >= 4
2096# ifdef FEAT_XFONTSET
2097 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2098 NULL, 0, NULL, NULL, NULL);
2099# else
2100 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002101 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002102
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002103 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002104 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
2105 NULL, 0, NULL, NULL, NULL);
2106# endif
2107#else
2108 XSetIconName(x11_display, x11_window, (char *)icon);
2109#endif
2110 }
2111 XFlush(x11_display);
2112}
2113
2114#else /* FEAT_X11 */
2115
Bram Moolenaar071d4272004-06-13 20:20:40 +00002116 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002117get_x11_title(int test_only UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118{
2119 return FALSE;
2120}
2121
2122 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002123get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124{
2125 if (!test_only)
2126 {
2127 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002128 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002130 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 }
2132 return FALSE;
2133}
2134
2135#endif /* FEAT_X11 */
2136
2137 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002138mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002139{
2140 return get_x11_title(TRUE);
2141}
2142
2143 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002144mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145{
2146 return get_x11_icon(TRUE);
2147}
2148
2149/*
2150 * Set the window title and icon.
2151 */
2152 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002153mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154{
2155 int type = 0;
2156 static int recursive = 0;
2157
2158 if (T_NAME == NULL) /* no terminal name (yet) */
2159 return;
2160 if (title == NULL && icon == NULL) /* nothing to do */
2161 return;
2162
2163 /* When one of the X11 functions causes a deadly signal, we get here again
2164 * recursively. Avoid hanging then (something is probably locked). */
2165 if (recursive)
2166 return;
2167 ++recursive;
2168
2169 /*
2170 * if the window ID and the display is known, we may use X11 calls
2171 */
2172#ifdef FEAT_X11
2173 if (get_x11_windis() == OK)
2174 type = 1;
2175#else
2176# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
2177 if (gui.in_use)
2178 type = 1;
2179# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180#endif
2181
2182 /*
Bram Moolenaarf82bac32010-07-25 22:30:20 +02002183 * Note: if "t_ts" is set, title is set with escape sequence rather
Bram Moolenaar071d4272004-06-13 20:20:40 +00002184 * than x11 calls, because the x11 calls don't always work
2185 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 if ((type || *T_TS != NUL) && title != NULL)
2187 {
2188 if (oldtitle == NULL
2189#ifdef FEAT_GUI
2190 && !gui.in_use
2191#endif
2192 ) /* first call but not in GUI, save title */
2193 (void)get_x11_title(FALSE);
2194
2195 if (*T_TS != NUL) /* it's OK if t_fs is empty */
2196 term_settitle(title);
2197#ifdef FEAT_X11
2198 else
2199# ifdef FEAT_GUI_GTK
2200 if (!gui.in_use) /* don't do this if GTK+ is running */
2201# endif
2202 set_x11_title(title); /* x11 */
2203#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002204#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2206 else
2207 gui_mch_settitle(title, icon);
2208#endif
2209 did_set_title = TRUE;
2210 }
2211
2212 if ((type || *T_CIS != NUL) && icon != NULL)
2213 {
2214 if (oldicon == NULL
2215#ifdef FEAT_GUI
2216 && !gui.in_use
2217#endif
2218 ) /* first call, save icon */
2219 get_x11_icon(FALSE);
2220
2221 if (*T_CIS != NUL)
2222 {
2223 out_str(T_CIS); /* set icon start */
2224 out_str_nf(icon);
2225 out_str(T_CIE); /* set icon end */
2226 out_flush();
2227 }
2228#ifdef FEAT_X11
2229 else
2230# ifdef FEAT_GUI_GTK
2231 if (!gui.in_use) /* don't do this if GTK+ is running */
2232# endif
2233 set_x11_icon(icon); /* x11 */
2234#endif
2235 did_set_icon = TRUE;
2236 }
2237 --recursive;
2238}
2239
2240/*
2241 * Restore the window/icon title.
2242 * "which" is one of:
2243 * 1 only restore title
2244 * 2 only restore icon
2245 * 3 restore title and icon
2246 */
2247 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002248mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249{
2250 /* only restore the title or icon when it has been set */
2251 mch_settitle(((which & 1) && did_set_title) ?
2252 (oldtitle ? oldtitle : p_titleold) : NULL,
2253 ((which & 2) && did_set_icon) ? oldicon : NULL);
2254}
2255
2256#endif /* FEAT_TITLE */
2257
2258/*
2259 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002260 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 */
2262 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002263vim_is_xterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264{
2265 if (name == NULL)
2266 return FALSE;
2267 return (STRNICMP(name, "xterm", 5) == 0
2268 || STRNICMP(name, "nxterm", 6) == 0
2269 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002270 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002271 || STRNICMP(name, "rxvt", 4) == 0
Bram Moolenaar995e4af2017-09-01 20:24:03 +02002272 || STRNICMP(name, "screen.xterm", 12) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 || STRCMP(name, "builtin_xterm") == 0);
2274}
2275
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002276#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2277/*
2278 * Return TRUE if "name" appears to be that of a terminal
2279 * known to support the xterm-style mouse protocol.
2280 * Relies on term_is_xterm having been set to its correct value.
2281 */
2282 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002283use_xterm_like_mouse(char_u *name)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002284{
2285 return (name != NULL
Bram Moolenaare56132b2016-08-14 18:23:21 +02002286 && (term_is_xterm
2287 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002288 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaare56132b2016-08-14 18:23:21 +02002289 || STRICMP(name, "st") == 0
2290 || STRNICMP(name, "st-", 3) == 0
2291 || STRNICMP(name, "stterm", 6) == 0));
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002292}
2293#endif
2294
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2296/*
2297 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2298 * Return 1 for "xterm".
2299 * Return 2 for "xterm2".
Bram Moolenaarc8427482011-10-20 21:09:35 +02002300 * Return 3 for "urxvt".
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002301 * Return 4 for "sgr".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002302 */
2303 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002304use_xterm_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305{
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002306 if (ttym_flags == TTYM_SGR)
2307 return 4;
Bram Moolenaarc8427482011-10-20 21:09:35 +02002308 if (ttym_flags == TTYM_URXVT)
2309 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002310 if (ttym_flags == TTYM_XTERM2)
2311 return 2;
2312 if (ttym_flags == TTYM_XTERM)
2313 return 1;
2314 return 0;
2315}
2316#endif
2317
2318 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002319vim_is_iris(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320{
2321 if (name == NULL)
2322 return FALSE;
2323 return (STRNICMP(name, "iris-ansi", 9) == 0
2324 || STRCMP(name, "builtin_iris-ansi") == 0);
2325}
2326
2327 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002328vim_is_vt300(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329{
2330 if (name == NULL)
2331 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002332 /* catch VT100 - VT5xx */
2333 return ((STRNICMP(name, "vt", 2) == 0
2334 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002335 || STRCMP(name, "builtin_vt320") == 0);
2336}
2337
2338/*
2339 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2340 * This should include all windowed terminal emulators.
2341 */
2342 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002343vim_is_fastterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002344{
2345 if (name == NULL)
2346 return FALSE;
2347 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2348 return TRUE;
2349 return ( STRNICMP(name, "hpterm", 6) == 0
2350 || STRNICMP(name, "sun-cmd", 7) == 0
2351 || STRNICMP(name, "screen", 6) == 0
Bram Moolenaar0ba40702016-10-12 14:50:54 +02002352 || STRNICMP(name, "tmux", 4) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002353 || STRNICMP(name, "dtterm", 6) == 0);
2354}
2355
2356/*
2357 * Insert user name in s[len].
2358 * Return OK if a name found.
2359 */
2360 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002361mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362{
2363#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002364 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002365 return OK;
2366#else
2367 return mch_get_uname(getuid(), s, len);
2368#endif
2369}
2370
2371/*
2372 * Insert user name for "uid" in s[len].
2373 * Return OK if a name found.
2374 */
2375 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002376mch_get_uname(uid_t uid, char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377{
2378#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2379 struct passwd *pw;
2380
2381 if ((pw = getpwuid(uid)) != NULL
2382 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2383 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002384 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 return OK;
2386 }
2387#endif
2388 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2389 return FAIL; /* a number is not a name */
2390}
2391
2392/*
2393 * Insert host name is s[len].
2394 */
2395
2396#ifdef HAVE_SYS_UTSNAME_H
2397 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002398mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399{
2400 struct utsname vutsname;
2401
2402 if (uname(&vutsname) < 0)
2403 *s = NUL;
2404 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002405 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406}
2407#else /* HAVE_SYS_UTSNAME_H */
2408
2409# ifdef HAVE_SYS_SYSTEMINFO_H
2410# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2411# endif
2412
2413 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002414mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002415{
2416# ifdef VAXC
2417 vaxc$gethostname((char *)s, len);
2418# else
2419 gethostname((char *)s, len);
2420# endif
2421 s[len - 1] = NUL; /* make sure it's terminated */
2422}
2423#endif /* HAVE_SYS_UTSNAME_H */
2424
2425/*
2426 * return process ID
2427 */
2428 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002429mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002430{
2431 return (long)getpid();
2432}
2433
2434#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002435static char *strerror(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002436
2437 static char *
Bram Moolenaar05540972016-01-30 20:31:25 +01002438strerror(int err)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439{
2440 extern int sys_nerr;
2441 extern char *sys_errlist[];
2442 static char er[20];
2443
2444 if (err > 0 && err < sys_nerr)
2445 return (sys_errlist[err]);
2446 sprintf(er, "Error %d", err);
2447 return er;
2448}
2449#endif
2450
2451/*
2452 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2453 * 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,
2480 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;
2485 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 Moolenaar3577c6f2008-06-24 21:16:56 +00002491 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 Moolenaar06b07342015-12-31 22:26:28 +01002504 /* Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in
2505 * a forward slash. */
2506 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 Moolenaare3303cb2015-12-31 18:29:46 +01002514 /* Expand it if forced or not an absolute path.
2515 * Do not do it for "/file", the result is always "/". */
2516 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,
2521 * and then do the getwd() (and get back to where we were).
2522 * 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;
2539 dont_fchdir = TRUE; /* don't try again */
2540 }
2541 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002542#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543
2544 /* Only change directory when we are sure we can return to where
2545 * we are now. After doing "su" chdir(".") might not work. */
2546 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 {
2553 p = NULL; /* can't get current dir: don't chdir */
2554 retval = FAIL;
2555 }
2556 else
2557 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558 /* 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) */
2561 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();
2587 MSG("fchdir() to previous dir");
2588 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)
2597 EMSG(_(e_prev_dir));
2598 }
2599
2600 l = STRLEN(buf);
Bram Moolenaardac75692012-10-14 04:35:45 +02002601 if (l >= len - 1)
2602 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 Moolenaar071d4272004-06-13 20:20:40 +00002610 /* 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
2614 /* Do not append ".", "/dir/." is equal to "/dir". */
2615 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,
2646 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 {
2655 /* Open the directory where the file is located. */
2656 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 {
2674 /* Only accept names that differ in case and are the same byte
2675 * length. TODO: accept different length name. */
2676 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
2682 /* Verify the inode is equal. */
2683 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
2711 /* Keep the #ifdef outside of stat(), it may be a macro. */
2712#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
2719 /* The top bit makes the value negative, which means the file doesn't
2720 * exist. Remove the bit, we don't use it. */
2721 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 {
2790 /* If the filesystem doesn't support extended attributes,
2791 the original had no special security context and the
2792 target cannot have one either. */
2793 if (errno == EOPNOTSUPP)
2794 return;
2795
2796 MSG_PUTS(_("\nCould not get security context for "));
2797 msg_outtrans(from_file);
2798 msg_putchar('\n');
2799 return;
2800 }
2801 if (getfilecon((char *)to_file, &to_context) < 0)
2802 {
2803 MSG_PUTS(_("\nCould not get security context for "));
2804 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 {
2813 MSG_PUTS(_("\nCould not set security context for "));
2814 msg_outtrans(to_file);
2815 msg_putchar('\n');
2816 }
2817 }
2818 freecon(to_context);
2819 freecon(from_context);
2820 }
2821}
2822#endif /* HAVE_SELINUX */
2823
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 {
2850 /* get the name of the attribute to copy */
2851 name = smack_copied_attributes[index];
2852
2853 /* get the value of the attribute in buffer */
2854 size = getxattr((char*)from_file, name, buffer, sizeof(buffer));
2855 if (size >= 0)
2856 {
2857 /* copy the attribute value of buffer */
2858 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 {
2870 /* what reason of not having the attribute value? */
2871 switch (errno)
2872 {
2873 case ENOTSUP:
2874 /* extended attributes aren't supported or enabled */
2875 /* should a message be echoed? not sure... */
2876 return; /* leave because it isn't usefull to continue */
2877
2878 case ERANGE:
2879 default:
2880 /* 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);
2884 msg_puts(IObuff);
2885 msg_putchar('\n');
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002886 /* FALLTHROUGH to remove the attribute */
2887
2888 case ENODATA:
2889 /* no attribute of this name */
2890 ret = removexattr((char*)to_file, name);
Bram Moolenaar57a728d2014-04-02 23:09:26 +02002891 /* 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}
2898#endif /* HAVE_SMACK */
2899
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;
2961#endif /* HAVE_AIX_ACL */
2962#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002963#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002964#endif /* HAVE_POSIX_ACL */
2965 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);
2988#endif /* HAVE_AIX_ACL */
2989#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002990#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991#endif /* HAVE_POSIX_ACL */
2992}
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);
3011#endif /* HAVE_AIX_ACL */
3012#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01003013#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014#endif /* HAVE_POSIX_ACL */
3015}
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{
3024 /* can't hide a file */
3025}
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
3037 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3038 return FALSE;
3039 if (stat((char *)name, &statb))
3040 return FALSE;
3041#ifdef _POSIX_SOURCE
3042 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
3043#else
3044 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
3045#endif
3046}
3047
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003048/*
3049 * return TRUE if "name" is a directory, NOT a symlink to a directory
3050 * return FALSE if "name" is not a directory
3051 * return FALSE for error
3052 */
3053 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003054mch_isrealdir(char_u *name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003055{
3056 struct stat statb;
3057
3058 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3059 return FALSE;
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01003060 if (mch_lstat((char *)name, &statb))
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003061 return FALSE;
3062#ifdef _POSIX_SOURCE
3063 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
3064#else
3065 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
3066#endif
3067}
3068
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003069static int executable_file(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070
3071/*
3072 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
3073 */
3074 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003075executable_file(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076{
3077 struct stat st;
3078
3079 if (stat((char *)name, &st))
3080 return 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003081#ifdef VMS
3082 /* Like on Unix system file can have executable rights but not necessarily
3083 * be an executable, but on Unix is not a default for an ordianry file to
3084 * have an executable flag - on VMS it is in most cases.
3085 * Therefore, this check does not have any sense - let keep us to the
3086 * conventions instead:
3087 * *.COM and *.EXE files are the executables - the rest are not. This is
3088 * not ideal but better then it was.
3089 */
3090 int vms_executable = 0;
3091 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0)
3092 {
3093 if (strstr(vms_tolower((char*)name),".exe") != NULL
3094 || strstr(vms_tolower((char*)name),".com")!= NULL)
3095 vms_executable = 1;
3096 }
3097 return vms_executable;
3098#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003099 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003100#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101}
3102
3103/*
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01003104 * Return TRUE if "name" can be found in $PATH and executed, FALSE if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +01003105 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 * Return -1 if unknown.
3107 */
3108 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003109mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110{
3111 char_u *buf;
3112 char_u *p, *e;
3113 int retval;
3114
Bram Moolenaarb5971142015-03-21 17:32:19 +01003115 /* When "use_path" is false and if it's an absolute or relative path don't
3116 * need to use $PATH. */
3117 if (!use_path || mch_isFullName(name) || (name[0] == '.'
3118 && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))))
Bram Moolenaar206f0112014-03-12 16:51:55 +01003119 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01003120 /* There must be a path separator, files in the current directory
3121 * can't be executed. */
3122 if (gettail(name) != name && executable_file(name))
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003123 {
3124 if (path != NULL)
3125 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003126 if (name[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003127 *path = FullName_save(name, TRUE);
3128 else
3129 *path = vim_strsave(name);
3130 }
3131 return TRUE;
3132 }
3133 return FALSE;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003134 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003135
3136 p = (char_u *)getenv("PATH");
3137 if (p == NULL || *p == NUL)
3138 return -1;
3139 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
3140 if (buf == NULL)
3141 return -1;
3142
3143 /*
3144 * Walk through all entries in $PATH to check if "name" exists there and
3145 * is an executable file.
3146 */
3147 for (;;)
3148 {
3149 e = (char_u *)strchr((char *)p, ':');
3150 if (e == NULL)
3151 e = p + STRLEN(p);
3152 if (e - p <= 1) /* empty entry means current dir */
3153 STRCPY(buf, "./");
3154 else
3155 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003156 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003157 add_pathsep(buf);
3158 }
3159 STRCAT(buf, name);
3160 retval = executable_file(buf);
3161 if (retval == 1)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003162 {
3163 if (path != NULL)
3164 {
Bram Moolenaar43663192017-03-05 14:29:12 +01003165 if (buf[0] != '/')
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003166 *path = FullName_save(buf, TRUE);
3167 else
3168 *path = vim_strsave(buf);
3169 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003170 break;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003171 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172
3173 if (*e != ':')
3174 break;
3175 p = e + 1;
3176 }
3177
3178 vim_free(buf);
3179 return retval;
3180}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181
3182/*
3183 * Check what "name" is:
3184 * NODE_NORMAL: file or directory (or doesn't exist)
3185 * NODE_WRITABLE: writable device, socket, fifo, etc.
3186 * NODE_OTHER: non-writable things
3187 */
3188 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003189mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190{
3191 struct stat st;
3192
3193 if (stat((char *)name, &st))
3194 return NODE_NORMAL;
3195 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
3196 return NODE_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
3198 return NODE_OTHER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003199 /* Everything else is writable? */
3200 return NODE_WRITABLE;
3201}
3202
3203 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003204mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003205{
3206#ifdef HAVE_CHECK_STACK_GROWTH
3207 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208
Bram Moolenaar071d4272004-06-13 20:20:40 +00003209 check_stack_growth((char *)&i);
3210
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003211# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003212 get_stack_limit();
3213# endif
3214
3215#endif
3216
3217 /*
3218 * Setup an alternative stack for signals. Helps to catch signals when
3219 * running out of stack space.
3220 * Use of sigaltstack() is preferred, it's more portable.
3221 * Ignore any errors.
3222 */
3223#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00003224 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 init_signal_stack();
3226#endif
3227}
3228
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003229#if defined(EXITFREE) || defined(PROTO)
3230 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003231mch_free_mem(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003232{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003233# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
3234 if (clip_star.owned)
3235 clip_lose_selection(&clip_star);
3236 if (clip_plus.owned)
3237 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003238# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00003239# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003240 if (xterm_Shell != (Widget)0)
3241 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00003242# ifndef LESSTIF_VERSION
3243 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003244 if (xterm_dpy != NULL)
3245 XtCloseDisplay(xterm_dpy);
3246 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00003247 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003248 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00003249# ifdef FEAT_X11
3250 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
3251# endif
3252 }
3253# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003254# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003255# if defined(FEAT_X11)
Bram Moolenaare8208012008-06-20 09:59:25 +00003256 if (x11_display != NULL
3257# ifdef FEAT_XCLIPBOARD
3258 && x11_display != xterm_dpy
3259# endif
3260 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003261 XCloseDisplay(x11_display);
3262# endif
3263# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
3264 vim_free(signal_stack);
3265 signal_stack = NULL;
3266# endif
3267# ifdef FEAT_TITLE
3268 vim_free(oldtitle);
3269 vim_free(oldicon);
3270# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003271}
3272#endif
3273
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003274static void exit_scroll(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275
3276/*
3277 * Output a newline when exiting.
3278 * Make sure the newline goes to the same stream as the text.
3279 */
3280 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003281exit_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003283 if (silent_mode)
3284 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285 if (newline_on_exit || msg_didout)
3286 {
3287 if (msg_use_printf())
3288 {
3289 if (info_message)
3290 mch_msg("\n");
3291 else
3292 mch_errmsg("\r\n");
3293 }
3294 else
3295 out_char('\n');
3296 }
3297 else
3298 {
3299 restore_cterm_colors(); /* get original colors back */
3300 msg_clr_eos_force(); /* clear the rest of the display */
3301 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3302 }
3303}
3304
3305 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003306mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003307{
3308 exiting = TRUE;
3309
3310#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3311 x11_export_final_selection();
3312#endif
3313
3314#ifdef FEAT_GUI
3315 if (!gui.in_use)
3316#endif
3317 {
3318 settmode(TMODE_COOK);
3319#ifdef FEAT_TITLE
3320 mch_restore_title(3); /* restore xterm title and icon name */
3321#endif
3322 /*
3323 * When t_ti is not empty but it doesn't cause swapping terminal
3324 * pages, need to output a newline when msg_didout is set. But when
3325 * t_ti does swap pages it should not go to the shell page. Do this
3326 * before stoptermcap().
3327 */
3328 if (swapping_screen() && !newline_on_exit)
3329 exit_scroll();
3330
3331 /* Stop termcap: May need to check for T_CRV response, which
3332 * requires RAW mode. */
3333 stoptermcap();
3334
3335 /*
3336 * A newline is only required after a message in the alternate screen.
3337 * This is set to TRUE by wait_return().
3338 */
3339 if (!swapping_screen() || newline_on_exit)
3340 exit_scroll();
3341
3342 /* Cursor may have been switched off without calling starttermcap()
3343 * when doing "vim -u vimrc" and vimrc contains ":q". */
3344 if (full_screen)
3345 cursor_on();
3346 }
3347 out_flush();
3348 ml_close_all(TRUE); /* remove all memfiles */
3349 may_core_dump();
3350#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003352 gui_exit(r);
3353#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003354
Bram Moolenaar56718732006-03-15 22:53:57 +00003355#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003356 mac_conv_cleanup();
3357#endif
3358
Bram Moolenaar071d4272004-06-13 20:20:40 +00003359#ifdef __QNX__
3360 /* A core dump won't be created if the signal handler
3361 * doesn't return, so we can't call exit() */
3362 if (deadly_signal != 0)
3363 return;
3364#endif
3365
Bram Moolenaar009b2592004-10-24 19:18:58 +00003366#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003367 netbeans_send_disconnect();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003368#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003369
3370#ifdef EXITFREE
3371 free_all_mem();
3372#endif
3373
Bram Moolenaar071d4272004-06-13 20:20:40 +00003374 exit(r);
3375}
3376
3377 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003378may_core_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379{
3380 if (deadly_signal != 0)
3381 {
3382 signal(deadly_signal, SIG_DFL);
3383 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3384 }
3385}
3386
3387#ifndef VMS
3388
3389 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003390mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391{
3392 static int first = TRUE;
3393
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003394#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003395# ifdef HAVE_TERMIOS_H
3396 static struct termios told;
3397 struct termios tnew;
3398# else
3399 static struct termio told;
3400 struct termio tnew;
3401# endif
3402
3403 if (first)
3404 {
3405 first = FALSE;
3406# if defined(HAVE_TERMIOS_H)
3407 tcgetattr(read_cmd_fd, &told);
3408# else
3409 ioctl(read_cmd_fd, TCGETA, &told);
3410# endif
3411 }
3412
3413 tnew = told;
3414 if (tmode == TMODE_RAW)
3415 {
3416 /*
3417 * ~ICRNL enables typing ^V^M
3418 */
3419 tnew.c_iflag &= ~ICRNL;
3420 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3421# if defined(IEXTEN) && !defined(__MINT__)
3422 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3423 /* but it breaks function keys on MINT */
3424# endif
3425 );
3426# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3427 tnew.c_oflag &= ~ONLCR;
3428# endif
3429 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3430 tnew.c_cc[VTIME] = 0; /* don't wait */
3431 }
3432 else if (tmode == TMODE_SLEEP)
Bram Moolenaar40de4562016-07-01 15:03:46 +02003433 {
3434 /* Also reset ICANON here, otherwise on Solaris select() won't see
3435 * typeahead characters. */
3436 tnew.c_lflag &= ~(ICANON | ECHO);
3437 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3438 tnew.c_cc[VTIME] = 0; /* don't wait */
3439 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003440
3441# if defined(HAVE_TERMIOS_H)
3442 {
3443 int n = 10;
3444
3445 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3446 * few times. */
3447 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3448 && errno == EINTR && n > 0)
3449 --n;
3450 }
3451# else
3452 ioctl(read_cmd_fd, TCSETA, &tnew);
3453# endif
3454
3455#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003456 /*
3457 * for "old" tty systems
3458 */
3459# ifndef TIOCSETN
3460# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3461# endif
3462 static struct sgttyb ttybold;
3463 struct sgttyb ttybnew;
3464
3465 if (first)
3466 {
3467 first = FALSE;
3468 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3469 }
3470
3471 ttybnew = ttybold;
3472 if (tmode == TMODE_RAW)
3473 {
3474 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3475 ttybnew.sg_flags |= RAW;
3476 }
3477 else if (tmode == TMODE_SLEEP)
3478 ttybnew.sg_flags &= ~(ECHO);
3479 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3480#endif
3481 curr_tmode = tmode;
3482}
3483
3484/*
3485 * Try to get the code for "t_kb" from the stty setting
3486 *
3487 * Even if termcap claims a backspace key, the user's setting *should*
3488 * prevail. stty knows more about reality than termcap does, and if
3489 * somebody's usual erase key is DEL (which, for most BSD users, it will
3490 * be), they're going to get really annoyed if their erase key starts
3491 * doing forward deletes for no reason. (Eric Fischer)
3492 */
3493 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003494get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003495{
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003496 ttyinfo_T info;
3497 char_u buf[2];
3498 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003500 if (get_tty_info(read_cmd_fd, &info) == OK)
3501 {
3502 intr_char = info.interrupt;
3503 buf[0] = info.backspace;
3504 buf[1] = NUL;
3505 add_termcode((char_u *)"kb", buf, FALSE);
3506
3507 /* If <BS> and <DEL> are now the same, redefine <DEL>. */
3508 p = find_termcode((char_u *)"kD");
3509 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3510 do_fixdel(NULL);
3511 }
3512}
3513
3514/*
3515 * Obtain the characters that Backspace and Enter produce on "fd".
3516 * Returns OK or FAIL.
3517 */
3518 int
3519get_tty_info(int fd, ttyinfo_T *info)
3520{
3521#ifdef NEW_TTY_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522# ifdef HAVE_TERMIOS_H
3523 struct termios keys;
3524# else
3525 struct termio keys;
3526# endif
3527
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003528 if (
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529# if defined(HAVE_TERMIOS_H)
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003530 tcgetattr(fd, &keys) != -1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003531# else
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003532 ioctl(fd, TCGETA, &keys) != -1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533# endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003534 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003535 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003536 info->backspace = keys.c_cc[VERASE];
3537 info->interrupt = keys.c_cc[VINTR];
3538 if (keys.c_iflag & ICRNL)
3539 info->enter = NL;
3540 else
3541 info->enter = CAR;
3542 if (keys.c_oflag & ONLCR)
3543 info->nl_does_cr = TRUE;
3544 else
3545 info->nl_does_cr = FALSE;
3546 return OK;
3547 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003548#else
3549 /* for "old" tty systems */
3550 struct sgttyb keys;
3551
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003552 if (ioctl(fd, TIOCGETP, &keys) != -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003553 {
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003554 info->backspace = keys.sg_erase;
3555 info->interrupt = keys.sg_kill;
3556 info->enter = CAR;
3557 info->nl_does_cr = TRUE;
3558 return OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003559 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003560#endif
Bram Moolenaar4f44b882017-08-13 20:06:18 +02003561 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562}
3563
3564#endif /* VMS */
3565
3566#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003567static int mouse_ison = FALSE;
3568
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569/*
3570 * Set mouse clicks on or off.
3571 */
3572 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003573mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574{
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003575# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003576 static int bevalterm_ison = FALSE;
3577# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003578 int xterm_mouse_vers;
3579
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003580 if (on == mouse_ison
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003581# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003582 && p_bevalterm == bevalterm_ison
3583# endif
3584 )
3585 /* return quickly if nothing to do */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 return;
3587
3588 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003589
3590# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003591 if (ttym_flags == TTYM_URXVT)
3592 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003593 out_str_nf((char_u *)
3594 (on
3595 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3596 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003597 mouse_ison = on;
Bram Moolenaarc8427482011-10-20 21:09:35 +02003598 }
3599# endif
3600
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003601# ifdef FEAT_MOUSE_SGR
3602 if (ttym_flags == TTYM_SGR)
3603 {
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003604 /* SGR mode supports columns above 223 */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003605 out_str_nf((char_u *)
3606 (on
3607 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3608 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003609 mouse_ison = on;
3610 }
3611# endif
3612
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003613# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003614 if (bevalterm_ison != (p_bevalterm && on))
3615 {
3616 bevalterm_ison = (p_bevalterm && on);
3617 if (xterm_mouse_vers > 1 && !bevalterm_ison)
3618 /* disable mouse movement events, enabling is below */
3619 out_str_nf((char_u *)
3620 (IF_EB("\033[?1003l", ESC_STR "[?1003l")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003621 }
3622# endif
3623
Bram Moolenaar071d4272004-06-13 20:20:40 +00003624 if (xterm_mouse_vers > 0)
3625 {
3626 if (on) /* enable mouse events, use mouse tracking if available */
3627 out_str_nf((char_u *)
3628 (xterm_mouse_vers > 1
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003629 ? (
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003630# ifdef FEAT_BEVAL_TERM
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003631 bevalterm_ison
3632 ? IF_EB("\033[?1003h", ESC_STR "[?1003h") :
3633# endif
3634 IF_EB("\033[?1002h", ESC_STR "[?1002h"))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3636 else /* disable mouse events, could probably always send the same */
3637 out_str_nf((char_u *)
3638 (xterm_mouse_vers > 1
3639 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3640 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003641 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003642 }
3643
3644# ifdef FEAT_MOUSE_DEC
3645 else if (ttym_flags == TTYM_DEC)
3646 {
3647 if (on) /* enable mouse events */
3648 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3649 else /* disable mouse events */
3650 out_str_nf((char_u *)"\033['z");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003651 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003652 }
3653# endif
3654
3655# ifdef FEAT_MOUSE_GPM
3656 else
3657 {
3658 if (on)
3659 {
3660 if (gpm_open())
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003661 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003662 }
3663 else
3664 {
3665 gpm_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003666 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003667 }
3668 }
3669# endif
3670
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003671# ifdef FEAT_SYSMOUSE
3672 else
3673 {
3674 if (on)
3675 {
3676 if (sysmouse_open() == OK)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003677 mouse_ison = TRUE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003678 }
3679 else
3680 {
3681 sysmouse_close();
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003682 mouse_ison = FALSE;
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003683 }
3684 }
3685# endif
3686
Bram Moolenaar071d4272004-06-13 20:20:40 +00003687# ifdef FEAT_MOUSE_JSB
3688 else
3689 {
3690 if (on)
3691 {
3692 /* D - Enable Mouse up/down messages
3693 * L - Enable Left Button Reporting
3694 * M - Enable Middle Button Reporting
3695 * R - Enable Right Button Reporting
3696 * K - Enable SHIFT and CTRL key Reporting
3697 * + - Enable Advanced messaging of mouse moves and up/down messages
3698 * Q - Quiet No Ack
3699 * # - Numeric value of mouse pointer required
3700 * 0 = Multiview 2000 cursor, used as standard
3701 * 1 = Windows Arrow
3702 * 2 = Windows I Beam
3703 * 3 = Windows Hour Glass
3704 * 4 = Windows Cross Hair
3705 * 5 = Windows UP Arrow
3706 */
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003707# ifdef JSBTERM_MOUSE_NONADVANCED
3708 /* Disables full feedback of pointer movements */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3710 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003711# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3713 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003714# endif
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003715 mouse_ison = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 }
3717 else
3718 {
3719 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3720 ESC_STR "[0~ZwQ" ESC_STR "\\"));
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003721 mouse_ison = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 }
3723 }
3724# endif
3725# ifdef FEAT_MOUSE_PTERM
3726 else
3727 {
3728 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3729 if (on)
3730 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3731 else
3732 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003733 mouse_ison = on;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 }
3735# endif
3736}
3737
Bram Moolenaarc3719bd2017-11-18 22:13:31 +01003738#if defined(FEAT_BEVAL_TERM) || defined(PROTO)
Bram Moolenaar51b0f372017-11-18 18:52:04 +01003739/*
3740 * Called when 'balloonevalterm' changed.
3741 */
3742 void
3743mch_bevalterm_changed(void)
3744{
3745 mch_setmouse(mouse_ison);
3746}
3747#endif
3748
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749/*
3750 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3751 */
3752 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003753check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003754{
3755# ifdef FEAT_MOUSE_XTERM
3756 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003757# ifdef FEAT_MOUSE_URXVT
3758 && use_xterm_mouse() != 3
3759# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760# ifdef FEAT_GUI
3761 && !gui.in_use
3762# endif
3763 )
3764 {
3765 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003766 ? IF_EB("\233M", CSI_STR "M")
3767 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 if (*p_mouse != NUL)
3769 {
3770 /* force mouse off and maybe on to send possibly new mouse
3771 * activation sequence to the xterm, with(out) drag tracing. */
3772 mch_setmouse(FALSE);
3773 setmouse();
3774 }
3775 }
3776 else
3777 del_mouse_termcode(KS_MOUSE);
3778# endif
3779
3780# ifdef FEAT_MOUSE_GPM
3781 if (!use_xterm_mouse()
3782# ifdef FEAT_GUI
3783 && !gui.in_use
3784# endif
3785 )
3786 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3787# endif
3788
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003789# ifdef FEAT_SYSMOUSE
3790 if (!use_xterm_mouse()
3791# ifdef FEAT_GUI
3792 && !gui.in_use
3793# endif
3794 )
3795 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3796# endif
3797
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798# ifdef FEAT_MOUSE_JSB
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003799 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003800 if (!use_xterm_mouse()
3801# ifdef FEAT_GUI
3802 && !gui.in_use
3803# endif
3804 )
3805 set_mouse_termcode(KS_JSBTERM_MOUSE,
3806 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3807 else
3808 del_mouse_termcode(KS_JSBTERM_MOUSE);
3809# endif
3810
3811# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003812 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003813 * define it in the GUI or when using an xterm. */
3814 if (!use_xterm_mouse()
3815# ifdef FEAT_GUI
3816 && !gui.in_use
3817# endif
3818 )
3819 set_mouse_termcode(KS_NETTERM_MOUSE,
3820 (char_u *)IF_EB("\033}", ESC_STR "}"));
3821 else
3822 del_mouse_termcode(KS_NETTERM_MOUSE);
3823# endif
3824
3825# ifdef FEAT_MOUSE_DEC
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003826 /* Conflicts with xterm mouse: "\033[" and "\033[M" */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003827 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828# ifdef FEAT_GUI
3829 && !gui.in_use
3830# endif
3831 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003832 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3833 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 else
3835 del_mouse_termcode(KS_DEC_MOUSE);
3836# endif
3837# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003838 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003839 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840# ifdef FEAT_GUI
3841 && !gui.in_use
3842# endif
3843 )
3844 set_mouse_termcode(KS_PTERM_MOUSE,
3845 (char_u *) IF_EB("\033[", ESC_STR "["));
3846 else
3847 del_mouse_termcode(KS_PTERM_MOUSE);
3848# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003849# ifdef FEAT_MOUSE_URXVT
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003850 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003851# ifdef FEAT_GUI
3852 && !gui.in_use
3853# endif
3854 )
3855 {
3856 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003857 ? IF_EB("\233*M", CSI_STR "*M")
3858 : IF_EB("\033[*M", ESC_STR "[*M")));
Bram Moolenaarc8427482011-10-20 21:09:35 +02003859
3860 if (*p_mouse != NUL)
3861 {
3862 mch_setmouse(FALSE);
3863 setmouse();
3864 }
3865 }
3866 else
3867 del_mouse_termcode(KS_URXVT_MOUSE);
3868# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003869# ifdef FEAT_MOUSE_SGR
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003870 if (use_xterm_mouse() == 4
3871# ifdef FEAT_GUI
3872 && !gui.in_use
3873# endif
3874 )
3875 {
3876 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaara529ce02017-06-22 22:37:57 +02003877 ? IF_EB("\233<*M", CSI_STR "<*M")
3878 : IF_EB("\033[<*M", ESC_STR "[<*M")));
3879
3880 set_mouse_termcode(KS_SGR_MOUSE_RELEASE, (char_u *)(term_is_8bit(T_NAME)
3881 ? IF_EB("\233<*m", CSI_STR "<*m")
3882 : IF_EB("\033[<*m", ESC_STR "[<*m")));
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003883
3884 if (*p_mouse != NUL)
3885 {
3886 mch_setmouse(FALSE);
3887 setmouse();
3888 }
3889 }
3890 else
Bram Moolenaara529ce02017-06-22 22:37:57 +02003891 {
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003892 del_mouse_termcode(KS_SGR_MOUSE);
Bram Moolenaara529ce02017-06-22 22:37:57 +02003893 del_mouse_termcode(KS_SGR_MOUSE_RELEASE);
3894 }
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003895# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003896}
3897#endif
3898
3899/*
3900 * set screen mode, always fails.
3901 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003903mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904{
3905 EMSG(_(e_screenmode));
3906 return FAIL;
3907}
3908
3909#ifndef VMS
3910
3911/*
3912 * Try to get the current window size:
3913 * 1. with an ioctl(), most accurate method
3914 * 2. from the environment variables LINES and COLUMNS
3915 * 3. from the termcap
3916 * 4. keep using the old values
3917 * Return OK when size could be determined, FAIL otherwise.
3918 */
3919 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003920mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921{
3922 long rows = 0;
3923 long columns = 0;
3924 char_u *p;
3925
3926 /*
Bram Moolenaar071d4272004-06-13 20:20:40 +00003927 * 1. try using an ioctl. It is the most accurate method.
3928 *
3929 * Try using TIOCGWINSZ first, some systems that have it also define
3930 * TIOCGSIZE but don't have a struct ttysize.
3931 */
3932# ifdef TIOCGWINSZ
3933 {
3934 struct winsize ws;
3935 int fd = 1;
3936
3937 /* When stdout is not a tty, use stdin for the ioctl(). */
3938 if (!isatty(fd) && isatty(read_cmd_fd))
3939 fd = read_cmd_fd;
3940 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3941 {
3942 columns = ws.ws_col;
3943 rows = ws.ws_row;
3944 }
3945 }
3946# else /* TIOCGWINSZ */
3947# ifdef TIOCGSIZE
3948 {
3949 struct ttysize ts;
3950 int fd = 1;
3951
3952 /* When stdout is not a tty, use stdin for the ioctl(). */
3953 if (!isatty(fd) && isatty(read_cmd_fd))
3954 fd = read_cmd_fd;
3955 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3956 {
3957 columns = ts.ts_cols;
3958 rows = ts.ts_lines;
3959 }
3960 }
3961# endif /* TIOCGSIZE */
3962# endif /* TIOCGWINSZ */
3963
3964 /*
3965 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003966 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3967 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003969 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003970 {
3971 if ((p = (char_u *)getenv("LINES")))
3972 rows = atoi((char *)p);
3973 if ((p = (char_u *)getenv("COLUMNS")))
3974 columns = atoi((char *)p);
3975 }
3976
3977#ifdef HAVE_TGETENT
3978 /*
3979 * 3. try reading "co" and "li" entries from termcap
3980 */
3981 if (columns == 0 || rows == 0)
3982 getlinecol(&columns, &rows);
3983#endif
3984
3985 /*
3986 * 4. If everything fails, use the old values
3987 */
3988 if (columns <= 0 || rows <= 0)
3989 return FAIL;
3990
3991 Rows = rows;
3992 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02003993 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994 return OK;
3995}
3996
Bram Moolenaarb13501f2017-07-22 22:32:56 +02003997#if defined(FEAT_TERMINAL) || defined(PROTO)
3998/*
3999 * Report the windows size "rows" and "cols" to tty "fd".
4000 */
4001 int
4002mch_report_winsize(int fd, int rows, int cols)
4003{
4004# ifdef TIOCSWINSZ
4005 struct winsize ws;
4006
4007 ws.ws_col = cols;
4008 ws.ws_row = rows;
4009 ws.ws_xpixel = cols * 5;
4010 ws.ws_ypixel = rows * 10;
4011 if (ioctl(fd, TIOCSWINSZ, &ws) == 0)
4012 {
4013 ch_log(NULL, "ioctl(TIOCSWINSZ) success");
4014 return OK;
4015 }
4016 ch_log(NULL, "ioctl(TIOCSWINSZ) failed");
4017# else
4018# ifdef TIOCSSIZE
4019 struct ttysize ts;
4020
4021 ts.ts_cols = cols;
4022 ts.ts_lines = rows;
4023 if (ioctl(fd, TIOCSSIZE, &ws) == 0)
4024 {
4025 ch_log(NULL, "ioctl(TIOCSSIZE) success");
4026 return OK;
4027 }
4028 ch_log(NULL, "ioctl(TIOCSSIZE) failed");
4029# endif
4030# endif
4031 return FAIL;
4032}
4033#endif
4034
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035/*
4036 * Try to set the window size to Rows and Columns.
4037 */
4038 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004039mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004040{
4041 if (*T_CWS)
4042 {
4043 /*
4044 * NOTE: if you get an error here that term_set_winsize() is
4045 * undefined, check the output of configure. It could probably not
4046 * find a ncurses, termcap or termlib library.
4047 */
4048 term_set_winsize((int)Rows, (int)Columns);
4049 out_flush();
4050 screen_start(); /* don't know where cursor is now */
4051 }
4052}
4053
4054#endif /* VMS */
4055
4056/*
4057 * Rows and/or Columns has changed.
4058 */
4059 void
Bram Moolenaar05540972016-01-30 20:31:25 +01004060mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061{
4062 /* Nothing to do. */
4063}
4064
Bram Moolenaar205b8862011-09-07 15:04:31 +02004065/*
4066 * Wait for process "child" to end.
4067 * Return "child" if it exited properly, <= 0 on error.
4068 */
4069 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01004070wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02004071{
4072 pid_t wait_pid = 0;
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004073 long delay_msec = 1;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004074
4075 while (wait_pid != child)
4076 {
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004077 /* When compiled with Python threads are probably used, in which case
4078 * wait() sometimes hangs for no obvious reason. Use waitpid()
4079 * instead and loop (like the GUI). Also needed for other interfaces,
4080 * they might call system(). */
4081# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004082 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004083# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02004084 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02004085# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02004086 if (wait_pid == 0)
4087 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02004088 /* Wait for 1 to 10 msec before trying again. */
4089 mch_delay(delay_msec, TRUE);
4090 if (++delay_msec > 10)
4091 delay_msec = 10;
Bram Moolenaar205b8862011-09-07 15:04:31 +02004092 continue;
4093 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004094 if (wait_pid <= 0
4095# ifdef ECHILD
4096 && errno == ECHILD
4097# endif
4098 )
4099 break;
4100 }
4101 return wait_pid;
4102}
4103
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004104#if defined(FEAT_JOB_CHANNEL) || !defined(USE_SYSTEM) || defined(PROTO)
Bram Moolenaar72801402016-02-09 11:37:50 +01004105/*
4106 * Parse "cmd" and put the white-separated parts in "argv".
4107 * "argv" is an allocated array with "argc" entries.
4108 * Returns FAIL when out of memory.
4109 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01004110 int
4111mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
4112{
4113 int i;
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004114 char_u *p, *d;
Bram Moolenaar835dc632016-02-07 14:27:38 +01004115 int inquote;
4116
4117 /*
4118 * Do this loop twice:
4119 * 1: find number of arguments
4120 * 2: separate them and build argv[]
4121 */
4122 for (i = 0; i < 2; ++i)
4123 {
Bram Moolenaar6231cb82016-04-26 19:42:42 +02004124 p = skipwhite(cmd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01004125 inquote = FALSE;
4126 *argc = 0;
4127 for (;;)
4128 {
4129 if (i == 1)
4130 (*argv)[*argc] = (char *)p;
4131 ++*argc;
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004132 d = p;
Bram Moolenaar835dc632016-02-07 14:27:38 +01004133 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB)))
4134 {
Bram Moolenaar9d654a82017-09-03 19:52:17 +02004135 if (p[0] == '"')
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004136 /* quotes surrounding an argument and are dropped */
Bram Moolenaar835dc632016-02-07 14:27:38 +01004137 inquote = !inquote;
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004138 else
Bram Moolenaar9d654a82017-09-03 19:52:17 +02004139 {
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004140 if (p[0] == '\\' && p[1] != NUL)
4141 {
4142 /* First pass: skip over "\ " and "\"".
4143 * Second pass: Remove the backslash. */
Bram Moolenaar9d654a82017-09-03 19:52:17 +02004144 ++p;
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004145 }
4146 if (i == 1)
4147 *d++ = *p;
Bram Moolenaar9d654a82017-09-03 19:52:17 +02004148 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01004149 ++p;
4150 }
4151 if (*p == NUL)
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004152 {
4153 if (i == 1)
4154 *d++ = NUL;
Bram Moolenaar835dc632016-02-07 14:27:38 +01004155 break;
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004156 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01004157 if (i == 1)
Bram Moolenaard78f03f2017-10-06 01:07:41 +02004158 *d++ = NUL;
4159 p = skipwhite(p + 1);
Bram Moolenaar835dc632016-02-07 14:27:38 +01004160 }
4161 if (*argv == NULL)
4162 {
4163 if (use_shcf)
4164 {
4165 /* Account for possible multiple args in p_shcf. */
4166 p = p_shcf;
4167 for (;;)
4168 {
4169 p = skiptowhite(p);
4170 if (*p == NUL)
4171 break;
4172 ++*argc;
4173 p = skipwhite(p);
4174 }
4175 }
4176
4177 *argv = (char **)alloc((unsigned)((*argc + 4) * sizeof(char *)));
4178 if (*argv == NULL) /* out of memory */
4179 return FAIL;
4180 }
4181 }
4182 return OK;
4183}
4184#endif
4185
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004186#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar7da34602017-08-01 17:14:21 +02004187/*
4188 * Set the environment for a child process.
4189 */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004190 static void
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004191set_child_environment(long rows, long columns, char *term)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004192{
4193# ifdef HAVE_SETENV
4194 char envbuf[50];
4195# else
Bram Moolenaar5f7e7bd2017-07-22 14:08:43 +02004196 static char envbuf_Term[30];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004197 static char envbuf_Rows[20];
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004198 static char envbuf_Lines[20];
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004199 static char envbuf_Columns[20];
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004200 static char envbuf_Colors[20];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004201# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004202 static char envbuf_Servername[60];
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004203# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004204# endif
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004205 long colors =
4206# ifdef FEAT_GUI
4207 gui.in_use ? 256*256*256 :
4208# endif
4209 t_colors;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004210
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004211# ifdef HAVE_SETENV
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004212 setenv("TERM", term, 1);
4213 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004214 setenv("ROWS", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004215 sprintf((char *)envbuf, "%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004216 setenv("LINES", (char *)envbuf, 1);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004217 sprintf((char *)envbuf, "%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004218 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004219 sprintf((char *)envbuf, "%ld", colors);
4220 setenv("COLORS", (char *)envbuf, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004221# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004222 setenv("VIM_SERVERNAME", serverName == NULL ? "" : (char *)serverName, 1);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004223# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004224# else
4225 /*
4226 * Putenv does not copy the string, it has to remain valid.
4227 * Use a static array to avoid losing allocated memory.
Bram Moolenaar7da34602017-08-01 17:14:21 +02004228 * This won't work well when running multiple children...
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004229 */
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004230 vim_snprintf(envbuf_Term, sizeof(envbuf_Term), "TERM=%s", term);
4231 putenv(envbuf_Term);
4232 vim_snprintf(envbuf_Rows, sizeof(envbuf_Rows), "ROWS=%ld", rows);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004233 putenv(envbuf_Rows);
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004234 vim_snprintf(envbuf_Lines, sizeof(envbuf_Lines), "LINES=%ld", rows);
4235 putenv(envbuf_Lines);
4236 vim_snprintf(envbuf_Columns, sizeof(envbuf_Columns),
4237 "COLUMNS=%ld", columns);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004238 putenv(envbuf_Columns);
Bram Moolenaarb7a8dfe2017-07-22 20:33:05 +02004239 vim_snprintf(envbuf_Colors, sizeof(envbuf_Colors), "COLORS=%ld", colors);
4240 putenv(envbuf_Colors);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004241# ifdef FEAT_CLIENTSERVER
Bram Moolenaar7da34602017-08-01 17:14:21 +02004242 vim_snprintf(envbuf_Servername, sizeof(envbuf_Servername),
4243 "VIM_SERVERNAME=%s", serverName == NULL ? "" : (char *)serverName);
4244 putenv(envbuf_Servername);
Bram Moolenaar2a4f06f2017-08-01 18:44:29 +02004245# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004246# endif
4247}
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004248
4249 static void
4250set_default_child_environment(void)
4251{
4252 set_child_environment(Rows, Columns, "dumb");
4253}
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004254#endif
4255
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004256#if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar979e8c52017-08-01 15:08:07 +02004257/*
4258 * Open a PTY, with FD for the master and slave side.
4259 * When failing "pty_master_fd" and "pty_slave_fd" are -1.
4260 * When successful both file descriptors are stored.
4261 */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004262 static void
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02004263open_pty(int *pty_master_fd, int *pty_slave_fd, char_u **namep)
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004264{
4265 char *tty_name;
4266
4267 *pty_master_fd = OpenPTY(&tty_name); /* open pty */
4268 if (*pty_master_fd >= 0)
4269 {
4270 /* Leaving out O_NOCTTY may lead to waitpid() always returning
4271 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4272 * adding O_NOCTTY always works when defined. */
4273#ifdef O_NOCTTY
4274 *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4275#else
4276 *pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4277#endif
4278 if (*pty_slave_fd < 0)
4279 {
4280 close(*pty_master_fd);
4281 *pty_master_fd = -1;
4282 }
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02004283 else if (namep != NULL)
4284 *namep = vim_strsave((char_u *)tty_name);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02004285 }
4286}
4287#endif
4288
Bram Moolenaarfae42832017-08-01 22:24:26 +02004289/*
4290 * Send SIGINT to a child process if "c" is an interrupt character.
4291 */
4292 void
4293may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED)
4294{
4295# ifdef SIGINT
4296 if (c == Ctrl_C || c == intr_char)
4297 {
4298# ifdef HAVE_SETSID
4299 kill(-pid, SIGINT);
4300# else
4301 kill(0, SIGINT);
4302# endif
4303 if (wpid > 0)
4304 kill(wpid, SIGINT);
4305 }
4306# endif
4307}
4308
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004310mch_call_shell(
4311 char_u *cmd,
4312 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004313{
4314#ifdef VMS
4315 char *ifn = NULL;
4316 char *ofn = NULL;
4317#endif
4318 int tmode = cur_tmode;
4319#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
Bram Moolenaarb2b050a2016-07-16 21:52:46 +02004320 char_u *newcmd; /* only needed for unix */
Bram Moolenaarde5e2c22016-11-04 20:35:31 +01004321 int x;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004322
4323 out_flush();
4324
4325 if (options & SHELL_COOKED)
4326 settmode(TMODE_COOK); /* set to normal mode */
4327
Bram Moolenaar62b42182010-09-21 22:09:37 +02004328# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004329 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004330 loose_clipboard();
4331# endif
4332
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333 if (cmd == NULL)
4334 x = system((char *)p_sh);
4335 else
4336 {
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004337# ifdef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00004338 if (ofn = strchr((char *)cmd, '>'))
4339 *ofn++ = '\0';
4340 if (ifn = strchr((char *)cmd, '<'))
4341 {
4342 char *p;
4343
4344 *ifn++ = '\0';
4345 p = strchr(ifn,' '); /* chop off any trailing spaces */
4346 if (p)
4347 *p = '\0';
4348 }
4349 if (ofn)
4350 x = vms_sys((char *)cmd, ofn, ifn);
4351 else
4352 x = system((char *)cmd);
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004353# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 newcmd = lalloc(STRLEN(p_sh)
4355 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
4356 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
4357 if (newcmd == NULL)
4358 x = 0;
4359 else
4360 {
4361 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4362 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4363 (char *)p_shcf,
4364 (char *)cmd);
4365 x = system((char *)newcmd);
4366 vim_free(newcmd);
4367 }
Bram Moolenaara06ecab2016-07-16 14:47:36 +02004368# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 }
4370# ifdef VMS
4371 x = vms_sys_status(x);
4372# endif
4373 if (emsg_silent)
4374 ;
4375 else if (x == 127)
4376 MSG_PUTS(_("\nCannot execute shell sh\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 else if (x && !(options & SHELL_SILENT))
4378 {
4379 MSG_PUTS(_("\nshell returned "));
4380 msg_outnum((long)x);
4381 msg_putchar('\n');
4382 }
4383
4384 if (tmode == TMODE_RAW)
4385 settmode(TMODE_RAW); /* set to raw mode */
4386# ifdef FEAT_TITLE
4387 resettitle();
4388# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004389# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4390 restore_clipboard();
4391# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 return x;
4393
4394#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
4395
Bram Moolenaardf177f62005-02-22 08:39:57 +00004396# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
4397 127, some shells use that already */
Bram Moolenaarb109bb42017-08-21 21:07:29 +02004398# define OPEN_NULL_FAILED 123 /* Exit code if /dev/null can't be opened */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004399
Bram Moolenaar835dc632016-02-07 14:27:38 +01004400 char_u *newcmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004401 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004402 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 pid_t wait_pid = 0;
4404# ifdef HAVE_UNION_WAIT
4405 union wait status;
4406# else
4407 int status = -1;
4408# endif
4409 int retval = -1;
4410 char **argv = NULL;
4411 int argc;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004412 char_u *p_shcf_copy = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 int i;
4414 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004415 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004416# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004417 int pty_slave_fd = -1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004418# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004419 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 int fd_fromshell[2];
4421 int pipe_error = FALSE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004422 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423
Bram Moolenaar62b42182010-09-21 22:09:37 +02004424 newcmd = vim_strsave(p_sh);
4425 if (newcmd == NULL) /* out of memory */
4426 goto error;
4427
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 out_flush();
4429 if (options & SHELL_COOKED)
4430 settmode(TMODE_COOK); /* set to normal mode */
4431
Bram Moolenaar835dc632016-02-07 14:27:38 +01004432 if (mch_parse_cmd(newcmd, TRUE, &argv, &argc) == FAIL)
4433 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004434
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435 if (cmd != NULL)
4436 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004437 char_u *s;
4438
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 if (extra_shell_arg != NULL)
4440 argv[argc++] = (char *)extra_shell_arg;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004441
4442 /* Break 'shellcmdflag' into white separated parts. This doesn't
4443 * handle quoted strings, they are very unlikely to appear. */
4444 p_shcf_copy = alloc((unsigned)STRLEN(p_shcf) + 1);
4445 if (p_shcf_copy == NULL) /* out of memory */
4446 goto error;
4447 s = p_shcf_copy;
4448 p = p_shcf;
4449 while (*p != NUL)
4450 {
4451 argv[argc++] = (char *)s;
4452 while (*p && *p != ' ' && *p != TAB)
4453 *s++ = *p++;
4454 *s++ = NUL;
4455 p = skipwhite(p);
4456 }
4457
Bram Moolenaar071d4272004-06-13 20:20:40 +00004458 argv[argc++] = (char *)cmd;
4459 }
4460 argv[argc] = NULL;
4461
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004463 * For the GUI, when writing the output into the buffer and when reading
4464 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4465 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004467 if ((options & (SHELL_READ|SHELL_WRITE))
4468# ifdef FEAT_GUI
4469 || (gui.in_use && show_shell_mess)
4470# endif
4471 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004472 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004473# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474 /*
4475 * Try to open a master pty.
4476 * If this works, open the slave pty.
4477 * If the slave can't be opened, close the master pty.
4478 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004479 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02004480 open_pty(&pty_master_fd, &pty_slave_fd, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004481 /*
4482 * If not opening a pty or it didn't work, try using pipes.
4483 */
4484 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004485# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 {
4487 pipe_error = (pipe(fd_toshell) < 0);
4488 if (!pipe_error) /* pipe create OK */
4489 {
4490 pipe_error = (pipe(fd_fromshell) < 0);
4491 if (pipe_error) /* pipe create failed */
4492 {
4493 close(fd_toshell[0]);
4494 close(fd_toshell[1]);
4495 }
4496 }
4497 if (pipe_error)
4498 {
4499 MSG_PUTS(_("\nCannot create pipes\n"));
4500 out_flush();
4501 }
4502 }
4503 }
4504
4505 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004507 SIGSET_DECL(curset)
4508
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509# ifdef __BEOS__
4510 beos_cleanup_read_thread();
4511# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004512
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004513 BLOCK_SIGNALS(&curset);
4514 pid = fork(); /* maybe we should use vfork() */
4515 if (pid == -1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004516 {
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004517 UNBLOCK_SIGNALS(&curset);
4518
Bram Moolenaar071d4272004-06-13 20:20:40 +00004519 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004520 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004522 || (gui.in_use && show_shell_mess)
4523# endif
4524 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004526# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004527 if (pty_master_fd >= 0) /* close the pseudo tty */
4528 {
4529 close(pty_master_fd);
4530 close(pty_slave_fd);
4531 }
4532 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004533# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 {
4535 close(fd_toshell[0]);
4536 close(fd_toshell[1]);
4537 close(fd_fromshell[0]);
4538 close(fd_fromshell[1]);
4539 }
4540 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004541 }
4542 else if (pid == 0) /* child */
4543 {
4544 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004545 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546
4547 if (!show_shell_mess || (options & SHELL_EXPAND))
4548 {
4549 int fd;
4550
4551 /*
4552 * Don't want to show any message from the shell. Can't just
4553 * close stdout and stderr though, because some systems will
4554 * break if you try to write to them after that, so we must
4555 * use dup() to replace them with something else -- webb
4556 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4557 * waiting for input.
4558 */
4559 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4560 fclose(stdin);
4561 fclose(stdout);
4562 fclose(stderr);
4563
4564 /*
4565 * If any of these open()'s and dup()'s fail, we just continue
4566 * anyway. It's not fatal, and on most systems it will make
4567 * no difference at all. On a few it will cause the execvp()
4568 * to exit with a non-zero status even when the completion
4569 * could be done, which is nothing too serious. If the open()
4570 * or dup() failed we'd just do the same thing ourselves
4571 * anyway -- webb
4572 */
4573 if (fd >= 0)
4574 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004575 ignored = dup(fd); /* To replace stdin (fd 0) */
4576 ignored = dup(fd); /* To replace stdout (fd 1) */
4577 ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004578
4579 /* Don't need this now that we've duplicated it */
4580 close(fd);
4581 }
4582 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004583 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004584# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004585 || gui.in_use
4586# endif
4587 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 {
4589
Bram Moolenaardf177f62005-02-22 08:39:57 +00004590# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004591 /* Create our own process group, so that the child and all its
4592 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004593 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004594 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004595 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004596 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004597# if defined(SIGHUP)
4598 /* When doing "!xterm&" and 'shell' is bash: the shell
4599 * will exit and send SIGHUP to all processes in its
4600 * group, killing the just started process. Ignore SIGHUP
4601 * to avoid that. (suggested by Simon Schubert)
4602 */
4603 signal(SIGHUP, SIG_IGN);
4604# endif
4605 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004606# endif
4607# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004608 if (pty_slave_fd >= 0)
4609 {
4610 /* push stream discipline modules */
4611 if (options & SHELL_COOKED)
4612 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004614 /* Try to become controlling tty (probably doesn't work,
4615 * unless run by root) */
4616 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004617# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004618 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004619# endif
Bram Moolenaar58556cd2017-07-20 23:04:46 +02004620 set_default_child_environment();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004621
Bram Moolenaara5792f52005-11-23 21:25:05 +00004622 /*
4623 * stderr is only redirected when using the GUI, so that a
4624 * program like gpg can still access the terminal to get a
4625 * passphrase using stderr.
4626 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004627# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 if (pty_master_fd >= 0)
4629 {
4630 close(pty_master_fd); /* close master side of pty */
4631
4632 /* set up stdin/stdout/stderr for the child */
4633 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004634 ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004635 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004636 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004637 if (gui.in_use)
4638 {
4639 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004640 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004641 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642
4643 close(pty_slave_fd); /* has been dupped, close it now */
4644 }
4645 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004646# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004647 {
4648 /* set up stdin for the child */
4649 close(fd_toshell[1]);
4650 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004651 ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652 close(fd_toshell[0]);
4653
4654 /* set up stdout for the child */
4655 close(fd_fromshell[0]);
4656 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004657 ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004658 close(fd_fromshell[1]);
4659
Bram Moolenaara5792f52005-11-23 21:25:05 +00004660# ifdef FEAT_GUI
4661 if (gui.in_use)
4662 {
4663 /* set up stderr for the child */
4664 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004665 ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004666 }
4667# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004668 }
4669 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004670
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 /*
4672 * There is no type cast for the argv, because the type may be
4673 * different on different machines. This may cause a warning
4674 * message with strict compilers, don't worry about it.
4675 * Call _exit() instead of exit() to avoid closing the connection
4676 * to the X server (esp. with GTK, which uses atexit()).
4677 */
4678 execvp(argv[0], argv);
4679 _exit(EXEC_FAILED); /* exec failed, return failure code */
4680 }
4681 else /* parent */
4682 {
4683 /*
4684 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004685 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004686 */
4687 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004688 catch_int_signal();
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02004689 UNBLOCK_SIGNALS(&curset);
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01004690# ifdef FEAT_JOB_CHANNEL
4691 ++dont_check_job_ended;
4692# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 /*
4694 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004695 * This is also used to pipe stdin/stdout to/from the external
4696 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004698 if ((options & (SHELL_READ|SHELL_WRITE))
4699# ifdef FEAT_GUI
4700 || (gui.in_use && show_shell_mess)
4701# endif
4702 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004704# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004706# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004707 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004708# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004709 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4710 int ta_len = 0; /* valid bytes in ta_buf[] */
4711 int len;
4712 int p_more_save;
4713 int old_State;
4714 int c;
4715 int toshell_fd;
4716 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004717 garray_T ga;
4718 int noread_cnt;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004719# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4720 struct timeval start_tv;
4721# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722
Bram Moolenaardf177f62005-02-22 08:39:57 +00004723# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004724 if (pty_master_fd >= 0)
4725 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004726 fromshell_fd = pty_master_fd;
4727 toshell_fd = dup(pty_master_fd);
4728 }
4729 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004730# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 {
4732 close(fd_toshell[0]);
4733 close(fd_fromshell[1]);
4734 toshell_fd = fd_toshell[1];
4735 fromshell_fd = fd_fromshell[0];
4736 }
4737
4738 /*
4739 * Write to the child if there are typed characters.
4740 * Read from the child if there are characters available.
4741 * Repeat the reading a few times if more characters are
4742 * available. Need to check for typed keys now and then, but
4743 * not too often (delays when no chars are available).
4744 * This loop is quit if no characters can be read from the pty
4745 * (WaitForChar detected special condition), or there are no
4746 * characters available and the child has exited.
4747 * Only check if the child has exited when there is no more
4748 * output. The child may exit before all the output has
4749 * been printed.
4750 *
4751 * Currently this busy loops!
4752 * This can probably dead-lock when the write blocks!
4753 */
4754 p_more_save = p_more;
4755 p_more = FALSE;
4756 old_State = State;
4757 State = EXTERNCMD; /* don't redraw at window resize */
4758
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004759 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004760 {
4761 /* Fork a process that will write the lines to the
4762 * external program. */
4763 if ((wpid = fork()) == -1)
4764 {
4765 MSG_PUTS(_("\nCannot fork\n"));
4766 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004767 else if (wpid == 0) /* child */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004768 {
4769 linenr_T lnum = curbuf->b_op_start.lnum;
4770 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004771 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004772 size_t l;
4773
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004774 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004775 for (;;)
4776 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004777 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004778 if (l == 0)
4779 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004780 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004781 /* NL -> NUL translation */
4782 len = write(toshell_fd, "", (size_t)1);
4783 else
4784 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004785 char_u *s = vim_strchr(lp + written, NL);
4786
Bram Moolenaar89d40322006-08-29 15:30:07 +00004787 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004788 s == NULL ? l
4789 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004790 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004791 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004792 {
4793 /* Finished a line, add a NL, unless this line
4794 * should not have one. */
4795 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004796 || (!curbuf->b_p_bin
4797 && curbuf->b_p_fixeol)
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004798 || (lnum != curbuf->b_no_eol_lnum
Bram Moolenaardf177f62005-02-22 08:39:57 +00004799 && (lnum !=
4800 curbuf->b_ml.ml_line_count
4801 || curbuf->b_p_eol)))
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004802 ignored = write(toshell_fd, "\n",
4803 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004804 ++lnum;
4805 if (lnum > curbuf->b_op_end.lnum)
4806 {
4807 /* finished all the lines, close pipe */
4808 close(toshell_fd);
4809 toshell_fd = -1;
4810 break;
4811 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004812 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004813 written = 0;
4814 }
4815 else if (len > 0)
4816 written += len;
4817 }
4818 _exit(0);
4819 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004820 else /* parent */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004821 {
4822 close(toshell_fd);
4823 toshell_fd = -1;
4824 }
4825 }
4826
4827 if (options & SHELL_READ)
4828 ga_init2(&ga, 1, BUFLEN);
4829
4830 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004831# ifdef ELAPSED_FUNC
4832 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004833# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 for (;;)
4835 {
4836 /*
4837 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004838 * if there are any.
4839 * Don't do this if we are expanding wild cards (would eat
4840 * typeahead).
4841 * Don't do this when filtering and terminal is in cooked
4842 * mode, the shell command will handle the I/O. Avoids
4843 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004844 * Don't get characters when the child has already
4845 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004846 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004847 * while (noread_cnt > 4), avoids that ":r !ls" eats
4848 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004849 */
4850 len = 0;
4851 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004852 && ((options &
4853 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4854 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004855# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004856 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004857# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004858 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004859 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004860 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004862 if (ta_len == 0)
4863 {
4864 /* Get extra characters when we don't have any.
4865 * Reset the counter and timer. */
4866 noread_cnt = 0;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01004867# ifdef ELAPSED_FUNC
4868 ELAPSED_INIT(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004869# endif
4870 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4871 }
4872 if (ta_len > 0 || len > 0)
4873 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 /*
4875 * For pipes:
4876 * Check for CTRL-C: send interrupt signal to child.
4877 * Check for CTRL-D: EOF, close pipe to child.
4878 */
4879 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4880 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 /*
4882 * Send SIGINT to the child's group or all
4883 * processes in our group.
4884 */
Bram Moolenaarfae42832017-08-01 22:24:26 +02004885 may_send_sigint(ta_buf[ta_len], pid, wpid);
4886
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 if (pty_master_fd < 0 && toshell_fd >= 0
4888 && ta_buf[ta_len] == Ctrl_D)
4889 {
4890 close(toshell_fd);
4891 toshell_fd = -1;
4892 }
4893 }
4894
4895 /* replace K_BS by <BS> and K_DEL by <DEL> */
4896 for (i = ta_len; i < ta_len + len; ++i)
4897 {
4898 if (ta_buf[i] == CSI && len - i > 2)
4899 {
4900 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4901 if (c == K_DEL || c == K_KDEL || c == K_BS)
4902 {
4903 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4904 (size_t)(len - i - 2));
4905 if (c == K_DEL || c == K_KDEL)
4906 ta_buf[i] = DEL;
4907 else
4908 ta_buf[i] = Ctrl_H;
4909 len -= 2;
4910 }
4911 }
4912 else if (ta_buf[i] == '\r')
4913 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004914# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 if (has_mbyte)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00004916 i += (*mb_ptr2len_len)(ta_buf + i,
4917 ta_len + len - i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004918# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 }
4920
4921 /*
4922 * For pipes: echo the typed characters.
4923 * For a pty this does not seem to work.
4924 */
4925 if (pty_master_fd < 0)
4926 {
4927 for (i = ta_len; i < ta_len + len; ++i)
4928 {
4929 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4930 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004931# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 else if (has_mbyte)
4933 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004934 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935
4936 msg_outtrans_len(ta_buf + i, l);
4937 i += l - 1;
4938 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004939# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 else
4941 msg_outtrans_len(ta_buf + i, 1);
4942 }
4943 windgoto(msg_row, msg_col);
4944 out_flush();
4945 }
4946
4947 ta_len += len;
4948
4949 /*
4950 * Write the characters to the child, unless EOF has
4951 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004952 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004953 * When writing buffer lines, drop the typed
4954 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004955 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004956 if (options & SHELL_WRITE)
4957 ta_len = 0;
4958 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 {
4960 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4961 if (len > 0)
4962 {
4963 ta_len -= len;
4964 mch_memmove(ta_buf, ta_buf + len, ta_len);
4965 }
4966 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004967 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 }
4969
Bram Moolenaardf177f62005-02-22 08:39:57 +00004970 if (got_int)
4971 {
4972 /* CTRL-C sends a signal to the child, we ignore it
4973 * ourselves */
4974# ifdef HAVE_SETSID
4975 kill(-pid, SIGINT);
4976# else
4977 kill(0, SIGINT);
4978# endif
4979 if (wpid > 0)
4980 kill(wpid, SIGINT);
4981 got_int = FALSE;
4982 }
4983
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 /*
4985 * Check if the child has any characters to be printed.
4986 * Read them and write them to our window. Repeat this as
4987 * long as there is something to do, avoid the 10ms wait
4988 * for mch_inchar(), or sending typeahead characters to
4989 * the external process.
4990 * TODO: This should handle escape sequences, compatible
4991 * to some terminal (vt52?).
4992 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004993 ++noread_cnt;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01004994 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004996 len = read_eintr(fromshell_fd, buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004997# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004999# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005000 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00005001# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 );
5003 if (len <= 0) /* end of file or error */
5004 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005005
5006 noread_cnt = 0;
5007 if (options & SHELL_READ)
5008 {
5009 /* Do NUL -> NL translation, append NL separated
5010 * lines to the current buffer. */
5011 for (i = 0; i < len; ++i)
5012 {
5013 if (buffer[i] == NL)
5014 append_ga_line(&ga);
5015 else if (buffer[i] == NUL)
5016 ga_append(&ga, NL);
5017 else
5018 ga_append(&ga, buffer[i]);
5019 }
5020 }
5021# ifdef FEAT_MBYTE
5022 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 {
5024 int l;
5025
Bram Moolenaardf177f62005-02-22 08:39:57 +00005026 len += buffer_off;
5027 buffer[len] = NUL;
5028
Bram Moolenaar071d4272004-06-13 20:20:40 +00005029 /* Check if the last character in buffer[] is
5030 * incomplete, keep these bytes for the next
5031 * round. */
5032 for (p = buffer; p < buffer + len; p += l)
5033 {
Bram Moolenaard3c907b2016-08-17 21:32:09 +02005034 l = MB_CPTR2LEN(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035 if (l == 0)
5036 l = 1; /* NUL byte? */
5037 else if (MB_BYTE2LEN(*p) != l)
5038 break;
5039 }
5040 if (p == buffer) /* no complete character */
5041 {
5042 /* avoid getting stuck at an illegal byte */
5043 if (len >= 12)
5044 ++p;
5045 else
5046 {
5047 buffer_off = len;
5048 continue;
5049 }
5050 }
5051 c = *p;
5052 *p = NUL;
5053 msg_puts(buffer);
5054 if (p < buffer + len)
5055 {
5056 *p = c;
5057 buffer_off = (buffer + len) - p;
5058 mch_memmove(buffer, p, buffer_off);
5059 continue;
5060 }
5061 buffer_off = 0;
5062 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005063# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005064 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005065 {
5066 buffer[len] = NUL;
5067 msg_puts(buffer);
5068 }
5069
5070 windgoto(msg_row, msg_col);
5071 cursor_on();
5072 out_flush();
5073 if (got_int)
5074 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005075
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005076# ifdef ELAPSED_FUNC
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005077 if (wait_pid == 0)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005078 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005079 long msec = ELAPSED_FUNC(start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005080
5081 /* Avoid that we keep looping here without
5082 * checking for a CTRL-C for a long time. Don't
5083 * break out too often to avoid losing typeahead. */
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00005084 if (msec > 2000)
5085 {
5086 noread_cnt = 5;
5087 break;
5088 }
5089 }
5090# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 }
5092
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005093 /* If we already detected the child has finished, continue
5094 * reading output for a short while. Some text may be
5095 * buffered. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005096 if (wait_pid == pid)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005097 {
5098 if (noread_cnt < 5)
5099 continue;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005100 break;
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02005101 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005102
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 /*
5104 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00005105 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00005106 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00005107# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02005108 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005109# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00005111# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5113 || (wait_pid == pid && WIFEXITED(status)))
5114 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005115 /* Don't break the loop yet, try reading more
5116 * characters from "fromshell_fd" first. When using
5117 * pipes there might still be something to read and
5118 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005119 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005120 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00005121 else
5122 wait_pid = 0;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005123
Bram Moolenaar95a51352013-03-21 22:53:50 +01005124# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005125 /* Handle any X events, e.g. serving the clipboard. */
5126 clip_update();
5127# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005128 }
5129finished:
5130 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005131 if (options & SHELL_READ)
5132 {
5133 if (ga.ga_len > 0)
5134 {
5135 append_ga_line(&ga);
5136 /* remember that the NL was missing */
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005137 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005138 }
5139 else
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01005140 curbuf->b_no_eol_lnum = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00005141 ga_clear(&ga);
5142 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 /*
5145 * Give all typeahead that wasn't used back to ui_inchar().
5146 */
5147 if (ta_len)
5148 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005149 State = old_State;
5150 if (toshell_fd >= 0)
5151 close(toshell_fd);
5152 close(fromshell_fd);
5153 }
Bram Moolenaar95a51352013-03-21 22:53:50 +01005154# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005155 else
5156 {
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005157 long delay_msec = 1;
5158
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005159 /*
5160 * Similar to the loop above, but only handle X events, no
5161 * I/O.
5162 */
5163 for (;;)
5164 {
5165 if (got_int)
5166 {
5167 /* CTRL-C sends a signal to the child, we ignore it
5168 * ourselves */
5169# ifdef HAVE_SETSID
5170 kill(-pid, SIGINT);
5171# else
5172 kill(0, SIGINT);
5173# endif
5174 got_int = FALSE;
5175 }
5176# ifdef __NeXT__
5177 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
5178# else
5179 wait_pid = waitpid(pid, &status, WNOHANG);
5180# endif
5181 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5182 || (wait_pid == pid && WIFEXITED(status)))
5183 {
5184 wait_pid = pid;
5185 break;
5186 }
5187
5188 /* Handle any X events, e.g. serving the clipboard. */
5189 clip_update();
5190
Bram Moolenaar0abe0522016-08-28 16:53:12 +02005191 /* Wait for 1 to 10 msec. 1 is faster but gives the child
5192 * less time. */
5193 mch_delay(delay_msec, TRUE);
5194 if (++delay_msec > 10)
5195 delay_msec = 10;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01005196 }
5197 }
5198# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199
5200 /*
5201 * Wait until our child has exited.
5202 * Ignore wait() returning pids of other children and returning
5203 * because of some signal like SIGWINCH.
5204 * Don't wait if wait_pid was already set above, indicating the
5205 * child already exited.
5206 */
Bram Moolenaar205b8862011-09-07 15:04:31 +02005207 if (wait_pid != pid)
5208 wait_pid = wait4pid(pid, &status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005209
Bram Moolenaar624891f2010-10-13 16:22:09 +02005210# ifdef FEAT_GUI
5211 /* Close slave side of pty. Only do this after the child has
5212 * exited, otherwise the child may hang when it tries to write on
5213 * the pty. */
5214 if (pty_master_fd >= 0)
5215 close(pty_slave_fd);
5216# endif
5217
Bram Moolenaardf177f62005-02-22 08:39:57 +00005218 /* Make sure the child that writes to the external program is
5219 * dead. */
5220 if (wpid > 0)
Bram Moolenaar205b8862011-09-07 15:04:31 +02005221 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005222 kill(wpid, SIGKILL);
Bram Moolenaar205b8862011-09-07 15:04:31 +02005223 wait4pid(wpid, NULL);
5224 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005225
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005226# ifdef FEAT_JOB_CHANNEL
5227 --dont_check_job_ended;
5228# endif
5229
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 /*
5231 * Set to raw mode right now, otherwise a CTRL-C after
5232 * catch_signals() will kill Vim.
5233 */
5234 if (tmode == TMODE_RAW)
5235 settmode(TMODE_RAW);
5236 did_settmode = TRUE;
5237 set_signals();
5238
5239 if (WIFEXITED(status))
5240 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00005241 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005242 retval = WEXITSTATUS(status);
Bram Moolenaar75676462013-01-30 14:55:42 +01005243 if (retval != 0 && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 {
5245 if (retval == EXEC_FAILED)
5246 {
5247 MSG_PUTS(_("\nCannot execute shell "));
5248 msg_outtrans(p_sh);
5249 msg_putchar('\n');
5250 }
5251 else if (!(options & SHELL_SILENT))
5252 {
5253 MSG_PUTS(_("\nshell returned "));
5254 msg_outnum((long)retval);
5255 msg_putchar('\n');
5256 }
5257 }
5258 }
5259 else
5260 MSG_PUTS(_("\nCommand terminated\n"));
5261 }
5262 }
5263 vim_free(argv);
Bram Moolenaarea35ef62011-08-04 22:59:28 +02005264 vim_free(p_shcf_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005265
5266error:
5267 if (!did_settmode)
5268 if (tmode == TMODE_RAW)
5269 settmode(TMODE_RAW); /* set to raw mode */
5270# ifdef FEAT_TITLE
5271 resettitle();
5272# endif
5273 vim_free(newcmd);
5274
5275 return retval;
5276
5277#endif /* USE_SYSTEM */
5278}
5279
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005280#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005281 void
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005282mch_job_start(char **argv, job_T *job, jobopt_T *options)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005283{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005284 pid_t pid;
Bram Moolenaar7c9aec42017-08-03 13:51:25 +02005285 int fd_in[2] = {-1, -1}; /* for stdin */
5286 int fd_out[2] = {-1, -1}; /* for stdout */
5287 int fd_err[2] = {-1, -1}; /* for stderr */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005288 int pty_master_fd = -1;
5289 int pty_slave_fd = -1;
Bram Moolenaar16eb4f82016-02-14 23:02:34 +01005290 channel_T *channel = NULL;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005291 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5292 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5293 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005294 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005295 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5296 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
Bram Moolenaarb2412082017-08-20 18:09:14 +02005297 int use_buffer_for_in = options->jo_io[PART_IN] == JIO_BUFFER;
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005298 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005299 SIGSET_DECL(curset)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005300
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005301 if (use_out_for_err && use_null_for_out)
5302 use_null_for_err = TRUE;
5303
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005304 /* default is to fail */
5305 job->jv_status = JOB_FAILED;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005306
Bram Moolenaarb2412082017-08-20 18:09:14 +02005307 if (options->jo_pty
5308 && (!(use_file_for_in || use_null_for_in)
5309 || !(use_file_for_in || use_null_for_out)
5310 || !(use_out_for_err || use_file_for_err || use_null_for_err)))
Bram Moolenaar2dc9d262017-09-08 14:39:30 +02005311 {
5312 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_out);
5313 if (job->jv_tty_out != NULL)
5314 job->jv_tty_in = vim_strsave(job->jv_tty_out);
5315 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005316
Bram Moolenaar12dcf022016-02-15 23:09:04 +01005317 /* TODO: without the channel feature connect the child to /dev/null? */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005318 /* Open pipes for stdin, stdout, stderr. */
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005319 if (use_file_for_in)
5320 {
5321 char_u *fname = options->jo_io_name[PART_IN];
5322
5323 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0);
5324 if (fd_in[0] < 0)
5325 {
5326 EMSG2(_(e_notopen), fname);
5327 goto failed;
5328 }
5329 }
Bram Moolenaarb2412082017-08-20 18:09:14 +02005330 else
5331 /* When writing buffer lines to the input don't use the pty, so that
5332 * the pipe can be closed when all lines were written. */
5333 if (!use_null_for_in && (pty_master_fd < 0 || use_buffer_for_in)
5334 && pipe(fd_in) < 0)
5335 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005336
5337 if (use_file_for_out)
5338 {
5339 char_u *fname = options->jo_io_name[PART_OUT];
5340
5341 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
5342 if (fd_out[1] < 0)
5343 {
5344 EMSG2(_(e_notopen), fname);
5345 goto failed;
5346 }
5347 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005348 else if (!use_null_for_out && pty_master_fd < 0 && pipe(fd_out) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005349 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005350
5351 if (use_file_for_err)
5352 {
5353 char_u *fname = options->jo_io_name[PART_ERR];
5354
5355 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
5356 if (fd_err[1] < 0)
5357 {
5358 EMSG2(_(e_notopen), fname);
5359 goto failed;
5360 }
5361 }
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005362 else if (!use_out_for_err && !use_null_for_err
5363 && pty_master_fd < 0 && pipe(fd_err) < 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005364 goto failed;
5365
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005366 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5367 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005368 if (options->jo_set & JO_CHANNEL)
5369 {
5370 channel = options->jo_channel;
5371 if (channel != NULL)
5372 ++channel->ch_refcount;
5373 }
5374 else
5375 channel = add_channel();
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005376 if (channel == NULL)
5377 goto failed;
Bram Moolenaarf3360612017-10-01 16:21:31 +02005378 if (job->jv_tty_out != NULL)
5379 ch_log(channel, "using pty %s on fd %d",
5380 job->jv_tty_out, pty_master_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005381 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005382
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005383 BLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005384 pid = fork(); /* maybe we should use vfork() */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005385 if (pid == -1)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005386 {
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005387 /* failed to fork */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005388 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005389 goto failed;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005390 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005391 if (pid == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005392 {
Bram Moolenaar4694a172016-04-21 14:05:23 +02005393 int null_fd = -1;
5394 int stderr_works = TRUE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005395
Bram Moolenaar835dc632016-02-07 14:27:38 +01005396 /* child */
5397 reset_signals(); /* handle signals normally */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005398 UNBLOCK_SIGNALS(&curset);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005399
5400# ifdef HAVE_SETSID
5401 /* Create our own process group, so that the child and all its
5402 * children can be kill()ed. Don't do this when using pipes,
5403 * because stdin is not a tty, we would lose /dev/tty. */
5404 (void)setsid();
5405# endif
5406
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005407# ifdef FEAT_TERMINAL
5408 if (options->jo_term_rows > 0)
5409 set_child_environment(
5410 (long)options->jo_term_rows,
5411 (long)options->jo_term_cols,
Bram Moolenaar93723a42017-07-28 15:55:32 +02005412 STRNCMP(T_NAME, "xterm", 5) == 0
5413 ? (char *)T_NAME : "xterm");
Bram Moolenaar58556cd2017-07-20 23:04:46 +02005414 else
5415# endif
5416 set_default_child_environment();
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005417
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005418 if (options->jo_env != NULL)
5419 {
5420 dict_T *dict = options->jo_env;
5421 hashitem_T *hi;
5422 int todo = (int)dict->dv_hashtab.ht_used;
5423
5424 for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi)
5425 if (!HASHITEM_EMPTY(hi))
5426 {
5427 typval_T *item = &dict_lookup(hi)->di_tv;
5428
5429 vim_setenv((char_u*)hi->hi_key, get_tv_string(item));
5430 --todo;
5431 }
5432 }
5433
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005434 if (use_null_for_in || use_null_for_out || use_null_for_err)
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005435 {
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005436 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
Bram Moolenaarb109bb42017-08-21 21:07:29 +02005437 if (null_fd < 0)
5438 {
5439 perror("opening /dev/null failed");
5440 _exit(OPEN_NULL_FAILED);
5441 }
5442 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005443
Bram Moolenaar223896d2017-08-02 22:33:28 +02005444 if (pty_slave_fd >= 0)
5445 {
5446 /* push stream discipline modules */
5447 SetupSlavePTY(pty_slave_fd);
5448# ifdef TIOCSCTTY
5449 /* Try to become controlling tty (probably doesn't work,
5450 * unless run by root) */
5451 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
5452# endif
5453 }
5454
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005455 /* set up stdin for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005456 close(0);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005457 if (use_null_for_in && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005458 ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005459 else if (fd_in[0] < 0)
5460 ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005461 else
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005462 ignored = dup(fd_in[0]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005463
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005464 /* set up stderr for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005465 close(2);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005466 if (use_null_for_err && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005467 {
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005468 ignored = dup(null_fd);
Bram Moolenaar4694a172016-04-21 14:05:23 +02005469 stderr_works = FALSE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005470 }
5471 else if (use_out_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005472 ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005473 else if (fd_err[1] < 0)
5474 ignored = dup(pty_slave_fd);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005475 else
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005476 ignored = dup(fd_err[1]);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005477
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005478 /* set up stdout for the child */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005479 close(1);
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005480 if (use_null_for_out && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005481 ignored = dup(null_fd);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005482 else if (fd_out[1] < 0)
5483 ignored = dup(pty_slave_fd);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005484 else
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005485 ignored = dup(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005486
5487 if (fd_in[0] >= 0)
5488 close(fd_in[0]);
5489 if (fd_in[1] >= 0)
5490 close(fd_in[1]);
5491 if (fd_out[0] >= 0)
5492 close(fd_out[0]);
5493 if (fd_out[1] >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005494 close(fd_out[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005495 if (fd_err[0] >= 0)
5496 close(fd_err[0]);
5497 if (fd_err[1] >= 0)
5498 close(fd_err[1]);
5499 if (pty_master_fd >= 0)
5500 {
Bram Moolenaar223896d2017-08-02 22:33:28 +02005501 close(pty_master_fd); /* not used in the child */
5502 close(pty_slave_fd); /* was duped above */
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005503 }
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005504
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005505 if (null_fd >= 0)
5506 close(null_fd);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005507
Bram Moolenaar05aafed2017-08-11 19:12:11 +02005508 if (options->jo_cwd != NULL && mch_chdir((char *)options->jo_cwd) != 0)
5509 _exit(EXEC_FAILED);
5510
Bram Moolenaar835dc632016-02-07 14:27:38 +01005511 /* See above for type of argv. */
5512 execvp(argv[0], argv);
5513
Bram Moolenaar4694a172016-04-21 14:05:23 +02005514 if (stderr_works)
5515 perror("executing job failed");
Bram Moolenaarfae42832017-08-01 22:24:26 +02005516# ifdef EXITFREE
Bram Moolenaarcda77642016-06-04 13:32:35 +02005517 /* calling free_all_mem() here causes problems. Ignore valgrind
5518 * reporting possibly leaked memory. */
Bram Moolenaarfae42832017-08-01 22:24:26 +02005519# endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005520 _exit(EXEC_FAILED); /* exec failed, return failure code */
5521 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005522
5523 /* parent */
Bram Moolenaarbb09ceb2016-10-18 16:27:23 +02005524 UNBLOCK_SIGNALS(&curset);
5525
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005526 job->jv_pid = pid;
5527 job->jv_status = JOB_STARTED;
Bram Moolenaarde279892016-03-11 22:19:44 +01005528 job->jv_channel = channel; /* ch_refcount was set above */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005529
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005530 if (pty_master_fd >= 0)
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005531 close(pty_slave_fd); /* not used in the parent */
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005532 /* close child stdin, stdout and stderr */
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005533 if (!use_file_for_in && fd_in[0] >= 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005534 close(fd_in[0]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005535 if (!use_file_for_out && fd_out[1] >= 0)
Bram Moolenaare98d1212016-03-08 15:37:41 +01005536 close(fd_out[1]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005537 if (!use_out_for_err && !use_file_for_err && fd_err[1] >= 0)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005538 close(fd_err[1]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005539 if (channel != NULL)
5540 {
5541 channel_set_pipes(channel,
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005542 use_file_for_in || use_null_for_in
5543 ? INVALID_FD : fd_in[1] < 0 ? pty_master_fd : fd_in[1],
5544 use_file_for_out || use_null_for_out
5545 ? INVALID_FD : fd_out[0] < 0 ? pty_master_fd : fd_out[0],
5546 use_out_for_err || use_file_for_err || use_null_for_err
5547 ? INVALID_FD : fd_err[0] < 0 ? pty_master_fd : fd_err[0]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005548 channel_set_job(channel, job, options);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005549 }
Bram Moolenaar979e8c52017-08-01 15:08:07 +02005550 else
5551 {
5552 if (fd_in[1] >= 0)
5553 close(fd_in[1]);
5554 if (fd_out[0] >= 0)
5555 close(fd_out[0]);
5556 if (fd_err[0] >= 0)
5557 close(fd_err[0]);
5558 if (pty_master_fd >= 0)
5559 close(pty_master_fd);
5560 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005561
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005562 /* success! */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005563 return;
5564
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005565failed:
Bram Moolenaarde279892016-03-11 22:19:44 +01005566 channel_unref(channel);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005567 if (fd_in[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005568 close(fd_in[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005569 if (fd_in[1] >= 0)
5570 close(fd_in[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005571 if (fd_out[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005572 close(fd_out[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005573 if (fd_out[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005574 close(fd_out[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005575 if (fd_err[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005576 close(fd_err[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005577 if (fd_err[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005578 close(fd_err[1]);
Bram Moolenaar5a1feb82017-07-22 18:04:08 +02005579 if (pty_master_fd >= 0)
5580 close(pty_master_fd);
5581 if (pty_slave_fd >= 0)
5582 close(pty_slave_fd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005583}
5584
5585 char *
5586mch_job_status(job_T *job)
5587{
5588# ifdef HAVE_UNION_WAIT
5589 union wait status;
5590# else
5591 int status = -1;
5592# endif
5593 pid_t wait_pid = 0;
5594
5595# ifdef __NeXT__
5596 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0);
5597# else
5598 wait_pid = waitpid(job->jv_pid, &status, WNOHANG);
5599# endif
5600 if (wait_pid == -1)
5601 {
5602 /* process must have exited */
Bram Moolenaar97792de2016-10-15 18:36:49 +02005603 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005604 }
5605 if (wait_pid == 0)
5606 return "run";
5607 if (WIFEXITED(status))
5608 {
5609 /* LINTED avoid "bitwise operation on signed value" */
5610 job->jv_exitval = WEXITSTATUS(status);
Bram Moolenaar97792de2016-10-15 18:36:49 +02005611 goto return_dead;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005612 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005613 if (WIFSIGNALED(status))
5614 {
5615 job->jv_exitval = -1;
Bram Moolenaar97792de2016-10-15 18:36:49 +02005616 goto return_dead;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005617 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01005618 return "run";
Bram Moolenaar97792de2016-10-15 18:36:49 +02005619
5620return_dead:
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005621 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005622 {
5623 ch_log(job->jv_channel, "Job ended");
5624 job->jv_status = JOB_ENDED;
5625 }
5626 return "dead";
5627}
5628
5629 job_T *
5630mch_detect_ended_job(job_T *job_list)
5631{
5632# ifdef HAVE_UNION_WAIT
5633 union wait status;
5634# else
5635 int status = -1;
5636# endif
5637 pid_t wait_pid = 0;
5638 job_T *job;
5639
Bram Moolenaarc4d4ac22016-11-07 22:42:57 +01005640# ifndef USE_SYSTEM
5641 /* Do not do this when waiting for a shell command to finish, we would get
5642 * the exit value here (and discard it), the exit value obtained there
5643 * would then be wrong. */
5644 if (dont_check_job_ended > 0)
5645 return NULL;
5646# endif
5647
Bram Moolenaar97792de2016-10-15 18:36:49 +02005648# ifdef __NeXT__
5649 wait_pid = wait4(-1, &status, WNOHANG, (struct rusage *)0);
5650# else
5651 wait_pid = waitpid(-1, &status, WNOHANG);
5652# endif
5653 if (wait_pid <= 0)
5654 /* no process ended */
5655 return NULL;
5656 for (job = job_list; job != NULL; job = job->jv_next)
5657 {
5658 if (job->jv_pid == wait_pid)
5659 {
5660 if (WIFEXITED(status))
5661 /* LINTED avoid "bitwise operation on signed value" */
5662 job->jv_exitval = WEXITSTATUS(status);
5663 else if (WIFSIGNALED(status))
5664 job->jv_exitval = -1;
Bram Moolenaar7df915d2016-11-17 17:25:32 +01005665 if (job->jv_status < JOB_ENDED)
Bram Moolenaar97792de2016-10-15 18:36:49 +02005666 {
5667 ch_log(job->jv_channel, "Job ended");
5668 job->jv_status = JOB_ENDED;
5669 }
5670 return job;
5671 }
5672 }
5673 return NULL;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005674}
5675
Bram Moolenaar3a117e12016-10-30 21:57:52 +01005676/*
5677 * Send a (deadly) signal to "job".
5678 * Return FAIL if "how" is not a valid name.
5679 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01005680 int
Bram Moolenaar2d33e902017-08-11 16:31:54 +02005681mch_signal_job(job_T *job, char_u *how)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005682{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005683 int sig = -1;
5684 pid_t job_pid;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005685
Bram Moolenaar923d9262016-02-25 20:56:01 +01005686 if (*how == NUL || STRCMP(how, "term") == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005687 sig = SIGTERM;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005688 else if (STRCMP(how, "hup") == 0)
5689 sig = SIGHUP;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005690 else if (STRCMP(how, "quit") == 0)
5691 sig = SIGQUIT;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005692 else if (STRCMP(how, "int") == 0)
5693 sig = SIGINT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005694 else if (STRCMP(how, "kill") == 0)
5695 sig = SIGKILL;
Bram Moolenaarb13501f2017-07-22 22:32:56 +02005696#ifdef SIGWINCH
5697 else if (STRCMP(how, "winch") == 0)
5698 sig = SIGWINCH;
5699#endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005700 else if (isdigit(*how))
5701 sig = atoi((char *)how);
5702 else
5703 return FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005704
Bram Moolenaar72801402016-02-09 11:37:50 +01005705 /* TODO: have an option to only kill the process, not the group? */
Bram Moolenaar76467df2016-02-12 19:30:26 +01005706 job_pid = job->jv_pid;
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01005707#ifdef HAVE_GETPGID
Bram Moolenaar76467df2016-02-12 19:30:26 +01005708 if (job_pid == getpgid(job_pid))
5709 job_pid = -job_pid;
Bram Moolenaar2fcf6682017-03-11 20:03:42 +01005710#endif
Bram Moolenaar76467df2016-02-12 19:30:26 +01005711
Bram Moolenaar61a66052017-07-22 18:39:00 +02005712 /* Never kill ourselves! */
5713 if (job_pid != 0)
5714 kill(job_pid, sig);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005715
Bram Moolenaar835dc632016-02-07 14:27:38 +01005716 return OK;
5717}
Bram Moolenaar76467df2016-02-12 19:30:26 +01005718
5719/*
5720 * Clear the data related to "job".
5721 */
5722 void
5723mch_clear_job(job_T *job)
5724{
5725 /* call waitpid because child process may become zombie */
5726# ifdef __NeXT__
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005727 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005728# else
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005729 (void)waitpid(job->jv_pid, NULL, WNOHANG);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005730# endif
5731}
Bram Moolenaar835dc632016-02-07 14:27:38 +01005732#endif
5733
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005734#if defined(FEAT_TERMINAL) || defined(PROTO)
5735 int
5736mch_create_pty_channel(job_T *job, jobopt_T *options)
5737{
5738 int pty_master_fd = -1;
5739 int pty_slave_fd = -1;
5740 channel_T *channel;
5741
Bram Moolenaar2dc9d262017-09-08 14:39:30 +02005742 open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_out);
5743 if (job->jv_tty_out != NULL)
5744 job->jv_tty_in = vim_strsave(job->jv_tty_out);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005745 close(pty_slave_fd);
5746
5747 channel = add_channel();
5748 if (channel == NULL)
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005749 {
5750 close(pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005751 return FAIL;
Bram Moolenaar1b9f9d32017-09-05 23:32:38 +02005752 }
Bram Moolenaarf3360612017-10-01 16:21:31 +02005753 if (job->jv_tty_out != NULL)
5754 ch_log(channel, "using pty %s on fd %d",
5755 job->jv_tty_out, pty_master_fd);
Bram Moolenaar13ebb032017-08-26 22:02:51 +02005756 job->jv_channel = channel; /* ch_refcount was set by add_channel() */
5757 channel->ch_keep_open = TRUE;
5758
5759 channel_set_pipes(channel, pty_master_fd, pty_master_fd, pty_master_fd);
5760 channel_set_job(channel, job, options);
5761 return OK;
5762}
5763#endif
5764
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765/*
5766 * Check for CTRL-C typed by reading all available characters.
5767 * In cooked mode we should get SIGINT, no need to check.
5768 */
5769 void
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005770mch_breakcheck(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771{
Bram Moolenaarb9c31e72016-09-29 15:18:57 +02005772 if ((curr_tmode == TMODE_RAW || force)
5773 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774 fill_input_buf(FALSE);
5775}
5776
5777/*
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005778 * Wait "msec" msec until a character is available from the mouse, keyboard,
5779 * from inbuf[].
5780 * "msec" == -1 will block forever.
5781 * Invokes timer callbacks when needed.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005782 * When "ignore_input" is TRUE even check for pending input when input is
5783 * already available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005784 * "interrupted" (if not NULL) is set to TRUE when no character is available
5785 * but something else needs to be done.
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005786 * Returns TRUE when a character is available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005787 * When a GUI is being used, this will never get called -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005788 */
5789 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005790WaitForChar(long msec, int *interrupted, int ignore_input)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005791{
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005792#ifdef FEAT_TIMERS
Bram Moolenaarc9e649a2017-12-18 18:14:47 +01005793 return ui_wait_for_chars_or_timer(
5794 msec, WaitForCharOrMouse, interrupted, ignore_input) == OK;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005795#else
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005796 return WaitForCharOrMouse(msec, interrupted, ignore_input);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005797#endif
5798}
5799
5800/*
5801 * Wait "msec" msec until a character is available from the mouse or keyboard
5802 * or from inbuf[].
5803 * "msec" == -1 will block forever.
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005804 * for "ignore_input" see WaitForCharOr().
Bram Moolenaarcda77642016-06-04 13:32:35 +02005805 * "interrupted" (if not NULL) is set to TRUE when no character is available
5806 * but something else needs to be done.
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005807 * When a GUI is being used, this will never get called -- webb
5808 */
5809 static int
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005810WaitForCharOrMouse(long msec, int *interrupted, int ignore_input)
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005811{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812#ifdef FEAT_MOUSE_GPM
5813 int gpm_process_wanted;
5814#endif
5815#ifdef FEAT_XCLIPBOARD
5816 int rest;
5817#endif
5818 int avail;
5819
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005820 if (!ignore_input && input_available()) /* something in inbuf[] */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005821 return 1;
5822
5823#if defined(FEAT_MOUSE_DEC)
5824 /* May need to query the mouse position. */
5825 if (WantQueryMouse)
5826 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005827 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005828 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
5829 }
5830#endif
5831
5832 /*
5833 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
5834 * events. This is a bit complicated, because they might both be defined.
5835 */
5836#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
5837# ifdef FEAT_XCLIPBOARD
5838 rest = 0;
5839 if (do_xterm_trace())
5840 rest = msec;
5841# endif
5842 do
5843 {
5844# ifdef FEAT_XCLIPBOARD
5845 if (rest != 0)
5846 {
5847 msec = XT_TRACE_DELAY;
5848 if (rest >= 0 && rest < XT_TRACE_DELAY)
5849 msec = rest;
5850 if (rest >= 0)
5851 rest -= msec;
5852 }
5853# endif
5854# ifdef FEAT_MOUSE_GPM
5855 gpm_process_wanted = 0;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005856 avail = RealWaitForChar(read_cmd_fd, msec,
Bram Moolenaarcda77642016-06-04 13:32:35 +02005857 &gpm_process_wanted, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858# else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005859 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005860# endif
5861 if (!avail)
5862 {
Bram Moolenaare9c21ae2017-08-03 20:44:48 +02005863 if (!ignore_input && input_available())
Bram Moolenaar071d4272004-06-13 20:20:40 +00005864 return 1;
5865# ifdef FEAT_XCLIPBOARD
5866 if (rest == 0 || !do_xterm_trace())
5867# endif
5868 break;
5869 }
5870 }
5871 while (FALSE
5872# ifdef FEAT_MOUSE_GPM
5873 || (gpm_process_wanted && mch_gpm_process() == 0)
5874# endif
5875# ifdef FEAT_XCLIPBOARD
5876 || (!avail && rest != 0)
5877# endif
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005878 )
5879 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005880
5881#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005882 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883#endif
5884 return avail;
5885}
5886
Bram Moolenaar4ffa0702013-12-11 17:12:37 +01005887#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888/*
5889 * Wait "msec" msec until a character is available from file descriptor "fd".
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005890 * "msec" == 0 will check for characters once.
5891 * "msec" == -1 will block until a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005892 * When a GUI is being used, this will not be used for input -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 * Or when a Linux GPM mouse event is waiting.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02005894 * Or when a clientserver message is on the queue.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005895 * "interrupted" (if not NULL) is set to TRUE when no character is available
5896 * but something else needs to be done.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005897 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898#if defined(__BEOS__)
5899 int
5900#else
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005901 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005903RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904{
5905 int ret;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005906 int result;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005907#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 static int busy = FALSE;
5909
5910 /* May retry getting characters after an event was handled. */
5911# define MAY_LOOP
5912
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005913# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 /* Remember at what time we started, so that we know how much longer we
5915 * should wait after being interrupted. */
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005916 long start_msec = msec;
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005917 ELAPSED_TYPE start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005919 if (msec > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01005920 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921# endif
5922
5923 /* Handle being called recursively. This may happen for the session
5924 * manager stuff, it may save the file, which does a breakcheck. */
5925 if (busy)
5926 return 0;
5927#endif
5928
5929#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005930 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931#endif
5932 {
5933#ifdef MAY_LOOP
5934 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005935# ifdef FEAT_MZSCHEME
5936 int mzquantum_used = FALSE;
5937# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938#endif
5939#ifndef HAVE_SELECT
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005940 /* each channel may use in, out and err */
5941 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 int nfd;
5943# ifdef FEAT_XCLIPBOARD
5944 int xterm_idx = -1;
5945# endif
5946# ifdef FEAT_MOUSE_GPM
5947 int gpm_idx = -1;
5948# endif
5949# ifdef USE_XSMP
5950 int xsmp_idx = -1;
5951# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005952 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005953
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005954# ifdef FEAT_MZSCHEME
5955 mzvim_check_threads();
5956 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
5957 {
5958 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
5959 mzquantum_used = TRUE;
5960 }
5961# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 fds[0].fd = fd;
5963 fds[0].events = POLLIN;
5964 nfd = 1;
5965
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01005967 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005968 if (xterm_Shell != (Widget)0)
5969 {
5970 xterm_idx = nfd;
5971 fds[nfd].fd = ConnectionNumber(xterm_dpy);
5972 fds[nfd].events = POLLIN;
5973 nfd++;
5974 }
5975# endif
5976# ifdef FEAT_MOUSE_GPM
5977 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
5978 {
5979 gpm_idx = nfd;
5980 fds[nfd].fd = gpm_fd;
5981 fds[nfd].events = POLLIN;
5982 nfd++;
5983 }
5984# endif
5985# ifdef USE_XSMP
5986 if (xsmp_icefd != -1)
5987 {
5988 xsmp_idx = nfd;
5989 fds[nfd].fd = xsmp_icefd;
5990 fds[nfd].events = POLLIN;
5991 nfd++;
5992 }
5993# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005994#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02005995 nfd = channel_poll_setup(nfd, &fds, &towait);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005996#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005997 if (interrupted != NULL)
5998 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006000 ret = poll(fds, nfd, towait);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006001
6002 result = ret > 0 && (fds[0].revents & POLLIN);
Bram Moolenaarcda77642016-06-04 13:32:35 +02006003 if (result == 0 && interrupted != NULL && ret > 0)
6004 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006005
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006006# ifdef FEAT_MZSCHEME
6007 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006008 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006009 finished = FALSE;
6010# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006011
Bram Moolenaar071d4272004-06-13 20:20:40 +00006012# ifdef FEAT_XCLIPBOARD
6013 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
6014 {
6015 xterm_update(); /* Maybe we should hand out clipboard */
6016 if (--ret == 0 && !input_available())
6017 /* Try again */
6018 finished = FALSE;
6019 }
6020# endif
6021# ifdef FEAT_MOUSE_GPM
6022 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
6023 {
6024 *check_for_gpm = 1;
6025 }
6026# endif
6027# ifdef USE_XSMP
6028 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
6029 {
6030 if (fds[xsmp_idx].revents & POLLIN)
6031 {
6032 busy = TRUE;
6033 xsmp_handle_requests();
6034 busy = FALSE;
6035 }
6036 else if (fds[xsmp_idx].revents & POLLHUP)
6037 {
6038 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006039 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006040 xsmp_close();
6041 }
6042 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006043 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006044 }
6045# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006046#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006047 /* also call when ret == 0, we may be polling a keep-open channel */
6048 if (ret >= 0)
Bram Moolenaare0874f82016-01-24 20:36:41 +01006049 ret = channel_poll_check(ret, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006050#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006051
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052#else /* HAVE_SELECT */
6053
6054 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006055 struct timeval *tvp;
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006056 fd_set rfds, wfds, efds;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006058 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006059
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006060# ifdef FEAT_MZSCHEME
6061 mzvim_check_threads();
6062 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
6063 {
6064 towait = p_mzq; /* don't wait longer than 'mzquantum' */
6065 mzquantum_used = TRUE;
6066 }
6067# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006069 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006070 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006071 tv.tv_sec = towait / 1000;
6072 tv.tv_usec = (towait % 1000) * (1000000/1000);
6073 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006074 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006075 else
6076 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006077
6078 /*
6079 * Select on ready for reading and exceptional condition (end of file).
6080 */
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006081select_eintr:
6082 FD_ZERO(&rfds);
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006083 FD_ZERO(&wfds);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006084 FD_ZERO(&efds);
6085 FD_SET(fd, &rfds);
6086# if !defined(__QNX__) && !defined(__CYGWIN32__)
6087 /* For QNX select() always returns 1 if this is set. Why? */
6088 FD_SET(fd, &efds);
6089# endif
6090 maxfd = fd;
6091
Bram Moolenaar071d4272004-06-13 20:20:40 +00006092# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01006093 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006094 if (xterm_Shell != (Widget)0)
6095 {
6096 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
6097 if (maxfd < ConnectionNumber(xterm_dpy))
6098 maxfd = ConnectionNumber(xterm_dpy);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006099
6100 /* An event may have already been read but not handled. In
6101 * particulary, XFlush may cause this. */
6102 xterm_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006103 }
6104# endif
6105# ifdef FEAT_MOUSE_GPM
6106 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
6107 {
6108 FD_SET(gpm_fd, &rfds);
6109 FD_SET(gpm_fd, &efds);
6110 if (maxfd < gpm_fd)
6111 maxfd = gpm_fd;
6112 }
6113# endif
6114# ifdef USE_XSMP
6115 if (xsmp_icefd != -1)
6116 {
6117 FD_SET(xsmp_icefd, &rfds);
6118 FD_SET(xsmp_icefd, &efds);
6119 if (maxfd < xsmp_icefd)
6120 maxfd = xsmp_icefd;
6121 }
6122# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006123# ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006124 maxfd = channel_select_setup(maxfd, &rfds, &wfds, &tv, &tvp);
Bram Moolenaardd82d692012-08-15 17:26:57 +02006125# endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02006126 if (interrupted != NULL)
6127 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006129 ret = select(maxfd + 1, &rfds, &wfds, &efds, tvp);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006130 result = ret > 0 && FD_ISSET(fd, &rfds);
6131 if (result)
6132 --ret;
Bram Moolenaarcda77642016-06-04 13:32:35 +02006133 else if (interrupted != NULL && ret > 0)
6134 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006135
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006136# ifdef EINTR
6137 if (ret == -1 && errno == EINTR)
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006138 {
6139 /* Check whether window has been resized, EINTR may be caused by
6140 * SIGWINCH. */
6141 if (do_resize)
6142 handle_resize();
6143
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006144 /* Interrupted by a signal, need to try again. We ignore msec
6145 * here, because we do want to check even after a timeout if
6146 * characters are available. Needed for reading output of an
6147 * external command after the process has finished. */
6148 goto select_eintr;
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02006149 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006150# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00006151# ifdef __TANDEM
6152 if (ret == -1 && errno == ENOTSUP)
6153 {
6154 FD_ZERO(&rfds);
6155 FD_ZERO(&efds);
6156 ret = 0;
6157 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02006158# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006159# ifdef FEAT_MZSCHEME
6160 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006161 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00006162 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006163# endif
6164
Bram Moolenaar071d4272004-06-13 20:20:40 +00006165# ifdef FEAT_XCLIPBOARD
6166 if (ret > 0 && xterm_Shell != (Widget)0
6167 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
6168 {
6169 xterm_update(); /* Maybe we should hand out clipboard */
6170 /* continue looping when we only got the X event and the input
6171 * buffer is empty */
6172 if (--ret == 0 && !input_available())
6173 {
6174 /* Try again */
6175 finished = FALSE;
6176 }
6177 }
6178# endif
6179# ifdef FEAT_MOUSE_GPM
6180 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
6181 {
6182 if (FD_ISSET(gpm_fd, &efds))
6183 gpm_close();
6184 else if (FD_ISSET(gpm_fd, &rfds))
6185 *check_for_gpm = 1;
6186 }
6187# endif
6188# ifdef USE_XSMP
6189 if (ret > 0 && xsmp_icefd != -1)
6190 {
6191 if (FD_ISSET(xsmp_icefd, &efds))
6192 {
6193 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006194 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006195 xsmp_close();
6196 if (--ret == 0)
6197 finished = FALSE; /* keep going if event was only one */
6198 }
6199 else if (FD_ISSET(xsmp_icefd, &rfds))
6200 {
6201 busy = TRUE;
6202 xsmp_handle_requests();
6203 busy = FALSE;
6204 if (--ret == 0)
6205 finished = FALSE; /* keep going if event was only one */
6206 }
6207 }
6208# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01006209#ifdef FEAT_JOB_CHANNEL
Bram Moolenaarf3360612017-10-01 16:21:31 +02006210 /* also call when ret == 0, we may be polling a keep-open channel */
6211 if (ret >= 0)
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02006212 ret = channel_select_check(ret, &rfds, &wfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02006213#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006214
6215#endif /* HAVE_SELECT */
6216
6217#ifdef MAY_LOOP
6218 if (finished || msec == 0)
6219 break;
6220
Bram Moolenaar93c88e02015-09-15 14:12:05 +02006221# ifdef FEAT_CLIENTSERVER
6222 if (server_waiting())
6223 break;
6224# endif
6225
Bram Moolenaar071d4272004-06-13 20:20:40 +00006226 /* We're going to loop around again, find out for how long */
6227 if (msec > 0)
6228 {
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006229# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00006230 /* Compute remaining wait time. */
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01006231 msec = start_msec - ELAPSED_FUNC(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006232# else
6233 /* Guess we got interrupted halfway. */
6234 msec = msec / 2;
6235# endif
6236 if (msec <= 0)
6237 break; /* waited long enough */
6238 }
6239#endif
6240 }
6241
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01006242 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243}
6244
Bram Moolenaar071d4272004-06-13 20:20:40 +00006245#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00006246/*
Bram Moolenaar02743632005-07-25 20:42:36 +00006247 * Expand a path into all matching files and/or directories. Handles "*",
6248 * "?", "[a-z]", "**", etc.
6249 * "path" has backslashes before chars that are not to be expanded.
6250 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006251 */
6252 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006253mch_expandpath(
6254 garray_T *gap,
6255 char_u *path,
6256 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257{
Bram Moolenaar02743632005-07-25 20:42:36 +00006258 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006259}
6260#endif
6261
6262/*
6263 * mch_expand_wildcards() - this code does wild-card pattern matching using
6264 * the shell
6265 *
6266 * return OK for success, FAIL for error (you may lose some memory) and put
6267 * an error message in *file.
6268 *
6269 * num_pat is number of input patterns
6270 * pat is array of pointers to input patterns
6271 * num_file is pointer to number of matched file names
6272 * file is pointer to array of pointers to matched file names
6273 */
6274
6275#ifndef SEEK_SET
6276# define SEEK_SET 0
6277#endif
6278#ifndef SEEK_END
6279# define SEEK_END 2
6280#endif
6281
Bram Moolenaar5555acc2006-04-07 21:33:12 +00006282#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00006283
Bram Moolenaar071d4272004-06-13 20:20:40 +00006284 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006285mch_expand_wildcards(
6286 int num_pat,
6287 char_u **pat,
6288 int *num_file,
6289 char_u ***file,
6290 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291{
6292 int i;
6293 size_t len;
Bram Moolenaar85325f82017-03-30 21:18:45 +02006294 long llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006295 char_u *p;
6296 int dir;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006297
Bram Moolenaarc7247912008-01-13 12:54:11 +00006298 /*
6299 * This is the non-OS/2 implementation (really Unix).
6300 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006301 int j;
6302 char_u *tempname;
6303 char_u *command;
6304 FILE *fd;
6305 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006306#define STYLE_ECHO 0 /* use "echo", the default */
6307#define STYLE_GLOB 1 /* use "glob", for csh */
6308#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
6309#define STYLE_PRINT 3 /* use "print -N", for zsh */
6310#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
6311 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312 int shell_style = STYLE_ECHO;
6313 int check_spaces;
6314 static int did_find_nul = FALSE;
6315 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006316 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006317 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006318
6319 *num_file = 0; /* default: no files found */
6320 *file = NULL;
6321
6322 /*
6323 * If there are no wildcards, just copy the names to allocated memory.
6324 * Saves a lot of time, because we don't have to start a new shell.
6325 */
6326 if (!have_wildcard(num_pat, pat))
6327 return save_patterns(num_pat, pat, num_file, file);
6328
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006329# ifdef HAVE_SANDBOX
6330 /* Don't allow any shell command in the sandbox. */
6331 if (sandbox != 0 && check_secure())
6332 return FAIL;
6333# endif
6334
Bram Moolenaar071d4272004-06-13 20:20:40 +00006335 /*
6336 * Don't allow the use of backticks in secure and restricted mode.
6337 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006338 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006339 for (i = 0; i < num_pat; ++i)
6340 if (vim_strchr(pat[i], '`') != NULL
6341 && (check_restricted() || check_secure()))
6342 return FAIL;
6343
6344 /*
6345 * get a name for the temp file
6346 */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02006347 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006348 {
6349 EMSG(_(e_notmp));
6350 return FAIL;
6351 }
6352
6353 /*
6354 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00006355 * file.
6356 * STYLE_BT: NL separated
6357 * If expanding `cmd` execute it directly.
6358 * STYLE_GLOB: NUL separated
6359 * If we use *csh, "glob" will work better than "echo".
6360 * STYLE_PRINT: NL or NUL separated
6361 * If we use *zsh, "print -N" will work better than "glob".
6362 * STYLE_VIMGLOB: NL separated
6363 * If we use *sh*, we define "vimglob()".
6364 * STYLE_ECHO: space separated.
6365 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366 */
6367 if (num_pat == 1 && *pat[0] == '`'
6368 && (len = STRLEN(pat[0])) > 2
6369 && *(pat[0] + len - 1) == '`')
6370 shell_style = STYLE_BT;
6371 else if ((len = STRLEN(p_sh)) >= 3)
6372 {
6373 if (STRCMP(p_sh + len - 3, "csh") == 0)
6374 shell_style = STYLE_GLOB;
6375 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
6376 shell_style = STYLE_PRINT;
6377 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006378 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
6379 "sh") != NULL)
6380 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381
Bram Moolenaarc7247912008-01-13 12:54:11 +00006382 /* Compute the length of the command. We need 2 extra bytes: for the
6383 * optional '&' and for the NUL.
6384 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006386 if (shell_style == STYLE_VIMGLOB)
6387 len += STRLEN(sh_vimglob_func);
6388
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006389 for (i = 0; i < num_pat; ++i)
6390 {
6391 /* Count the length of the patterns in the same way as they are put in
6392 * "command" below. */
6393#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00006394 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006395#else
6396 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006397 for (j = 0; pat[i][j] != NUL; ++j)
6398 {
6399 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
6400 ++len; /* may add a backslash */
6401 ++len;
6402 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006403#endif
6404 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006405 command = alloc(len);
6406 if (command == NULL)
6407 {
6408 /* out of memory */
6409 vim_free(tempname);
6410 return FAIL;
6411 }
6412
6413 /*
6414 * Build the shell command:
6415 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
6416 * recognizes this).
6417 * - Add the shell command to print the expanded names.
6418 * - Add the temp file name.
6419 * - Add the file name patterns.
6420 */
6421 if (shell_style == STYLE_BT)
6422 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00006423 /* change `command; command& ` to (command; command ) */
6424 STRCPY(command, "(");
6425 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006426 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006427 *p-- = ')'; /* remove last backtick */
Bram Moolenaar1c465442017-03-12 20:10:05 +01006428 while (p > command && VIM_ISWHITE(*p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006429 --p;
6430 if (*p == '&') /* remove trailing '&' */
6431 {
6432 ampersent = TRUE;
6433 *p = ' ';
6434 }
6435 STRCAT(command, ">");
6436 }
6437 else
6438 {
6439 if (flags & EW_NOTFOUND)
6440 STRCPY(command, "set nonomatch; ");
6441 else
6442 STRCPY(command, "unset nonomatch; ");
6443 if (shell_style == STYLE_GLOB)
6444 STRCAT(command, "glob >");
6445 else if (shell_style == STYLE_PRINT)
6446 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00006447 else if (shell_style == STYLE_VIMGLOB)
6448 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449 else
6450 STRCAT(command, "echo >");
6451 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006452
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00006454
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455 if (shell_style != STYLE_BT)
6456 for (i = 0; i < num_pat; ++i)
6457 {
6458 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00006459 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006460 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006461#ifdef USE_SYSTEM
6462 STRCAT(command, " \"");
6463 STRCAT(command, pat[i]);
6464 STRCAT(command, "\"");
6465#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00006466 int intick = FALSE;
6467
Bram Moolenaar071d4272004-06-13 20:20:40 +00006468 p = command + STRLEN(command);
6469 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00006470 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00006471 {
6472 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00006473 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006474 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
6475 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006476 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00006477 * backslash inside backticks, before a special character
6478 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006479 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00006480 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
6481 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006482 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006483 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006484 }
Bram Moolenaare4df1642014-08-29 12:58:44 +02006485 else if (!intick
6486 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$')
6487 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00006488 /* Put a backslash before a special character, but not
Bram Moolenaare4df1642014-08-29 12:58:44 +02006489 * when inside ``. And not for $var when EW_KEEPDOLLAR is
6490 * set. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006491 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006492
6493 /* Copy one character. */
6494 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00006495 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006496 *p = NUL;
6497#endif
6498 }
6499 if (flags & EW_SILENT)
6500 show_shell_mess = FALSE;
6501 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00006502 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006503
6504 /*
6505 * Using zsh -G: If a pattern has no matches, it is just deleted from
6506 * the argument list, otherwise zsh gives an error message and doesn't
6507 * expand any other pattern.
6508 */
6509 if (shell_style == STYLE_PRINT)
6510 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
6511
6512 /*
6513 * If we use -f then shell variables set in .cshrc won't get expanded.
6514 * vi can do it, so we will too, but it is only necessary if there is a "$"
6515 * in one of the patterns, otherwise we can still use the fast option.
6516 */
6517 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
6518 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
6519
6520 /*
6521 * execute the shell command
6522 */
6523 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6524
6525 /* When running in the background, give it some time to create the temp
6526 * file, but don't wait for it to finish. */
6527 if (ampersent)
6528 mch_delay(10L, TRUE);
6529
6530 extra_shell_arg = NULL; /* cleanup */
6531 show_shell_mess = TRUE;
6532 vim_free(command);
6533
Bram Moolenaarc7247912008-01-13 12:54:11 +00006534 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006535 {
6536 mch_remove(tempname);
6537 vim_free(tempname);
6538 /*
6539 * With interactive completion, the error message is not printed.
6540 * However with USE_SYSTEM, I don't know how to turn off error messages
6541 * from the shell, so screen may still get messed up -- webb.
6542 */
6543#ifndef USE_SYSTEM
6544 if (!(flags & EW_SILENT))
6545#endif
6546 {
6547 redraw_later_clear(); /* probably messed up screen */
6548 msg_putchar('\n'); /* clear bottom line quickly */
6549 cmdline_row = Rows - 1; /* continue on last line */
6550#ifdef USE_SYSTEM
6551 if (!(flags & EW_SILENT))
6552#endif
6553 {
6554 MSG(_(e_wildexpand));
6555 msg_start(); /* don't overwrite this message */
6556 }
6557 }
6558 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
6559 * EW_NOTFOUND is given */
6560 if (shell_style == STYLE_BT)
6561 return FAIL;
6562 goto notfound;
6563 }
6564
6565 /*
6566 * read the names from the file into memory
6567 */
6568 fd = fopen((char *)tempname, READBIN);
6569 if (fd == NULL)
6570 {
6571 /* Something went wrong, perhaps a file name with a special char. */
6572 if (!(flags & EW_SILENT))
6573 {
6574 MSG(_(e_wildexpand));
6575 msg_start(); /* don't overwrite this message */
6576 }
6577 vim_free(tempname);
6578 goto notfound;
6579 }
6580 fseek(fd, 0L, SEEK_END);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006581 llen = ftell(fd); /* get size of temp file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582 fseek(fd, 0L, SEEK_SET);
Bram Moolenaar85325f82017-03-30 21:18:45 +02006583 if (llen < 0)
6584 /* just in case ftell() would fail */
6585 buffer = NULL;
6586 else
6587 buffer = alloc(llen + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006588 if (buffer == NULL)
6589 {
6590 /* out of memory */
6591 mch_remove(tempname);
6592 vim_free(tempname);
6593 fclose(fd);
6594 return FAIL;
6595 }
Bram Moolenaar85325f82017-03-30 21:18:45 +02006596 len = llen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597 i = fread((char *)buffer, 1, len, fd);
6598 fclose(fd);
6599 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00006600 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006601 {
6602 /* unexpected read error */
6603 EMSG2(_(e_notread), tempname);
6604 vim_free(tempname);
6605 vim_free(buffer);
6606 return FAIL;
6607 }
6608 vim_free(tempname);
6609
Bram Moolenaarc7247912008-01-13 12:54:11 +00006610# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006611 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
6612 p = buffer;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02006613 for (i = 0; i < (int)len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
6615 *p++ = buffer[i];
6616 len = p - buffer;
6617# endif
6618
6619
6620 /* file names are separated with Space */
6621 if (shell_style == STYLE_ECHO)
6622 {
6623 buffer[len] = '\n'; /* make sure the buffer ends in NL */
6624 p = buffer;
6625 for (i = 0; *p != '\n'; ++i) /* count number of entries */
6626 {
6627 while (*p != ' ' && *p != '\n')
6628 ++p;
6629 p = skipwhite(p); /* skip to next entry */
6630 }
6631 }
6632 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006633 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006634 {
6635 buffer[len] = NUL; /* make sure the buffer ends in NUL */
6636 p = buffer;
6637 for (i = 0; *p != NUL; ++i) /* count number of entries */
6638 {
6639 while (*p != '\n' && *p != NUL)
6640 ++p;
6641 if (*p != NUL)
6642 ++p;
6643 p = skipwhite(p); /* skip leading white space */
6644 }
6645 }
6646 /* file names are separated with NUL */
6647 else
6648 {
6649 /*
6650 * Some versions of zsh use spaces instead of NULs to separate
6651 * results. Only do this when there is no NUL before the end of the
6652 * buffer, otherwise we would never be able to use file names with
6653 * embedded spaces when zsh does use NULs.
6654 * When we found a NUL once, we know zsh is OK, set did_find_nul and
6655 * don't check for spaces again.
6656 */
6657 check_spaces = FALSE;
6658 if (shell_style == STYLE_PRINT && !did_find_nul)
6659 {
6660 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02006661 buffer[len] = NUL;
Bram Moolenaarb011af92013-12-11 13:21:51 +01006662 if (len && (int)STRLEN(buffer) < (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006663 did_find_nul = TRUE;
6664 else
6665 check_spaces = TRUE;
6666 }
6667
6668 /*
6669 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
6670 * already is one, for STYLE_GLOB it needs to be added.
6671 */
6672 if (len && buffer[len - 1] == NUL)
6673 --len;
6674 else
6675 buffer[len] = NUL;
6676 i = 0;
6677 for (p = buffer; p < buffer + len; ++p)
6678 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
6679 {
6680 ++i;
6681 *p = NUL;
6682 }
6683 if (len)
6684 ++i; /* count last entry */
6685 }
6686 if (i == 0)
6687 {
6688 /*
6689 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
6690 * /bin/sh will happily expand it to nothing rather than returning an
6691 * error; and hey, it's good to check anyway -- webb.
6692 */
6693 vim_free(buffer);
6694 goto notfound;
6695 }
6696 *num_file = i;
6697 *file = (char_u **)alloc(sizeof(char_u *) * i);
6698 if (*file == NULL)
6699 {
6700 /* out of memory */
6701 vim_free(buffer);
6702 return FAIL;
6703 }
6704
6705 /*
6706 * Isolate the individual file names.
6707 */
6708 p = buffer;
6709 for (i = 0; i < *num_file; ++i)
6710 {
6711 (*file)[i] = p;
6712 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006713 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
6714 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006715 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00006716 while (!(shell_style == STYLE_ECHO && *p == ' ')
6717 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718 ++p;
6719 if (p == buffer + len) /* last entry */
6720 *p = NUL;
6721 else
6722 {
6723 *p++ = NUL;
6724 p = skipwhite(p); /* skip to next entry */
6725 }
6726 }
6727 else /* NUL separates */
6728 {
6729 while (*p && p < buffer + len) /* skip entry */
6730 ++p;
6731 ++p; /* skip NUL */
6732 }
6733 }
6734
6735 /*
6736 * Move the file names to allocated memory.
6737 */
6738 for (j = 0, i = 0; i < *num_file; ++i)
6739 {
6740 /* Require the files to exist. Helps when using /bin/sh */
6741 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6742 continue;
6743
6744 /* check if this entry should be included */
6745 dir = (mch_isdir((*file)[i]));
6746 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6747 continue;
6748
Bram Moolenaara2031822006-03-07 22:29:51 +00006749 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006750 if (!dir && (flags & EW_EXEC)
6751 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006752 continue;
6753
Bram Moolenaar071d4272004-06-13 20:20:40 +00006754 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
6755 if (p)
6756 {
6757 STRCPY(p, (*file)[i]);
6758 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00006759 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760 (*file)[j++] = p;
6761 }
6762 }
6763 vim_free(buffer);
6764 *num_file = j;
6765
6766 if (*num_file == 0) /* rejected all entries */
6767 {
6768 vim_free(*file);
6769 *file = NULL;
6770 goto notfound;
6771 }
6772
6773 return OK;
6774
6775notfound:
6776 if (flags & EW_NOTFOUND)
6777 return save_patterns(num_pat, pat, num_file, file);
6778 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006779}
6780
6781#endif /* VMS */
6782
Bram Moolenaar071d4272004-06-13 20:20:40 +00006783 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006784save_patterns(
6785 int num_pat,
6786 char_u **pat,
6787 int *num_file,
6788 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006789{
6790 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006791 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006792
6793 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
6794 if (*file == NULL)
6795 return FAIL;
6796 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00006797 {
6798 s = vim_strsave(pat[i]);
6799 if (s != NULL)
6800 /* Be compatible with expand_filename(): halve the number of
6801 * backslashes. */
6802 backslash_halve(s);
6803 (*file)[i] = s;
6804 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006805 *num_file = num_pat;
6806 return OK;
6807}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006808
Bram Moolenaar071d4272004-06-13 20:20:40 +00006809/*
6810 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
6811 * expand.
6812 */
6813 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006814mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006815{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006816 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006818 if (*p == '\\' && p[1] != NUL)
6819 ++p;
6820 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 if (vim_strchr((char_u *)
6822#ifdef VMS
6823 "*?%"
6824#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006825 "*?[{'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006826#endif
6827 , *p) != NULL)
6828 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006829 }
6830 return FALSE;
6831}
6832
6833/*
6834 * Return TRUE if the string "p" contains a wildcard.
6835 * Don't recognize '~' at the end as a wildcard.
6836 */
6837 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006838mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006839{
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006840 for ( ; *p; MB_PTR_ADV(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006841 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006842 if (*p == '\\' && p[1] != NUL)
6843 ++p;
6844 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006845 if (vim_strchr((char_u *)
6846#ifdef VMS
6847 "*?%$"
6848#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006849 "*?[{`'$"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006850#endif
6851 , *p) != NULL
6852 || (*p == '~' && p[1] != NUL))
6853 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006854 }
6855 return FALSE;
6856}
6857
Bram Moolenaar071d4272004-06-13 20:20:40 +00006858 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006859have_wildcard(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006860{
6861 int i;
6862
6863 for (i = 0; i < num; i++)
6864 if (mch_has_wildcard(file[i]))
6865 return 1;
6866 return 0;
6867}
6868
6869 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006870have_dollars(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006871{
6872 int i;
6873
6874 for (i = 0; i < num; i++)
6875 if (vim_strchr(file[i], '$') != NULL)
6876 return TRUE;
6877 return FALSE;
6878}
Bram Moolenaar071d4272004-06-13 20:20:40 +00006879
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006880#if !defined(HAVE_RENAME) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006881/*
6882 * Scaled-down version of rename(), which is missing in Xenix.
6883 * This version can only move regular files and will fail if the
6884 * destination exists.
6885 */
6886 int
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006887mch_rename(const char *src, const char *dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006888{
6889 struct stat st;
6890
6891 if (stat(dest, &st) >= 0) /* fail if destination exists */
6892 return -1;
6893 if (link(src, dest) != 0) /* link file to new name */
6894 return -1;
6895 if (mch_remove(src) == 0) /* delete link to old name */
6896 return 0;
6897 return -1;
6898}
6899#endif /* !HAVE_RENAME */
6900
6901#ifdef FEAT_MOUSE_GPM
6902/*
6903 * Initializes connection with gpm (if it isn't already opened)
6904 * Return 1 if succeeded (or connection already opened), 0 if failed
6905 */
6906 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006907gpm_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908{
6909 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
6910
6911 if (!gpm_flag)
6912 {
6913 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
6914 gpm_connect.defaultMask = ~GPM_HARD;
6915 /* Default handling for mouse move*/
6916 gpm_connect.minMod = 0; /* Handle any modifier keys */
6917 gpm_connect.maxMod = 0xffff;
6918 if (Gpm_Open(&gpm_connect, 0) > 0)
6919 {
6920 /* gpm library tries to handling TSTP causes
6921 * problems. Anyways, we close connection to Gpm whenever
6922 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006923 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006925# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006926 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006927# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006928 return 1; /* succeed */
6929 }
6930 if (gpm_fd == -2)
6931 Gpm_Close(); /* We don't want to talk to xterm via gpm */
6932 return 0;
6933 }
6934 return 1; /* already open */
6935}
6936
6937/*
6938 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939 */
6940 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006941gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006942{
6943 if (gpm_flag && gpm_fd >= 0) /* if Open */
6944 Gpm_Close();
6945}
6946
6947/* Reads gpm event and adds special keys to input buf. Returns length of
6948 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02006949 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00006950 */
6951 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006952mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006953{
6954 int button;
6955 static Gpm_Event gpm_event;
6956 char_u string[6];
6957 int_u vim_modifiers;
6958 int row,col;
6959 unsigned char buttons_mask;
6960 unsigned char gpm_modifiers;
6961 static unsigned char old_buttons = 0;
6962
6963 Gpm_GetEvent(&gpm_event);
6964
6965#ifdef FEAT_GUI
6966 /* Don't put events in the input queue now. */
6967 if (hold_gui_events)
6968 return 0;
6969#endif
6970
6971 row = gpm_event.y - 1;
6972 col = gpm_event.x - 1;
6973
6974 string[0] = ESC; /* Our termcode */
6975 string[1] = 'M';
6976 string[2] = 'G';
6977 switch (GPM_BARE_EVENTS(gpm_event.type))
6978 {
6979 case GPM_DRAG:
6980 string[3] = MOUSE_DRAG;
6981 break;
6982 case GPM_DOWN:
6983 buttons_mask = gpm_event.buttons & ~old_buttons;
6984 old_buttons = gpm_event.buttons;
6985 switch (buttons_mask)
6986 {
6987 case GPM_B_LEFT:
6988 button = MOUSE_LEFT;
6989 break;
6990 case GPM_B_MIDDLE:
6991 button = MOUSE_MIDDLE;
6992 break;
6993 case GPM_B_RIGHT:
6994 button = MOUSE_RIGHT;
6995 break;
6996 default:
6997 return 0;
6998 /*Don't know what to do. Can more than one button be
6999 * reported in one event? */
7000 }
7001 string[3] = (char_u)(button | 0x20);
7002 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
7003 break;
7004 case GPM_UP:
7005 string[3] = MOUSE_RELEASE;
7006 old_buttons &= ~gpm_event.buttons;
7007 break;
7008 default:
7009 return 0;
7010 }
7011 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
7012 gpm_modifiers = gpm_event.modifiers;
7013 vim_modifiers = 0x0;
7014 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
7015 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
7016 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
7017 */
7018 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
7019 vim_modifiers |= MOUSE_SHIFT;
7020
7021 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
7022 vim_modifiers |= MOUSE_CTRL;
7023 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
7024 vim_modifiers |= MOUSE_ALT;
7025 string[3] |= vim_modifiers;
7026 string[4] = (char_u)(col + ' ' + 1);
7027 string[5] = (char_u)(row + ' ' + 1);
7028 add_to_input_buf(string, 6);
7029 return 6;
7030}
7031#endif /* FEAT_MOUSE_GPM */
7032
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007033#ifdef FEAT_SYSMOUSE
7034/*
7035 * Initialize connection with sysmouse.
7036 * Let virtual console inform us with SIGUSR2 for pending sysmouse
7037 * output, any sysmouse output than will be processed via sig_sysmouse().
7038 * Return OK if succeeded, FAIL if failed.
7039 */
7040 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007041sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007042{
7043 struct mouse_info mouse;
7044
7045 mouse.operation = MOUSE_MODE;
7046 mouse.u.mode.mode = 0;
7047 mouse.u.mode.signal = SIGUSR2;
7048 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
7049 {
7050 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
7051 mouse.operation = MOUSE_SHOW;
7052 ioctl(1, CONS_MOUSECTL, &mouse);
7053 return OK;
7054 }
7055 return FAIL;
7056}
7057
7058/*
7059 * Stop processing SIGUSR2 signals, and also make sure that
7060 * virtual console do not send us any sysmouse related signal.
7061 */
7062 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007063sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007064{
7065 struct mouse_info mouse;
7066
7067 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
7068 mouse.operation = MOUSE_MODE;
7069 mouse.u.mode.mode = 0;
7070 mouse.u.mode.signal = 0;
7071 ioctl(1, CONS_MOUSECTL, &mouse);
7072}
7073
7074/*
7075 * Gets info from sysmouse and adds special keys to input buf.
7076 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007077 static RETSIGTYPE
7078sig_sysmouse SIGDEFARG(sigarg)
7079{
7080 struct mouse_info mouse;
7081 struct video_info video;
7082 char_u string[6];
7083 int row, col;
7084 int button;
7085 int buttons;
7086 static int oldbuttons = 0;
7087
7088#ifdef FEAT_GUI
7089 /* Don't put events in the input queue now. */
7090 if (hold_gui_events)
7091 return;
7092#endif
7093
7094 mouse.operation = MOUSE_GETINFO;
7095 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
7096 && ioctl(1, FBIO_MODEINFO, &video) != -1
7097 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
7098 && video.vi_cheight > 0 && video.vi_cwidth > 0)
7099 {
7100 row = mouse.u.data.y / video.vi_cheight;
7101 col = mouse.u.data.x / video.vi_cwidth;
7102 buttons = mouse.u.data.buttons;
7103 string[0] = ESC; /* Our termcode */
7104 string[1] = 'M';
7105 string[2] = 'S';
7106 if (oldbuttons == buttons && buttons != 0)
7107 {
7108 button = MOUSE_DRAG;
7109 }
7110 else
7111 {
7112 switch (buttons)
7113 {
7114 case 0:
7115 button = MOUSE_RELEASE;
7116 break;
7117 case 1:
7118 button = MOUSE_LEFT;
7119 break;
7120 case 2:
7121 button = MOUSE_MIDDLE;
7122 break;
7123 case 4:
7124 button = MOUSE_RIGHT;
7125 break;
7126 default:
7127 return;
7128 }
7129 oldbuttons = buttons;
7130 }
7131 string[3] = (char_u)(button);
7132 string[4] = (char_u)(col + ' ' + 1);
7133 string[5] = (char_u)(row + ' ' + 1);
7134 add_to_input_buf(string, 6);
7135 }
7136 return;
7137}
7138#endif /* FEAT_SYSMOUSE */
7139
Bram Moolenaar071d4272004-06-13 20:20:40 +00007140#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01007141typedef char_u * (*STRPROCSTR)(char_u *);
7142typedef char_u * (*INTPROCSTR)(int);
7143typedef int (*STRPROCINT)(char_u *);
7144typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007145
7146/*
7147 * Call a DLL routine which takes either a string or int param
7148 * and returns an allocated string.
7149 */
7150 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007151mch_libcall(
7152 char_u *libname,
7153 char_u *funcname,
7154 char_u *argstring, /* NULL when using a argint */
7155 int argint,
7156 char_u **string_result,/* NULL when using number_result */
7157 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007158{
7159# if defined(USE_DLOPEN)
7160 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007161 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007162# else
7163 shl_t hinstLib;
7164# endif
7165 STRPROCSTR ProcAdd;
7166 INTPROCSTR ProcAddI;
7167 char_u *retval_str = NULL;
7168 int retval_int = 0;
7169 int success = FALSE;
7170
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007171 /*
7172 * Get a handle to the DLL module.
7173 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007174# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00007175 /* First clear any error, it's not cleared by the dlopen() call. */
7176 (void)dlerror();
7177
Bram Moolenaar071d4272004-06-13 20:20:40 +00007178 hinstLib = dlopen((char *)libname, RTLD_LAZY
7179# ifdef RTLD_LOCAL
7180 | RTLD_LOCAL
7181# endif
7182 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007183 if (hinstLib == NULL)
7184 {
7185 /* "dlerr" must be used before dlclose() */
7186 dlerr = (char *)dlerror();
7187 if (dlerr != NULL)
7188 EMSG2(_("dlerror = \"%s\""), dlerr);
7189 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007190# else
7191 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
7192# endif
7193
7194 /* If the handle is valid, try to get the function address. */
7195 if (hinstLib != NULL)
7196 {
7197# ifdef HAVE_SETJMP_H
7198 /*
7199 * Catch a crash when calling the library function. For example when
7200 * using a number where a string pointer is expected.
7201 */
7202 mch_startjmp();
7203 if (SETJMP(lc_jump_env) != 0)
7204 {
7205 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007206# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007207 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007208# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007209 mch_didjmp();
7210 }
7211 else
7212# endif
7213 {
7214 retval_str = NULL;
7215 retval_int = 0;
7216
7217 if (argstring != NULL)
7218 {
7219# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007220 *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007221 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007222# else
7223 if (shl_findsym(&hinstLib, (const char *)funcname,
7224 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
7225 ProcAdd = NULL;
7226# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007227 if ((success = (ProcAdd != NULL
7228# if defined(USE_DLOPEN)
7229 && dlerr == NULL
7230# endif
7231 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007232 {
7233 if (string_result == NULL)
7234 retval_int = ((STRPROCINT)ProcAdd)(argstring);
7235 else
7236 retval_str = (ProcAdd)(argstring);
7237 }
7238 }
7239 else
7240 {
7241# if defined(USE_DLOPEN)
Bram Moolenaar6d721c72017-01-17 16:56:28 +01007242 *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007243 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007244# else
7245 if (shl_findsym(&hinstLib, (const char *)funcname,
7246 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
7247 ProcAddI = NULL;
7248# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007249 if ((success = (ProcAddI != NULL
7250# if defined(USE_DLOPEN)
7251 && dlerr == NULL
7252# endif
7253 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007254 {
7255 if (string_result == NULL)
7256 retval_int = ((INTPROCINT)ProcAddI)(argint);
7257 else
7258 retval_str = (ProcAddI)(argint);
7259 }
7260 }
7261
7262 /* Save the string before we free the library. */
7263 /* Assume that a "1" or "-1" result is an illegal pointer. */
7264 if (string_result == NULL)
7265 *number_result = retval_int;
7266 else if (retval_str != NULL
7267 && retval_str != (char_u *)1
7268 && retval_str != (char_u *)-1)
7269 *string_result = vim_strsave(retval_str);
7270 }
7271
7272# ifdef HAVE_SETJMP_H
7273 mch_endjmp();
7274# ifdef SIGHASARG
7275 if (lc_signal != 0)
7276 {
7277 int i;
7278
7279 /* try to find the name of this signal */
7280 for (i = 0; signal_info[i].sig != -1; i++)
7281 if (lc_signal == signal_info[i].sig)
7282 break;
7283 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
7284 }
7285# endif
7286# endif
7287
Bram Moolenaar071d4272004-06-13 20:20:40 +00007288# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007289 /* "dlerr" must be used before dlclose() */
7290 if (dlerr != NULL)
7291 EMSG2(_("dlerror = \"%s\""), dlerr);
7292
7293 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007294 (void)dlclose(hinstLib);
7295# else
7296 (void)shl_unload(hinstLib);
7297# endif
7298 }
7299
7300 if (!success)
7301 {
7302 EMSG2(_(e_libcall), funcname);
7303 return FAIL;
7304 }
7305
7306 return OK;
7307}
7308#endif
7309
7310#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
7311static int xterm_trace = -1; /* default: disabled */
7312static int xterm_button;
7313
7314/*
7315 * Setup a dummy window for X selections in a terminal.
7316 */
7317 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007318setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007319{
7320 int z = 0;
7321 char *strp = "";
7322 Widget AppShell;
7323
7324 if (!x_connect_to_server())
7325 return;
7326
7327 open_app_context();
7328 if (app_context != NULL && xterm_Shell == (Widget)0)
7329 {
7330 int (*oldhandler)();
7331#if defined(HAVE_SETJMP_H)
7332 int (*oldIOhandler)();
7333#endif
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007334# ifdef ELAPSED_FUNC
7335 ELAPSED_TYPE start_tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336
7337 if (p_verbose > 0)
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007338 ELAPSED_INIT(start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339# endif
7340
7341 /* Ignore X errors while opening the display */
7342 oldhandler = XSetErrorHandler(x_error_check);
7343
7344#if defined(HAVE_SETJMP_H)
7345 /* Ignore X IO errors while opening the display */
7346 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7347 mch_startjmp();
7348 if (SETJMP(lc_jump_env) != 0)
7349 {
7350 mch_didjmp();
7351 xterm_dpy = NULL;
7352 }
7353 else
7354#endif
7355 {
7356 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7357 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
7358#if defined(HAVE_SETJMP_H)
7359 mch_endjmp();
7360#endif
7361 }
7362
7363#if defined(HAVE_SETJMP_H)
7364 /* Now handle X IO errors normally. */
7365 (void)XSetIOErrorHandler(oldIOhandler);
7366#endif
7367 /* Now handle X errors normally. */
7368 (void)XSetErrorHandler(oldhandler);
7369
7370 if (xterm_dpy == NULL)
7371 {
7372 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007373 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374 return;
7375 }
7376
7377 /* Catch terminating error of the X server connection. */
7378 (void)XSetIOErrorHandler(x_IOerror_handler);
7379
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007380# ifdef ELAPSED_FUNC
Bram Moolenaar071d4272004-06-13 20:20:40 +00007381 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007382 {
7383 verbose_enter();
Bram Moolenaar833eb1d2016-11-24 17:22:50 +01007384 xopen_message(ELAPSED_FUNC(start_tv));
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007385 verbose_leave();
7386 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007387# endif
7388
7389 /* Create a Shell to make converters work. */
7390 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7391 applicationShellWidgetClass, xterm_dpy,
7392 NULL);
7393 if (AppShell == (Widget)0)
7394 return;
7395 xterm_Shell = XtVaCreatePopupShell("VIM",
7396 topLevelShellWidgetClass, AppShell,
7397 XtNmappedWhenManaged, 0,
7398 XtNwidth, 1,
7399 XtNheight, 1,
7400 NULL);
7401 if (xterm_Shell == (Widget)0)
7402 return;
7403
7404 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007405 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007406 if (x11_display == NULL)
7407 x11_display = xterm_dpy;
7408
7409 XtRealizeWidget(xterm_Shell);
7410 XSync(xterm_dpy, False);
7411 xterm_update();
7412 }
7413 if (xterm_Shell != (Widget)0)
7414 {
7415 clip_init(TRUE);
7416 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7417 x11_window = (Window)atol(strp);
7418 /* Check if $WINDOWID is valid. */
7419 if (test_x11_window(xterm_dpy) == FAIL)
7420 x11_window = 0;
7421 if (x11_window != 0)
7422 xterm_trace = 0;
7423 }
7424}
7425
7426 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007427start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007428{
7429 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7430 return;
7431 xterm_trace = 1;
7432 xterm_button = button;
7433 do_xterm_trace();
7434}
7435
7436
7437 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007438stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007439{
7440 if (xterm_trace < 0)
7441 return;
7442 xterm_trace = 0;
7443}
7444
7445/*
7446 * Query the xterm pointer and generate mouse termcodes if necessary
7447 * return TRUE if dragging is active, else FALSE
7448 */
7449 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007450do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007451{
7452 Window root, child;
7453 int root_x, root_y;
7454 int win_x, win_y;
7455 int row, col;
7456 int_u mask_return;
7457 char_u buf[50];
7458 char_u *strp;
7459 long got_hints;
7460 static char_u *mouse_code;
7461 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7462 static int prev_row = 0, prev_col = 0;
7463 static XSizeHints xterm_hints;
7464
7465 if (xterm_trace <= 0)
7466 return FALSE;
7467
7468 if (xterm_trace == 1)
7469 {
7470 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007471 * have changed recently. */
7472 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7473 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007474 || xterm_hints.width_inc <= 1
7475 || xterm_hints.height_inc <= 1)
7476 {
7477 xterm_trace = -1; /* Not enough data -- disable tracing */
7478 return FALSE;
7479 }
7480
7481 /* Rely on the same mouse code for the duration of this */
7482 mouse_code = find_termcode(mouse_name);
7483 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007484 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485 xterm_trace = 2;
7486
7487 /* Find the offset of the chars, there might be a scrollbar on the
7488 * left of the window and/or a menu on the top (eterm etc.) */
7489 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7490 &win_x, &win_y, &mask_return);
7491 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7492 - (xterm_hints.height_inc / 2);
7493 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7494 xterm_hints.y = 2;
7495 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7496 - (xterm_hints.width_inc / 2);
7497 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7498 xterm_hints.x = 2;
7499 return TRUE;
7500 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007501 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007502 {
7503 xterm_trace = 0;
7504 return FALSE;
7505 }
7506
7507 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7508 &win_x, &win_y, &mask_return);
7509
7510 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7511 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7512 if (row == prev_row && col == prev_col)
7513 return TRUE;
7514
7515 STRCPY(buf, mouse_code);
7516 strp = buf + STRLEN(buf);
7517 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7518 *strp++ = (char_u)(col + ' ' + 1);
7519 *strp++ = (char_u)(row + ' ' + 1);
7520 *strp = 0;
7521 add_to_input_buf(buf, STRLEN(buf));
7522
7523 prev_row = row;
7524 prev_col = col;
7525 return TRUE;
7526}
7527
7528# if defined(FEAT_GUI) || defined(PROTO)
7529/*
7530 * Destroy the display, window and app_context. Required for GTK.
7531 */
7532 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007533clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007534{
7535 if (xterm_Shell != (Widget)0)
7536 {
7537 XtDestroyWidget(xterm_Shell);
7538 xterm_Shell = (Widget)0;
7539 }
7540 if (xterm_dpy != NULL)
7541 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007542# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007543 /* Lesstif and Solaris crash here, lose some memory */
7544 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007545# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007546 if (x11_display == xterm_dpy)
7547 x11_display = NULL;
7548 xterm_dpy = NULL;
7549 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007550# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007551 if (app_context != (XtAppContext)NULL)
7552 {
7553 /* Lesstif and Solaris crash here, lose some memory */
7554 XtDestroyApplicationContext(app_context);
7555 app_context = (XtAppContext)NULL;
7556 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007557# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007558}
7559# endif
7560
7561/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007562 * Catch up with GUI or X events.
7563 */
7564 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007565clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007566{
7567# ifdef FEAT_GUI
7568 if (gui.in_use)
7569 gui_mch_update();
7570 else
7571# endif
7572 if (xterm_Shell != (Widget)0)
7573 xterm_update();
7574}
7575
7576/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007577 * Catch up with any queued X events. This may put keyboard input into the
7578 * input buffer, call resize call-backs, trigger timers etc. If there is
7579 * nothing in the X event queue (& no timers pending), then we return
7580 * immediately.
7581 */
7582 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007583xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007584{
7585 XEvent event;
7586
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007587 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007588 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007589 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007590
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007591 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007592 break;
7593
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007594 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007595 {
7596 /* There is an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007597 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007598#ifdef FEAT_CLIENTSERVER
7599 {
7600 XPropertyEvent *e = (XPropertyEvent *)&event;
7601
7602 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007603 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007604 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007605 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007606#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007607 XtDispatchEvent(&event);
7608 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007609 else
7610 {
7611 /* There is something else than an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007612 XtAppProcessEvent(app_context, mask);
7613 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007614 }
7615}
7616
7617 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007618clip_xterm_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007619{
7620 if (xterm_Shell != (Widget)0)
7621 return clip_x11_own_selection(xterm_Shell, cbd);
7622 return FAIL;
7623}
7624
7625 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007626clip_xterm_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007627{
7628 if (xterm_Shell != (Widget)0)
7629 clip_x11_lose_selection(xterm_Shell, cbd);
7630}
7631
7632 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007633clip_xterm_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007634{
7635 if (xterm_Shell != (Widget)0)
7636 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7637}
7638
7639 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007640clip_xterm_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641{
7642 clip_x11_set_selection(cbd);
7643}
7644#endif
7645
7646
7647#if defined(USE_XSMP) || defined(PROTO)
7648/*
7649 * Code for X Session Management Protocol.
7650 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007651static void xsmp_handle_save_yourself(SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast);
7652static void xsmp_die(SmcConn smc_conn, SmPointer client_data);
7653static void xsmp_save_complete(SmcConn smc_conn, SmPointer client_data);
7654static void xsmp_shutdown_cancelled(SmcConn smc_conn, SmPointer client_data);
7655static void xsmp_ice_connection(IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007656
7657
7658# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007659static void xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007660
7661/*
7662 * This is our chance to ask the user if they want to save,
7663 * or abort the logout
7664 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007665 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007666xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007667{
7668 cmdmod_T save_cmdmod;
7669 int cancel_shutdown = False;
7670
7671 save_cmdmod = cmdmod;
7672 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007673 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007674 /* Mustn't logout */
7675 cancel_shutdown = True;
7676 cmdmod = save_cmdmod;
7677 setcursor(); /* position cursor */
7678 out_flush();
7679
7680 /* Done interaction */
7681 SmcInteractDone(smc_conn, cancel_shutdown);
7682
7683 /* Finish off
7684 * Only end save-yourself here if we're not cancelling shutdown;
7685 * we'll get a cancelled callback later in which we'll end it.
7686 * Hopefully get around glitchy SMs (like GNOME-1)
7687 */
7688 if (!cancel_shutdown)
7689 {
7690 xsmp.save_yourself = False;
7691 SmcSaveYourselfDone(smc_conn, True);
7692 }
7693}
7694# endif
7695
7696/*
7697 * Callback that starts save-yourself.
7698 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007699 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007700xsmp_handle_save_yourself(
7701 SmcConn smc_conn,
7702 SmPointer client_data UNUSED,
7703 int save_type UNUSED,
7704 Bool shutdown,
7705 int interact_style UNUSED,
7706 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007707{
7708 /* Handle already being in saveyourself */
7709 if (xsmp.save_yourself)
7710 SmcSaveYourselfDone(smc_conn, True);
7711 xsmp.save_yourself = True;
7712 xsmp.shutdown = shutdown;
7713
7714 /* First up, preserve all files */
7715 out_flush();
7716 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
7717
7718 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007719 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007720
7721# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
7722 /* Now see if we can ask about unsaved files */
7723 if (shutdown && !fast && gui.in_use)
7724 /* Need to interact with user, but need SM's permission */
7725 SmcInteractRequest(smc_conn, SmDialogError,
7726 xsmp_handle_interaction, client_data);
7727 else
7728# endif
7729 {
7730 /* Can stop the cycle here */
7731 SmcSaveYourselfDone(smc_conn, True);
7732 xsmp.save_yourself = False;
7733 }
7734}
7735
7736
7737/*
7738 * Callback to warn us of imminent death.
7739 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007740 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007741xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007742{
7743 xsmp_close();
7744
7745 /* quit quickly leaving swapfiles for modified buffers behind */
7746 getout_preserve_modified(0);
7747}
7748
7749
7750/*
7751 * Callback to tell us that save-yourself has completed.
7752 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007753 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007754xsmp_save_complete(
7755 SmcConn smc_conn UNUSED,
7756 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007757{
7758 xsmp.save_yourself = False;
7759}
7760
7761
7762/*
7763 * Callback to tell us that an instigated shutdown was cancelled
7764 * (maybe even by us)
7765 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007766 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007767xsmp_shutdown_cancelled(
7768 SmcConn smc_conn,
7769 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007770{
7771 if (xsmp.save_yourself)
7772 SmcSaveYourselfDone(smc_conn, True);
7773 xsmp.save_yourself = False;
7774 xsmp.shutdown = False;
7775}
7776
7777
7778/*
7779 * Callback to tell us that a new ICE connection has been established.
7780 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007781 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007782xsmp_ice_connection(
7783 IceConn iceConn,
7784 IcePointer clientData UNUSED,
7785 Bool opening,
7786 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007787{
7788 /* Intercept creation of ICE connection fd */
7789 if (opening)
7790 {
7791 xsmp_icefd = IceConnectionNumber(iceConn);
7792 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7793 }
7794}
7795
7796
7797/* Handle any ICE processing that's required; return FAIL if SM lost */
7798 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007799xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007800{
7801 Bool rep;
7802
7803 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7804 == IceProcessMessagesIOError)
7805 {
7806 /* Lost ICE */
7807 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007808 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007809 xsmp_close();
7810 return FAIL;
7811 }
7812 else
7813 return OK;
7814}
7815
7816static int dummy;
7817
7818/* Set up X Session Management Protocol */
7819 void
7820xsmp_init(void)
7821{
7822 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007823 SmcCallbacks smcallbacks;
7824#if 0
7825 SmPropValue smname;
7826 SmProp smnameprop;
7827 SmProp *smprops[1];
7828#endif
7829
7830 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007831 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007832
7833 xsmp.save_yourself = xsmp.shutdown = False;
7834
7835 /* Set up SM callbacks - must have all, even if they're not used */
7836 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7837 smcallbacks.save_yourself.client_data = NULL;
7838 smcallbacks.die.callback = xsmp_die;
7839 smcallbacks.die.client_data = NULL;
7840 smcallbacks.save_complete.callback = xsmp_save_complete;
7841 smcallbacks.save_complete.client_data = NULL;
7842 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
7843 smcallbacks.shutdown_cancelled.client_data = NULL;
7844
7845 /* Set up a watch on ICE connection creations. The "dummy" argument is
7846 * apparently required for FreeBSD (we get a BUS error when using NULL). */
7847 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
7848 {
7849 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007850 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007851 return;
7852 }
7853
7854 /* Create an SM connection */
7855 xsmp.smcconn = SmcOpenConnection(
7856 NULL,
7857 NULL,
7858 SmProtoMajor,
7859 SmProtoMinor,
7860 SmcSaveYourselfProcMask | SmcDieProcMask
7861 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
7862 &smcallbacks,
7863 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00007864 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007865 sizeof(errorstring),
7866 errorstring);
7867 if (xsmp.smcconn == NULL)
7868 {
7869 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00007870
Bram Moolenaar071d4272004-06-13 20:20:40 +00007871 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007872 {
7873 vim_snprintf(errorreport, sizeof(errorreport),
7874 _("XSMP SmcOpenConnection failed: %s"), errorstring);
7875 verb_msg((char_u *)errorreport);
7876 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007877 return;
7878 }
7879 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
7880
7881#if 0
7882 /* ID ourselves */
7883 smname.value = "vim";
7884 smname.length = 3;
7885 smnameprop.name = "SmProgram";
7886 smnameprop.type = "SmARRAY8";
7887 smnameprop.num_vals = 1;
7888 smnameprop.vals = &smname;
7889
7890 smprops[0] = &smnameprop;
7891 SmcSetProperties(xsmp.smcconn, 1, smprops);
7892#endif
7893}
7894
7895
7896/* Shut down XSMP comms. */
7897 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007898xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007899{
7900 if (xsmp_icefd != -1)
7901 {
7902 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00007903 if (xsmp.clientid != NULL)
7904 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00007905 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007906 xsmp_icefd = -1;
7907 }
7908}
7909#endif /* USE_XSMP */
7910
7911
7912#ifdef EBCDIC
7913/* Translate character to its CTRL- value */
7914char CtrlTable[] =
7915{
7916/* 00 - 5E */
7917 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7918 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7919 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7920 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7921 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7922 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7923/* ^ */ 0x1E,
7924/* - */ 0x1F,
7925/* 61 - 6C */
7926 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7927/* _ */ 0x1F,
7928/* 6E - 80 */
7929 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7930/* a */ 0x01,
7931/* b */ 0x02,
7932/* c */ 0x03,
7933/* d */ 0x37,
7934/* e */ 0x2D,
7935/* f */ 0x2E,
7936/* g */ 0x2F,
7937/* h */ 0x16,
7938/* i */ 0x05,
7939/* 8A - 90 */
7940 0, 0, 0, 0, 0, 0, 0,
7941/* j */ 0x15,
7942/* k */ 0x0B,
7943/* l */ 0x0C,
7944/* m */ 0x0D,
7945/* n */ 0x0E,
7946/* o */ 0x0F,
7947/* p */ 0x10,
7948/* q */ 0x11,
7949/* r */ 0x12,
7950/* 9A - A1 */
7951 0, 0, 0, 0, 0, 0, 0, 0,
7952/* s */ 0x13,
7953/* t */ 0x3C,
7954/* u */ 0x3D,
7955/* v */ 0x32,
7956/* w */ 0x26,
7957/* x */ 0x18,
7958/* y */ 0x19,
7959/* z */ 0x3F,
7960/* AA - AC */
7961 0, 0, 0,
7962/* [ */ 0x27,
7963/* AE - BC */
7964 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7965/* ] */ 0x1D,
7966/* BE - C0 */ 0, 0, 0,
7967/* A */ 0x01,
7968/* B */ 0x02,
7969/* C */ 0x03,
7970/* D */ 0x37,
7971/* E */ 0x2D,
7972/* F */ 0x2E,
7973/* G */ 0x2F,
7974/* H */ 0x16,
7975/* I */ 0x05,
7976/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
7977/* J */ 0x15,
7978/* K */ 0x0B,
7979/* L */ 0x0C,
7980/* M */ 0x0D,
7981/* N */ 0x0E,
7982/* O */ 0x0F,
7983/* P */ 0x10,
7984/* Q */ 0x11,
7985/* R */ 0x12,
7986/* DA - DF */ 0, 0, 0, 0, 0, 0,
7987/* \ */ 0x1C,
7988/* E1 */ 0,
7989/* S */ 0x13,
7990/* T */ 0x3C,
7991/* U */ 0x3D,
7992/* V */ 0x32,
7993/* W */ 0x26,
7994/* X */ 0x18,
7995/* Y */ 0x19,
7996/* Z */ 0x3F,
7997/* EA - FF*/ 0, 0, 0, 0, 0, 0,
7998 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7999};
8000
8001char MetaCharTable[]=
8002{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8003 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
8004 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
8005 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
8006 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
8007};
8008
8009
8010/* TODO: Use characters NOT numbers!!! */
8011char CtrlCharTable[]=
8012{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
8013 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
8014 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
8015 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
8016 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
8017};
8018
8019
8020#endif