blob: 32c1640f99768d1135305712406bcdfbc93ee38a [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
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 Moolenaarcda77642016-06-04 13:32:35 +0200178static int WaitForChar(long msec, int *interrupted);
179static int WaitForCharOrMouse(long msec, int *interrupted);
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 Moolenaar071d4272004-06-13 20:20:40 +0000214#ifndef __EMX__
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100215static int have_wildcard(int, char_u **);
216static int have_dollars(int, char_u **);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217#endif
218
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219#ifndef __EMX__
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100220static int save_patterns(int num_pat, char_u **pat, int *num_file, char_u ***file);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000221#endif
222
223#ifndef SIG_ERR
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000224# define SIG_ERR ((RETSIGTYPE (*)())-1)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000225#endif
226
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000227/* volatile because it is used in signal handler sig_winch(). */
228static volatile int do_resize = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229#ifndef __EMX__
230static char_u *extra_shell_arg = NULL;
231static int show_shell_mess = TRUE;
232#endif
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000233/* volatile because it is used in signal handler deathtrap(). */
234static volatile int deadly_signal = 0; /* The signal we caught */
235/* volatile because it is used in signal handler deathtrap(). */
236static volatile int in_mch_delay = FALSE; /* sleeping in mch_delay() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000237
238static int curr_tmode = TMODE_COOK; /* contains current terminal mode */
239
240#ifdef USE_XSMP
241typedef struct
242{
243 SmcConn smcconn; /* The SM connection ID */
244 IceConn iceconn; /* The ICE connection ID */
Bram Moolenaar67c53842010-05-22 18:28:27 +0200245 char *clientid; /* The client ID for the current smc session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000246 Bool save_yourself; /* If we're in the middle of a save_yourself */
247 Bool shutdown; /* If we're in shutdown mode */
248} xsmp_config_T;
249
250static xsmp_config_T xsmp;
251#endif
252
253#ifdef SYS_SIGLIST_DECLARED
254/*
255 * I have seen
256 * extern char *_sys_siglist[NSIG];
257 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
258 * that describe the signals. That is nearly what we want here. But
259 * autoconf does only check for sys_siglist (without the underscore), I
260 * do not want to change everything today.... jw.
261 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.in
262 */
263#endif
264
265static struct signalinfo
266{
267 int sig; /* Signal number, eg. SIGSEGV etc */
268 char *name; /* Signal name (not char_u!). */
269 char deadly; /* Catch as a deadly signal? */
270} signal_info[] =
271{
272#ifdef SIGHUP
273 {SIGHUP, "HUP", TRUE},
274#endif
275#ifdef SIGQUIT
276 {SIGQUIT, "QUIT", TRUE},
277#endif
278#ifdef SIGILL
279 {SIGILL, "ILL", TRUE},
280#endif
281#ifdef SIGTRAP
282 {SIGTRAP, "TRAP", TRUE},
283#endif
284#ifdef SIGABRT
285 {SIGABRT, "ABRT", TRUE},
286#endif
287#ifdef SIGEMT
288 {SIGEMT, "EMT", TRUE},
289#endif
290#ifdef SIGFPE
291 {SIGFPE, "FPE", TRUE},
292#endif
293#ifdef SIGBUS
294 {SIGBUS, "BUS", TRUE},
295#endif
Bram Moolenaar75676462013-01-30 14:55:42 +0100296#if defined(SIGSEGV) && !defined(FEAT_MZSCHEME)
297 /* MzScheme uses SEGV in its garbage collector */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298 {SIGSEGV, "SEGV", TRUE},
299#endif
300#ifdef SIGSYS
301 {SIGSYS, "SYS", TRUE},
302#endif
303#ifdef SIGALRM
304 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */
305#endif
306#ifdef SIGTERM
307 {SIGTERM, "TERM", TRUE},
308#endif
Bram Moolenaarb292a2a2011-02-09 18:47:40 +0100309#if defined(SIGVTALRM) && !defined(FEAT_RUBY)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000310 {SIGVTALRM, "VTALRM", TRUE},
311#endif
Bram Moolenaar02f07e02008-03-12 12:17:28 +0000312#if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
313 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
314 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000315 {SIGPROF, "PROF", TRUE},
316#endif
317#ifdef SIGXCPU
318 {SIGXCPU, "XCPU", TRUE},
319#endif
320#ifdef SIGXFSZ
321 {SIGXFSZ, "XFSZ", TRUE},
322#endif
323#ifdef SIGUSR1
324 {SIGUSR1, "USR1", TRUE},
325#endif
Bram Moolenaar3577c6f2008-06-24 21:16:56 +0000326#if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE)
327 /* Used for sysmouse handling */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328 {SIGUSR2, "USR2", TRUE},
329#endif
330#ifdef SIGINT
331 {SIGINT, "INT", FALSE},
332#endif
333#ifdef SIGWINCH
334 {SIGWINCH, "WINCH", FALSE},
335#endif
336#ifdef SIGTSTP
337 {SIGTSTP, "TSTP", FALSE},
338#endif
339#ifdef SIGPIPE
340 {SIGPIPE, "PIPE", FALSE},
341#endif
342 {-1, "Unknown!", FALSE}
343};
344
Bram Moolenaar25724922009-07-14 15:38:41 +0000345 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100346mch_chdir(char *path)
Bram Moolenaar25724922009-07-14 15:38:41 +0000347{
348 if (p_verbose >= 5)
349 {
350 verbose_enter();
351 smsg((char_u *)"chdir(%s)", path);
352 verbose_leave();
353 }
354# ifdef VMS
355 return chdir(vms_fixfilename(path));
356# else
357 return chdir(path);
358# endif
359}
360
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000361/*
362 * Write s[len] to the screen.
363 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100365mch_write(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366{
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +0000367 ignored = (int)write(1, (char *)s, len);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 if (p_wd) /* Unix is too fast, slow down a bit more */
Bram Moolenaar8fdd7212016-03-26 19:41:48 +0100369 RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370}
371
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200372#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
373/*
374 * Return time in msec since "start_tv".
375 */
376 static long
377elapsed(struct timeval *start_tv)
378{
379 struct timeval now_tv;
380
381 gettimeofday(&now_tv, NULL);
382 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L
383 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L;
384}
385#endif
386
Bram Moolenaar071d4272004-06-13 20:20:40 +0000387/*
Bram Moolenaarc2a27c32007-12-01 16:19:33 +0000388 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 * Get a characters from the keyboard.
390 * Return the number of characters that are available.
391 * If wtime == 0 do not wait for characters.
392 * If wtime == n wait a short time for characters.
393 * If wtime == -1 wait forever for characters.
394 */
395 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100396mch_inchar(
397 char_u *buf,
398 int maxlen,
399 long wtime, /* don't use "time", MIPS cannot handle it */
400 int tb_change_cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401{
402 int len;
Bram Moolenaarcda77642016-06-04 13:32:35 +0200403 int interrupted = FALSE;
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200404 long wait_time;
405#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
406 struct timeval start_tv;
407
408 gettimeofday(&start_tv, NULL);
409#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200411#ifdef MESSAGE_QUEUE
412 parse_queued_messages();
Bram Moolenaar67c53842010-05-22 18:28:27 +0200413#endif
414
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 /* Check if window changed size while we were busy, perhaps the ":set
416 * columns=99" command was used. */
417 while (do_resize)
418 handle_resize();
419
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200420 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 {
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200422 if (wtime >= 0)
423 wait_time = wtime;
424 else
425 wait_time = p_ut;
426#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
427 wait_time -= elapsed(&start_tv);
428 if (wait_time >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 {
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200430#endif
431 if (WaitForChar(wait_time, &interrupted))
432 break;
433
Bram Moolenaarcda77642016-06-04 13:32:35 +0200434 /* no character available */
Bram Moolenaar5d8afeb2015-11-19 19:55:16 +0100435 if (do_resize)
Bram Moolenaarcda77642016-06-04 13:32:35 +0200436 {
Bram Moolenaar5d8afeb2015-11-19 19:55:16 +0100437 handle_resize();
Bram Moolenaarcda77642016-06-04 13:32:35 +0200438 continue;
439 }
Bram Moolenaar5d8afeb2015-11-19 19:55:16 +0100440#ifdef FEAT_CLIENTSERVER
Bram Moolenaarcda77642016-06-04 13:32:35 +0200441 if (server_waiting())
442 {
443 parse_queued_messages();
444 continue;
445 }
Bram Moolenaar5d8afeb2015-11-19 19:55:16 +0100446#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200447#ifdef MESSAGE_QUEUE
Bram Moolenaarcda77642016-06-04 13:32:35 +0200448 if (interrupted)
449 {
450 parse_queued_messages();
451 continue;
452 }
Bram Moolenaar67c53842010-05-22 18:28:27 +0200453#endif
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200454#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000455 }
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200456#endif
457 if (wtime >= 0)
458 /* no character available within "wtime" */
459 return 0;
460
461 /* wtime == -1: no character available within 'updatetime' */
462#ifdef FEAT_AUTOCMD
463 if (trigger_cursorhold() && maxlen >= 3
464 && !typebuf_changed(tb_change_cnt))
465 {
466 buf[0] = K_SPECIAL;
467 buf[1] = KS_EXTRA;
468 buf[2] = (int)KE_CURSORHOLD;
469 return 3;
470 }
471#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 /*
473 * If there is no character available within 'updatetime' seconds
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000474 * flush all the swap files to disk.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000475 * Also done when interrupted by SIGWINCH.
476 */
Bram Moolenaare30a3d02016-06-04 14:11:20 +0200477 before_blocking();
478 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479 }
480
Bram Moolenaarcda77642016-06-04 13:32:35 +0200481 /* repeat until we got a character */
482 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000483 {
Bram Moolenaarcf7c11a2016-06-02 20:05:26 +0200484 long wtime_now = -1L;
485
Bram Moolenaar071d4272004-06-13 20:20:40 +0000486 while (do_resize) /* window changed size */
487 handle_resize();
Bram Moolenaar67c53842010-05-22 18:28:27 +0200488
Bram Moolenaar93c88e02015-09-15 14:12:05 +0200489#ifdef MESSAGE_QUEUE
490 parse_queued_messages();
Bram Moolenaarcf7c11a2016-06-02 20:05:26 +0200491
492# ifdef FEAT_JOB_CHANNEL
493 if (has_pending_job())
494 {
495 /* Don't wait longer than a few seconds, checking for a finished
496 * job requires polling. */
497 if (p_ut > 9000L)
498 wtime_now = 1000L;
499 else
500 wtime_now = 10000L - p_ut;
501 }
502# endif
Bram Moolenaar67c53842010-05-22 18:28:27 +0200503#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 /*
Bram Moolenaar48bae372010-07-29 23:12:15 +0200505 * We want to be interrupted by the winch signal
506 * or by an event on the monitored file descriptors.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000507 */
Bram Moolenaarcda77642016-06-04 13:32:35 +0200508 if (!WaitForChar(wtime_now, &interrupted))
Bram Moolenaar67c53842010-05-22 18:28:27 +0200509 {
510 if (do_resize) /* interrupted by SIGWINCH signal */
Bram Moolenaarcda77642016-06-04 13:32:35 +0200511 continue;
512#ifdef MESSAGE_QUEUE
513 if (interrupted || wtime_now > 0)
514 {
515 parse_queued_messages();
516 continue;
517 }
518#endif
Bram Moolenaar67c53842010-05-22 18:28:27 +0200519 return 0;
520 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521
522 /* If input was put directly in typeahead buffer bail out here. */
523 if (typebuf_changed(tb_change_cnt))
524 return 0;
525
526 /*
527 * For some terminals we only get one character at a time.
528 * We want the get all available characters, so we could keep on
529 * trying until none is available
530 * For some other terminals this is quite slow, that's why we don't do
531 * it.
532 */
533 len = read_from_input_buf(buf, (long)maxlen);
534 if (len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 return len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000536 }
537}
538
539 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100540handle_resize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000541{
542 do_resize = FALSE;
543 shell_resized();
544}
545
546/*
Bram Moolenaar40b1b542016-04-20 20:18:23 +0200547 * Return non-zero if a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000548 */
549 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100550mch_char_avail(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000551{
Bram Moolenaarcda77642016-06-04 13:32:35 +0200552 return WaitForChar(0L, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000553}
554
555#if defined(HAVE_TOTAL_MEM) || defined(PROTO)
556# ifdef HAVE_SYS_RESOURCE_H
Bram Moolenaar8f0b2d42009-05-16 14:41:10 +0000557# include <sys/resource.h>
Bram Moolenaar071d4272004-06-13 20:20:40 +0000558# endif
559# if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
560# include <sys/sysctl.h>
561# endif
562# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
563# include <sys/sysinfo.h>
564# endif
565
566/*
Bram Moolenaar914572a2007-05-01 11:37:47 +0000567 * Return total amount of memory available in Kbyte.
568 * Doesn't change when memory has been allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000569 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 long_u
Bram Moolenaar05540972016-01-30 20:31:25 +0100571mch_total_mem(int special UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572{
573# ifdef __EMX__
Bram Moolenaar914572a2007-05-01 11:37:47 +0000574 return ulimit(3, 0L) >> 10; /* always 32MB? */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575# else
576 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
579# ifdef HAVE_SYSCTL
580 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;
589# endif
590
591# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
592 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 {
599# ifdef HAVE_SYSINFO_MEM_UNIT
600 /* 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;
607# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000608 mem = sinfo.totalram;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000609# endif
610 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 }
612# endif
613
614# ifdef HAVE_SYSCONF
615 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 }
633# endif
634
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. */
637# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
638 {
639 struct rlimit rlp;
640
641 if (getrlimit(RLIMIT_DATA, &rlp) == 0
642 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
643# ifdef RLIM_INFINITY
644 && rlp.rlim_cur != RLIM_INFINITY
645# 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 }
653# endif
654
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# endif
659}
660#endif
661
662 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100663mch_delay(long msec, int ignoreinput)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664{
665 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000666#ifdef FEAT_MZSCHEME
667 long total = msec; /* remember original value */
668#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000669
670 if (ignoreinput)
671 {
672 /* Go to cooked mode without echo, to allow SIGINT interrupting us
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000673 * here. But we don't want QUIT to kill us (CTRL-\ used in a
674 * shell may produce SIGQUIT). */
675 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 old_tmode = curr_tmode;
677 if (curr_tmode == TMODE_RAW)
678 settmode(TMODE_SLEEP);
679
680 /*
681 * Everybody sleeps in a different way...
682 * Prefer nanosleep(), some versions of usleep() can only sleep up to
683 * one second.
684 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000685#ifdef FEAT_MZSCHEME
686 do
687 {
688 /* if total is large enough, wait by portions in p_mzq */
689 if (total > p_mzq)
690 msec = p_mzq;
691 else
692 msec = total;
693 total -= msec;
694#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695#ifdef HAVE_NANOSLEEP
696 {
697 struct timespec ts;
698
699 ts.tv_sec = msec / 1000;
700 ts.tv_nsec = (msec % 1000) * 1000000;
701 (void)nanosleep(&ts, NULL);
702 }
703#else
704# ifdef HAVE_USLEEP
705 while (msec >= 1000)
706 {
707 usleep((unsigned int)(999 * 1000));
708 msec -= 999;
709 }
710 usleep((unsigned int)(msec * 1000));
711# else
712# ifndef HAVE_SELECT
713 poll(NULL, 0, (int)msec);
714# else
715# ifdef __EMX__
716 _sleep2(msec);
717# else
718 {
719 struct timeval tv;
720
721 tv.tv_sec = msec / 1000;
722 tv.tv_usec = (msec % 1000) * 1000;
723 /*
724 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
725 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
726 */
727 select(0, NULL, NULL, NULL, &tv);
728 }
729# endif /* __EMX__ */
730# endif /* HAVE_SELECT */
731# endif /* HAVE_NANOSLEEP */
732#endif /* HAVE_USLEEP */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000733#ifdef FEAT_MZSCHEME
734 }
735 while (total > 0);
736#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000737
738 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000739 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000740 }
741 else
Bram Moolenaarcda77642016-06-04 13:32:35 +0200742 WaitForChar(msec, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743}
744
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000745#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
747# define HAVE_CHECK_STACK_GROWTH
748/*
749 * Support for checking for an almost-out-of-stack-space situation.
750 */
751
752/*
753 * Return a pointer to an item on the stack. Used to find out if the stack
754 * grows up or down.
755 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100756static void check_stack_growth(char *p);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000757static int stack_grows_downwards;
758
759/*
760 * Find out if the stack grows upwards or downwards.
761 * "p" points to a variable on the stack of the caller.
762 */
763 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100764check_stack_growth(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000765{
766 int i;
767
768 stack_grows_downwards = (p > (char *)&i);
769}
770#endif
771
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000772#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000773static char *stack_limit = NULL;
774
775#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
776# include <pthread.h>
777# include <pthread_np.h>
778#endif
779
780/*
781 * Find out until how var the stack can grow without getting into trouble.
782 * Called when starting up and when switching to the signal stack in
783 * deathtrap().
784 */
785 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100786get_stack_limit(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000787{
788 struct rlimit rlp;
789 int i;
790 long lim;
791
792 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
793 * limit doesn't fit in a long (rlim_cur might be "long long"). */
794 if (getrlimit(RLIMIT_STACK, &rlp) == 0
795 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
796# ifdef RLIM_INFINITY
797 && rlp.rlim_cur != RLIM_INFINITY
798# endif
799 )
800 {
801 lim = (long)rlp.rlim_cur;
802#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
803 {
804 pthread_attr_t attr;
805 size_t size;
806
807 /* On FreeBSD the initial thread always has a fixed stack size, no
808 * matter what the limits are set to. Normally it's 1 Mbyte. */
809 pthread_attr_init(&attr);
810 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
811 {
812 pthread_attr_getstacksize(&attr, &size);
813 if (lim > (long)size)
814 lim = (long)size;
815 }
816 pthread_attr_destroy(&attr);
817 }
818#endif
819 if (stack_grows_downwards)
820 {
821 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
822 if (stack_limit >= (char *)&i)
823 /* overflow, set to 1/16 of current stack position */
824 stack_limit = (char *)((long)&i / 16L);
825 }
826 else
827 {
828 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
829 if (stack_limit <= (char *)&i)
830 stack_limit = NULL; /* overflow */
831 }
832 }
833}
834
835/*
836 * Return FAIL when running out of stack space.
837 * "p" must point to any variable local to the caller that's on the stack.
838 */
839 int
Bram Moolenaar05540972016-01-30 20:31:25 +0100840mch_stackcheck(char *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841{
842 if (stack_limit != NULL)
843 {
844 if (stack_grows_downwards)
845 {
846 if (p < stack_limit)
847 return FAIL;
848 }
849 else if (p > stack_limit)
850 return FAIL;
851 }
852 return OK;
853}
854#endif
855
856#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
857/*
858 * Support for using the signal stack.
859 * This helps when we run out of stack space, which causes a SIGSEGV. The
860 * signal handler then must run on another stack, since the normal stack is
861 * completely full.
862 */
863
Bram Moolenaar39766a72013-11-03 00:41:00 +0100864#if defined(HAVE_AVAILABILITYMACROS_H)
Bram Moolenaar4cc95d12013-11-02 21:49:32 +0100865# include <AvailabilityMacros.h>
866#endif
867
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868#ifndef SIGSTKSZ
869# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
870#endif
871
872# ifdef HAVE_SIGALTSTACK
873static stack_t sigstk; /* for sigaltstack() */
874# else
875static struct sigstack sigstk; /* for sigstack() */
876# endif
877
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100878static void init_signal_stack(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879static char *signal_stack;
880
881 static void
Bram Moolenaar05540972016-01-30 20:31:25 +0100882init_signal_stack(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883{
884 if (signal_stack != NULL)
885 {
886# ifdef HAVE_SIGALTSTACK
Bram Moolenaar1a3d0862007-08-30 09:47:38 +0000887# if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
888 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
890 * "struct sigaltstack" needs to be declared. */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +0100891 extern int sigaltstack(const struct sigaltstack *ss, struct sigaltstack *oss);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892# endif
893
894# ifdef HAVE_SS_BASE
895 sigstk.ss_base = signal_stack;
896# else
897 sigstk.ss_sp = signal_stack;
898# endif
899 sigstk.ss_size = SIGSTKSZ;
900 sigstk.ss_flags = 0;
901 (void)sigaltstack(&sigstk, NULL);
902# else
903 sigstk.ss_sp = signal_stack;
904 if (stack_grows_downwards)
905 sigstk.ss_sp += SIGSTKSZ - 1;
906 sigstk.ss_onstack = 0;
907 (void)sigstack(&sigstk, NULL);
908# endif
909 }
910}
911#endif
912
913/*
Bram Moolenaar76243bd2009-03-02 01:47:02 +0000914 * We need correct prototypes for a signal function, otherwise mean compilers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915 * will barf when the second argument to signal() is ``wrong''.
916 * Let me try it with a few tricky defines from my own osdef.h (jw).
917 */
918#if defined(SIGWINCH)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 static RETSIGTYPE
920sig_winch SIGDEFARG(sigarg)
921{
922 /* this is not required on all systems, but it doesn't hurt anybody */
923 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
924 do_resize = TRUE;
925 SIGRETURN;
926}
927#endif
928
929#if defined(SIGINT)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000930 static RETSIGTYPE
931catch_sigint SIGDEFARG(sigarg)
932{
933 /* this is not required on all systems, but it doesn't hurt anybody */
934 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
935 got_int = TRUE;
936 SIGRETURN;
937}
938#endif
939
940#if defined(SIGPWR)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000941 static RETSIGTYPE
942catch_sigpwr SIGDEFARG(sigarg)
943{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000944 /* this is not required on all systems, but it doesn't hurt anybody */
945 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000946 /*
947 * I'm not sure we get the SIGPWR signal when the system is really going
948 * down or when the batteries are almost empty. Just preserve the swap
949 * files and don't exit, that can't do any harm.
950 */
951 ml_sync_all(FALSE, FALSE);
952 SIGRETURN;
953}
954#endif
955
956#ifdef SET_SIG_ALARM
957/*
958 * signal function for alarm().
959 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 static RETSIGTYPE
961sig_alarm SIGDEFARG(sigarg)
962{
963 /* doesn't do anything, just to break a system call */
964 sig_alarm_called = TRUE;
965 SIGRETURN;
966}
967#endif
968
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000969#if (defined(HAVE_SETJMP_H) \
970 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
971 || defined(FEAT_LIBCALL))) \
972 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000973/*
974 * A simplistic version of setjmp() that only allows one level of using.
975 * Don't call twice before calling mch_endjmp()!.
976 * Usage:
977 * mch_startjmp();
978 * if (SETJMP(lc_jump_env) != 0)
979 * {
980 * mch_didjmp();
981 * EMSG("crash!");
982 * }
983 * else
984 * {
985 * do_the_work;
986 * mch_endjmp();
987 * }
988 * Note: Can't move SETJMP() here, because a function calling setjmp() must
989 * not return before the saved environment is used.
990 * Returns OK for normal return, FAIL when the protected code caused a
991 * problem and LONGJMP() was used.
992 */
993 void
Bram Moolenaar05540972016-01-30 20:31:25 +0100994mch_startjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000995{
996#ifdef SIGHASARG
997 lc_signal = 0;
998#endif
999 lc_active = TRUE;
1000}
1001
1002 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001003mch_endjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004{
1005 lc_active = FALSE;
1006}
1007
1008 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001009mch_didjmp(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001010{
1011# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
1012 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
1013 * otherwise catching the signal only works once. */
1014 init_signal_stack();
1015# endif
1016}
1017#endif
1018
1019/*
1020 * This function handles deadly signals.
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001021 * It tries to preserve any swap files and exit properly.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 * (partly from Elvis).
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001023 * NOTE: Avoid unsafe functions, such as allocating memory, they can result in
1024 * a deadlock.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001025 */
1026 static RETSIGTYPE
1027deathtrap SIGDEFARG(sigarg)
1028{
1029 static int entered = 0; /* count the number of times we got here.
1030 Note: when memory has been corrupted
1031 this may get an arbitrary value! */
1032#ifdef SIGHASARG
1033 int i;
1034#endif
1035
1036#if defined(HAVE_SETJMP_H)
1037 /*
1038 * Catch a crash in protected code.
1039 * Restores the environment saved in lc_jump_env, which looks like
1040 * SETJMP() returns 1.
1041 */
1042 if (lc_active)
1043 {
1044# if defined(SIGHASARG)
1045 lc_signal = sigarg;
1046# endif
1047 lc_active = FALSE; /* don't jump again */
1048 LONGJMP(lc_jump_env, 1);
1049 /* NOTREACHED */
1050 }
1051#endif
1052
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001053#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +00001054# ifdef SIGQUIT
1055 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
1056 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
1057 * pressing CTRL-\, but we don't want Vim to exit then. */
1058 if (in_mch_delay && sigarg == SIGQUIT)
1059 SIGRETURN;
1060# endif
1061
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001062 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
1063 * here. This avoids that a non-reentrant function is interrupted, e.g.,
1064 * free(). Calling free() again may then cause a crash. */
1065 if (entered == 0
1066 && (0
1067# ifdef SIGHUP
1068 || sigarg == SIGHUP
1069# endif
1070# ifdef SIGQUIT
1071 || sigarg == SIGQUIT
1072# endif
1073# ifdef SIGTERM
1074 || sigarg == SIGTERM
1075# endif
1076# ifdef SIGPWR
1077 || sigarg == SIGPWR
1078# endif
1079# ifdef SIGUSR1
1080 || sigarg == SIGUSR1
1081# endif
1082# ifdef SIGUSR2
1083 || sigarg == SIGUSR2
1084# endif
1085 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001086 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001087 SIGRETURN;
1088#endif
1089
Bram Moolenaar071d4272004-06-13 20:20:40 +00001090 /* Remember how often we have been called. */
1091 ++entered;
1092
Bram Moolenaare429e702016-06-10 19:49:14 +02001093#ifdef FEAT_AUTOCMD
1094 /* Executing autocommands is likely to use more stack space than we have
1095 * available in the signal stack. */
1096 block_autocmds();
1097#endif
1098
Bram Moolenaar071d4272004-06-13 20:20:40 +00001099#ifdef FEAT_EVAL
1100 /* Set the v:dying variable. */
1101 set_vim_var_nr(VV_DYING, (long)entered);
1102#endif
1103
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00001104#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001105 /* Since we are now using the signal stack, need to reset the stack
1106 * limit. Otherwise using a regexp will fail. */
1107 get_stack_limit();
1108#endif
1109
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +00001110#if 0
1111 /* This is for opening gdb the moment Vim crashes.
1112 * You need to manually adjust the file name and Vim executable name.
1113 * Suggested by SungHyun Nam. */
1114 {
1115# define VI_GDB_FILE "/tmp/vimgdb"
1116# define VIM_NAME "/usr/bin/vim"
1117 FILE *fp = fopen(VI_GDB_FILE, "w");
1118 if (fp)
1119 {
1120 fprintf(fp,
1121 "file %s\n"
1122 "attach %d\n"
1123 "set height 1000\n"
1124 "bt full\n"
1125 , VIM_NAME, getpid());
1126 fclose(fp);
1127 system("xterm -e gdb -x "VI_GDB_FILE);
1128 unlink(VI_GDB_FILE);
1129 }
1130 }
1131#endif
1132
Bram Moolenaar071d4272004-06-13 20:20:40 +00001133#ifdef SIGHASARG
1134 /* try to find the name of this signal */
1135 for (i = 0; signal_info[i].sig != -1; i++)
1136 if (sigarg == signal_info[i].sig)
1137 break;
1138 deadly_signal = sigarg;
1139#endif
1140
1141 full_screen = FALSE; /* don't write message to the GUI, it might be
1142 * part of the problem... */
1143 /*
1144 * If something goes wrong after entering here, we may get here again.
1145 * When this happens, give a message and try to exit nicely (resetting the
1146 * terminal mode, etc.)
1147 * When this happens twice, just exit, don't even try to give a message,
1148 * stack may be corrupt or something weird.
1149 * When this still happens again (or memory was corrupted in such a way
1150 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1151 */
1152 if (entered >= 3)
1153 {
1154 reset_signals(); /* don't catch any signals anymore */
1155 may_core_dump();
1156 if (entered >= 4)
1157 _exit(8);
1158 exit(7);
1159 }
1160 if (entered == 2)
1161 {
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001162 /* No translation, it may call malloc(). */
1163 OUT_STR("Vim: Double signal, exiting\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164 out_flush();
1165 getout(1);
1166 }
1167
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001168 /* No translation, it may call malloc(). */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001169#ifdef SIGHASARG
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001170 sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n",
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 signal_info[i].name);
1172#else
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001173 sprintf((char *)IObuff, "Vim: Caught deadly signal\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174#endif
Bram Moolenaarbec9c202013-09-05 21:41:39 +02001175
1176 /* Preserve files and exit. This sets the really_exiting flag to prevent
1177 * calling free(). */
1178 preserve_exit();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179
Bram Moolenaare429e702016-06-10 19:49:14 +02001180 /* NOTREACHED */
1181
Bram Moolenaar009b2592004-10-24 19:18:58 +00001182#ifdef NBDEBUG
1183 reset_signals();
1184 may_core_dump();
1185 abort();
1186#endif
1187
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 SIGRETURN;
1189}
1190
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001191#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192/*
1193 * On Solaris with multi-threading, suspending might not work immediately.
1194 * Catch the SIGCONT signal, which will be used as an indication whether the
1195 * suspending has been done or not.
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001196 *
1197 * On Linux, signal is not always handled immediately either.
1198 * See https://bugs.launchpad.net/bugs/291373
1199 *
Bram Moolenaarb292a2a2011-02-09 18:47:40 +01001200 * volatile because it is used in signal handler sigcont_handler().
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001202static volatile int sigcont_received;
Bram Moolenaard99df422016-01-29 23:20:40 +01001203static RETSIGTYPE sigcont_handler SIGPROTOARG;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204
1205/*
1206 * signal handler for SIGCONT
1207 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 static RETSIGTYPE
1209sigcont_handler SIGDEFARG(sigarg)
1210{
1211 sigcont_received = TRUE;
1212 SIGRETURN;
1213}
1214#endif
1215
Bram Moolenaar62b42182010-09-21 22:09:37 +02001216# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001217static void loose_clipboard(void);
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001218# ifdef USE_SYSTEM
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001219static void save_clipboard(void);
1220static void restore_clipboard(void);
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001221
1222static void *clip_star_save = NULL;
1223static void *clip_plus_save = NULL;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001224# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001225
1226/*
1227 * Called when Vim is going to sleep or execute a shell command.
1228 * We can't respond to requests for the X selections. Lose them, otherwise
1229 * other applications will hang. But first copy the text to cut buffer 0.
1230 */
1231 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001232loose_clipboard(void)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001233{
1234 if (clip_star.owned || clip_plus.owned)
1235 {
1236 x11_export_final_selection();
1237 if (clip_star.owned)
1238 clip_lose_selection(&clip_star);
1239 if (clip_plus.owned)
1240 clip_lose_selection(&clip_plus);
1241 if (x11_display != NULL)
1242 XFlush(x11_display);
1243 }
1244}
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001245
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001246# ifdef USE_SYSTEM
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001247/*
1248 * Save clipboard text to restore later.
1249 */
1250 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001251save_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001252{
1253 if (clip_star.owned)
1254 clip_star_save = get_register('*', TRUE);
1255 if (clip_plus.owned)
1256 clip_plus_save = get_register('+', TRUE);
1257}
1258
1259/*
1260 * Restore clipboard text if no one own the X selection.
1261 */
1262 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001263restore_clipboard(void)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01001264{
1265 if (clip_star_save != NULL)
1266 {
1267 if (!clip_gen_owner_exists(&clip_star))
1268 put_register('*', clip_star_save);
1269 else
1270 free_register(clip_star_save);
1271 clip_star_save = NULL;
1272 }
1273 if (clip_plus_save != NULL)
1274 {
1275 if (!clip_gen_owner_exists(&clip_plus))
1276 put_register('+', clip_plus_save);
1277 else
1278 free_register(clip_plus_save);
1279 clip_plus_save = NULL;
1280 }
1281}
Bram Moolenaar090cfc12013-03-19 12:35:42 +01001282# endif
Bram Moolenaar62b42182010-09-21 22:09:37 +02001283#endif
1284
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285/*
1286 * If the machine has job control, use it to suspend the program,
1287 * otherwise fake it by starting a new shell.
1288 */
1289 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001290mch_suspend(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291{
1292 /* BeOS does have SIGTSTP, but it doesn't work. */
1293#if defined(SIGTSTP) && !defined(__BEOS__)
1294 out_flush(); /* needed to make cursor visible on some systems */
1295 settmode(TMODE_COOK);
1296 out_flush(); /* needed to disable mouse on some systems */
1297
1298# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar62b42182010-09-21 22:09:37 +02001299 loose_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300# endif
1301
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001302# if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 sigcont_received = FALSE;
1304# endif
1305 kill(0, SIGTSTP); /* send ourselves a STOP signal */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001306# if defined(_REENTRANT) && defined(SIGCONT)
1307 /*
1308 * Wait for the SIGCONT signal to be handled. It generally happens
1309 * immediately, but somehow not all the time. Do not call pause()
1310 * because there would be race condition which would hang Vim if
1311 * signal happened in between the test of sigcont_received and the
1312 * call to pause(). If signal is not yet received, call sleep(0)
1313 * to just yield CPU. Signal should then be received. If somehow
1314 * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting
1315 * further if signal is not received after 1+2+3+4 ms (not expected
1316 * to happen).
1317 */
1318 {
Bram Moolenaar262735e2009-07-14 10:20:22 +00001319 long wait_time;
1320 for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++)
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001321 /* Loop is not entered most of the time */
Bram Moolenaar262735e2009-07-14 10:20:22 +00001322 mch_delay(wait_time, FALSE);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001323 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001324# endif
1325
1326# ifdef FEAT_TITLE
1327 /*
1328 * Set oldtitle to NULL, so the current title is obtained again.
1329 */
1330 vim_free(oldtitle);
1331 oldtitle = NULL;
1332# endif
1333 settmode(TMODE_RAW);
1334 need_check_timestamps = TRUE;
1335 did_check_timestamps = FALSE;
1336#else
1337 suspend_shell();
1338#endif
1339}
1340
1341 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001342mch_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343{
1344 Columns = 80;
1345 Rows = 24;
1346
1347 out_flush();
1348 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001349
Bram Moolenaar56718732006-03-15 22:53:57 +00001350#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001351 mac_conv_init();
1352#endif
Bram Moolenaar693e40c2013-02-26 14:56:42 +01001353#ifdef FEAT_CYGWIN_WIN32_CLIPBOARD
1354 win_clip_init();
1355#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356}
1357
1358 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001359set_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360{
1361#if defined(SIGWINCH)
1362 /*
1363 * WINDOW CHANGE signal is handled with sig_winch().
1364 */
1365 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1366#endif
1367
1368 /*
1369 * We want the STOP signal to work, to make mch_suspend() work.
1370 * For "rvim" the STOP signal is ignored.
1371 */
1372#ifdef SIGTSTP
1373 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1374#endif
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001375#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001376 signal(SIGCONT, sigcont_handler);
1377#endif
1378
1379 /*
1380 * We want to ignore breaking of PIPEs.
1381 */
1382#ifdef SIGPIPE
1383 signal(SIGPIPE, SIG_IGN);
1384#endif
1385
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001387 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388#endif
1389
1390 /*
1391 * Ignore alarm signals (Perl's alarm() generates it).
1392 */
1393#ifdef SIGALRM
1394 signal(SIGALRM, SIG_IGN);
1395#endif
1396
1397 /*
1398 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1399 * work will be lost.
1400 */
1401#ifdef SIGPWR
1402 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1403#endif
1404
1405 /*
1406 * Arrange for other signals to gracefully shutdown Vim.
1407 */
1408 catch_signals(deathtrap, SIG_ERR);
1409
1410#if defined(FEAT_GUI) && defined(SIGHUP)
1411 /*
1412 * When the GUI is running, ignore the hangup signal.
1413 */
1414 if (gui.in_use)
1415 signal(SIGHUP, SIG_IGN);
1416#endif
1417}
1418
Bram Moolenaardf177f62005-02-22 08:39:57 +00001419#if defined(SIGINT) || defined(PROTO)
1420/*
1421 * Catch CTRL-C (only works while in Cooked mode).
1422 */
1423 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001424catch_int_signal(void)
Bram Moolenaardf177f62005-02-22 08:39:57 +00001425{
1426 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1427}
1428#endif
1429
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 void
Bram Moolenaar05540972016-01-30 20:31:25 +01001431reset_signals(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001432{
1433 catch_signals(SIG_DFL, SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00001434#if defined(_REENTRANT) && defined(SIGCONT)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 /* SIGCONT isn't in the list, because its default action is ignore */
1436 signal(SIGCONT, SIG_DFL);
1437#endif
1438}
1439
1440 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001441catch_signals(
1442 RETSIGTYPE (*func_deadly)(),
1443 RETSIGTYPE (*func_other)())
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444{
1445 int i;
1446
1447 for (i = 0; signal_info[i].sig != -1; i++)
1448 if (signal_info[i].deadly)
1449 {
1450#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1451 struct sigaction sa;
1452
1453 /* Setup to use the alternate stack for the signal function. */
1454 sa.sa_handler = func_deadly;
1455 sigemptyset(&sa.sa_mask);
1456# if defined(__linux__) && defined(_REENTRANT)
1457 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1458 * thread handling in combination with using the alternate stack:
1459 * pthread library functions try to use the stack pointer to
1460 * identify the current thread, causing a SEGV signal, which
1461 * recursively calls deathtrap() and hangs. */
1462 sa.sa_flags = 0;
1463# else
1464 sa.sa_flags = SA_ONSTACK;
1465# endif
1466 sigaction(signal_info[i].sig, &sa, NULL);
1467#else
1468# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1469 struct sigvec sv;
1470
1471 /* Setup to use the alternate stack for the signal function. */
1472 sv.sv_handler = func_deadly;
1473 sv.sv_mask = 0;
1474 sv.sv_flags = SV_ONSTACK;
1475 sigvec(signal_info[i].sig, &sv, NULL);
1476# else
1477 signal(signal_info[i].sig, func_deadly);
1478# endif
1479#endif
1480 }
1481 else if (func_other != SIG_ERR)
1482 signal(signal_info[i].sig, func_other);
1483}
1484
1485/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001486 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001487 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1488 * return TRUE
1489 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1490 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
Bram Moolenaar67c53842010-05-22 18:28:27 +02001491 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001492 * Returns TRUE when Vim should exit.
1493 */
1494 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001495vim_handle_signal(int sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001496{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001497 static int got_signal = 0;
1498 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001499
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001500 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001501 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001502 case SIGNAL_BLOCK: blocked = TRUE;
1503 break;
1504
1505 case SIGNAL_UNBLOCK: blocked = FALSE;
1506 if (got_signal != 0)
1507 {
1508 kill(getpid(), got_signal);
1509 got_signal = 0;
1510 }
1511 break;
1512
1513 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001514 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001515 got_signal = sig;
1516#ifdef SIGPWR
1517 if (sig != SIGPWR)
1518#endif
1519 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001520 break;
1521 }
1522 return FALSE;
1523}
1524
1525/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 * Check_win checks whether we have an interactive stdout.
1527 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001529mch_check_win(int argc UNUSED, char **argv UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 if (isatty(1))
1532 return OK;
1533 return FAIL;
1534}
1535
1536/*
1537 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1538 */
1539 int
Bram Moolenaar05540972016-01-30 20:31:25 +01001540mch_input_isatty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001541{
1542 if (isatty(read_cmd_fd))
1543 return TRUE;
1544 return FALSE;
1545}
1546
1547#ifdef FEAT_X11
1548
1549# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1550 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1551
Bram Moolenaare30a3d02016-06-04 14:11:20 +02001552static void xopen_message(struct timeval *start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553
1554/*
1555 * Give a message about the elapsed time for opening the X window.
1556 */
1557 static void
Bram Moolenaare30a3d02016-06-04 14:11:20 +02001558xopen_message(struct timeval *start_tv)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559{
Bram Moolenaare30a3d02016-06-04 14:11:20 +02001560 smsg((char_u *)_("Opening the X display took %ld msec"), elapsed(start_tv));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561}
1562# endif
1563#endif
1564
1565#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1566/*
1567 * A few functions shared by X11 title and clipboard code.
1568 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001569static int x_error_handler(Display *dpy, XErrorEvent *error_event);
1570static int x_error_check(Display *dpy, XErrorEvent *error_event);
1571static int x_connect_to_server(void);
1572static int test_x11_window(Display *dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001573
1574static int got_x_error = FALSE;
1575
1576/*
1577 * X Error handler, otherwise X just exits! (very rude) -- webb
1578 */
1579 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001580x_error_handler(Display *dpy, XErrorEvent *error_event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001582 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 STRCAT(IObuff, _("\nVim: Got X error\n"));
1584
1585 /* We cannot print a message and continue, because no X calls are allowed
1586 * here (causes my system to hang). Silently continuing might be an
1587 * alternative... */
1588 preserve_exit(); /* preserve files and exit */
1589
1590 return 0; /* NOTREACHED */
1591}
1592
1593/*
1594 * Another X Error handler, just used to check for errors.
1595 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001596 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001597x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598{
1599 got_x_error = TRUE;
1600 return 0;
1601}
1602
1603#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1604# if defined(HAVE_SETJMP_H)
1605/*
1606 * An X IO Error handler, used to catch error while opening the display.
1607 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001608static int x_IOerror_check(Display *dpy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001611x_IOerror_check(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612{
1613 /* This function should not return, it causes exit(). Longjump instead. */
1614 LONGJMP(lc_jump_env, 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02001615# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001616 return 0; /* avoid the compiler complains about missing return value */
1617# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618}
1619# endif
1620
1621/*
1622 * An X IO Error handler, used to catch terminal errors.
1623 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001624static int x_IOerror_handler(Display *dpy);
1625static void may_restore_clipboard(void);
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001626static int xterm_dpy_was_reset = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001627
Bram Moolenaar071d4272004-06-13 20:20:40 +00001628 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001629x_IOerror_handler(Display *dpy UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630{
1631 xterm_dpy = NULL;
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001632 xterm_dpy_was_reset = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 x11_window = 0;
1634 x11_display = NULL;
1635 xterm_Shell = (Widget)0;
1636
1637 /* This function should not return, it causes exit(). Longjump instead. */
1638 LONGJMP(x_jump_env, 1);
Bram Moolenaarfe17e762013-06-29 14:17:02 +02001639# if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaarb4990bf2010-02-11 18:19:38 +01001640 return 0; /* avoid the compiler complains about missing return value */
1641# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001642}
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001643
1644/*
1645 * If the X11 connection was lost try to restore it.
1646 * Helps when the X11 server was stopped and restarted while Vim was inactive
Bram Moolenaarcaad4f02014-12-17 14:36:14 +01001647 * (e.g. through tmux).
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001648 */
1649 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01001650may_restore_clipboard(void)
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001651{
1652 if (xterm_dpy_was_reset)
1653 {
1654 xterm_dpy_was_reset = FALSE;
Bram Moolenaar527a6782014-12-17 17:59:31 +01001655
1656# ifndef LESSTIF_VERSION
1657 /* This has been reported to avoid Vim getting stuck. */
1658 if (app_context != (XtAppContext)NULL)
1659 {
1660 XtDestroyApplicationContext(app_context);
1661 app_context = (XtAppContext)NULL;
1662 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
1663 }
1664# endif
1665
Bram Moolenaarb1e26502014-11-19 18:48:46 +01001666 setup_term_clip();
1667 get_x11_title(FALSE);
1668 }
1669}
Bram Moolenaar071d4272004-06-13 20:20:40 +00001670#endif
1671
1672/*
1673 * Return TRUE when connection to the X server is desired.
1674 */
1675 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001676x_connect_to_server(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001677{
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678#if defined(FEAT_CLIENTSERVER)
1679 if (x_force_connect)
1680 return TRUE;
1681#endif
1682 if (x_no_connect)
1683 return FALSE;
1684
1685 /* Check for a match with "exclude:" from 'clipboard'. */
1686 if (clip_exclude_prog != NULL)
1687 {
Bram Moolenaardffa5b82014-11-19 16:38:07 +01001688 if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 return FALSE;
1690 }
1691 return TRUE;
1692}
1693
1694/*
1695 * Test if "dpy" and x11_window are valid by getting the window title.
1696 * I don't actually want it yet, so there may be a simpler call to use, but
1697 * this will cause the error handler x_error_check() to be called if anything
1698 * is wrong, such as the window pointer being invalid (as can happen when the
1699 * user changes his DISPLAY, but not his WINDOWID) -- webb
1700 */
1701 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001702test_x11_window(Display *dpy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703{
1704 int (*old_handler)();
1705 XTextProperty text_prop;
1706
1707 old_handler = XSetErrorHandler(x_error_check);
1708 got_x_error = FALSE;
1709 if (XGetWMName(dpy, x11_window, &text_prop))
1710 XFree((void *)text_prop.value);
1711 XSync(dpy, False);
1712 (void)XSetErrorHandler(old_handler);
1713
1714 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001715 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001716
1717 return (got_x_error ? FAIL : OK);
1718}
1719#endif
1720
1721#ifdef FEAT_TITLE
1722
1723#ifdef FEAT_X11
1724
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01001725static int get_x11_thing(int get_title, int test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726
1727/*
1728 * try to get x11 window and display
1729 *
1730 * return FAIL for failure, OK otherwise
1731 */
1732 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001733get_x11_windis(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734{
1735 char *winid;
1736 static int result = -1;
1737#define XD_NONE 0 /* x11_display not set here */
1738#define XD_HERE 1 /* x11_display opened here */
1739#define XD_GUI 2 /* x11_display used from gui.dpy */
1740#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1741 static int x11_display_from = XD_NONE;
1742 static int did_set_error_handler = FALSE;
1743
1744 if (!did_set_error_handler)
1745 {
1746 /* X just exits if it finds an error otherwise! */
1747 (void)XSetErrorHandler(x_error_handler);
1748 did_set_error_handler = TRUE;
1749 }
1750
Bram Moolenaar9372a112005-12-06 19:59:18 +00001751#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 if (gui.in_use)
1753 {
1754 /*
1755 * If the X11 display was opened here before, for the window where Vim
1756 * was started, close that one now to avoid a memory leak.
1757 */
1758 if (x11_display_from == XD_HERE && x11_display != NULL)
1759 {
1760 XCloseDisplay(x11_display);
1761 x11_display_from = XD_NONE;
1762 }
1763 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1764 {
1765 x11_display_from = XD_GUI;
1766 return OK;
1767 }
1768 x11_display = NULL;
1769 return FAIL;
1770 }
1771 else if (x11_display_from == XD_GUI)
1772 {
1773 /* GUI must have stopped somehow, clear x11_display */
1774 x11_window = 0;
1775 x11_display = NULL;
1776 x11_display_from = XD_NONE;
1777 }
1778#endif
1779
1780 /* When started with the "-X" argument, don't try connecting. */
1781 if (!x_connect_to_server())
1782 return FAIL;
1783
1784 /*
1785 * If WINDOWID not set, should try another method to find out
1786 * what the current window number is. The only code I know for
1787 * this is very complicated.
1788 * We assume that zero is invalid for WINDOWID.
1789 */
1790 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1791 x11_window = (Window)atol(winid);
1792
1793#ifdef FEAT_XCLIPBOARD
1794 if (xterm_dpy != NULL && x11_window != 0)
1795 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001796 /* We may have checked it already, but Gnome terminal can move us to
1797 * another window, so we need to check every time. */
1798 if (x11_display_from != XD_XTERM)
1799 {
1800 /*
1801 * If the X11 display was opened here before, for the window where
1802 * Vim was started, close that one now to avoid a memory leak.
1803 */
1804 if (x11_display_from == XD_HERE && x11_display != NULL)
1805 XCloseDisplay(x11_display);
1806 x11_display = xterm_dpy;
1807 x11_display_from = XD_XTERM;
1808 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809 if (test_x11_window(x11_display) == FAIL)
1810 {
1811 /* probably bad $WINDOWID */
1812 x11_window = 0;
1813 x11_display = NULL;
1814 x11_display_from = XD_NONE;
1815 return FAIL;
1816 }
1817 return OK;
1818 }
1819#endif
1820
1821 if (x11_window == 0 || x11_display == NULL)
1822 result = -1;
1823
1824 if (result != -1) /* Have already been here and set this */
1825 return result; /* Don't do all these X calls again */
1826
1827 if (x11_window != 0 && x11_display == NULL)
1828 {
1829#ifdef SET_SIG_ALARM
1830 RETSIGTYPE (*sig_save)();
1831#endif
1832#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1833 struct timeval start_tv;
1834
1835 if (p_verbose > 0)
1836 gettimeofday(&start_tv, NULL);
1837#endif
1838
1839#ifdef SET_SIG_ALARM
1840 /*
1841 * Opening the Display may hang if the DISPLAY setting is wrong, or
1842 * the network connection is bad. Set an alarm timer to get out.
1843 */
1844 sig_alarm_called = FALSE;
1845 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1846 (RETSIGTYPE (*)())sig_alarm);
1847 alarm(2);
1848#endif
1849 x11_display = XOpenDisplay(NULL);
1850
1851#ifdef SET_SIG_ALARM
1852 alarm(0);
1853 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1854 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001855 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856#endif
1857 if (x11_display != NULL)
1858 {
1859# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1860 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001861 {
1862 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001864 verbose_leave();
1865 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866# endif
1867 if (test_x11_window(x11_display) == FAIL)
1868 {
1869 /* Maybe window id is bad */
1870 x11_window = 0;
1871 XCloseDisplay(x11_display);
1872 x11_display = NULL;
1873 }
1874 else
1875 x11_display_from = XD_HERE;
1876 }
1877 }
1878 if (x11_window == 0 || x11_display == NULL)
1879 return (result = FAIL);
Bram Moolenaar727c8762010-10-20 19:17:48 +02001880
1881# ifdef FEAT_EVAL
1882 set_vim_var_nr(VV_WINDOWID, (long)x11_window);
1883# endif
1884
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 return (result = OK);
1886}
1887
1888/*
1889 * Determine original x11 Window Title
1890 */
1891 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001892get_x11_title(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001894 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895}
1896
1897/*
1898 * Determine original x11 Window icon
1899 */
1900 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001901get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902{
1903 int retval = FALSE;
1904
1905 retval = get_x11_thing(FALSE, test_only);
1906
1907 /* could not get old icon, use terminal name */
1908 if (oldicon == NULL && !test_only)
1909 {
1910 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001911 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00001913 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 }
1915
1916 return retval;
1917}
1918
1919 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01001920get_x11_thing(
1921 int get_title, /* get title string */
1922 int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001923{
1924 XTextProperty text_prop;
1925 int retval = FALSE;
1926 Status status;
1927
1928 if (get_x11_windis() == OK)
1929 {
1930 /* Get window/icon name if any */
1931 if (get_title)
1932 status = XGetWMName(x11_display, x11_window, &text_prop);
1933 else
1934 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1935
1936 /*
1937 * If terminal is xterm, then x11_window may be a child window of the
1938 * outer xterm window that actually contains the window/icon name, so
1939 * keep traversing up the tree until a window with a title/icon is
1940 * found.
1941 */
1942 /* Previously this was only done for xterm and alikes. I don't see a
1943 * reason why it would fail for other terminal emulators.
1944 * if (term_is_xterm) */
1945 {
1946 Window root;
1947 Window parent;
1948 Window win = x11_window;
1949 Window *children;
1950 unsigned int num_children;
1951
1952 while (!status || text_prop.value == NULL)
1953 {
1954 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1955 &num_children))
1956 break;
1957 if (children)
1958 XFree((void *)children);
1959 if (parent == root || parent == 0)
1960 break;
1961
1962 win = parent;
1963 if (get_title)
1964 status = XGetWMName(x11_display, win, &text_prop);
1965 else
1966 status = XGetWMIconName(x11_display, win, &text_prop);
1967 }
1968 }
1969 if (status && text_prop.value != NULL)
1970 {
1971 retval = TRUE;
1972 if (!test_only)
1973 {
Bram Moolenaarf82bac32010-07-25 22:30:20 +02001974#if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE)
1975 if (text_prop.encoding == XA_STRING
1976# ifdef FEAT_MBYTE
1977 && !has_mbyte
1978# endif
1979 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 {
1981#endif
1982 if (get_title)
1983 oldtitle = vim_strsave((char_u *)text_prop.value);
1984 else
1985 oldicon = vim_strsave((char_u *)text_prop.value);
Bram Moolenaarf82bac32010-07-25 22:30:20 +02001986#if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 }
1988 else
1989 {
1990 char **cl;
1991 Status transform_status;
1992 int n = 0;
1993
1994 transform_status = XmbTextPropertyToTextList(x11_display,
1995 &text_prop,
1996 &cl, &n);
1997 if (transform_status >= Success && n > 0 && cl[0])
1998 {
1999 if (get_title)
2000 oldtitle = vim_strsave((char_u *) cl[0]);
2001 else
2002 oldicon = vim_strsave((char_u *) cl[0]);
2003 XFreeStringList(cl);
2004 }
2005 else
2006 {
2007 if (get_title)
2008 oldtitle = vim_strsave((char_u *)text_prop.value);
2009 else
2010 oldicon = vim_strsave((char_u *)text_prop.value);
2011 }
2012 }
2013#endif
2014 }
2015 XFree((void *)text_prop.value);
2016 }
2017 }
2018 return retval;
2019}
2020
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002021/* Xutf8 functions are not avaialble on older systems. Note that on some
2022 * systems X_HAVE_UTF8_STRING may be defined in a header file but
2023 * Xutf8SetWMProperties() is not in the X11 library. Configure checks for
2024 * that and defines HAVE_XUTF8SETWMPROPERTIES. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
Bram Moolenaarcbc246a2014-10-11 14:47:26 +02002026# if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027# define USE_UTF8_STRING
2028# endif
2029#endif
2030
2031/*
2032 * Set x11 Window Title
2033 *
2034 * get_x11_windis() must be called before this and have returned OK
2035 */
2036 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002037set_x11_title(char_u *title)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002038{
2039 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
2040 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
2041 * supported everywhere and STRING doesn't work for multi-byte titles.
2042 */
2043#ifdef USE_UTF8_STRING
2044 if (enc_utf8)
2045 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
2046 NULL, NULL, 0, NULL, NULL, NULL);
2047 else
2048#endif
2049 {
2050#if XtSpecificationRelease >= 4
2051# ifdef FEAT_XFONTSET
2052 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
2053 NULL, NULL, 0, NULL, NULL, NULL);
2054# else
2055 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002056 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057
2058 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002059 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 XSetWMProperties(x11_display, x11_window, &text_prop,
2061 NULL, NULL, 0, NULL, NULL, NULL);
2062# endif
2063#else
2064 XStoreName(x11_display, x11_window, (char *)title);
2065#endif
2066 }
2067 XFlush(x11_display);
2068}
2069
2070/*
2071 * Set x11 Window icon
2072 *
2073 * get_x11_windis() must be called before this and have returned OK
2074 */
2075 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01002076set_x11_icon(char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077{
2078 /* See above for comments about using X*SetWMProperties(). */
2079#ifdef USE_UTF8_STRING
2080 if (enc_utf8)
2081 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2082 NULL, 0, NULL, NULL, NULL);
2083 else
2084#endif
2085 {
2086#if XtSpecificationRelease >= 4
2087# ifdef FEAT_XFONTSET
2088 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
2089 NULL, 0, NULL, NULL, NULL);
2090# else
2091 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002092 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002093
Bram Moolenaar9d75c832005-01-25 21:57:23 +00002094 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
2096 NULL, 0, NULL, NULL, NULL);
2097# endif
2098#else
2099 XSetIconName(x11_display, x11_window, (char *)icon);
2100#endif
2101 }
2102 XFlush(x11_display);
2103}
2104
2105#else /* FEAT_X11 */
2106
Bram Moolenaar071d4272004-06-13 20:20:40 +00002107 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002108get_x11_title(int test_only UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002109{
2110 return FALSE;
2111}
2112
2113 static int
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002114get_x11_icon(int test_only)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002115{
2116 if (!test_only)
2117 {
2118 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002119 oldicon = vim_strsave(T_NAME + 8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 else
Bram Moolenaar20de1c22009-07-22 11:28:11 +00002121 oldicon = vim_strsave(T_NAME);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002122 }
2123 return FALSE;
2124}
2125
2126#endif /* FEAT_X11 */
2127
2128 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002129mch_can_restore_title(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130{
2131 return get_x11_title(TRUE);
2132}
2133
2134 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002135mch_can_restore_icon(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136{
2137 return get_x11_icon(TRUE);
2138}
2139
2140/*
2141 * Set the window title and icon.
2142 */
2143 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002144mch_settitle(char_u *title, char_u *icon)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145{
2146 int type = 0;
2147 static int recursive = 0;
2148
2149 if (T_NAME == NULL) /* no terminal name (yet) */
2150 return;
2151 if (title == NULL && icon == NULL) /* nothing to do */
2152 return;
2153
2154 /* When one of the X11 functions causes a deadly signal, we get here again
2155 * recursively. Avoid hanging then (something is probably locked). */
2156 if (recursive)
2157 return;
2158 ++recursive;
2159
2160 /*
2161 * if the window ID and the display is known, we may use X11 calls
2162 */
2163#ifdef FEAT_X11
2164 if (get_x11_windis() == OK)
2165 type = 1;
2166#else
2167# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
2168 if (gui.in_use)
2169 type = 1;
2170# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171#endif
2172
2173 /*
Bram Moolenaarf82bac32010-07-25 22:30:20 +02002174 * Note: if "t_ts" is set, title is set with escape sequence rather
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175 * than x11 calls, because the x11 calls don't always work
2176 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 if ((type || *T_TS != NUL) && title != NULL)
2178 {
2179 if (oldtitle == NULL
2180#ifdef FEAT_GUI
2181 && !gui.in_use
2182#endif
2183 ) /* first call but not in GUI, save title */
2184 (void)get_x11_title(FALSE);
2185
2186 if (*T_TS != NUL) /* it's OK if t_fs is empty */
2187 term_settitle(title);
2188#ifdef FEAT_X11
2189 else
2190# ifdef FEAT_GUI_GTK
2191 if (!gui.in_use) /* don't do this if GTK+ is running */
2192# endif
2193 set_x11_title(title); /* x11 */
2194#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00002195#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
2197 else
2198 gui_mch_settitle(title, icon);
2199#endif
2200 did_set_title = TRUE;
2201 }
2202
2203 if ((type || *T_CIS != NUL) && icon != NULL)
2204 {
2205 if (oldicon == NULL
2206#ifdef FEAT_GUI
2207 && !gui.in_use
2208#endif
2209 ) /* first call, save icon */
2210 get_x11_icon(FALSE);
2211
2212 if (*T_CIS != NUL)
2213 {
2214 out_str(T_CIS); /* set icon start */
2215 out_str_nf(icon);
2216 out_str(T_CIE); /* set icon end */
2217 out_flush();
2218 }
2219#ifdef FEAT_X11
2220 else
2221# ifdef FEAT_GUI_GTK
2222 if (!gui.in_use) /* don't do this if GTK+ is running */
2223# endif
2224 set_x11_icon(icon); /* x11 */
2225#endif
2226 did_set_icon = TRUE;
2227 }
2228 --recursive;
2229}
2230
2231/*
2232 * Restore the window/icon title.
2233 * "which" is one of:
2234 * 1 only restore title
2235 * 2 only restore icon
2236 * 3 restore title and icon
2237 */
2238 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002239mch_restore_title(int which)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240{
2241 /* only restore the title or icon when it has been set */
2242 mch_settitle(((which & 1) && did_set_title) ?
2243 (oldtitle ? oldtitle : p_titleold) : NULL,
2244 ((which & 2) && did_set_icon) ? oldicon : NULL);
2245}
2246
2247#endif /* FEAT_TITLE */
2248
2249/*
2250 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002251 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 */
2253 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002254vim_is_xterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255{
2256 if (name == NULL)
2257 return FALSE;
2258 return (STRNICMP(name, "xterm", 5) == 0
2259 || STRNICMP(name, "nxterm", 6) == 0
2260 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002261 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 || STRNICMP(name, "rxvt", 4) == 0
2263 || STRCMP(name, "builtin_xterm") == 0);
2264}
2265
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002266#if defined(FEAT_MOUSE_XTERM) || defined(PROTO)
2267/*
2268 * Return TRUE if "name" appears to be that of a terminal
2269 * known to support the xterm-style mouse protocol.
2270 * Relies on term_is_xterm having been set to its correct value.
2271 */
2272 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002273use_xterm_like_mouse(char_u *name)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002274{
2275 return (name != NULL
2276 && (term_is_xterm || STRNICMP(name, "screen", 6) == 0));
2277}
2278#endif
2279
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2281/*
2282 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2283 * Return 1 for "xterm".
2284 * Return 2 for "xterm2".
Bram Moolenaarc8427482011-10-20 21:09:35 +02002285 * Return 3 for "urxvt".
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002286 * Return 4 for "sgr".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 */
2288 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002289use_xterm_mouse(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290{
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02002291 if (ttym_flags == TTYM_SGR)
2292 return 4;
Bram Moolenaarc8427482011-10-20 21:09:35 +02002293 if (ttym_flags == TTYM_URXVT)
2294 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002295 if (ttym_flags == TTYM_XTERM2)
2296 return 2;
2297 if (ttym_flags == TTYM_XTERM)
2298 return 1;
2299 return 0;
2300}
2301#endif
2302
2303 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002304vim_is_iris(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305{
2306 if (name == NULL)
2307 return FALSE;
2308 return (STRNICMP(name, "iris-ansi", 9) == 0
2309 || STRCMP(name, "builtin_iris-ansi") == 0);
2310}
2311
2312 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002313vim_is_vt300(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314{
2315 if (name == NULL)
2316 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002317 /* catch VT100 - VT5xx */
2318 return ((STRNICMP(name, "vt", 2) == 0
2319 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320 || STRCMP(name, "builtin_vt320") == 0);
2321}
2322
2323/*
2324 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2325 * This should include all windowed terminal emulators.
2326 */
2327 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002328vim_is_fastterm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329{
2330 if (name == NULL)
2331 return FALSE;
2332 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2333 return TRUE;
2334 return ( STRNICMP(name, "hpterm", 6) == 0
2335 || STRNICMP(name, "sun-cmd", 7) == 0
2336 || STRNICMP(name, "screen", 6) == 0
2337 || STRNICMP(name, "dtterm", 6) == 0);
2338}
2339
2340/*
2341 * Insert user name in s[len].
2342 * Return OK if a name found.
2343 */
2344 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002345mch_get_user_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346{
2347#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002348 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002349 return OK;
2350#else
2351 return mch_get_uname(getuid(), s, len);
2352#endif
2353}
2354
2355/*
2356 * Insert user name for "uid" in s[len].
2357 * Return OK if a name found.
2358 */
2359 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002360mch_get_uname(uid_t uid, char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361{
2362#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2363 struct passwd *pw;
2364
2365 if ((pw = getpwuid(uid)) != NULL
2366 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2367 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002368 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 return OK;
2370 }
2371#endif
2372 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2373 return FAIL; /* a number is not a name */
2374}
2375
2376/*
2377 * Insert host name is s[len].
2378 */
2379
2380#ifdef HAVE_SYS_UTSNAME_H
2381 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002382mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383{
2384 struct utsname vutsname;
2385
2386 if (uname(&vutsname) < 0)
2387 *s = NUL;
2388 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002389 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390}
2391#else /* HAVE_SYS_UTSNAME_H */
2392
2393# ifdef HAVE_SYS_SYSTEMINFO_H
2394# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2395# endif
2396
2397 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002398mch_get_host_name(char_u *s, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399{
2400# ifdef VAXC
2401 vaxc$gethostname((char *)s, len);
2402# else
2403 gethostname((char *)s, len);
2404# endif
2405 s[len - 1] = NUL; /* make sure it's terminated */
2406}
2407#endif /* HAVE_SYS_UTSNAME_H */
2408
2409/*
2410 * return process ID
2411 */
2412 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002413mch_get_pid(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414{
2415 return (long)getpid();
2416}
2417
2418#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01002419static char *strerror(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420
2421 static char *
Bram Moolenaar05540972016-01-30 20:31:25 +01002422strerror(int err)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423{
2424 extern int sys_nerr;
2425 extern char *sys_errlist[];
2426 static char er[20];
2427
2428 if (err > 0 && err < sys_nerr)
2429 return (sys_errlist[err]);
2430 sprintf(er, "Error %d", err);
2431 return er;
2432}
2433#endif
2434
2435/*
2436 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2437 * Return OK for success, FAIL for failure.
2438 */
2439 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002440mch_dirname(char_u *buf, int len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441{
2442#if defined(USE_GETCWD)
2443 if (getcwd((char *)buf, len) == NULL)
2444 {
2445 STRCPY(buf, strerror(errno));
2446 return FAIL;
2447 }
2448 return OK;
2449#else
2450 return (getwd((char *)buf) != NULL ? OK : FAIL);
2451#endif
2452}
2453
Bram Moolenaar071d4272004-06-13 20:20:40 +00002454/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002455 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 *
2457 * return FAIL for failure, OK for success
2458 */
2459 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002460mch_FullName(
2461 char_u *fname,
2462 char_u *buf,
2463 int len,
2464 int force) /* also expand when already absolute path */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465{
2466 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002467#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 int fd = -1;
2469 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002470#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 char_u olddir[MAXPATHL];
2472 char_u *p;
2473 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002474#ifdef __CYGWIN__
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00002475 char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but
2476 it's not always defined */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002477#endif
2478
Bram Moolenaar38323e42007-03-06 19:22:53 +00002479#ifdef VMS
2480 fname = vms_fixfilename(fname);
2481#endif
2482
Bram Moolenaara2442432007-04-26 14:26:37 +00002483#ifdef __CYGWIN__
2484 /*
2485 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2486 */
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002487# if CYGWIN_VERSION_DLL_MAJOR >= 1007
Bram Moolenaar06b07342015-12-31 22:26:28 +01002488 /* Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in
2489 * a forward slash. */
2490 cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE,
2491 fname, posix_fname, MAXPATHL);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002492# else
Bram Moolenaarbf820722008-06-21 11:12:49 +00002493 cygwin_conv_to_posix_path(fname, posix_fname);
Bram Moolenaar0d1498e2008-06-29 12:00:49 +00002494# endif
Bram Moolenaarbf820722008-06-21 11:12:49 +00002495 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002496#endif
2497
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002498 /* Expand it if forced or not an absolute path.
2499 * Do not do it for "/file", the result is always "/". */
2500 if ((force || !mch_isFullName(fname))
2501 && ((p = vim_strrchr(fname, '/')) == NULL || p != fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 {
2503 /*
2504 * If the file name has a path, change to that directory for a moment,
2505 * and then do the getwd() (and get back to where we were).
2506 * This will get the correct path name with "../" things.
2507 */
Bram Moolenaare3303cb2015-12-31 18:29:46 +01002508 if (p != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002509 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002510#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511 /*
2512 * Use fchdir() if possible, it's said to be faster and more
2513 * reliable. But on SunOS 4 it might not work. Check this by
2514 * doing a fchdir() right now.
2515 */
2516 if (!dont_fchdir)
2517 {
2518 fd = open(".", O_RDONLY | O_EXTRA, 0);
2519 if (fd >= 0 && fchdir(fd) < 0)
2520 {
2521 close(fd);
2522 fd = -1;
2523 dont_fchdir = TRUE; /* don't try again */
2524 }
2525 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002526#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527
2528 /* Only change directory when we are sure we can return to where
2529 * we are now. After doing "su" chdir(".") might not work. */
2530 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002531#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002533#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 (mch_dirname(olddir, MAXPATHL) == FAIL
2535 || mch_chdir((char *)olddir) != 0))
2536 {
2537 p = NULL; /* can't get current dir: don't chdir */
2538 retval = FAIL;
2539 }
2540 else
2541 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002542 /* The directory is copied into buf[], to be able to remove
2543 * the file name without changing it (could be a string in
2544 * read-only memory) */
2545 if (p - fname >= len)
2546 retval = FAIL;
2547 else
2548 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002549 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 if (mch_chdir((char *)buf))
2551 retval = FAIL;
2552 else
2553 fname = p + 1;
2554 *buf = NUL;
2555 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 }
2557 }
2558 if (mch_dirname(buf, len) == FAIL)
2559 {
2560 retval = FAIL;
2561 *buf = NUL;
2562 }
2563 if (p != NULL)
2564 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002565#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 if (fd >= 0)
2567 {
Bram Moolenaar25724922009-07-14 15:38:41 +00002568 if (p_verbose >= 5)
2569 {
2570 verbose_enter();
2571 MSG("fchdir() to previous dir");
2572 verbose_leave();
2573 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 l = fchdir(fd);
2575 close(fd);
2576 }
2577 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002578#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579 l = mch_chdir((char *)olddir);
2580 if (l != 0)
2581 EMSG(_(e_prev_dir));
2582 }
2583
2584 l = STRLEN(buf);
Bram Moolenaardac75692012-10-14 04:35:45 +02002585 if (l >= len - 1)
2586 retval = FAIL; /* no space for trailing "/" */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002587#ifndef VMS
Bram Moolenaardac75692012-10-14 04:35:45 +02002588 else if (l > 0 && buf[l - 1] != '/' && *fname != NUL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 && STRCMP(fname, ".") != 0)
Bram Moolenaardac75692012-10-14 04:35:45 +02002590 STRCAT(buf, "/");
Bram Moolenaar38323e42007-03-06 19:22:53 +00002591#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002593
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 /* Catch file names which are too long. */
Bram Moolenaar78a15312009-05-15 19:33:18 +00002595 if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 return FAIL;
2597
2598 /* Do not append ".", "/dir/." is equal to "/dir". */
2599 if (STRCMP(fname, ".") != 0)
2600 STRCAT(buf, fname);
2601
2602 return OK;
2603}
2604
2605/*
2606 * Return TRUE if "fname" does not depend on the current directory.
2607 */
2608 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002609mch_isFullName(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610{
2611#ifdef __EMX__
2612 return _fnisabs(fname);
2613#else
2614# ifdef VMS
2615 return ( fname[0] == '/' || fname[0] == '.' ||
2616 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2617 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2618 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2619# else
2620 return (*fname == '/' || *fname == '~');
2621# endif
2622#endif
2623}
2624
Bram Moolenaar24552be2005-12-10 20:17:30 +00002625#if defined(USE_FNAME_CASE) || defined(PROTO)
2626/*
2627 * Set the case of the file name, if it already exists. This will cause the
2628 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002629 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002630 */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002631 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002632fname_case(
2633 char_u *name,
2634 int len UNUSED) /* buffer size, only used when name gets longer */
Bram Moolenaar24552be2005-12-10 20:17:30 +00002635{
2636 struct stat st;
2637 char_u *slash, *tail;
2638 DIR *dirp;
2639 struct dirent *dp;
2640
2641 if (lstat((char *)name, &st) >= 0)
2642 {
2643 /* Open the directory where the file is located. */
2644 slash = vim_strrchr(name, '/');
2645 if (slash == NULL)
2646 {
2647 dirp = opendir(".");
2648 tail = name;
2649 }
2650 else
2651 {
2652 *slash = NUL;
2653 dirp = opendir((char *)name);
2654 *slash = '/';
2655 tail = slash + 1;
2656 }
2657
2658 if (dirp != NULL)
2659 {
2660 while ((dp = readdir(dirp)) != NULL)
2661 {
2662 /* Only accept names that differ in case and are the same byte
2663 * length. TODO: accept different length name. */
2664 if (STRICMP(tail, dp->d_name) == 0
2665 && STRLEN(tail) == STRLEN(dp->d_name))
2666 {
2667 char_u newname[MAXPATHL + 1];
2668 struct stat st2;
2669
2670 /* Verify the inode is equal. */
2671 vim_strncpy(newname, name, MAXPATHL);
2672 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2673 MAXPATHL - (tail - name));
2674 if (lstat((char *)newname, &st2) >= 0
2675 && st.st_ino == st2.st_ino
2676 && st.st_dev == st2.st_dev)
2677 {
2678 STRCPY(tail, dp->d_name);
2679 break;
2680 }
2681 }
2682 }
2683
2684 closedir(dirp);
2685 }
2686 }
2687}
2688#endif
2689
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690/*
2691 * Get file permissions for 'name'.
2692 * Returns -1 when it doesn't exist.
2693 */
2694 long
Bram Moolenaar05540972016-01-30 20:31:25 +01002695mch_getperm(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002696{
2697 struct stat statb;
2698
2699 /* Keep the #ifdef outside of stat(), it may be a macro. */
2700#ifdef VMS
2701 if (stat((char *)vms_fixfilename(name), &statb))
2702#else
2703 if (stat((char *)name, &statb))
2704#endif
2705 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002706#ifdef __INTERIX
2707 /* The top bit makes the value negative, which means the file doesn't
2708 * exist. Remove the bit, we don't use it. */
2709 return statb.st_mode & ~S_ADDACE;
2710#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002711 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002712#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002713}
2714
2715/*
2716 * set file permission for 'name' to 'perm'
2717 *
2718 * return FAIL for failure, OK otherwise
2719 */
2720 int
Bram Moolenaar05540972016-01-30 20:31:25 +01002721mch_setperm(char_u *name, long perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002722{
2723 return (chmod((char *)
2724#ifdef VMS
2725 vms_fixfilename(name),
2726#else
2727 name,
2728#endif
2729 (mode_t)perm) == 0 ? OK : FAIL);
2730}
2731
2732#if defined(HAVE_ACL) || defined(PROTO)
2733# ifdef HAVE_SYS_ACL_H
2734# include <sys/acl.h>
2735# endif
2736# ifdef HAVE_SYS_ACCESS_H
2737# include <sys/access.h>
2738# endif
2739
2740# ifdef HAVE_SOLARIS_ACL
2741typedef struct vim_acl_solaris_T {
2742 int acl_cnt;
2743 aclent_t *acl_entry;
2744} vim_acl_solaris_T;
2745# endif
2746
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002747#if defined(HAVE_SELINUX) || defined(PROTO)
2748/*
2749 * Copy security info from "from_file" to "to_file".
2750 */
2751 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002752mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002753{
2754 if (from_file == NULL)
2755 return;
2756
2757 if (selinux_enabled == -1)
2758 selinux_enabled = is_selinux_enabled();
2759
2760 if (selinux_enabled > 0)
2761 {
2762 security_context_t from_context = NULL;
2763 security_context_t to_context = NULL;
2764
2765 if (getfilecon((char *)from_file, &from_context) < 0)
2766 {
2767 /* If the filesystem doesn't support extended attributes,
2768 the original had no special security context and the
2769 target cannot have one either. */
2770 if (errno == EOPNOTSUPP)
2771 return;
2772
2773 MSG_PUTS(_("\nCould not get security context for "));
2774 msg_outtrans(from_file);
2775 msg_putchar('\n');
2776 return;
2777 }
2778 if (getfilecon((char *)to_file, &to_context) < 0)
2779 {
2780 MSG_PUTS(_("\nCould not get security context for "));
2781 msg_outtrans(to_file);
2782 msg_putchar('\n');
2783 freecon (from_context);
2784 return ;
2785 }
2786 if (strcmp(from_context, to_context) != 0)
2787 {
2788 if (setfilecon((char *)to_file, from_context) < 0)
2789 {
2790 MSG_PUTS(_("\nCould not set security context for "));
2791 msg_outtrans(to_file);
2792 msg_putchar('\n');
2793 }
2794 }
2795 freecon(to_context);
2796 freecon(from_context);
2797 }
2798}
2799#endif /* HAVE_SELINUX */
2800
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002801#if defined(HAVE_SMACK) && !defined(PROTO)
2802/*
2803 * Copy security info from "from_file" to "to_file".
2804 */
2805 void
Bram Moolenaard14e00e2016-01-31 17:30:51 +01002806mch_copy_sec(char_u *from_file, char_u *to_file)
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002807{
Bram Moolenaar62f167f2014-04-23 12:52:40 +02002808 static const char * const smack_copied_attributes[] =
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002809 {
2810 XATTR_NAME_SMACK,
2811 XATTR_NAME_SMACKEXEC,
2812 XATTR_NAME_SMACKMMAP
2813 };
2814
2815 char buffer[SMACK_LABEL_LEN];
2816 const char *name;
2817 int index;
2818 int ret;
2819 ssize_t size;
2820
2821 if (from_file == NULL)
2822 return;
2823
2824 for (index = 0 ; index < (int)(sizeof(smack_copied_attributes)
2825 / sizeof(smack_copied_attributes)[0]) ; index++)
2826 {
2827 /* get the name of the attribute to copy */
2828 name = smack_copied_attributes[index];
2829
2830 /* get the value of the attribute in buffer */
2831 size = getxattr((char*)from_file, name, buffer, sizeof(buffer));
2832 if (size >= 0)
2833 {
2834 /* copy the attribute value of buffer */
2835 ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0);
2836 if (ret < 0)
2837 {
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002838 vim_snprintf((char *)IObuff, IOSIZE,
2839 _("Could not set security context %s for %s"),
2840 name, to_file);
2841 msg_outtrans(IObuff);
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002842 msg_putchar('\n');
2843 }
2844 }
2845 else
2846 {
2847 /* what reason of not having the attribute value? */
2848 switch (errno)
2849 {
2850 case ENOTSUP:
2851 /* extended attributes aren't supported or enabled */
2852 /* should a message be echoed? not sure... */
2853 return; /* leave because it isn't usefull to continue */
2854
2855 case ERANGE:
2856 default:
2857 /* no enough size OR unexpected error */
Bram Moolenaar4a1314c2016-01-27 20:47:18 +01002858 vim_snprintf((char *)IObuff, IOSIZE,
2859 _("Could not get security context %s for %s. Removing it!"),
2860 name, from_file);
2861 msg_puts(IObuff);
2862 msg_putchar('\n');
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002863 /* FALLTHROUGH to remove the attribute */
2864
2865 case ENODATA:
2866 /* no attribute of this name */
2867 ret = removexattr((char*)to_file, name);
Bram Moolenaar57a728d2014-04-02 23:09:26 +02002868 /* Silently ignore errors, apparently this happens when
2869 * smack is not actually being used. */
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02002870 break;
2871 }
2872 }
2873 }
2874}
2875#endif /* HAVE_SMACK */
2876
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877/*
2878 * Return a pointer to the ACL of file "fname" in allocated memory.
2879 * Return NULL if the ACL is not available for whatever reason.
2880 */
2881 vim_acl_T
Bram Moolenaar05540972016-01-30 20:31:25 +01002882mch_get_acl(char_u *fname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002883{
2884 vim_acl_T ret = NULL;
2885#ifdef HAVE_POSIX_ACL
2886 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2887#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002888#ifdef HAVE_SOLARIS_ZFS_ACL
2889 acl_t *aclent;
2890
2891 if (acl_get((char *)fname, 0, &aclent) < 0)
2892 return NULL;
2893 ret = (vim_acl_T)aclent;
2894#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895#ifdef HAVE_SOLARIS_ACL
2896 vim_acl_solaris_T *aclent;
2897
2898 aclent = malloc(sizeof(vim_acl_solaris_T));
2899 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2900 {
2901 free(aclent);
2902 return NULL;
2903 }
2904 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2905 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2906 {
2907 free(aclent->acl_entry);
2908 free(aclent);
2909 return NULL;
2910 }
2911 ret = (vim_acl_T)aclent;
2912#else
2913#if defined(HAVE_AIX_ACL)
2914 int aclsize;
2915 struct acl *aclent;
2916
2917 aclsize = sizeof(struct acl);
2918 aclent = malloc(aclsize);
2919 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2920 {
2921 if (errno == ENOSPC)
2922 {
2923 aclsize = aclent->acl_len;
2924 aclent = realloc(aclent, aclsize);
2925 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2926 {
2927 free(aclent);
2928 return NULL;
2929 }
2930 }
2931 else
2932 {
2933 free(aclent);
2934 return NULL;
2935 }
2936 }
2937 ret = (vim_acl_T)aclent;
2938#endif /* HAVE_AIX_ACL */
2939#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002940#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002941#endif /* HAVE_POSIX_ACL */
2942 return ret;
2943}
2944
2945/*
2946 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2947 */
2948 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002949mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950{
2951 if (aclent == NULL)
2952 return;
2953#ifdef HAVE_POSIX_ACL
2954 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2955#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002956#ifdef HAVE_SOLARIS_ZFS_ACL
2957 acl_set((char *)fname, (acl_t *)aclent);
2958#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959#ifdef HAVE_SOLARIS_ACL
2960 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2961 ((vim_acl_solaris_T *)aclent)->acl_entry);
2962#else
2963#ifdef HAVE_AIX_ACL
2964 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2965#endif /* HAVE_AIX_ACL */
2966#endif /* HAVE_SOLARIS_ACL */
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002967#endif /* HAVE_SOLARIS_ZFS_ACL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002968#endif /* HAVE_POSIX_ACL */
2969}
2970
2971 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002972mch_free_acl(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_free((acl_t)aclent);
2978#else
Bram Moolenaar8d462f92012-02-05 22:51:33 +01002979#ifdef HAVE_SOLARIS_ZFS_ACL
2980 acl_free((acl_t *)aclent);
2981#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982#ifdef HAVE_SOLARIS_ACL
2983 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2984 free(aclent);
2985#else
2986#ifdef HAVE_AIX_ACL
2987 free(aclent);
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#endif
2994
2995/*
2996 * Set hidden flag for "name".
2997 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002998 void
Bram Moolenaar05540972016-01-30 20:31:25 +01002999mch_hide(char_u *name UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003000{
3001 /* can't hide a file */
3002}
3003
3004/*
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003005 * return TRUE if "name" is a directory or a symlink to a directory
Bram Moolenaar071d4272004-06-13 20:20:40 +00003006 * return FALSE if "name" is not a directory
3007 * return FALSE for error
3008 */
3009 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003010mch_isdir(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011{
3012 struct stat statb;
3013
3014 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3015 return FALSE;
3016 if (stat((char *)name, &statb))
3017 return FALSE;
3018#ifdef _POSIX_SOURCE
3019 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
3020#else
3021 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
3022#endif
3023}
3024
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003025/*
3026 * return TRUE if "name" is a directory, NOT a symlink to a directory
3027 * return FALSE if "name" is not a directory
3028 * return FALSE for error
3029 */
3030 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003031mch_isrealdir(char_u *name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01003032{
3033 struct stat statb;
3034
3035 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
3036 return FALSE;
3037 if (lstat((char *)name, &statb))
3038 return FALSE;
3039#ifdef _POSIX_SOURCE
3040 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
3041#else
3042 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
3043#endif
3044}
3045
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003046static int executable_file(char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003047
3048/*
3049 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
3050 */
3051 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01003052executable_file(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053{
3054 struct stat st;
3055
3056 if (stat((char *)name, &st))
3057 return 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003058#ifdef VMS
3059 /* Like on Unix system file can have executable rights but not necessarily
3060 * be an executable, but on Unix is not a default for an ordianry file to
3061 * have an executable flag - on VMS it is in most cases.
3062 * Therefore, this check does not have any sense - let keep us to the
3063 * conventions instead:
3064 * *.COM and *.EXE files are the executables - the rest are not. This is
3065 * not ideal but better then it was.
3066 */
3067 int vms_executable = 0;
3068 if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0)
3069 {
3070 if (strstr(vms_tolower((char*)name),".exe") != NULL
3071 || strstr(vms_tolower((char*)name),".com")!= NULL)
3072 vms_executable = 1;
3073 }
3074 return vms_executable;
3075#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003076 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003077#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078}
3079
3080/*
3081 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
Bram Moolenaarb5971142015-03-21 17:32:19 +01003082 * If "use_path" is FALSE only check if "name" is executable.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 * Return -1 if unknown.
3084 */
3085 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003086mch_can_exe(char_u *name, char_u **path, int use_path)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087{
3088 char_u *buf;
3089 char_u *p, *e;
3090 int retval;
3091
Bram Moolenaarb5971142015-03-21 17:32:19 +01003092 /* When "use_path" is false and if it's an absolute or relative path don't
3093 * need to use $PATH. */
3094 if (!use_path || mch_isFullName(name) || (name[0] == '.'
3095 && (name[1] == '/' || (name[1] == '.' && name[2] == '/'))))
Bram Moolenaar206f0112014-03-12 16:51:55 +01003096 {
Bram Moolenaarb5971142015-03-21 17:32:19 +01003097 /* There must be a path separator, files in the current directory
3098 * can't be executed. */
3099 if (gettail(name) != name && executable_file(name))
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003100 {
3101 if (path != NULL)
3102 {
3103 if (name[0] == '.')
3104 *path = FullName_save(name, TRUE);
3105 else
3106 *path = vim_strsave(name);
3107 }
3108 return TRUE;
3109 }
3110 return FALSE;
Bram Moolenaar206f0112014-03-12 16:51:55 +01003111 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003112
3113 p = (char_u *)getenv("PATH");
3114 if (p == NULL || *p == NUL)
3115 return -1;
3116 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
3117 if (buf == NULL)
3118 return -1;
3119
3120 /*
3121 * Walk through all entries in $PATH to check if "name" exists there and
3122 * is an executable file.
3123 */
3124 for (;;)
3125 {
3126 e = (char_u *)strchr((char *)p, ':');
3127 if (e == NULL)
3128 e = p + STRLEN(p);
3129 if (e - p <= 1) /* empty entry means current dir */
3130 STRCPY(buf, "./");
3131 else
3132 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00003133 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003134 add_pathsep(buf);
3135 }
3136 STRCAT(buf, name);
3137 retval = executable_file(buf);
3138 if (retval == 1)
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003139 {
3140 if (path != NULL)
3141 {
3142 if (buf[0] == '.')
3143 *path = FullName_save(buf, TRUE);
3144 else
3145 *path = vim_strsave(buf);
3146 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 break;
Bram Moolenaarc7f02552014-04-01 21:00:59 +02003148 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149
3150 if (*e != ':')
3151 break;
3152 p = e + 1;
3153 }
3154
3155 vim_free(buf);
3156 return retval;
3157}
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158
3159/*
3160 * Check what "name" is:
3161 * NODE_NORMAL: file or directory (or doesn't exist)
3162 * NODE_WRITABLE: writable device, socket, fifo, etc.
3163 * NODE_OTHER: non-writable things
3164 */
3165 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003166mch_nodetype(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167{
3168 struct stat st;
3169
3170 if (stat((char *)name, &st))
3171 return NODE_NORMAL;
3172 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
3173 return NODE_NORMAL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003174 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
3175 return NODE_OTHER;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 /* Everything else is writable? */
3177 return NODE_WRITABLE;
3178}
3179
3180 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003181mch_early_init(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003182{
3183#ifdef HAVE_CHECK_STACK_GROWTH
3184 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003185
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 check_stack_growth((char *)&i);
3187
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003188# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 get_stack_limit();
3190# endif
3191
3192#endif
3193
3194 /*
3195 * Setup an alternative stack for signals. Helps to catch signals when
3196 * running out of stack space.
3197 * Use of sigaltstack() is preferred, it's more portable.
3198 * Ignore any errors.
3199 */
3200#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
Bram Moolenaar5a221812008-11-12 12:08:45 +00003201 signal_stack = (char *)alloc(SIGSTKSZ);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003202 init_signal_stack();
3203#endif
3204}
3205
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003206#if defined(EXITFREE) || defined(PROTO)
3207 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003208mch_free_mem(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003209{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003210# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
3211 if (clip_star.owned)
3212 clip_lose_selection(&clip_star);
3213 if (clip_plus.owned)
3214 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003215# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00003216# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003217 if (xterm_Shell != (Widget)0)
3218 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00003219# ifndef LESSTIF_VERSION
3220 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003221 if (xterm_dpy != NULL)
3222 XtCloseDisplay(xterm_dpy);
3223 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00003224 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003225 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00003226# ifdef FEAT_X11
3227 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
3228# endif
3229 }
3230# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003231# endif
Bram Moolenaar0eda7ac2010-06-26 05:38:18 +02003232# if defined(FEAT_X11)
Bram Moolenaare8208012008-06-20 09:59:25 +00003233 if (x11_display != NULL
3234# ifdef FEAT_XCLIPBOARD
3235 && x11_display != xterm_dpy
3236# endif
3237 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00003238 XCloseDisplay(x11_display);
3239# endif
3240# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
3241 vim_free(signal_stack);
3242 signal_stack = NULL;
3243# endif
3244# ifdef FEAT_TITLE
3245 vim_free(oldtitle);
3246 vim_free(oldicon);
3247# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003248}
3249#endif
3250
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01003251static void exit_scroll(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252
3253/*
3254 * Output a newline when exiting.
3255 * Make sure the newline goes to the same stream as the text.
3256 */
3257 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003258exit_scroll(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259{
Bram Moolenaardf177f62005-02-22 08:39:57 +00003260 if (silent_mode)
3261 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003262 if (newline_on_exit || msg_didout)
3263 {
3264 if (msg_use_printf())
3265 {
3266 if (info_message)
3267 mch_msg("\n");
3268 else
3269 mch_errmsg("\r\n");
3270 }
3271 else
3272 out_char('\n');
3273 }
3274 else
3275 {
3276 restore_cterm_colors(); /* get original colors back */
3277 msg_clr_eos_force(); /* clear the rest of the display */
3278 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
3279 }
3280}
3281
3282 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003283mch_exit(int r)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284{
3285 exiting = TRUE;
3286
3287#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
3288 x11_export_final_selection();
3289#endif
3290
3291#ifdef FEAT_GUI
3292 if (!gui.in_use)
3293#endif
3294 {
3295 settmode(TMODE_COOK);
3296#ifdef FEAT_TITLE
3297 mch_restore_title(3); /* restore xterm title and icon name */
3298#endif
3299 /*
3300 * When t_ti is not empty but it doesn't cause swapping terminal
3301 * pages, need to output a newline when msg_didout is set. But when
3302 * t_ti does swap pages it should not go to the shell page. Do this
3303 * before stoptermcap().
3304 */
3305 if (swapping_screen() && !newline_on_exit)
3306 exit_scroll();
3307
3308 /* Stop termcap: May need to check for T_CRV response, which
3309 * requires RAW mode. */
3310 stoptermcap();
3311
3312 /*
3313 * A newline is only required after a message in the alternate screen.
3314 * This is set to TRUE by wait_return().
3315 */
3316 if (!swapping_screen() || newline_on_exit)
3317 exit_scroll();
3318
3319 /* Cursor may have been switched off without calling starttermcap()
3320 * when doing "vim -u vimrc" and vimrc contains ":q". */
3321 if (full_screen)
3322 cursor_on();
3323 }
3324 out_flush();
3325 ml_close_all(TRUE); /* remove all memfiles */
3326 may_core_dump();
3327#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003328 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003329 gui_exit(r);
3330#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003331
Bram Moolenaar56718732006-03-15 22:53:57 +00003332#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003333 mac_conv_cleanup();
3334#endif
3335
Bram Moolenaar071d4272004-06-13 20:20:40 +00003336#ifdef __QNX__
3337 /* A core dump won't be created if the signal handler
3338 * doesn't return, so we can't call exit() */
3339 if (deadly_signal != 0)
3340 return;
3341#endif
3342
Bram Moolenaar009b2592004-10-24 19:18:58 +00003343#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003344 netbeans_send_disconnect();
Bram Moolenaar009b2592004-10-24 19:18:58 +00003345#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003346
3347#ifdef EXITFREE
3348 free_all_mem();
3349#endif
3350
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 exit(r);
3352}
3353
3354 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01003355may_core_dump(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356{
3357 if (deadly_signal != 0)
3358 {
3359 signal(deadly_signal, SIG_DFL);
3360 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3361 }
3362}
3363
3364#ifndef VMS
3365
3366 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003367mch_settmode(int tmode)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003368{
3369 static int first = TRUE;
3370
3371 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3372#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3373 /*
3374 * for "new" tty systems
3375 */
3376# ifdef HAVE_TERMIOS_H
3377 static struct termios told;
3378 struct termios tnew;
3379# else
3380 static struct termio told;
3381 struct termio tnew;
3382# endif
3383
3384 if (first)
3385 {
3386 first = FALSE;
3387# if defined(HAVE_TERMIOS_H)
3388 tcgetattr(read_cmd_fd, &told);
3389# else
3390 ioctl(read_cmd_fd, TCGETA, &told);
3391# endif
3392 }
3393
3394 tnew = told;
3395 if (tmode == TMODE_RAW)
3396 {
3397 /*
3398 * ~ICRNL enables typing ^V^M
3399 */
3400 tnew.c_iflag &= ~ICRNL;
3401 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3402# if defined(IEXTEN) && !defined(__MINT__)
3403 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3404 /* but it breaks function keys on MINT */
3405# endif
3406 );
3407# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3408 tnew.c_oflag &= ~ONLCR;
3409# endif
3410 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3411 tnew.c_cc[VTIME] = 0; /* don't wait */
3412 }
3413 else if (tmode == TMODE_SLEEP)
Bram Moolenaar40de4562016-07-01 15:03:46 +02003414 {
3415 /* Also reset ICANON here, otherwise on Solaris select() won't see
3416 * typeahead characters. */
3417 tnew.c_lflag &= ~(ICANON | ECHO);
3418 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3419 tnew.c_cc[VTIME] = 0; /* don't wait */
3420 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421
3422# if defined(HAVE_TERMIOS_H)
3423 {
3424 int n = 10;
3425
3426 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3427 * few times. */
3428 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3429 && errno == EINTR && n > 0)
3430 --n;
3431 }
3432# else
3433 ioctl(read_cmd_fd, TCSETA, &tnew);
3434# endif
3435
3436#else
3437
3438 /*
3439 * for "old" tty systems
3440 */
3441# ifndef TIOCSETN
3442# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3443# endif
3444 static struct sgttyb ttybold;
3445 struct sgttyb ttybnew;
3446
3447 if (first)
3448 {
3449 first = FALSE;
3450 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3451 }
3452
3453 ttybnew = ttybold;
3454 if (tmode == TMODE_RAW)
3455 {
3456 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3457 ttybnew.sg_flags |= RAW;
3458 }
3459 else if (tmode == TMODE_SLEEP)
3460 ttybnew.sg_flags &= ~(ECHO);
3461 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3462#endif
3463 curr_tmode = tmode;
3464}
3465
3466/*
3467 * Try to get the code for "t_kb" from the stty setting
3468 *
3469 * Even if termcap claims a backspace key, the user's setting *should*
3470 * prevail. stty knows more about reality than termcap does, and if
3471 * somebody's usual erase key is DEL (which, for most BSD users, it will
3472 * be), they're going to get really annoyed if their erase key starts
3473 * doing forward deletes for no reason. (Eric Fischer)
3474 */
3475 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003476get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477{
3478 char_u buf[2];
3479 char_u *p;
3480
3481 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3482#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3483 /* for "new" tty systems */
3484# ifdef HAVE_TERMIOS_H
3485 struct termios keys;
3486# else
3487 struct termio keys;
3488# endif
3489
3490# if defined(HAVE_TERMIOS_H)
3491 if (tcgetattr(read_cmd_fd, &keys) != -1)
3492# else
3493 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3494# endif
3495 {
3496 buf[0] = keys.c_cc[VERASE];
3497 intr_char = keys.c_cc[VINTR];
3498#else
3499 /* for "old" tty systems */
3500 struct sgttyb keys;
3501
3502 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3503 {
3504 buf[0] = keys.sg_erase;
3505 intr_char = keys.sg_kill;
3506#endif
3507 buf[1] = NUL;
3508 add_termcode((char_u *)"kb", buf, FALSE);
3509
3510 /*
3511 * If <BS> and <DEL> are now the same, redefine <DEL>.
3512 */
3513 p = find_termcode((char_u *)"kD");
3514 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3515 do_fixdel(NULL);
3516 }
3517#if 0
3518 } /* to keep cindent happy */
3519#endif
3520}
3521
3522#endif /* VMS */
3523
3524#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3525/*
3526 * Set mouse clicks on or off.
3527 */
3528 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003529mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003530{
3531 static int ison = FALSE;
3532 int xterm_mouse_vers;
3533
3534 if (on == ison) /* return quickly if nothing to do */
3535 return;
3536
3537 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003538
3539# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003540 if (ttym_flags == TTYM_URXVT)
3541 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003542 out_str_nf((char_u *)
3543 (on
3544 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3545 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
3546 ison = on;
3547 }
3548# endif
3549
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003550# ifdef FEAT_MOUSE_SGR
3551 if (ttym_flags == TTYM_SGR)
3552 {
3553 out_str_nf((char_u *)
3554 (on
3555 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3556 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
3557 ison = on;
3558 }
3559# endif
3560
Bram Moolenaar071d4272004-06-13 20:20:40 +00003561 if (xterm_mouse_vers > 0)
3562 {
3563 if (on) /* enable mouse events, use mouse tracking if available */
3564 out_str_nf((char_u *)
3565 (xterm_mouse_vers > 1
3566 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3567 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3568 else /* disable mouse events, could probably always send the same */
3569 out_str_nf((char_u *)
3570 (xterm_mouse_vers > 1
3571 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3572 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3573 ison = on;
3574 }
3575
3576# ifdef FEAT_MOUSE_DEC
3577 else if (ttym_flags == TTYM_DEC)
3578 {
3579 if (on) /* enable mouse events */
3580 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3581 else /* disable mouse events */
3582 out_str_nf((char_u *)"\033['z");
3583 ison = on;
3584 }
3585# endif
3586
3587# ifdef FEAT_MOUSE_GPM
3588 else
3589 {
3590 if (on)
3591 {
3592 if (gpm_open())
3593 ison = TRUE;
3594 }
3595 else
3596 {
3597 gpm_close();
3598 ison = FALSE;
3599 }
3600 }
3601# endif
3602
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003603# ifdef FEAT_SYSMOUSE
3604 else
3605 {
3606 if (on)
3607 {
3608 if (sysmouse_open() == OK)
3609 ison = TRUE;
3610 }
3611 else
3612 {
3613 sysmouse_close();
3614 ison = FALSE;
3615 }
3616 }
3617# endif
3618
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619# ifdef FEAT_MOUSE_JSB
3620 else
3621 {
3622 if (on)
3623 {
3624 /* D - Enable Mouse up/down messages
3625 * L - Enable Left Button Reporting
3626 * M - Enable Middle Button Reporting
3627 * R - Enable Right Button Reporting
3628 * K - Enable SHIFT and CTRL key Reporting
3629 * + - Enable Advanced messaging of mouse moves and up/down messages
3630 * Q - Quiet No Ack
3631 * # - Numeric value of mouse pointer required
3632 * 0 = Multiview 2000 cursor, used as standard
3633 * 1 = Windows Arrow
3634 * 2 = Windows I Beam
3635 * 3 = Windows Hour Glass
3636 * 4 = Windows Cross Hair
3637 * 5 = Windows UP Arrow
3638 */
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003639# ifdef JSBTERM_MOUSE_NONADVANCED
3640 /* Disables full feedback of pointer movements */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3642 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003643# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3645 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003646# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003647 ison = TRUE;
3648 }
3649 else
3650 {
3651 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3652 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3653 ison = FALSE;
3654 }
3655 }
3656# endif
3657# ifdef FEAT_MOUSE_PTERM
3658 else
3659 {
3660 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3661 if (on)
3662 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3663 else
3664 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3665 ison = on;
3666 }
3667# endif
3668}
3669
3670/*
3671 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3672 */
3673 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003674check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675{
3676# ifdef FEAT_MOUSE_XTERM
3677 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003678# ifdef FEAT_MOUSE_URXVT
3679 && use_xterm_mouse() != 3
3680# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681# ifdef FEAT_GUI
3682 && !gui.in_use
3683# endif
3684 )
3685 {
3686 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003687 ? IF_EB("\233M", CSI_STR "M")
3688 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689 if (*p_mouse != NUL)
3690 {
3691 /* force mouse off and maybe on to send possibly new mouse
3692 * activation sequence to the xterm, with(out) drag tracing. */
3693 mch_setmouse(FALSE);
3694 setmouse();
3695 }
3696 }
3697 else
3698 del_mouse_termcode(KS_MOUSE);
3699# endif
3700
3701# ifdef FEAT_MOUSE_GPM
3702 if (!use_xterm_mouse()
3703# ifdef FEAT_GUI
3704 && !gui.in_use
3705# endif
3706 )
3707 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3708# endif
3709
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003710# ifdef FEAT_SYSMOUSE
3711 if (!use_xterm_mouse()
3712# ifdef FEAT_GUI
3713 && !gui.in_use
3714# endif
3715 )
3716 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3717# endif
3718
Bram Moolenaar071d4272004-06-13 20:20:40 +00003719# ifdef FEAT_MOUSE_JSB
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003720 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 if (!use_xterm_mouse()
3722# ifdef FEAT_GUI
3723 && !gui.in_use
3724# endif
3725 )
3726 set_mouse_termcode(KS_JSBTERM_MOUSE,
3727 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3728 else
3729 del_mouse_termcode(KS_JSBTERM_MOUSE);
3730# endif
3731
3732# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003733 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003734 * define it in the GUI or when using an xterm. */
3735 if (!use_xterm_mouse()
3736# ifdef FEAT_GUI
3737 && !gui.in_use
3738# endif
3739 )
3740 set_mouse_termcode(KS_NETTERM_MOUSE,
3741 (char_u *)IF_EB("\033}", ESC_STR "}"));
3742 else
3743 del_mouse_termcode(KS_NETTERM_MOUSE);
3744# endif
3745
3746# ifdef FEAT_MOUSE_DEC
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003747 /* Conflicts with xterm mouse: "\033[" and "\033[M" */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003748 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749# ifdef FEAT_GUI
3750 && !gui.in_use
3751# endif
3752 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003753 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3754 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755 else
3756 del_mouse_termcode(KS_DEC_MOUSE);
3757# endif
3758# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003759 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003760 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003761# ifdef FEAT_GUI
3762 && !gui.in_use
3763# endif
3764 )
3765 set_mouse_termcode(KS_PTERM_MOUSE,
3766 (char_u *) IF_EB("\033[", ESC_STR "["));
3767 else
3768 del_mouse_termcode(KS_PTERM_MOUSE);
3769# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003770# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003771 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003772 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003773# ifdef FEAT_GUI
3774 && !gui.in_use
3775# endif
3776 )
3777 {
3778 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3779 ? IF_EB("\233", CSI_STR)
3780 : IF_EB("\033[", ESC_STR "[")));
3781
3782 if (*p_mouse != NUL)
3783 {
3784 mch_setmouse(FALSE);
3785 setmouse();
3786 }
3787 }
3788 else
3789 del_mouse_termcode(KS_URXVT_MOUSE);
3790# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003791# ifdef FEAT_MOUSE_SGR
Bram Moolenaar24dc2302014-05-13 20:19:58 +02003792 /* There is no conflict with xterm mouse */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003793 if (use_xterm_mouse() == 4
3794# ifdef FEAT_GUI
3795 && !gui.in_use
3796# endif
3797 )
3798 {
3799 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3800 ? IF_EB("\233<", CSI_STR "<")
3801 : IF_EB("\033[<", ESC_STR "[<")));
3802
3803 if (*p_mouse != NUL)
3804 {
3805 mch_setmouse(FALSE);
3806 setmouse();
3807 }
3808 }
3809 else
3810 del_mouse_termcode(KS_SGR_MOUSE);
3811# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812}
3813#endif
3814
3815/*
3816 * set screen mode, always fails.
3817 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003819mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820{
3821 EMSG(_(e_screenmode));
3822 return FAIL;
3823}
3824
3825#ifndef VMS
3826
3827/*
3828 * Try to get the current window size:
3829 * 1. with an ioctl(), most accurate method
3830 * 2. from the environment variables LINES and COLUMNS
3831 * 3. from the termcap
3832 * 4. keep using the old values
3833 * Return OK when size could be determined, FAIL otherwise.
3834 */
3835 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003836mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837{
3838 long rows = 0;
3839 long columns = 0;
3840 char_u *p;
3841
3842 /*
3843 * For OS/2 use _scrsize().
3844 */
3845# ifdef __EMX__
3846 {
3847 int s[2];
3848
3849 _scrsize(s);
3850 columns = s[0];
3851 rows = s[1];
3852 }
3853# endif
3854
3855 /*
3856 * 1. try using an ioctl. It is the most accurate method.
3857 *
3858 * Try using TIOCGWINSZ first, some systems that have it also define
3859 * TIOCGSIZE but don't have a struct ttysize.
3860 */
3861# ifdef TIOCGWINSZ
3862 {
3863 struct winsize ws;
3864 int fd = 1;
3865
3866 /* When stdout is not a tty, use stdin for the ioctl(). */
3867 if (!isatty(fd) && isatty(read_cmd_fd))
3868 fd = read_cmd_fd;
3869 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3870 {
3871 columns = ws.ws_col;
3872 rows = ws.ws_row;
3873 }
3874 }
3875# else /* TIOCGWINSZ */
3876# ifdef TIOCGSIZE
3877 {
3878 struct ttysize ts;
3879 int fd = 1;
3880
3881 /* When stdout is not a tty, use stdin for the ioctl(). */
3882 if (!isatty(fd) && isatty(read_cmd_fd))
3883 fd = read_cmd_fd;
3884 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3885 {
3886 columns = ts.ts_cols;
3887 rows = ts.ts_lines;
3888 }
3889 }
3890# endif /* TIOCGSIZE */
3891# endif /* TIOCGWINSZ */
3892
3893 /*
3894 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003895 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3896 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003897 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003898 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899 {
3900 if ((p = (char_u *)getenv("LINES")))
3901 rows = atoi((char *)p);
3902 if ((p = (char_u *)getenv("COLUMNS")))
3903 columns = atoi((char *)p);
3904 }
3905
3906#ifdef HAVE_TGETENT
3907 /*
3908 * 3. try reading "co" and "li" entries from termcap
3909 */
3910 if (columns == 0 || rows == 0)
3911 getlinecol(&columns, &rows);
3912#endif
3913
3914 /*
3915 * 4. If everything fails, use the old values
3916 */
3917 if (columns <= 0 || rows <= 0)
3918 return FAIL;
3919
3920 Rows = rows;
3921 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02003922 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923 return OK;
3924}
3925
3926/*
3927 * Try to set the window size to Rows and Columns.
3928 */
3929 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003930mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931{
3932 if (*T_CWS)
3933 {
3934 /*
3935 * NOTE: if you get an error here that term_set_winsize() is
3936 * undefined, check the output of configure. It could probably not
3937 * find a ncurses, termcap or termlib library.
3938 */
3939 term_set_winsize((int)Rows, (int)Columns);
3940 out_flush();
3941 screen_start(); /* don't know where cursor is now */
3942 }
3943}
3944
3945#endif /* VMS */
3946
3947/*
3948 * Rows and/or Columns has changed.
3949 */
3950 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003951mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952{
3953 /* Nothing to do. */
3954}
3955
Bram Moolenaar205b8862011-09-07 15:04:31 +02003956/*
3957 * Wait for process "child" to end.
3958 * Return "child" if it exited properly, <= 0 on error.
3959 */
3960 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01003961wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02003962{
3963 pid_t wait_pid = 0;
3964
3965 while (wait_pid != child)
3966 {
Bram Moolenaar6be120e2012-04-20 15:55:16 +02003967 /* When compiled with Python threads are probably used, in which case
3968 * wait() sometimes hangs for no obvious reason. Use waitpid()
3969 * instead and loop (like the GUI). Also needed for other interfaces,
3970 * they might call system(). */
3971# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02003972 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02003973# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02003974 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02003975# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02003976 if (wait_pid == 0)
3977 {
Bram Moolenaar75676462013-01-30 14:55:42 +01003978 /* Wait for 10 msec before trying again. */
Bram Moolenaar205b8862011-09-07 15:04:31 +02003979 mch_delay(10L, TRUE);
3980 continue;
3981 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02003982 if (wait_pid <= 0
3983# ifdef ECHILD
3984 && errno == ECHILD
3985# endif
3986 )
3987 break;
3988 }
3989 return wait_pid;
3990}
3991
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003992#if defined(FEAT_JOB_CHANNEL) || !defined(USE_SYSTEM) || defined(PROTO)
Bram Moolenaar72801402016-02-09 11:37:50 +01003993/*
3994 * Parse "cmd" and put the white-separated parts in "argv".
3995 * "argv" is an allocated array with "argc" entries.
3996 * Returns FAIL when out of memory.
3997 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01003998 int
3999mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
4000{
4001 int i;
4002 char_u *p;
4003 int inquote;
4004
4005 /*
4006 * Do this loop twice:
4007 * 1: find number of arguments
4008 * 2: separate them and build argv[]
4009 */
4010 for (i = 0; i < 2; ++i)
4011 {
Bram Moolenaar6231cb82016-04-26 19:42:42 +02004012 p = skipwhite(cmd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01004013 inquote = FALSE;
4014 *argc = 0;
4015 for (;;)
4016 {
4017 if (i == 1)
4018 (*argv)[*argc] = (char *)p;
4019 ++*argc;
4020 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB)))
4021 {
4022 if (*p == '"')
4023 inquote = !inquote;
4024 ++p;
4025 }
4026 if (*p == NUL)
4027 break;
4028 if (i == 1)
4029 *p++ = NUL;
4030 p = skipwhite(p);
4031 }
4032 if (*argv == NULL)
4033 {
4034 if (use_shcf)
4035 {
4036 /* Account for possible multiple args in p_shcf. */
4037 p = p_shcf;
4038 for (;;)
4039 {
4040 p = skiptowhite(p);
4041 if (*p == NUL)
4042 break;
4043 ++*argc;
4044 p = skipwhite(p);
4045 }
4046 }
4047
4048 *argv = (char **)alloc((unsigned)((*argc + 4) * sizeof(char *)));
4049 if (*argv == NULL) /* out of memory */
4050 return FAIL;
4051 }
4052 }
4053 return OK;
4054}
4055#endif
4056
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004057#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004058 static void
4059set_child_environment(void)
4060{
4061# ifdef HAVE_SETENV
4062 char envbuf[50];
4063# else
4064 static char envbuf_Rows[20];
4065 static char envbuf_Columns[20];
4066# endif
4067
4068 /* Simulate to have a dumb terminal (for now) */
4069# ifdef HAVE_SETENV
4070 setenv("TERM", "dumb", 1);
4071 sprintf((char *)envbuf, "%ld", Rows);
4072 setenv("ROWS", (char *)envbuf, 1);
4073 sprintf((char *)envbuf, "%ld", Rows);
4074 setenv("LINES", (char *)envbuf, 1);
4075 sprintf((char *)envbuf, "%ld", Columns);
4076 setenv("COLUMNS", (char *)envbuf, 1);
4077# else
4078 /*
4079 * Putenv does not copy the string, it has to remain valid.
4080 * Use a static array to avoid losing allocated memory.
4081 */
4082 putenv("TERM=dumb");
4083 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
4084 putenv(envbuf_Rows);
4085 sprintf(envbuf_Rows, "LINES=%ld", Rows);
4086 putenv(envbuf_Rows);
4087 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
4088 putenv(envbuf_Columns);
4089# endif
4090}
4091#endif
4092
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004094mch_call_shell(
4095 char_u *cmd,
4096 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097{
4098#ifdef VMS
4099 char *ifn = NULL;
4100 char *ofn = NULL;
4101#endif
4102 int tmode = cur_tmode;
4103#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
4104 int x;
4105# ifndef __EMX__
4106 char_u *newcmd; /* only needed for unix */
4107# else
4108 /*
4109 * Set the preferred shell in the EMXSHELL environment variable (but
4110 * only if it is different from what is already in the environment).
4111 * Emx then takes care of whether to use "/c" or "-c" in an
4112 * intelligent way. Simply pass the whole thing to emx's system() call.
4113 * Emx also starts an interactive shell if system() is passed an empty
4114 * string.
4115 */
4116 char_u *p, *old;
4117
4118 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
4119 {
4120 /* should check HAVE_SETENV, but I know we don't have it. */
4121 p = alloc(10 + strlen(p_sh));
4122 if (p)
4123 {
4124 sprintf((char *)p, "EMXSHELL=%s", p_sh);
4125 putenv((char *)p); /* don't free the pointer! */
4126 }
4127 }
4128# endif
4129
4130 out_flush();
4131
4132 if (options & SHELL_COOKED)
4133 settmode(TMODE_COOK); /* set to normal mode */
4134
Bram Moolenaar62b42182010-09-21 22:09:37 +02004135# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004136 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004137 loose_clipboard();
4138# endif
4139
Bram Moolenaar071d4272004-06-13 20:20:40 +00004140# ifdef __EMX__
4141 if (cmd == NULL)
4142 x = system(""); /* this starts an interactive shell in emx */
4143 else
4144 x = system((char *)cmd);
4145 /* system() returns -1 when error occurs in starting shell */
4146 if (x == -1 && !emsg_silent)
4147 {
4148 MSG_PUTS(_("\nCannot execute shell "));
4149 msg_outtrans(p_sh);
4150 msg_putchar('\n');
4151 }
4152# else /* not __EMX__ */
4153 if (cmd == NULL)
4154 x = system((char *)p_sh);
4155 else
4156 {
4157# ifdef VMS
4158 if (ofn = strchr((char *)cmd, '>'))
4159 *ofn++ = '\0';
4160 if (ifn = strchr((char *)cmd, '<'))
4161 {
4162 char *p;
4163
4164 *ifn++ = '\0';
4165 p = strchr(ifn,' '); /* chop off any trailing spaces */
4166 if (p)
4167 *p = '\0';
4168 }
4169 if (ofn)
4170 x = vms_sys((char *)cmd, ofn, ifn);
4171 else
4172 x = system((char *)cmd);
4173# else
4174 newcmd = lalloc(STRLEN(p_sh)
4175 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
4176 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
4177 if (newcmd == NULL)
4178 x = 0;
4179 else
4180 {
4181 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4182 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4183 (char *)p_shcf,
4184 (char *)cmd);
4185 x = system((char *)newcmd);
4186 vim_free(newcmd);
4187 }
4188# endif
4189 }
4190# ifdef VMS
4191 x = vms_sys_status(x);
4192# endif
4193 if (emsg_silent)
4194 ;
4195 else if (x == 127)
4196 MSG_PUTS(_("\nCannot execute shell sh\n"));
4197# endif /* __EMX__ */
4198 else if (x && !(options & SHELL_SILENT))
4199 {
4200 MSG_PUTS(_("\nshell returned "));
4201 msg_outnum((long)x);
4202 msg_putchar('\n');
4203 }
4204
4205 if (tmode == TMODE_RAW)
4206 settmode(TMODE_RAW); /* set to raw mode */
4207# ifdef FEAT_TITLE
4208 resettitle();
4209# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004210# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4211 restore_clipboard();
4212# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213 return x;
4214
4215#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
4216
Bram Moolenaardf177f62005-02-22 08:39:57 +00004217# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
4218 127, some shells use that already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219
Bram Moolenaar835dc632016-02-07 14:27:38 +01004220 char_u *newcmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004222 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 pid_t wait_pid = 0;
4224# ifdef HAVE_UNION_WAIT
4225 union wait status;
4226# else
4227 int status = -1;
4228# endif
4229 int retval = -1;
4230 char **argv = NULL;
4231 int argc;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004232 char_u *p_shcf_copy = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 int i;
4234 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004236# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 int pty_slave_fd = -1;
4238 char *tty_name;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004239# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004240 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 int fd_fromshell[2];
4242 int pipe_error = FALSE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004243 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004244
Bram Moolenaar62b42182010-09-21 22:09:37 +02004245 newcmd = vim_strsave(p_sh);
4246 if (newcmd == NULL) /* out of memory */
4247 goto error;
4248
Bram Moolenaar071d4272004-06-13 20:20:40 +00004249 out_flush();
4250 if (options & SHELL_COOKED)
4251 settmode(TMODE_COOK); /* set to normal mode */
4252
Bram Moolenaar835dc632016-02-07 14:27:38 +01004253 if (mch_parse_cmd(newcmd, TRUE, &argv, &argc) == FAIL)
4254 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004255
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 if (cmd != NULL)
4257 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004258 char_u *s;
4259
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 if (extra_shell_arg != NULL)
4261 argv[argc++] = (char *)extra_shell_arg;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004262
4263 /* Break 'shellcmdflag' into white separated parts. This doesn't
4264 * handle quoted strings, they are very unlikely to appear. */
4265 p_shcf_copy = alloc((unsigned)STRLEN(p_shcf) + 1);
4266 if (p_shcf_copy == NULL) /* out of memory */
4267 goto error;
4268 s = p_shcf_copy;
4269 p = p_shcf;
4270 while (*p != NUL)
4271 {
4272 argv[argc++] = (char *)s;
4273 while (*p && *p != ' ' && *p != TAB)
4274 *s++ = *p++;
4275 *s++ = NUL;
4276 p = skipwhite(p);
4277 }
4278
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 argv[argc++] = (char *)cmd;
4280 }
4281 argv[argc] = NULL;
4282
Bram Moolenaar071d4272004-06-13 20:20:40 +00004283 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004284 * For the GUI, when writing the output into the buffer and when reading
4285 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4286 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004288 if ((options & (SHELL_READ|SHELL_WRITE))
4289# ifdef FEAT_GUI
4290 || (gui.in_use && show_shell_mess)
4291# endif
4292 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004293 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004294# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 /*
4296 * Try to open a master pty.
4297 * If this works, open the slave pty.
4298 * If the slave can't be opened, close the master pty.
4299 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004300 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004301 {
4302 pty_master_fd = OpenPTY(&tty_name); /* open pty */
Bram Moolenaare70172e2011-08-04 19:36:52 +02004303 if (pty_master_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004304 {
Bram Moolenaare70172e2011-08-04 19:36:52 +02004305 /* Leaving out O_NOCTTY may lead to waitpid() always returning
4306 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4307 * adding O_NOCTTY always works when defined. */
4308#ifdef O_NOCTTY
4309 pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4310#else
4311 pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4312#endif
4313 if (pty_slave_fd < 0)
4314 {
4315 close(pty_master_fd);
4316 pty_master_fd = -1;
4317 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 }
4319 }
4320 /*
4321 * If not opening a pty or it didn't work, try using pipes.
4322 */
4323 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004324# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 {
4326 pipe_error = (pipe(fd_toshell) < 0);
4327 if (!pipe_error) /* pipe create OK */
4328 {
4329 pipe_error = (pipe(fd_fromshell) < 0);
4330 if (pipe_error) /* pipe create failed */
4331 {
4332 close(fd_toshell[0]);
4333 close(fd_toshell[1]);
4334 }
4335 }
4336 if (pipe_error)
4337 {
4338 MSG_PUTS(_("\nCannot create pipes\n"));
4339 out_flush();
4340 }
4341 }
4342 }
4343
4344 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 {
4346# ifdef __BEOS__
4347 beos_cleanup_read_thread();
4348# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004349
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 if ((pid = fork()) == -1) /* maybe we should use vfork() */
4351 {
4352 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004353 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004355 || (gui.in_use && show_shell_mess)
4356# endif
4357 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004358 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004359# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004360 if (pty_master_fd >= 0) /* close the pseudo tty */
4361 {
4362 close(pty_master_fd);
4363 close(pty_slave_fd);
4364 }
4365 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004366# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004367 {
4368 close(fd_toshell[0]);
4369 close(fd_toshell[1]);
4370 close(fd_fromshell[0]);
4371 close(fd_fromshell[1]);
4372 }
4373 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004374 }
4375 else if (pid == 0) /* child */
4376 {
4377 reset_signals(); /* handle signals normally */
4378
4379 if (!show_shell_mess || (options & SHELL_EXPAND))
4380 {
4381 int fd;
4382
4383 /*
4384 * Don't want to show any message from the shell. Can't just
4385 * close stdout and stderr though, because some systems will
4386 * break if you try to write to them after that, so we must
4387 * use dup() to replace them with something else -- webb
4388 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4389 * waiting for input.
4390 */
4391 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4392 fclose(stdin);
4393 fclose(stdout);
4394 fclose(stderr);
4395
4396 /*
4397 * If any of these open()'s and dup()'s fail, we just continue
4398 * anyway. It's not fatal, and on most systems it will make
4399 * no difference at all. On a few it will cause the execvp()
4400 * to exit with a non-zero status even when the completion
4401 * could be done, which is nothing too serious. If the open()
4402 * or dup() failed we'd just do the same thing ourselves
4403 * anyway -- webb
4404 */
4405 if (fd >= 0)
4406 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004407 ignored = dup(fd); /* To replace stdin (fd 0) */
4408 ignored = dup(fd); /* To replace stdout (fd 1) */
4409 ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410
4411 /* Don't need this now that we've duplicated it */
4412 close(fd);
4413 }
4414 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004415 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004417 || gui.in_use
4418# endif
4419 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004420 {
4421
Bram Moolenaardf177f62005-02-22 08:39:57 +00004422# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004423 /* Create our own process group, so that the child and all its
4424 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004425 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004426 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004427 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004428 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004429# if defined(SIGHUP)
4430 /* When doing "!xterm&" and 'shell' is bash: the shell
4431 * will exit and send SIGHUP to all processes in its
4432 * group, killing the just started process. Ignore SIGHUP
4433 * to avoid that. (suggested by Simon Schubert)
4434 */
4435 signal(SIGHUP, SIG_IGN);
4436# endif
4437 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004438# endif
4439# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004440 if (pty_slave_fd >= 0)
4441 {
4442 /* push stream discipline modules */
4443 if (options & SHELL_COOKED)
4444 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004445# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004446 /* Try to become controlling tty (probably doesn't work,
4447 * unless run by root) */
4448 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004449# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004450 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004451# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004452 set_child_environment();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453
Bram Moolenaara5792f52005-11-23 21:25:05 +00004454 /*
4455 * stderr is only redirected when using the GUI, so that a
4456 * program like gpg can still access the terminal to get a
4457 * passphrase using stderr.
4458 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004459# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 if (pty_master_fd >= 0)
4461 {
4462 close(pty_master_fd); /* close master side of pty */
4463
4464 /* set up stdin/stdout/stderr for the child */
4465 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004466 ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004467 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004468 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004469 if (gui.in_use)
4470 {
4471 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004472 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004473 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474
4475 close(pty_slave_fd); /* has been dupped, close it now */
4476 }
4477 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004478# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 {
4480 /* set up stdin for the child */
4481 close(fd_toshell[1]);
4482 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004483 ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 close(fd_toshell[0]);
4485
4486 /* set up stdout for the child */
4487 close(fd_fromshell[0]);
4488 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004489 ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004490 close(fd_fromshell[1]);
4491
Bram Moolenaara5792f52005-11-23 21:25:05 +00004492# ifdef FEAT_GUI
4493 if (gui.in_use)
4494 {
4495 /* set up stderr for the child */
4496 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004497 ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004498 }
4499# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004500 }
4501 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004502
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 /*
4504 * There is no type cast for the argv, because the type may be
4505 * different on different machines. This may cause a warning
4506 * message with strict compilers, don't worry about it.
4507 * Call _exit() instead of exit() to avoid closing the connection
4508 * to the X server (esp. with GTK, which uses atexit()).
4509 */
4510 execvp(argv[0], argv);
4511 _exit(EXEC_FAILED); /* exec failed, return failure code */
4512 }
4513 else /* parent */
4514 {
4515 /*
4516 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004517 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004518 */
4519 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004520 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521
4522 /*
4523 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004524 * This is also used to pipe stdin/stdout to/from the external
4525 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004527 if ((options & (SHELL_READ|SHELL_WRITE))
4528# ifdef FEAT_GUI
4529 || (gui.in_use && show_shell_mess)
4530# endif
4531 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004533# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004534 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004535# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004536 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004537# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4539 int ta_len = 0; /* valid bytes in ta_buf[] */
4540 int len;
4541 int p_more_save;
4542 int old_State;
4543 int c;
4544 int toshell_fd;
4545 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004546 garray_T ga;
4547 int noread_cnt;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004548# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4549 struct timeval start_tv;
4550# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551
Bram Moolenaardf177f62005-02-22 08:39:57 +00004552# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004553 if (pty_master_fd >= 0)
4554 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004555 fromshell_fd = pty_master_fd;
4556 toshell_fd = dup(pty_master_fd);
4557 }
4558 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004559# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 {
4561 close(fd_toshell[0]);
4562 close(fd_fromshell[1]);
4563 toshell_fd = fd_toshell[1];
4564 fromshell_fd = fd_fromshell[0];
4565 }
4566
4567 /*
4568 * Write to the child if there are typed characters.
4569 * Read from the child if there are characters available.
4570 * Repeat the reading a few times if more characters are
4571 * available. Need to check for typed keys now and then, but
4572 * not too often (delays when no chars are available).
4573 * This loop is quit if no characters can be read from the pty
4574 * (WaitForChar detected special condition), or there are no
4575 * characters available and the child has exited.
4576 * Only check if the child has exited when there is no more
4577 * output. The child may exit before all the output has
4578 * been printed.
4579 *
4580 * Currently this busy loops!
4581 * This can probably dead-lock when the write blocks!
4582 */
4583 p_more_save = p_more;
4584 p_more = FALSE;
4585 old_State = State;
4586 State = EXTERNCMD; /* don't redraw at window resize */
4587
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004588 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004589 {
4590 /* Fork a process that will write the lines to the
4591 * external program. */
4592 if ((wpid = fork()) == -1)
4593 {
4594 MSG_PUTS(_("\nCannot fork\n"));
4595 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004596 else if (wpid == 0) /* child */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004597 {
4598 linenr_T lnum = curbuf->b_op_start.lnum;
4599 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004600 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004601 size_t l;
4602
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004603 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004604 for (;;)
4605 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004606 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004607 if (l == 0)
4608 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004609 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004610 /* NL -> NUL translation */
4611 len = write(toshell_fd, "", (size_t)1);
4612 else
4613 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004614 char_u *s = vim_strchr(lp + written, NL);
4615
Bram Moolenaar89d40322006-08-29 15:30:07 +00004616 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004617 s == NULL ? l
4618 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004619 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004620 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004621 {
4622 /* Finished a line, add a NL, unless this line
4623 * should not have one. */
4624 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004625 || (!curbuf->b_p_bin
4626 && curbuf->b_p_fixeol)
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004627 || (lnum != curbuf->b_no_eol_lnum
Bram Moolenaardf177f62005-02-22 08:39:57 +00004628 && (lnum !=
4629 curbuf->b_ml.ml_line_count
4630 || curbuf->b_p_eol)))
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004631 ignored = write(toshell_fd, "\n",
4632 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004633 ++lnum;
4634 if (lnum > curbuf->b_op_end.lnum)
4635 {
4636 /* finished all the lines, close pipe */
4637 close(toshell_fd);
4638 toshell_fd = -1;
4639 break;
4640 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004641 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004642 written = 0;
4643 }
4644 else if (len > 0)
4645 written += len;
4646 }
4647 _exit(0);
4648 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004649 else /* parent */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004650 {
4651 close(toshell_fd);
4652 toshell_fd = -1;
4653 }
4654 }
4655
4656 if (options & SHELL_READ)
4657 ga_init2(&ga, 1, BUFLEN);
4658
4659 noread_cnt = 0;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004660# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4661 gettimeofday(&start_tv, NULL);
4662# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 for (;;)
4664 {
4665 /*
4666 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004667 * if there are any.
4668 * Don't do this if we are expanding wild cards (would eat
4669 * typeahead).
4670 * Don't do this when filtering and terminal is in cooked
4671 * mode, the shell command will handle the I/O. Avoids
4672 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004673 * Don't get characters when the child has already
4674 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004675 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004676 * while (noread_cnt > 4), avoids that ":r !ls" eats
4677 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004678 */
4679 len = 0;
4680 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004681 && ((options &
4682 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4683 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004684# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004685 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004686# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004687 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004688 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004689 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004691 if (ta_len == 0)
4692 {
4693 /* Get extra characters when we don't have any.
4694 * Reset the counter and timer. */
4695 noread_cnt = 0;
4696# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4697 gettimeofday(&start_tv, NULL);
4698# endif
4699 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4700 }
4701 if (ta_len > 0 || len > 0)
4702 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004703 /*
4704 * For pipes:
4705 * Check for CTRL-C: send interrupt signal to child.
4706 * Check for CTRL-D: EOF, close pipe to child.
4707 */
4708 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4709 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004710# ifdef SIGINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711 /*
4712 * Send SIGINT to the child's group or all
4713 * processes in our group.
4714 */
4715 if (ta_buf[ta_len] == Ctrl_C
4716 || ta_buf[ta_len] == intr_char)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004717 {
4718# ifdef HAVE_SETSID
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 kill(-pid, SIGINT);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004720# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 kill(0, SIGINT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722# endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00004723 if (wpid > 0)
4724 kill(wpid, SIGINT);
4725 }
4726# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 if (pty_master_fd < 0 && toshell_fd >= 0
4728 && ta_buf[ta_len] == Ctrl_D)
4729 {
4730 close(toshell_fd);
4731 toshell_fd = -1;
4732 }
4733 }
4734
4735 /* replace K_BS by <BS> and K_DEL by <DEL> */
4736 for (i = ta_len; i < ta_len + len; ++i)
4737 {
4738 if (ta_buf[i] == CSI && len - i > 2)
4739 {
4740 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4741 if (c == K_DEL || c == K_KDEL || c == K_BS)
4742 {
4743 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4744 (size_t)(len - i - 2));
4745 if (c == K_DEL || c == K_KDEL)
4746 ta_buf[i] = DEL;
4747 else
4748 ta_buf[i] = Ctrl_H;
4749 len -= 2;
4750 }
4751 }
4752 else if (ta_buf[i] == '\r')
4753 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004754# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 if (has_mbyte)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00004756 i += (*mb_ptr2len_len)(ta_buf + i,
4757 ta_len + len - i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004758# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004759 }
4760
4761 /*
4762 * For pipes: echo the typed characters.
4763 * For a pty this does not seem to work.
4764 */
4765 if (pty_master_fd < 0)
4766 {
4767 for (i = ta_len; i < ta_len + len; ++i)
4768 {
4769 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4770 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004771# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 else if (has_mbyte)
4773 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004774 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775
4776 msg_outtrans_len(ta_buf + i, l);
4777 i += l - 1;
4778 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004779# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780 else
4781 msg_outtrans_len(ta_buf + i, 1);
4782 }
4783 windgoto(msg_row, msg_col);
4784 out_flush();
4785 }
4786
4787 ta_len += len;
4788
4789 /*
4790 * Write the characters to the child, unless EOF has
4791 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004792 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004793 * When writing buffer lines, drop the typed
4794 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004795 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004796 if (options & SHELL_WRITE)
4797 ta_len = 0;
4798 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 {
4800 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4801 if (len > 0)
4802 {
4803 ta_len -= len;
4804 mch_memmove(ta_buf, ta_buf + len, ta_len);
4805 }
4806 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004807 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004808 }
4809
Bram Moolenaardf177f62005-02-22 08:39:57 +00004810 if (got_int)
4811 {
4812 /* CTRL-C sends a signal to the child, we ignore it
4813 * ourselves */
4814# ifdef HAVE_SETSID
4815 kill(-pid, SIGINT);
4816# else
4817 kill(0, SIGINT);
4818# endif
4819 if (wpid > 0)
4820 kill(wpid, SIGINT);
4821 got_int = FALSE;
4822 }
4823
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 /*
4825 * Check if the child has any characters to be printed.
4826 * Read them and write them to our window. Repeat this as
4827 * long as there is something to do, avoid the 10ms wait
4828 * for mch_inchar(), or sending typeahead characters to
4829 * the external process.
4830 * TODO: This should handle escape sequences, compatible
4831 * to some terminal (vt52?).
4832 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004833 ++noread_cnt;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01004834 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004836 len = read_eintr(fromshell_fd, buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004837# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004839# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004840 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004841# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004842 );
4843 if (len <= 0) /* end of file or error */
4844 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004845
4846 noread_cnt = 0;
4847 if (options & SHELL_READ)
4848 {
4849 /* Do NUL -> NL translation, append NL separated
4850 * lines to the current buffer. */
4851 for (i = 0; i < len; ++i)
4852 {
4853 if (buffer[i] == NL)
4854 append_ga_line(&ga);
4855 else if (buffer[i] == NUL)
4856 ga_append(&ga, NL);
4857 else
4858 ga_append(&ga, buffer[i]);
4859 }
4860 }
4861# ifdef FEAT_MBYTE
4862 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 {
4864 int l;
4865
Bram Moolenaardf177f62005-02-22 08:39:57 +00004866 len += buffer_off;
4867 buffer[len] = NUL;
4868
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 /* Check if the last character in buffer[] is
4870 * incomplete, keep these bytes for the next
4871 * round. */
4872 for (p = buffer; p < buffer + len; p += l)
4873 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004874 l = mb_cptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004875 if (l == 0)
4876 l = 1; /* NUL byte? */
4877 else if (MB_BYTE2LEN(*p) != l)
4878 break;
4879 }
4880 if (p == buffer) /* no complete character */
4881 {
4882 /* avoid getting stuck at an illegal byte */
4883 if (len >= 12)
4884 ++p;
4885 else
4886 {
4887 buffer_off = len;
4888 continue;
4889 }
4890 }
4891 c = *p;
4892 *p = NUL;
4893 msg_puts(buffer);
4894 if (p < buffer + len)
4895 {
4896 *p = c;
4897 buffer_off = (buffer + len) - p;
4898 mch_memmove(buffer, p, buffer_off);
4899 continue;
4900 }
4901 buffer_off = 0;
4902 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004903# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004904 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 {
4906 buffer[len] = NUL;
4907 msg_puts(buffer);
4908 }
4909
4910 windgoto(msg_row, msg_col);
4911 cursor_on();
4912 out_flush();
4913 if (got_int)
4914 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004915
4916# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004917 if (wait_pid == 0)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004918 {
Bram Moolenaare30a3d02016-06-04 14:11:20 +02004919 long msec = elapsed(&start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004920
4921 /* Avoid that we keep looping here without
4922 * checking for a CTRL-C for a long time. Don't
4923 * break out too often to avoid losing typeahead. */
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004924 if (msec > 2000)
4925 {
4926 noread_cnt = 5;
4927 break;
4928 }
4929 }
4930# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931 }
4932
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004933 /* If we already detected the child has finished, continue
4934 * reading output for a short while. Some text may be
4935 * buffered. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004936 if (wait_pid == pid)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004937 {
4938 if (noread_cnt < 5)
4939 continue;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004940 break;
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004941 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004942
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 /*
4944 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004945 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004947# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004948 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004949# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004951# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004952 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4953 || (wait_pid == pid && WIFEXITED(status)))
4954 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004955 /* Don't break the loop yet, try reading more
4956 * characters from "fromshell_fd" first. When using
4957 * pipes there might still be something to read and
4958 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004959 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004961 else
4962 wait_pid = 0;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004963
Bram Moolenaar95a51352013-03-21 22:53:50 +01004964# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004965 /* Handle any X events, e.g. serving the clipboard. */
4966 clip_update();
4967# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968 }
4969finished:
4970 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004971 if (options & SHELL_READ)
4972 {
4973 if (ga.ga_len > 0)
4974 {
4975 append_ga_line(&ga);
4976 /* remember that the NL was missing */
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004977 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004978 }
4979 else
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004980 curbuf->b_no_eol_lnum = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004981 ga_clear(&ga);
4982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983
Bram Moolenaar071d4272004-06-13 20:20:40 +00004984 /*
4985 * Give all typeahead that wasn't used back to ui_inchar().
4986 */
4987 if (ta_len)
4988 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 State = old_State;
4990 if (toshell_fd >= 0)
4991 close(toshell_fd);
4992 close(fromshell_fd);
4993 }
Bram Moolenaar95a51352013-03-21 22:53:50 +01004994# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004995 else
4996 {
4997 /*
4998 * Similar to the loop above, but only handle X events, no
4999 * I/O.
5000 */
5001 for (;;)
5002 {
5003 if (got_int)
5004 {
5005 /* CTRL-C sends a signal to the child, we ignore it
5006 * ourselves */
5007# ifdef HAVE_SETSID
5008 kill(-pid, SIGINT);
5009# else
5010 kill(0, SIGINT);
5011# endif
5012 got_int = FALSE;
5013 }
5014# ifdef __NeXT__
5015 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
5016# else
5017 wait_pid = waitpid(pid, &status, WNOHANG);
5018# endif
5019 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5020 || (wait_pid == pid && WIFEXITED(status)))
5021 {
5022 wait_pid = pid;
5023 break;
5024 }
5025
5026 /* Handle any X events, e.g. serving the clipboard. */
5027 clip_update();
5028
5029 mch_delay(10L, TRUE);
5030 }
5031 }
5032# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033
5034 /*
5035 * Wait until our child has exited.
5036 * Ignore wait() returning pids of other children and returning
5037 * because of some signal like SIGWINCH.
5038 * Don't wait if wait_pid was already set above, indicating the
5039 * child already exited.
5040 */
Bram Moolenaar205b8862011-09-07 15:04:31 +02005041 if (wait_pid != pid)
5042 wait_pid = wait4pid(pid, &status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005043
Bram Moolenaar624891f2010-10-13 16:22:09 +02005044# ifdef FEAT_GUI
5045 /* Close slave side of pty. Only do this after the child has
5046 * exited, otherwise the child may hang when it tries to write on
5047 * the pty. */
5048 if (pty_master_fd >= 0)
5049 close(pty_slave_fd);
5050# endif
5051
Bram Moolenaardf177f62005-02-22 08:39:57 +00005052 /* Make sure the child that writes to the external program is
5053 * dead. */
5054 if (wpid > 0)
Bram Moolenaar205b8862011-09-07 15:04:31 +02005055 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005056 kill(wpid, SIGKILL);
Bram Moolenaar205b8862011-09-07 15:04:31 +02005057 wait4pid(wpid, NULL);
5058 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005059
Bram Moolenaar071d4272004-06-13 20:20:40 +00005060 /*
5061 * Set to raw mode right now, otherwise a CTRL-C after
5062 * catch_signals() will kill Vim.
5063 */
5064 if (tmode == TMODE_RAW)
5065 settmode(TMODE_RAW);
5066 did_settmode = TRUE;
5067 set_signals();
5068
5069 if (WIFEXITED(status))
5070 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00005071 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 retval = WEXITSTATUS(status);
Bram Moolenaar75676462013-01-30 14:55:42 +01005073 if (retval != 0 && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 {
5075 if (retval == EXEC_FAILED)
5076 {
5077 MSG_PUTS(_("\nCannot execute shell "));
5078 msg_outtrans(p_sh);
5079 msg_putchar('\n');
5080 }
5081 else if (!(options & SHELL_SILENT))
5082 {
5083 MSG_PUTS(_("\nshell returned "));
5084 msg_outnum((long)retval);
5085 msg_putchar('\n');
5086 }
5087 }
5088 }
5089 else
5090 MSG_PUTS(_("\nCommand terminated\n"));
5091 }
5092 }
5093 vim_free(argv);
Bram Moolenaarea35ef62011-08-04 22:59:28 +02005094 vim_free(p_shcf_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095
5096error:
5097 if (!did_settmode)
5098 if (tmode == TMODE_RAW)
5099 settmode(TMODE_RAW); /* set to raw mode */
5100# ifdef FEAT_TITLE
5101 resettitle();
5102# endif
5103 vim_free(newcmd);
5104
5105 return retval;
5106
5107#endif /* USE_SYSTEM */
5108}
5109
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005110#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005111 void
Bram Moolenaar802d5592016-03-05 22:05:27 +01005112mch_start_job(char **argv, job_T *job, jobopt_T *options UNUSED)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005113{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005114 pid_t pid;
5115 int fd_in[2]; /* for stdin */
5116 int fd_out[2]; /* for stdout */
5117 int fd_err[2]; /* for stderr */
Bram Moolenaar16eb4f82016-02-14 23:02:34 +01005118 channel_T *channel = NULL;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005119 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5120 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5121 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005122 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005123 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5124 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005125 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005126
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005127 if (use_out_for_err && use_null_for_out)
5128 use_null_for_err = TRUE;
5129
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005130 /* default is to fail */
5131 job->jv_status = JOB_FAILED;
5132 fd_in[0] = -1;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005133 fd_in[1] = -1;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005134 fd_out[0] = -1;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005135 fd_out[1] = -1;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005136 fd_err[0] = -1;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005137 fd_err[1] = -1;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005138
Bram Moolenaar12dcf022016-02-15 23:09:04 +01005139 /* TODO: without the channel feature connect the child to /dev/null? */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005140 /* Open pipes for stdin, stdout, stderr. */
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005141 if (use_file_for_in)
5142 {
5143 char_u *fname = options->jo_io_name[PART_IN];
5144
5145 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0);
5146 if (fd_in[0] < 0)
5147 {
5148 EMSG2(_(e_notopen), fname);
5149 goto failed;
5150 }
5151 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005152 else if (!use_null_for_in && pipe(fd_in) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005153 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005154
5155 if (use_file_for_out)
5156 {
5157 char_u *fname = options->jo_io_name[PART_OUT];
5158
5159 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
5160 if (fd_out[1] < 0)
5161 {
5162 EMSG2(_(e_notopen), fname);
5163 goto failed;
5164 }
5165 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005166 else if (!use_null_for_out && pipe(fd_out) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005167 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005168
5169 if (use_file_for_err)
5170 {
5171 char_u *fname = options->jo_io_name[PART_ERR];
5172
5173 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
5174 if (fd_err[1] < 0)
5175 {
5176 EMSG2(_(e_notopen), fname);
5177 goto failed;
5178 }
5179 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005180 else if (!use_out_for_err && !use_null_for_err && pipe(fd_err) < 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005181 goto failed;
5182
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005183 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5184 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005185 if (options->jo_set & JO_CHANNEL)
5186 {
5187 channel = options->jo_channel;
5188 if (channel != NULL)
5189 ++channel->ch_refcount;
5190 }
5191 else
5192 channel = add_channel();
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005193 if (channel == NULL)
5194 goto failed;
5195 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005196
5197 pid = fork(); /* maybe we should use vfork() */
5198 if (pid == -1)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005199 {
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005200 /* failed to fork */
5201 goto failed;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005202 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005203
5204 if (pid == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005205 {
Bram Moolenaar4694a172016-04-21 14:05:23 +02005206 int null_fd = -1;
5207 int stderr_works = TRUE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005208
Bram Moolenaar835dc632016-02-07 14:27:38 +01005209 /* child */
5210 reset_signals(); /* handle signals normally */
5211
5212# ifdef HAVE_SETSID
5213 /* Create our own process group, so that the child and all its
5214 * children can be kill()ed. Don't do this when using pipes,
5215 * because stdin is not a tty, we would lose /dev/tty. */
5216 (void)setsid();
5217# endif
5218
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005219 set_child_environment();
5220
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005221 if (use_null_for_in || use_null_for_out || use_null_for_err)
5222 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
5223
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005224 /* set up stdin for the child */
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005225 if (use_null_for_in && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005226 {
5227 close(0);
5228 ignored = dup(null_fd);
5229 }
5230 else
5231 {
5232 if (!use_file_for_in)
5233 close(fd_in[1]);
5234 close(0);
5235 ignored = dup(fd_in[0]);
5236 close(fd_in[0]);
5237 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005238
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005239 /* set up stderr for the child */
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005240 if (use_null_for_err && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005241 {
5242 close(2);
5243 ignored = dup(null_fd);
Bram Moolenaar4694a172016-04-21 14:05:23 +02005244 stderr_works = FALSE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005245 }
5246 else if (use_out_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005247 {
5248 close(2);
5249 ignored = dup(fd_out[1]);
5250 }
5251 else
5252 {
Bram Moolenaare98d1212016-03-08 15:37:41 +01005253 if (!use_file_for_err)
5254 close(fd_err[0]);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005255 close(2);
5256 ignored = dup(fd_err[1]);
5257 close(fd_err[1]);
5258 }
5259
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005260 /* set up stdout for the child */
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005261 if (use_null_for_out && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005262 {
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005263 close(1);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005264 ignored = dup(null_fd);
5265 }
5266 else
5267 {
5268 if (!use_file_for_out)
5269 close(fd_out[0]);
5270 close(1);
5271 ignored = dup(fd_out[1]);
5272 close(fd_out[1]);
5273 }
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005274
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005275 if (null_fd >= 0)
5276 close(null_fd);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005277
Bram Moolenaar835dc632016-02-07 14:27:38 +01005278 /* See above for type of argv. */
5279 execvp(argv[0], argv);
5280
Bram Moolenaar4694a172016-04-21 14:05:23 +02005281 if (stderr_works)
5282 perror("executing job failed");
Bram Moolenaarcda77642016-06-04 13:32:35 +02005283#ifdef EXITFREE
5284 /* calling free_all_mem() here causes problems. Ignore valgrind
5285 * reporting possibly leaked memory. */
5286#endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005287 _exit(EXEC_FAILED); /* exec failed, return failure code */
5288 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005289
5290 /* parent */
5291 job->jv_pid = pid;
5292 job->jv_status = JOB_STARTED;
Bram Moolenaarde279892016-03-11 22:19:44 +01005293 job->jv_channel = channel; /* ch_refcount was set above */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005294
5295 /* child stdin, stdout and stderr */
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005296 if (!use_file_for_in && fd_in[0] >= 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005297 close(fd_in[0]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005298 if (!use_file_for_out && fd_out[1] >= 0)
Bram Moolenaare98d1212016-03-08 15:37:41 +01005299 close(fd_out[1]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005300 if (!use_out_for_err && !use_file_for_err && fd_err[1] >= 0)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005301 close(fd_err[1]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005302 if (channel != NULL)
5303 {
5304 channel_set_pipes(channel,
5305 use_file_for_in || use_null_for_in
5306 ? INVALID_FD : fd_in[1],
5307 use_file_for_out || use_null_for_out
5308 ? INVALID_FD : fd_out[0],
5309 use_out_for_err || use_file_for_err || use_null_for_err
Bram Moolenaare98d1212016-03-08 15:37:41 +01005310 ? INVALID_FD : fd_err[0]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005311 channel_set_job(channel, job, options);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005312 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005313
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005314 /* success! */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005315 return;
5316
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005317failed:
Bram Moolenaarde279892016-03-11 22:19:44 +01005318 channel_unref(channel);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005319 if (fd_in[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005320 close(fd_in[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005321 if (fd_in[1] >= 0)
5322 close(fd_in[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005323 if (fd_out[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005324 close(fd_out[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005325 if (fd_out[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005326 close(fd_out[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005327 if (fd_err[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005328 close(fd_err[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005329 if (fd_err[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005330 close(fd_err[1]);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005331}
5332
5333 char *
5334mch_job_status(job_T *job)
5335{
5336# ifdef HAVE_UNION_WAIT
5337 union wait status;
5338# else
5339 int status = -1;
5340# endif
5341 pid_t wait_pid = 0;
5342
5343# ifdef __NeXT__
5344 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0);
5345# else
5346 wait_pid = waitpid(job->jv_pid, &status, WNOHANG);
5347# endif
5348 if (wait_pid == -1)
5349 {
5350 /* process must have exited */
5351 job->jv_status = JOB_ENDED;
5352 return "dead";
5353 }
5354 if (wait_pid == 0)
5355 return "run";
5356 if (WIFEXITED(status))
5357 {
5358 /* LINTED avoid "bitwise operation on signed value" */
5359 job->jv_exitval = WEXITSTATUS(status);
5360 job->jv_status = JOB_ENDED;
5361 return "dead";
5362 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005363 if (WIFSIGNALED(status))
5364 {
5365 job->jv_exitval = -1;
5366 job->jv_status = JOB_ENDED;
5367 return "dead";
5368 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01005369 return "run";
5370}
5371
5372 int
5373mch_stop_job(job_T *job, char_u *how)
5374{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005375 int sig = -1;
5376 pid_t job_pid;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005377
Bram Moolenaar923d9262016-02-25 20:56:01 +01005378 if (*how == NUL || STRCMP(how, "term") == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005379 sig = SIGTERM;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005380 else if (STRCMP(how, "hup") == 0)
5381 sig = SIGHUP;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005382 else if (STRCMP(how, "quit") == 0)
5383 sig = SIGQUIT;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005384 else if (STRCMP(how, "int") == 0)
5385 sig = SIGINT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005386 else if (STRCMP(how, "kill") == 0)
5387 sig = SIGKILL;
5388 else if (isdigit(*how))
5389 sig = atoi((char *)how);
5390 else
5391 return FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005392
Bram Moolenaar72801402016-02-09 11:37:50 +01005393 /* TODO: have an option to only kill the process, not the group? */
Bram Moolenaar76467df2016-02-12 19:30:26 +01005394 job_pid = job->jv_pid;
5395 if (job_pid == getpgid(job_pid))
5396 job_pid = -job_pid;
5397
5398 kill(job_pid, sig);
5399
Bram Moolenaar835dc632016-02-07 14:27:38 +01005400 return OK;
5401}
Bram Moolenaar76467df2016-02-12 19:30:26 +01005402
5403/*
5404 * Clear the data related to "job".
5405 */
5406 void
5407mch_clear_job(job_T *job)
5408{
5409 /* call waitpid because child process may become zombie */
5410# ifdef __NeXT__
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005411 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005412# else
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005413 (void)waitpid(job->jv_pid, NULL, WNOHANG);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005414# endif
5415}
Bram Moolenaar835dc632016-02-07 14:27:38 +01005416#endif
5417
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418/*
5419 * Check for CTRL-C typed by reading all available characters.
5420 * In cooked mode we should get SIGINT, no need to check.
5421 */
5422 void
Bram Moolenaar05540972016-01-30 20:31:25 +01005423mch_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005424{
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005425 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005426 fill_input_buf(FALSE);
5427}
5428
5429/*
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005430 * Wait "msec" msec until a character is available from the mouse, keyboard,
5431 * from inbuf[].
5432 * "msec" == -1 will block forever.
5433 * Invokes timer callbacks when needed.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005434 * "interrupted" (if not NULL) is set to TRUE when no character is available
5435 * but something else needs to be done.
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005436 * Returns TRUE when a character is available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005437 * When a GUI is being used, this will never get called -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438 */
5439 static int
Bram Moolenaarcda77642016-06-04 13:32:35 +02005440WaitForChar(long msec, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005441{
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005442#ifdef FEAT_TIMERS
5443 long due_time;
5444 long remaining = msec;
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005445 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005446
5447 /* When waiting very briefly don't trigger timers. */
5448 if (msec >= 0 && msec < 10L)
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005449 return WaitForCharOrMouse(msec, NULL);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005450
5451 while (msec < 0 || remaining > 0)
5452 {
5453 /* Trigger timers and then get the time in msec until the next one is
5454 * due. Wait up to that time. */
5455 due_time = check_due_timer();
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005456 if (typebuf.tb_change_cnt != tb_change_cnt)
5457 {
5458 /* timer may have used feedkeys() */
5459 return FALSE;
5460 }
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005461 if (due_time <= 0 || (msec > 0 && due_time > remaining))
5462 due_time = remaining;
Bram Moolenaarcda77642016-06-04 13:32:35 +02005463 if (WaitForCharOrMouse(due_time, interrupted))
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005464 return TRUE;
Bram Moolenaarcda77642016-06-04 13:32:35 +02005465 if (interrupted != NULL && *interrupted)
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005466 /* Nothing available, but need to return so that side effects get
5467 * handled, such as handling a message on a channel. */
5468 return FALSE;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005469 if (msec > 0)
5470 remaining -= due_time;
5471 }
5472 return FALSE;
5473#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005474 return WaitForCharOrMouse(msec, interrupted);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005475#endif
5476}
5477
5478/*
5479 * Wait "msec" msec until a character is available from the mouse or keyboard
5480 * or from inbuf[].
5481 * "msec" == -1 will block forever.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005482 * "interrupted" (if not NULL) is set to TRUE when no character is available
5483 * but something else needs to be done.
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005484 * When a GUI is being used, this will never get called -- webb
5485 */
5486 static int
Bram Moolenaarcda77642016-06-04 13:32:35 +02005487WaitForCharOrMouse(long msec, int *interrupted)
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005488{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489#ifdef FEAT_MOUSE_GPM
5490 int gpm_process_wanted;
5491#endif
5492#ifdef FEAT_XCLIPBOARD
5493 int rest;
5494#endif
5495 int avail;
5496
5497 if (input_available()) /* something in inbuf[] */
5498 return 1;
5499
5500#if defined(FEAT_MOUSE_DEC)
5501 /* May need to query the mouse position. */
5502 if (WantQueryMouse)
5503 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005504 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
5506 }
5507#endif
5508
5509 /*
5510 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
5511 * events. This is a bit complicated, because they might both be defined.
5512 */
5513#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
5514# ifdef FEAT_XCLIPBOARD
5515 rest = 0;
5516 if (do_xterm_trace())
5517 rest = msec;
5518# endif
5519 do
5520 {
5521# ifdef FEAT_XCLIPBOARD
5522 if (rest != 0)
5523 {
5524 msec = XT_TRACE_DELAY;
5525 if (rest >= 0 && rest < XT_TRACE_DELAY)
5526 msec = rest;
5527 if (rest >= 0)
5528 rest -= msec;
5529 }
5530# endif
5531# ifdef FEAT_MOUSE_GPM
5532 gpm_process_wanted = 0;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005533 avail = RealWaitForChar(read_cmd_fd, msec,
Bram Moolenaarcda77642016-06-04 13:32:35 +02005534 &gpm_process_wanted, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005535# else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005536 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537# endif
5538 if (!avail)
5539 {
5540 if (input_available())
5541 return 1;
5542# ifdef FEAT_XCLIPBOARD
5543 if (rest == 0 || !do_xterm_trace())
5544# endif
5545 break;
5546 }
5547 }
5548 while (FALSE
5549# ifdef FEAT_MOUSE_GPM
5550 || (gpm_process_wanted && mch_gpm_process() == 0)
5551# endif
5552# ifdef FEAT_XCLIPBOARD
5553 || (!avail && rest != 0)
5554# endif
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005555 )
5556 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005557
5558#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005559 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560#endif
5561 return avail;
5562}
5563
Bram Moolenaar4ffa0702013-12-11 17:12:37 +01005564#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565/*
5566 * Wait "msec" msec until a character is available from file descriptor "fd".
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005567 * "msec" == 0 will check for characters once.
5568 * "msec" == -1 will block until a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 * When a GUI is being used, this will not be used for input -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005570 * Or when a Linux GPM mouse event is waiting.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02005571 * Or when a clientserver message is on the queue.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005572 * "interrupted" (if not NULL) is set to TRUE when no character is available
5573 * but something else needs to be done.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005574 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575#if defined(__BEOS__)
5576 int
5577#else
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005578 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005580RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005581{
5582 int ret;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005583 int result;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005584#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 static int busy = FALSE;
5586
5587 /* May retry getting characters after an event was handled. */
5588# define MAY_LOOP
5589
5590# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
5591 /* Remember at what time we started, so that we know how much longer we
5592 * should wait after being interrupted. */
5593# define USE_START_TV
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005594 long start_msec = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005595 struct timeval start_tv;
5596
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005597 if (msec > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005598 gettimeofday(&start_tv, NULL);
5599# endif
5600
5601 /* Handle being called recursively. This may happen for the session
5602 * manager stuff, it may save the file, which does a breakcheck. */
5603 if (busy)
5604 return 0;
5605#endif
5606
5607#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005608 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609#endif
5610 {
5611#ifdef MAY_LOOP
5612 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005613# ifdef FEAT_MZSCHEME
5614 int mzquantum_used = FALSE;
5615# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005616#endif
5617#ifndef HAVE_SELECT
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005618 /* each channel may use in, out and err */
5619 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 int nfd;
5621# ifdef FEAT_XCLIPBOARD
5622 int xterm_idx = -1;
5623# endif
5624# ifdef FEAT_MOUSE_GPM
5625 int gpm_idx = -1;
5626# endif
5627# ifdef USE_XSMP
5628 int xsmp_idx = -1;
5629# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005630 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005631
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005632# ifdef FEAT_MZSCHEME
5633 mzvim_check_threads();
5634 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
5635 {
5636 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
5637 mzquantum_used = TRUE;
5638 }
5639# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 fds[0].fd = fd;
5641 fds[0].events = POLLIN;
5642 nfd = 1;
5643
Bram Moolenaar071d4272004-06-13 20:20:40 +00005644# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01005645 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005646 if (xterm_Shell != (Widget)0)
5647 {
5648 xterm_idx = nfd;
5649 fds[nfd].fd = ConnectionNumber(xterm_dpy);
5650 fds[nfd].events = POLLIN;
5651 nfd++;
5652 }
5653# endif
5654# ifdef FEAT_MOUSE_GPM
5655 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
5656 {
5657 gpm_idx = nfd;
5658 fds[nfd].fd = gpm_fd;
5659 fds[nfd].events = POLLIN;
5660 nfd++;
5661 }
5662# endif
5663# ifdef USE_XSMP
5664 if (xsmp_icefd != -1)
5665 {
5666 xsmp_idx = nfd;
5667 fds[nfd].fd = xsmp_icefd;
5668 fds[nfd].events = POLLIN;
5669 nfd++;
5670 }
5671# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005672#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01005673 nfd = channel_poll_setup(nfd, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005674#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005675 if (interrupted != NULL)
5676 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005678 ret = poll(fds, nfd, towait);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005679
5680 result = ret > 0 && (fds[0].revents & POLLIN);
Bram Moolenaarcda77642016-06-04 13:32:35 +02005681 if (result == 0 && interrupted != NULL && ret > 0)
5682 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005683
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005684# ifdef FEAT_MZSCHEME
5685 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005686 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005687 finished = FALSE;
5688# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005689
Bram Moolenaar071d4272004-06-13 20:20:40 +00005690# ifdef FEAT_XCLIPBOARD
5691 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
5692 {
5693 xterm_update(); /* Maybe we should hand out clipboard */
5694 if (--ret == 0 && !input_available())
5695 /* Try again */
5696 finished = FALSE;
5697 }
5698# endif
5699# ifdef FEAT_MOUSE_GPM
5700 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
5701 {
5702 *check_for_gpm = 1;
5703 }
5704# endif
5705# ifdef USE_XSMP
5706 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
5707 {
5708 if (fds[xsmp_idx].revents & POLLIN)
5709 {
5710 busy = TRUE;
5711 xsmp_handle_requests();
5712 busy = FALSE;
5713 }
5714 else if (fds[xsmp_idx].revents & POLLHUP)
5715 {
5716 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005717 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005718 xsmp_close();
5719 }
5720 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005721 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722 }
5723# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005724#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01005725 if (ret > 0)
5726 ret = channel_poll_check(ret, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005727#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005728
Bram Moolenaar071d4272004-06-13 20:20:40 +00005729#else /* HAVE_SELECT */
5730
5731 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005732 struct timeval *tvp;
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005733 fd_set rfds, wfds, efds;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005735 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005737# ifdef FEAT_MZSCHEME
5738 mzvim_check_threads();
5739 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
5740 {
5741 towait = p_mzq; /* don't wait longer than 'mzquantum' */
5742 mzquantum_used = TRUE;
5743 }
5744# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005745# ifdef __EMX__
5746 /* don't check for incoming chars if not in raw mode, because select()
5747 * always returns TRUE then (in some version of emx.dll) */
5748 if (curr_tmode != TMODE_RAW)
5749 return 0;
5750# endif
5751
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005752 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005754 tv.tv_sec = towait / 1000;
5755 tv.tv_usec = (towait % 1000) * (1000000/1000);
5756 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005757 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005758 else
5759 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005760
5761 /*
5762 * Select on ready for reading and exceptional condition (end of file).
5763 */
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005764select_eintr:
5765 FD_ZERO(&rfds);
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005766 FD_ZERO(&wfds);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 FD_ZERO(&efds);
5768 FD_SET(fd, &rfds);
5769# if !defined(__QNX__) && !defined(__CYGWIN32__)
5770 /* For QNX select() always returns 1 if this is set. Why? */
5771 FD_SET(fd, &efds);
5772# endif
5773 maxfd = fd;
5774
Bram Moolenaar071d4272004-06-13 20:20:40 +00005775# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01005776 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 if (xterm_Shell != (Widget)0)
5778 {
5779 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
5780 if (maxfd < ConnectionNumber(xterm_dpy))
5781 maxfd = ConnectionNumber(xterm_dpy);
Bram Moolenaardd82d692012-08-15 17:26:57 +02005782
5783 /* An event may have already been read but not handled. In
5784 * particulary, XFlush may cause this. */
5785 xterm_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005786 }
5787# endif
5788# ifdef FEAT_MOUSE_GPM
5789 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
5790 {
5791 FD_SET(gpm_fd, &rfds);
5792 FD_SET(gpm_fd, &efds);
5793 if (maxfd < gpm_fd)
5794 maxfd = gpm_fd;
5795 }
5796# endif
5797# ifdef USE_XSMP
5798 if (xsmp_icefd != -1)
5799 {
5800 FD_SET(xsmp_icefd, &rfds);
5801 FD_SET(xsmp_icefd, &efds);
5802 if (maxfd < xsmp_icefd)
5803 maxfd = xsmp_icefd;
5804 }
5805# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005806# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005807 maxfd = channel_select_setup(maxfd, &rfds, &wfds);
Bram Moolenaardd82d692012-08-15 17:26:57 +02005808# endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005809 if (interrupted != NULL)
5810 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005812 ret = select(maxfd + 1, &rfds, &wfds, &efds, tvp);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005813 result = ret > 0 && FD_ISSET(fd, &rfds);
5814 if (result)
5815 --ret;
Bram Moolenaarcda77642016-06-04 13:32:35 +02005816 else if (interrupted != NULL && ret > 0)
5817 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005818
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005819# ifdef EINTR
5820 if (ret == -1 && errno == EINTR)
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02005821 {
5822 /* Check whether window has been resized, EINTR may be caused by
5823 * SIGWINCH. */
5824 if (do_resize)
5825 handle_resize();
5826
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005827 /* Interrupted by a signal, need to try again. We ignore msec
5828 * here, because we do want to check even after a timeout if
5829 * characters are available. Needed for reading output of an
5830 * external command after the process has finished. */
5831 goto select_eintr;
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02005832 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005833# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00005834# ifdef __TANDEM
5835 if (ret == -1 && errno == ENOTSUP)
5836 {
5837 FD_ZERO(&rfds);
5838 FD_ZERO(&efds);
5839 ret = 0;
5840 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005841# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005842# ifdef FEAT_MZSCHEME
5843 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005844 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005845 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846# endif
5847
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848# ifdef FEAT_XCLIPBOARD
5849 if (ret > 0 && xterm_Shell != (Widget)0
5850 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
5851 {
5852 xterm_update(); /* Maybe we should hand out clipboard */
5853 /* continue looping when we only got the X event and the input
5854 * buffer is empty */
5855 if (--ret == 0 && !input_available())
5856 {
5857 /* Try again */
5858 finished = FALSE;
5859 }
5860 }
5861# endif
5862# ifdef FEAT_MOUSE_GPM
5863 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
5864 {
5865 if (FD_ISSET(gpm_fd, &efds))
5866 gpm_close();
5867 else if (FD_ISSET(gpm_fd, &rfds))
5868 *check_for_gpm = 1;
5869 }
5870# endif
5871# ifdef USE_XSMP
5872 if (ret > 0 && xsmp_icefd != -1)
5873 {
5874 if (FD_ISSET(xsmp_icefd, &efds))
5875 {
5876 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005877 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005878 xsmp_close();
5879 if (--ret == 0)
5880 finished = FALSE; /* keep going if event was only one */
5881 }
5882 else if (FD_ISSET(xsmp_icefd, &rfds))
5883 {
5884 busy = TRUE;
5885 xsmp_handle_requests();
5886 busy = FALSE;
5887 if (--ret == 0)
5888 finished = FALSE; /* keep going if event was only one */
5889 }
5890 }
5891# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005892#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01005893 if (ret > 0)
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005894 ret = channel_select_check(ret, &rfds, &wfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005895#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896
5897#endif /* HAVE_SELECT */
5898
5899#ifdef MAY_LOOP
5900 if (finished || msec == 0)
5901 break;
5902
Bram Moolenaar93c88e02015-09-15 14:12:05 +02005903# ifdef FEAT_CLIENTSERVER
5904 if (server_waiting())
5905 break;
5906# endif
5907
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 /* We're going to loop around again, find out for how long */
5909 if (msec > 0)
5910 {
5911# ifdef USE_START_TV
Bram Moolenaar071d4272004-06-13 20:20:40 +00005912 /* Compute remaining wait time. */
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005913 msec = start_msec - elapsed(&start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914# else
5915 /* Guess we got interrupted halfway. */
5916 msec = msec / 2;
5917# endif
5918 if (msec <= 0)
5919 break; /* waited long enough */
5920 }
5921#endif
5922 }
5923
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005924 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925}
5926
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928/*
Bram Moolenaar02743632005-07-25 20:42:36 +00005929 * Expand a path into all matching files and/or directories. Handles "*",
5930 * "?", "[a-z]", "**", etc.
5931 * "path" has backslashes before chars that are not to be expanded.
5932 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 */
5934 int
Bram Moolenaar05540972016-01-30 20:31:25 +01005935mch_expandpath(
5936 garray_T *gap,
5937 char_u *path,
5938 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005939{
Bram Moolenaar02743632005-07-25 20:42:36 +00005940 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941}
5942#endif
5943
5944/*
5945 * mch_expand_wildcards() - this code does wild-card pattern matching using
5946 * the shell
5947 *
5948 * return OK for success, FAIL for error (you may lose some memory) and put
5949 * an error message in *file.
5950 *
5951 * num_pat is number of input patterns
5952 * pat is array of pointers to input patterns
5953 * num_file is pointer to number of matched file names
5954 * file is pointer to array of pointers to matched file names
5955 */
5956
5957#ifndef SEEK_SET
5958# define SEEK_SET 0
5959#endif
5960#ifndef SEEK_END
5961# define SEEK_END 2
5962#endif
5963
Bram Moolenaar5555acc2006-04-07 21:33:12 +00005964#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00005965
Bram Moolenaar071d4272004-06-13 20:20:40 +00005966 int
Bram Moolenaar05540972016-01-30 20:31:25 +01005967mch_expand_wildcards(
5968 int num_pat,
5969 char_u **pat,
5970 int *num_file,
5971 char_u ***file,
5972 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005973{
5974 int i;
5975 size_t len;
5976 char_u *p;
5977 int dir;
5978#ifdef __EMX__
Bram Moolenaarc7247912008-01-13 12:54:11 +00005979 /*
5980 * This is the OS/2 implementation.
5981 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005982# define EXPL_ALLOC_INC 16
5983 char_u **expl_files;
5984 size_t files_alloced, files_free;
5985 char_u *buf;
5986 int has_wildcard;
5987
5988 *num_file = 0; /* default: no files found */
5989 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5990 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5991 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5992 if (*file == NULL)
5993 return FAIL;
5994
5995 for (; num_pat > 0; num_pat--, pat++)
5996 {
5997 expl_files = NULL;
5998 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5999 /* expand environment var or home dir */
6000 buf = expand_env_save(*pat);
6001 else
6002 buf = vim_strsave(*pat);
6003 expl_files = NULL;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006004 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005 if (has_wildcard) /* yes, so expand them */
6006 expl_files = (char_u **)_fnexplode(buf);
6007
6008 /*
6009 * return value of buf if no wildcards left,
6010 * OR if no match AND EW_NOTFOUND is set.
6011 */
6012 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
6013 || (expl_files == NULL && (flags & EW_NOTFOUND)))
6014 { /* simply save the current contents of *buf */
6015 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
6016 if (expl_files != NULL)
6017 {
6018 expl_files[0] = vim_strsave(buf);
6019 expl_files[1] = NULL;
6020 }
6021 }
6022 vim_free(buf);
6023
6024 /*
6025 * Count number of names resulting from expansion,
6026 * At the same time add a backslash to the end of names that happen to
6027 * be directories, and replace slashes with backslashes.
6028 */
6029 if (expl_files)
6030 {
6031 for (i = 0; (p = expl_files[i]) != NULL; i++)
6032 {
6033 dir = mch_isdir(p);
6034 /* If we don't want dirs and this is one, skip it */
6035 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6036 continue;
6037
Bram Moolenaara2031822006-03-07 22:29:51 +00006038 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006039 if (!dir && (flags & EW_EXEC)
6040 && !mch_can_exe(p, NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006041 continue;
6042
Bram Moolenaar071d4272004-06-13 20:20:40 +00006043 if (--files_free == 0)
6044 {
6045 /* need more room in table of pointers */
6046 files_alloced += EXPL_ALLOC_INC;
6047 *file = (char_u **)vim_realloc(*file,
6048 sizeof(char_u **) * files_alloced);
6049 if (*file == NULL)
6050 {
6051 EMSG(_(e_outofmem));
6052 *num_file = 0;
6053 return FAIL;
6054 }
6055 files_free = EXPL_ALLOC_INC;
6056 }
6057 slash_adjust(p);
6058 if (dir)
6059 {
6060 /* For a directory we add a '/', unless it's already
6061 * there. */
6062 len = STRLEN(p);
6063 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
6064 {
6065 STRCPY((*file)[*num_file], p);
Bram Moolenaar654b5b52006-06-22 17:47:10 +00006066 if (!after_pathsep((*file)[*num_file],
6067 (*file)[*num_file] + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 {
6069 (*file)[*num_file][len] = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006070 (*file)[*num_file][len + 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006071 }
6072 }
6073 }
6074 else
6075 {
6076 (*file)[*num_file] = vim_strsave(p);
6077 }
6078
6079 /*
6080 * Error message already given by either alloc or vim_strsave.
6081 * Should return FAIL, but returning OK works also.
6082 */
6083 if ((*file)[*num_file] == NULL)
6084 break;
6085 (*num_file)++;
6086 }
6087 _fnexplodefree((char **)expl_files);
6088 }
6089 }
6090 return OK;
6091
6092#else /* __EMX__ */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006093 /*
6094 * This is the non-OS/2 implementation (really Unix).
6095 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006096 int j;
6097 char_u *tempname;
6098 char_u *command;
6099 FILE *fd;
6100 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006101#define STYLE_ECHO 0 /* use "echo", the default */
6102#define STYLE_GLOB 1 /* use "glob", for csh */
6103#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
6104#define STYLE_PRINT 3 /* use "print -N", for zsh */
6105#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
6106 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107 int shell_style = STYLE_ECHO;
6108 int check_spaces;
6109 static int did_find_nul = FALSE;
6110 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006111 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006112 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006113
6114 *num_file = 0; /* default: no files found */
6115 *file = NULL;
6116
6117 /*
6118 * If there are no wildcards, just copy the names to allocated memory.
6119 * Saves a lot of time, because we don't have to start a new shell.
6120 */
6121 if (!have_wildcard(num_pat, pat))
6122 return save_patterns(num_pat, pat, num_file, file);
6123
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006124# ifdef HAVE_SANDBOX
6125 /* Don't allow any shell command in the sandbox. */
6126 if (sandbox != 0 && check_secure())
6127 return FAIL;
6128# endif
6129
Bram Moolenaar071d4272004-06-13 20:20:40 +00006130 /*
6131 * Don't allow the use of backticks in secure and restricted mode.
6132 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006133 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006134 for (i = 0; i < num_pat; ++i)
6135 if (vim_strchr(pat[i], '`') != NULL
6136 && (check_restricted() || check_secure()))
6137 return FAIL;
6138
6139 /*
6140 * get a name for the temp file
6141 */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02006142 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143 {
6144 EMSG(_(e_notmp));
6145 return FAIL;
6146 }
6147
6148 /*
6149 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00006150 * file.
6151 * STYLE_BT: NL separated
6152 * If expanding `cmd` execute it directly.
6153 * STYLE_GLOB: NUL separated
6154 * If we use *csh, "glob" will work better than "echo".
6155 * STYLE_PRINT: NL or NUL separated
6156 * If we use *zsh, "print -N" will work better than "glob".
6157 * STYLE_VIMGLOB: NL separated
6158 * If we use *sh*, we define "vimglob()".
6159 * STYLE_ECHO: space separated.
6160 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006161 */
6162 if (num_pat == 1 && *pat[0] == '`'
6163 && (len = STRLEN(pat[0])) > 2
6164 && *(pat[0] + len - 1) == '`')
6165 shell_style = STYLE_BT;
6166 else if ((len = STRLEN(p_sh)) >= 3)
6167 {
6168 if (STRCMP(p_sh + len - 3, "csh") == 0)
6169 shell_style = STYLE_GLOB;
6170 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
6171 shell_style = STYLE_PRINT;
6172 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006173 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
6174 "sh") != NULL)
6175 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006176
Bram Moolenaarc7247912008-01-13 12:54:11 +00006177 /* Compute the length of the command. We need 2 extra bytes: for the
6178 * optional '&' and for the NUL.
6179 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006180 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006181 if (shell_style == STYLE_VIMGLOB)
6182 len += STRLEN(sh_vimglob_func);
6183
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006184 for (i = 0; i < num_pat; ++i)
6185 {
6186 /* Count the length of the patterns in the same way as they are put in
6187 * "command" below. */
6188#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00006189 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006190#else
6191 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006192 for (j = 0; pat[i][j] != NUL; ++j)
6193 {
6194 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
6195 ++len; /* may add a backslash */
6196 ++len;
6197 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006198#endif
6199 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006200 command = alloc(len);
6201 if (command == NULL)
6202 {
6203 /* out of memory */
6204 vim_free(tempname);
6205 return FAIL;
6206 }
6207
6208 /*
6209 * Build the shell command:
6210 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
6211 * recognizes this).
6212 * - Add the shell command to print the expanded names.
6213 * - Add the temp file name.
6214 * - Add the file name patterns.
6215 */
6216 if (shell_style == STYLE_BT)
6217 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00006218 /* change `command; command& ` to (command; command ) */
6219 STRCPY(command, "(");
6220 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006221 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006222 *p-- = ')'; /* remove last backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006223 while (p > command && vim_iswhite(*p))
6224 --p;
6225 if (*p == '&') /* remove trailing '&' */
6226 {
6227 ampersent = TRUE;
6228 *p = ' ';
6229 }
6230 STRCAT(command, ">");
6231 }
6232 else
6233 {
6234 if (flags & EW_NOTFOUND)
6235 STRCPY(command, "set nonomatch; ");
6236 else
6237 STRCPY(command, "unset nonomatch; ");
6238 if (shell_style == STYLE_GLOB)
6239 STRCAT(command, "glob >");
6240 else if (shell_style == STYLE_PRINT)
6241 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00006242 else if (shell_style == STYLE_VIMGLOB)
6243 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244 else
6245 STRCAT(command, "echo >");
6246 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006247
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00006249
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250 if (shell_style != STYLE_BT)
6251 for (i = 0; i < num_pat; ++i)
6252 {
6253 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00006254 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006255 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006256#ifdef USE_SYSTEM
6257 STRCAT(command, " \"");
6258 STRCAT(command, pat[i]);
6259 STRCAT(command, "\"");
6260#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00006261 int intick = FALSE;
6262
Bram Moolenaar071d4272004-06-13 20:20:40 +00006263 p = command + STRLEN(command);
6264 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00006265 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00006266 {
6267 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00006268 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006269 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
6270 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006271 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00006272 * backslash inside backticks, before a special character
6273 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006274 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00006275 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
6276 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006277 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006278 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006279 }
Bram Moolenaare4df1642014-08-29 12:58:44 +02006280 else if (!intick
6281 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$')
6282 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00006283 /* Put a backslash before a special character, but not
Bram Moolenaare4df1642014-08-29 12:58:44 +02006284 * when inside ``. And not for $var when EW_KEEPDOLLAR is
6285 * set. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006286 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006287
6288 /* Copy one character. */
6289 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00006290 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006291 *p = NUL;
6292#endif
6293 }
6294 if (flags & EW_SILENT)
6295 show_shell_mess = FALSE;
6296 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00006297 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006298
6299 /*
6300 * Using zsh -G: If a pattern has no matches, it is just deleted from
6301 * the argument list, otherwise zsh gives an error message and doesn't
6302 * expand any other pattern.
6303 */
6304 if (shell_style == STYLE_PRINT)
6305 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
6306
6307 /*
6308 * If we use -f then shell variables set in .cshrc won't get expanded.
6309 * vi can do it, so we will too, but it is only necessary if there is a "$"
6310 * in one of the patterns, otherwise we can still use the fast option.
6311 */
6312 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
6313 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
6314
6315 /*
6316 * execute the shell command
6317 */
6318 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6319
6320 /* When running in the background, give it some time to create the temp
6321 * file, but don't wait for it to finish. */
6322 if (ampersent)
6323 mch_delay(10L, TRUE);
6324
6325 extra_shell_arg = NULL; /* cleanup */
6326 show_shell_mess = TRUE;
6327 vim_free(command);
6328
Bram Moolenaarc7247912008-01-13 12:54:11 +00006329 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006330 {
6331 mch_remove(tempname);
6332 vim_free(tempname);
6333 /*
6334 * With interactive completion, the error message is not printed.
6335 * However with USE_SYSTEM, I don't know how to turn off error messages
6336 * from the shell, so screen may still get messed up -- webb.
6337 */
6338#ifndef USE_SYSTEM
6339 if (!(flags & EW_SILENT))
6340#endif
6341 {
6342 redraw_later_clear(); /* probably messed up screen */
6343 msg_putchar('\n'); /* clear bottom line quickly */
6344 cmdline_row = Rows - 1; /* continue on last line */
6345#ifdef USE_SYSTEM
6346 if (!(flags & EW_SILENT))
6347#endif
6348 {
6349 MSG(_(e_wildexpand));
6350 msg_start(); /* don't overwrite this message */
6351 }
6352 }
6353 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
6354 * EW_NOTFOUND is given */
6355 if (shell_style == STYLE_BT)
6356 return FAIL;
6357 goto notfound;
6358 }
6359
6360 /*
6361 * read the names from the file into memory
6362 */
6363 fd = fopen((char *)tempname, READBIN);
6364 if (fd == NULL)
6365 {
6366 /* Something went wrong, perhaps a file name with a special char. */
6367 if (!(flags & EW_SILENT))
6368 {
6369 MSG(_(e_wildexpand));
6370 msg_start(); /* don't overwrite this message */
6371 }
6372 vim_free(tempname);
6373 goto notfound;
6374 }
6375 fseek(fd, 0L, SEEK_END);
6376 len = ftell(fd); /* get size of temp file */
6377 fseek(fd, 0L, SEEK_SET);
6378 buffer = alloc(len + 1);
6379 if (buffer == NULL)
6380 {
6381 /* out of memory */
6382 mch_remove(tempname);
6383 vim_free(tempname);
6384 fclose(fd);
6385 return FAIL;
6386 }
6387 i = fread((char *)buffer, 1, len, fd);
6388 fclose(fd);
6389 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00006390 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391 {
6392 /* unexpected read error */
6393 EMSG2(_(e_notread), tempname);
6394 vim_free(tempname);
6395 vim_free(buffer);
6396 return FAIL;
6397 }
6398 vim_free(tempname);
6399
Bram Moolenaarc7247912008-01-13 12:54:11 +00006400# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
6402 p = buffer;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02006403 for (i = 0; i < (int)len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006404 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
6405 *p++ = buffer[i];
6406 len = p - buffer;
6407# endif
6408
6409
6410 /* file names are separated with Space */
6411 if (shell_style == STYLE_ECHO)
6412 {
6413 buffer[len] = '\n'; /* make sure the buffer ends in NL */
6414 p = buffer;
6415 for (i = 0; *p != '\n'; ++i) /* count number of entries */
6416 {
6417 while (*p != ' ' && *p != '\n')
6418 ++p;
6419 p = skipwhite(p); /* skip to next entry */
6420 }
6421 }
6422 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006423 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006424 {
6425 buffer[len] = NUL; /* make sure the buffer ends in NUL */
6426 p = buffer;
6427 for (i = 0; *p != NUL; ++i) /* count number of entries */
6428 {
6429 while (*p != '\n' && *p != NUL)
6430 ++p;
6431 if (*p != NUL)
6432 ++p;
6433 p = skipwhite(p); /* skip leading white space */
6434 }
6435 }
6436 /* file names are separated with NUL */
6437 else
6438 {
6439 /*
6440 * Some versions of zsh use spaces instead of NULs to separate
6441 * results. Only do this when there is no NUL before the end of the
6442 * buffer, otherwise we would never be able to use file names with
6443 * embedded spaces when zsh does use NULs.
6444 * When we found a NUL once, we know zsh is OK, set did_find_nul and
6445 * don't check for spaces again.
6446 */
6447 check_spaces = FALSE;
6448 if (shell_style == STYLE_PRINT && !did_find_nul)
6449 {
6450 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02006451 buffer[len] = NUL;
Bram Moolenaarb011af92013-12-11 13:21:51 +01006452 if (len && (int)STRLEN(buffer) < (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006453 did_find_nul = TRUE;
6454 else
6455 check_spaces = TRUE;
6456 }
6457
6458 /*
6459 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
6460 * already is one, for STYLE_GLOB it needs to be added.
6461 */
6462 if (len && buffer[len - 1] == NUL)
6463 --len;
6464 else
6465 buffer[len] = NUL;
6466 i = 0;
6467 for (p = buffer; p < buffer + len; ++p)
6468 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
6469 {
6470 ++i;
6471 *p = NUL;
6472 }
6473 if (len)
6474 ++i; /* count last entry */
6475 }
6476 if (i == 0)
6477 {
6478 /*
6479 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
6480 * /bin/sh will happily expand it to nothing rather than returning an
6481 * error; and hey, it's good to check anyway -- webb.
6482 */
6483 vim_free(buffer);
6484 goto notfound;
6485 }
6486 *num_file = i;
6487 *file = (char_u **)alloc(sizeof(char_u *) * i);
6488 if (*file == NULL)
6489 {
6490 /* out of memory */
6491 vim_free(buffer);
6492 return FAIL;
6493 }
6494
6495 /*
6496 * Isolate the individual file names.
6497 */
6498 p = buffer;
6499 for (i = 0; i < *num_file; ++i)
6500 {
6501 (*file)[i] = p;
6502 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006503 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
6504 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006505 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00006506 while (!(shell_style == STYLE_ECHO && *p == ' ')
6507 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006508 ++p;
6509 if (p == buffer + len) /* last entry */
6510 *p = NUL;
6511 else
6512 {
6513 *p++ = NUL;
6514 p = skipwhite(p); /* skip to next entry */
6515 }
6516 }
6517 else /* NUL separates */
6518 {
6519 while (*p && p < buffer + len) /* skip entry */
6520 ++p;
6521 ++p; /* skip NUL */
6522 }
6523 }
6524
6525 /*
6526 * Move the file names to allocated memory.
6527 */
6528 for (j = 0, i = 0; i < *num_file; ++i)
6529 {
6530 /* Require the files to exist. Helps when using /bin/sh */
6531 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6532 continue;
6533
6534 /* check if this entry should be included */
6535 dir = (mch_isdir((*file)[i]));
6536 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6537 continue;
6538
Bram Moolenaara2031822006-03-07 22:29:51 +00006539 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006540 if (!dir && (flags & EW_EXEC)
6541 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006542 continue;
6543
Bram Moolenaar071d4272004-06-13 20:20:40 +00006544 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
6545 if (p)
6546 {
6547 STRCPY(p, (*file)[i]);
6548 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00006549 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006550 (*file)[j++] = p;
6551 }
6552 }
6553 vim_free(buffer);
6554 *num_file = j;
6555
6556 if (*num_file == 0) /* rejected all entries */
6557 {
6558 vim_free(*file);
6559 *file = NULL;
6560 goto notfound;
6561 }
6562
6563 return OK;
6564
6565notfound:
6566 if (flags & EW_NOTFOUND)
6567 return save_patterns(num_pat, pat, num_file, file);
6568 return FAIL;
6569
6570#endif /* __EMX__ */
6571}
6572
6573#endif /* VMS */
6574
6575#ifndef __EMX__
6576 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006577save_patterns(
6578 int num_pat,
6579 char_u **pat,
6580 int *num_file,
6581 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006582{
6583 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006584 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006585
6586 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
6587 if (*file == NULL)
6588 return FAIL;
6589 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00006590 {
6591 s = vim_strsave(pat[i]);
6592 if (s != NULL)
6593 /* Be compatible with expand_filename(): halve the number of
6594 * backslashes. */
6595 backslash_halve(s);
6596 (*file)[i] = s;
6597 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006598 *num_file = num_pat;
6599 return OK;
6600}
6601#endif
6602
Bram Moolenaar071d4272004-06-13 20:20:40 +00006603/*
6604 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
6605 * expand.
6606 */
6607 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006608mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006610 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006611 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006612 if (*p == '\\' && p[1] != NUL)
6613 ++p;
6614 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006615 if (vim_strchr((char_u *)
6616#ifdef VMS
6617 "*?%"
6618#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006619 "*?[{'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006620#endif
6621 , *p) != NULL)
6622 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006623 }
6624 return FALSE;
6625}
6626
6627/*
6628 * Return TRUE if the string "p" contains a wildcard.
6629 * Don't recognize '~' at the end as a wildcard.
6630 */
6631 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006632mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006633{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006634 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006635 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006636 if (*p == '\\' && p[1] != NUL)
6637 ++p;
6638 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006639 if (vim_strchr((char_u *)
6640#ifdef VMS
6641 "*?%$"
6642#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006643 "*?[{`'$"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006644#endif
6645 , *p) != NULL
6646 || (*p == '~' && p[1] != NUL))
6647 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006648 }
6649 return FALSE;
6650}
6651
6652#ifndef __EMX__
6653 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006654have_wildcard(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006655{
6656 int i;
6657
6658 for (i = 0; i < num; i++)
6659 if (mch_has_wildcard(file[i]))
6660 return 1;
6661 return 0;
6662}
6663
6664 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006665have_dollars(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006666{
6667 int i;
6668
6669 for (i = 0; i < num; i++)
6670 if (vim_strchr(file[i], '$') != NULL)
6671 return TRUE;
6672 return FALSE;
6673}
6674#endif /* ifndef __EMX__ */
6675
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006676#if !defined(HAVE_RENAME) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006677/*
6678 * Scaled-down version of rename(), which is missing in Xenix.
6679 * This version can only move regular files and will fail if the
6680 * destination exists.
6681 */
6682 int
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006683mch_rename(const char *src, const char *dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006684{
6685 struct stat st;
6686
6687 if (stat(dest, &st) >= 0) /* fail if destination exists */
6688 return -1;
6689 if (link(src, dest) != 0) /* link file to new name */
6690 return -1;
6691 if (mch_remove(src) == 0) /* delete link to old name */
6692 return 0;
6693 return -1;
6694}
6695#endif /* !HAVE_RENAME */
6696
6697#ifdef FEAT_MOUSE_GPM
6698/*
6699 * Initializes connection with gpm (if it isn't already opened)
6700 * Return 1 if succeeded (or connection already opened), 0 if failed
6701 */
6702 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006703gpm_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006704{
6705 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
6706
6707 if (!gpm_flag)
6708 {
6709 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
6710 gpm_connect.defaultMask = ~GPM_HARD;
6711 /* Default handling for mouse move*/
6712 gpm_connect.minMod = 0; /* Handle any modifier keys */
6713 gpm_connect.maxMod = 0xffff;
6714 if (Gpm_Open(&gpm_connect, 0) > 0)
6715 {
6716 /* gpm library tries to handling TSTP causes
6717 * problems. Anyways, we close connection to Gpm whenever
6718 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006719 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006721# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006722 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006723# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006724 return 1; /* succeed */
6725 }
6726 if (gpm_fd == -2)
6727 Gpm_Close(); /* We don't want to talk to xterm via gpm */
6728 return 0;
6729 }
6730 return 1; /* already open */
6731}
6732
6733/*
6734 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00006735 */
6736 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006737gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006738{
6739 if (gpm_flag && gpm_fd >= 0) /* if Open */
6740 Gpm_Close();
6741}
6742
6743/* Reads gpm event and adds special keys to input buf. Returns length of
6744 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02006745 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00006746 */
6747 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006748mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006749{
6750 int button;
6751 static Gpm_Event gpm_event;
6752 char_u string[6];
6753 int_u vim_modifiers;
6754 int row,col;
6755 unsigned char buttons_mask;
6756 unsigned char gpm_modifiers;
6757 static unsigned char old_buttons = 0;
6758
6759 Gpm_GetEvent(&gpm_event);
6760
6761#ifdef FEAT_GUI
6762 /* Don't put events in the input queue now. */
6763 if (hold_gui_events)
6764 return 0;
6765#endif
6766
6767 row = gpm_event.y - 1;
6768 col = gpm_event.x - 1;
6769
6770 string[0] = ESC; /* Our termcode */
6771 string[1] = 'M';
6772 string[2] = 'G';
6773 switch (GPM_BARE_EVENTS(gpm_event.type))
6774 {
6775 case GPM_DRAG:
6776 string[3] = MOUSE_DRAG;
6777 break;
6778 case GPM_DOWN:
6779 buttons_mask = gpm_event.buttons & ~old_buttons;
6780 old_buttons = gpm_event.buttons;
6781 switch (buttons_mask)
6782 {
6783 case GPM_B_LEFT:
6784 button = MOUSE_LEFT;
6785 break;
6786 case GPM_B_MIDDLE:
6787 button = MOUSE_MIDDLE;
6788 break;
6789 case GPM_B_RIGHT:
6790 button = MOUSE_RIGHT;
6791 break;
6792 default:
6793 return 0;
6794 /*Don't know what to do. Can more than one button be
6795 * reported in one event? */
6796 }
6797 string[3] = (char_u)(button | 0x20);
6798 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
6799 break;
6800 case GPM_UP:
6801 string[3] = MOUSE_RELEASE;
6802 old_buttons &= ~gpm_event.buttons;
6803 break;
6804 default:
6805 return 0;
6806 }
6807 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
6808 gpm_modifiers = gpm_event.modifiers;
6809 vim_modifiers = 0x0;
6810 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
6811 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
6812 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
6813 */
6814 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
6815 vim_modifiers |= MOUSE_SHIFT;
6816
6817 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
6818 vim_modifiers |= MOUSE_CTRL;
6819 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
6820 vim_modifiers |= MOUSE_ALT;
6821 string[3] |= vim_modifiers;
6822 string[4] = (char_u)(col + ' ' + 1);
6823 string[5] = (char_u)(row + ' ' + 1);
6824 add_to_input_buf(string, 6);
6825 return 6;
6826}
6827#endif /* FEAT_MOUSE_GPM */
6828
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006829#ifdef FEAT_SYSMOUSE
6830/*
6831 * Initialize connection with sysmouse.
6832 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6833 * output, any sysmouse output than will be processed via sig_sysmouse().
6834 * Return OK if succeeded, FAIL if failed.
6835 */
6836 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006837sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006838{
6839 struct mouse_info mouse;
6840
6841 mouse.operation = MOUSE_MODE;
6842 mouse.u.mode.mode = 0;
6843 mouse.u.mode.signal = SIGUSR2;
6844 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
6845 {
6846 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
6847 mouse.operation = MOUSE_SHOW;
6848 ioctl(1, CONS_MOUSECTL, &mouse);
6849 return OK;
6850 }
6851 return FAIL;
6852}
6853
6854/*
6855 * Stop processing SIGUSR2 signals, and also make sure that
6856 * virtual console do not send us any sysmouse related signal.
6857 */
6858 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006859sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006860{
6861 struct mouse_info mouse;
6862
6863 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
6864 mouse.operation = MOUSE_MODE;
6865 mouse.u.mode.mode = 0;
6866 mouse.u.mode.signal = 0;
6867 ioctl(1, CONS_MOUSECTL, &mouse);
6868}
6869
6870/*
6871 * Gets info from sysmouse and adds special keys to input buf.
6872 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006873 static RETSIGTYPE
6874sig_sysmouse SIGDEFARG(sigarg)
6875{
6876 struct mouse_info mouse;
6877 struct video_info video;
6878 char_u string[6];
6879 int row, col;
6880 int button;
6881 int buttons;
6882 static int oldbuttons = 0;
6883
6884#ifdef FEAT_GUI
6885 /* Don't put events in the input queue now. */
6886 if (hold_gui_events)
6887 return;
6888#endif
6889
6890 mouse.operation = MOUSE_GETINFO;
6891 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6892 && ioctl(1, FBIO_MODEINFO, &video) != -1
6893 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6894 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6895 {
6896 row = mouse.u.data.y / video.vi_cheight;
6897 col = mouse.u.data.x / video.vi_cwidth;
6898 buttons = mouse.u.data.buttons;
6899 string[0] = ESC; /* Our termcode */
6900 string[1] = 'M';
6901 string[2] = 'S';
6902 if (oldbuttons == buttons && buttons != 0)
6903 {
6904 button = MOUSE_DRAG;
6905 }
6906 else
6907 {
6908 switch (buttons)
6909 {
6910 case 0:
6911 button = MOUSE_RELEASE;
6912 break;
6913 case 1:
6914 button = MOUSE_LEFT;
6915 break;
6916 case 2:
6917 button = MOUSE_MIDDLE;
6918 break;
6919 case 4:
6920 button = MOUSE_RIGHT;
6921 break;
6922 default:
6923 return;
6924 }
6925 oldbuttons = buttons;
6926 }
6927 string[3] = (char_u)(button);
6928 string[4] = (char_u)(col + ' ' + 1);
6929 string[5] = (char_u)(row + ' ' + 1);
6930 add_to_input_buf(string, 6);
6931 }
6932 return;
6933}
6934#endif /* FEAT_SYSMOUSE */
6935
Bram Moolenaar071d4272004-06-13 20:20:40 +00006936#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01006937typedef char_u * (*STRPROCSTR)(char_u *);
6938typedef char_u * (*INTPROCSTR)(int);
6939typedef int (*STRPROCINT)(char_u *);
6940typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006941
6942/*
6943 * Call a DLL routine which takes either a string or int param
6944 * and returns an allocated string.
6945 */
6946 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006947mch_libcall(
6948 char_u *libname,
6949 char_u *funcname,
6950 char_u *argstring, /* NULL when using a argint */
6951 int argint,
6952 char_u **string_result,/* NULL when using number_result */
6953 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006954{
6955# if defined(USE_DLOPEN)
6956 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006957 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958# else
6959 shl_t hinstLib;
6960# endif
6961 STRPROCSTR ProcAdd;
6962 INTPROCSTR ProcAddI;
6963 char_u *retval_str = NULL;
6964 int retval_int = 0;
6965 int success = FALSE;
6966
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006967 /*
6968 * Get a handle to the DLL module.
6969 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006970# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006971 /* First clear any error, it's not cleared by the dlopen() call. */
6972 (void)dlerror();
6973
Bram Moolenaar071d4272004-06-13 20:20:40 +00006974 hinstLib = dlopen((char *)libname, RTLD_LAZY
6975# ifdef RTLD_LOCAL
6976 | RTLD_LOCAL
6977# endif
6978 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006979 if (hinstLib == NULL)
6980 {
6981 /* "dlerr" must be used before dlclose() */
6982 dlerr = (char *)dlerror();
6983 if (dlerr != NULL)
6984 EMSG2(_("dlerror = \"%s\""), dlerr);
6985 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006986# else
6987 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6988# endif
6989
6990 /* If the handle is valid, try to get the function address. */
6991 if (hinstLib != NULL)
6992 {
6993# ifdef HAVE_SETJMP_H
6994 /*
6995 * Catch a crash when calling the library function. For example when
6996 * using a number where a string pointer is expected.
6997 */
6998 mch_startjmp();
6999 if (SETJMP(lc_jump_env) != 0)
7000 {
7001 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007002# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007003 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00007004# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007005 mch_didjmp();
7006 }
7007 else
7008# endif
7009 {
7010 retval_str = NULL;
7011 retval_int = 0;
7012
7013 if (argstring != NULL)
7014 {
7015# if defined(USE_DLOPEN)
7016 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007017 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007018# else
7019 if (shl_findsym(&hinstLib, (const char *)funcname,
7020 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
7021 ProcAdd = NULL;
7022# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007023 if ((success = (ProcAdd != NULL
7024# if defined(USE_DLOPEN)
7025 && dlerr == NULL
7026# endif
7027 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028 {
7029 if (string_result == NULL)
7030 retval_int = ((STRPROCINT)ProcAdd)(argstring);
7031 else
7032 retval_str = (ProcAdd)(argstring);
7033 }
7034 }
7035 else
7036 {
7037# if defined(USE_DLOPEN)
7038 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007039 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007040# else
7041 if (shl_findsym(&hinstLib, (const char *)funcname,
7042 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
7043 ProcAddI = NULL;
7044# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007045 if ((success = (ProcAddI != NULL
7046# if defined(USE_DLOPEN)
7047 && dlerr == NULL
7048# endif
7049 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007050 {
7051 if (string_result == NULL)
7052 retval_int = ((INTPROCINT)ProcAddI)(argint);
7053 else
7054 retval_str = (ProcAddI)(argint);
7055 }
7056 }
7057
7058 /* Save the string before we free the library. */
7059 /* Assume that a "1" or "-1" result is an illegal pointer. */
7060 if (string_result == NULL)
7061 *number_result = retval_int;
7062 else if (retval_str != NULL
7063 && retval_str != (char_u *)1
7064 && retval_str != (char_u *)-1)
7065 *string_result = vim_strsave(retval_str);
7066 }
7067
7068# ifdef HAVE_SETJMP_H
7069 mch_endjmp();
7070# ifdef SIGHASARG
7071 if (lc_signal != 0)
7072 {
7073 int i;
7074
7075 /* try to find the name of this signal */
7076 for (i = 0; signal_info[i].sig != -1; i++)
7077 if (lc_signal == signal_info[i].sig)
7078 break;
7079 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
7080 }
7081# endif
7082# endif
7083
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007085 /* "dlerr" must be used before dlclose() */
7086 if (dlerr != NULL)
7087 EMSG2(_("dlerror = \"%s\""), dlerr);
7088
7089 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090 (void)dlclose(hinstLib);
7091# else
7092 (void)shl_unload(hinstLib);
7093# endif
7094 }
7095
7096 if (!success)
7097 {
7098 EMSG2(_(e_libcall), funcname);
7099 return FAIL;
7100 }
7101
7102 return OK;
7103}
7104#endif
7105
7106#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
7107static int xterm_trace = -1; /* default: disabled */
7108static int xterm_button;
7109
7110/*
7111 * Setup a dummy window for X selections in a terminal.
7112 */
7113 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007114setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007115{
7116 int z = 0;
7117 char *strp = "";
7118 Widget AppShell;
7119
7120 if (!x_connect_to_server())
7121 return;
7122
7123 open_app_context();
7124 if (app_context != NULL && xterm_Shell == (Widget)0)
7125 {
7126 int (*oldhandler)();
7127#if defined(HAVE_SETJMP_H)
7128 int (*oldIOhandler)();
7129#endif
7130# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
7131 struct timeval start_tv;
7132
7133 if (p_verbose > 0)
7134 gettimeofday(&start_tv, NULL);
7135# endif
7136
7137 /* Ignore X errors while opening the display */
7138 oldhandler = XSetErrorHandler(x_error_check);
7139
7140#if defined(HAVE_SETJMP_H)
7141 /* Ignore X IO errors while opening the display */
7142 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7143 mch_startjmp();
7144 if (SETJMP(lc_jump_env) != 0)
7145 {
7146 mch_didjmp();
7147 xterm_dpy = NULL;
7148 }
7149 else
7150#endif
7151 {
7152 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7153 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
7154#if defined(HAVE_SETJMP_H)
7155 mch_endjmp();
7156#endif
7157 }
7158
7159#if defined(HAVE_SETJMP_H)
7160 /* Now handle X IO errors normally. */
7161 (void)XSetIOErrorHandler(oldIOhandler);
7162#endif
7163 /* Now handle X errors normally. */
7164 (void)XSetErrorHandler(oldhandler);
7165
7166 if (xterm_dpy == NULL)
7167 {
7168 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007169 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007170 return;
7171 }
7172
7173 /* Catch terminating error of the X server connection. */
7174 (void)XSetIOErrorHandler(x_IOerror_handler);
7175
7176# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
7177 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007178 {
7179 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007180 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007181 verbose_leave();
7182 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007183# endif
7184
7185 /* Create a Shell to make converters work. */
7186 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7187 applicationShellWidgetClass, xterm_dpy,
7188 NULL);
7189 if (AppShell == (Widget)0)
7190 return;
7191 xterm_Shell = XtVaCreatePopupShell("VIM",
7192 topLevelShellWidgetClass, AppShell,
7193 XtNmappedWhenManaged, 0,
7194 XtNwidth, 1,
7195 XtNheight, 1,
7196 NULL);
7197 if (xterm_Shell == (Widget)0)
7198 return;
7199
7200 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007201 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007202 if (x11_display == NULL)
7203 x11_display = xterm_dpy;
7204
7205 XtRealizeWidget(xterm_Shell);
7206 XSync(xterm_dpy, False);
7207 xterm_update();
7208 }
7209 if (xterm_Shell != (Widget)0)
7210 {
7211 clip_init(TRUE);
7212 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7213 x11_window = (Window)atol(strp);
7214 /* Check if $WINDOWID is valid. */
7215 if (test_x11_window(xterm_dpy) == FAIL)
7216 x11_window = 0;
7217 if (x11_window != 0)
7218 xterm_trace = 0;
7219 }
7220}
7221
7222 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007223start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007224{
7225 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7226 return;
7227 xterm_trace = 1;
7228 xterm_button = button;
7229 do_xterm_trace();
7230}
7231
7232
7233 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007234stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007235{
7236 if (xterm_trace < 0)
7237 return;
7238 xterm_trace = 0;
7239}
7240
7241/*
7242 * Query the xterm pointer and generate mouse termcodes if necessary
7243 * return TRUE if dragging is active, else FALSE
7244 */
7245 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007246do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007247{
7248 Window root, child;
7249 int root_x, root_y;
7250 int win_x, win_y;
7251 int row, col;
7252 int_u mask_return;
7253 char_u buf[50];
7254 char_u *strp;
7255 long got_hints;
7256 static char_u *mouse_code;
7257 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7258 static int prev_row = 0, prev_col = 0;
7259 static XSizeHints xterm_hints;
7260
7261 if (xterm_trace <= 0)
7262 return FALSE;
7263
7264 if (xterm_trace == 1)
7265 {
7266 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007267 * have changed recently. */
7268 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7269 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007270 || xterm_hints.width_inc <= 1
7271 || xterm_hints.height_inc <= 1)
7272 {
7273 xterm_trace = -1; /* Not enough data -- disable tracing */
7274 return FALSE;
7275 }
7276
7277 /* Rely on the same mouse code for the duration of this */
7278 mouse_code = find_termcode(mouse_name);
7279 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007280 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007281 xterm_trace = 2;
7282
7283 /* Find the offset of the chars, there might be a scrollbar on the
7284 * left of the window and/or a menu on the top (eterm etc.) */
7285 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7286 &win_x, &win_y, &mask_return);
7287 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7288 - (xterm_hints.height_inc / 2);
7289 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7290 xterm_hints.y = 2;
7291 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7292 - (xterm_hints.width_inc / 2);
7293 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7294 xterm_hints.x = 2;
7295 return TRUE;
7296 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007297 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007298 {
7299 xterm_trace = 0;
7300 return FALSE;
7301 }
7302
7303 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7304 &win_x, &win_y, &mask_return);
7305
7306 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7307 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7308 if (row == prev_row && col == prev_col)
7309 return TRUE;
7310
7311 STRCPY(buf, mouse_code);
7312 strp = buf + STRLEN(buf);
7313 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7314 *strp++ = (char_u)(col + ' ' + 1);
7315 *strp++ = (char_u)(row + ' ' + 1);
7316 *strp = 0;
7317 add_to_input_buf(buf, STRLEN(buf));
7318
7319 prev_row = row;
7320 prev_col = col;
7321 return TRUE;
7322}
7323
7324# if defined(FEAT_GUI) || defined(PROTO)
7325/*
7326 * Destroy the display, window and app_context. Required for GTK.
7327 */
7328 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007329clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007330{
7331 if (xterm_Shell != (Widget)0)
7332 {
7333 XtDestroyWidget(xterm_Shell);
7334 xterm_Shell = (Widget)0;
7335 }
7336 if (xterm_dpy != NULL)
7337 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007338# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339 /* Lesstif and Solaris crash here, lose some memory */
7340 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007341# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007342 if (x11_display == xterm_dpy)
7343 x11_display = NULL;
7344 xterm_dpy = NULL;
7345 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007346# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007347 if (app_context != (XtAppContext)NULL)
7348 {
7349 /* Lesstif and Solaris crash here, lose some memory */
7350 XtDestroyApplicationContext(app_context);
7351 app_context = (XtAppContext)NULL;
7352 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007353# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007354}
7355# endif
7356
7357/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007358 * Catch up with GUI or X events.
7359 */
7360 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007361clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007362{
7363# ifdef FEAT_GUI
7364 if (gui.in_use)
7365 gui_mch_update();
7366 else
7367# endif
7368 if (xterm_Shell != (Widget)0)
7369 xterm_update();
7370}
7371
7372/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007373 * Catch up with any queued X events. This may put keyboard input into the
7374 * input buffer, call resize call-backs, trigger timers etc. If there is
7375 * nothing in the X event queue (& no timers pending), then we return
7376 * immediately.
7377 */
7378 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007379xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007380{
7381 XEvent event;
7382
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007383 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007384 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007385 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007386
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007387 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007388 break;
7389
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007390 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007391 {
7392 /* There is an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007393 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007394#ifdef FEAT_CLIENTSERVER
7395 {
7396 XPropertyEvent *e = (XPropertyEvent *)&event;
7397
7398 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007399 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007400 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007401 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007402#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007403 XtDispatchEvent(&event);
7404 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007405 else
7406 {
7407 /* There is something else than an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007408 XtAppProcessEvent(app_context, mask);
7409 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007410 }
7411}
7412
7413 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007414clip_xterm_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007415{
7416 if (xterm_Shell != (Widget)0)
7417 return clip_x11_own_selection(xterm_Shell, cbd);
7418 return FAIL;
7419}
7420
7421 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007422clip_xterm_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007423{
7424 if (xterm_Shell != (Widget)0)
7425 clip_x11_lose_selection(xterm_Shell, cbd);
7426}
7427
7428 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007429clip_xterm_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007430{
7431 if (xterm_Shell != (Widget)0)
7432 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7433}
7434
7435 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007436clip_xterm_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007437{
7438 clip_x11_set_selection(cbd);
7439}
7440#endif
7441
7442
7443#if defined(USE_XSMP) || defined(PROTO)
7444/*
7445 * Code for X Session Management Protocol.
7446 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007447static void xsmp_handle_save_yourself(SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast);
7448static void xsmp_die(SmcConn smc_conn, SmPointer client_data);
7449static void xsmp_save_complete(SmcConn smc_conn, SmPointer client_data);
7450static void xsmp_shutdown_cancelled(SmcConn smc_conn, SmPointer client_data);
7451static void xsmp_ice_connection(IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007452
7453
7454# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007455static void xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007456
7457/*
7458 * This is our chance to ask the user if they want to save,
7459 * or abort the logout
7460 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007461 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007462xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007463{
7464 cmdmod_T save_cmdmod;
7465 int cancel_shutdown = False;
7466
7467 save_cmdmod = cmdmod;
7468 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007469 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007470 /* Mustn't logout */
7471 cancel_shutdown = True;
7472 cmdmod = save_cmdmod;
7473 setcursor(); /* position cursor */
7474 out_flush();
7475
7476 /* Done interaction */
7477 SmcInteractDone(smc_conn, cancel_shutdown);
7478
7479 /* Finish off
7480 * Only end save-yourself here if we're not cancelling shutdown;
7481 * we'll get a cancelled callback later in which we'll end it.
7482 * Hopefully get around glitchy SMs (like GNOME-1)
7483 */
7484 if (!cancel_shutdown)
7485 {
7486 xsmp.save_yourself = False;
7487 SmcSaveYourselfDone(smc_conn, True);
7488 }
7489}
7490# endif
7491
7492/*
7493 * Callback that starts save-yourself.
7494 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007495 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007496xsmp_handle_save_yourself(
7497 SmcConn smc_conn,
7498 SmPointer client_data UNUSED,
7499 int save_type UNUSED,
7500 Bool shutdown,
7501 int interact_style UNUSED,
7502 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007503{
7504 /* Handle already being in saveyourself */
7505 if (xsmp.save_yourself)
7506 SmcSaveYourselfDone(smc_conn, True);
7507 xsmp.save_yourself = True;
7508 xsmp.shutdown = shutdown;
7509
7510 /* First up, preserve all files */
7511 out_flush();
7512 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
7513
7514 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007515 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007516
7517# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
7518 /* Now see if we can ask about unsaved files */
7519 if (shutdown && !fast && gui.in_use)
7520 /* Need to interact with user, but need SM's permission */
7521 SmcInteractRequest(smc_conn, SmDialogError,
7522 xsmp_handle_interaction, client_data);
7523 else
7524# endif
7525 {
7526 /* Can stop the cycle here */
7527 SmcSaveYourselfDone(smc_conn, True);
7528 xsmp.save_yourself = False;
7529 }
7530}
7531
7532
7533/*
7534 * Callback to warn us of imminent death.
7535 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007536 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007537xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007538{
7539 xsmp_close();
7540
7541 /* quit quickly leaving swapfiles for modified buffers behind */
7542 getout_preserve_modified(0);
7543}
7544
7545
7546/*
7547 * Callback to tell us that save-yourself has completed.
7548 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007549 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007550xsmp_save_complete(
7551 SmcConn smc_conn UNUSED,
7552 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007553{
7554 xsmp.save_yourself = False;
7555}
7556
7557
7558/*
7559 * Callback to tell us that an instigated shutdown was cancelled
7560 * (maybe even by us)
7561 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007562 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007563xsmp_shutdown_cancelled(
7564 SmcConn smc_conn,
7565 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007566{
7567 if (xsmp.save_yourself)
7568 SmcSaveYourselfDone(smc_conn, True);
7569 xsmp.save_yourself = False;
7570 xsmp.shutdown = False;
7571}
7572
7573
7574/*
7575 * Callback to tell us that a new ICE connection has been established.
7576 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007577 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007578xsmp_ice_connection(
7579 IceConn iceConn,
7580 IcePointer clientData UNUSED,
7581 Bool opening,
7582 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007583{
7584 /* Intercept creation of ICE connection fd */
7585 if (opening)
7586 {
7587 xsmp_icefd = IceConnectionNumber(iceConn);
7588 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7589 }
7590}
7591
7592
7593/* Handle any ICE processing that's required; return FAIL if SM lost */
7594 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007595xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007596{
7597 Bool rep;
7598
7599 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7600 == IceProcessMessagesIOError)
7601 {
7602 /* Lost ICE */
7603 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007604 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007605 xsmp_close();
7606 return FAIL;
7607 }
7608 else
7609 return OK;
7610}
7611
7612static int dummy;
7613
7614/* Set up X Session Management Protocol */
7615 void
7616xsmp_init(void)
7617{
7618 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007619 SmcCallbacks smcallbacks;
7620#if 0
7621 SmPropValue smname;
7622 SmProp smnameprop;
7623 SmProp *smprops[1];
7624#endif
7625
7626 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007627 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007628
7629 xsmp.save_yourself = xsmp.shutdown = False;
7630
7631 /* Set up SM callbacks - must have all, even if they're not used */
7632 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7633 smcallbacks.save_yourself.client_data = NULL;
7634 smcallbacks.die.callback = xsmp_die;
7635 smcallbacks.die.client_data = NULL;
7636 smcallbacks.save_complete.callback = xsmp_save_complete;
7637 smcallbacks.save_complete.client_data = NULL;
7638 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
7639 smcallbacks.shutdown_cancelled.client_data = NULL;
7640
7641 /* Set up a watch on ICE connection creations. The "dummy" argument is
7642 * apparently required for FreeBSD (we get a BUS error when using NULL). */
7643 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
7644 {
7645 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007646 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007647 return;
7648 }
7649
7650 /* Create an SM connection */
7651 xsmp.smcconn = SmcOpenConnection(
7652 NULL,
7653 NULL,
7654 SmProtoMajor,
7655 SmProtoMinor,
7656 SmcSaveYourselfProcMask | SmcDieProcMask
7657 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
7658 &smcallbacks,
7659 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00007660 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007661 sizeof(errorstring),
7662 errorstring);
7663 if (xsmp.smcconn == NULL)
7664 {
7665 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00007666
Bram Moolenaar071d4272004-06-13 20:20:40 +00007667 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007668 {
7669 vim_snprintf(errorreport, sizeof(errorreport),
7670 _("XSMP SmcOpenConnection failed: %s"), errorstring);
7671 verb_msg((char_u *)errorreport);
7672 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007673 return;
7674 }
7675 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
7676
7677#if 0
7678 /* ID ourselves */
7679 smname.value = "vim";
7680 smname.length = 3;
7681 smnameprop.name = "SmProgram";
7682 smnameprop.type = "SmARRAY8";
7683 smnameprop.num_vals = 1;
7684 smnameprop.vals = &smname;
7685
7686 smprops[0] = &smnameprop;
7687 SmcSetProperties(xsmp.smcconn, 1, smprops);
7688#endif
7689}
7690
7691
7692/* Shut down XSMP comms. */
7693 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007694xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007695{
7696 if (xsmp_icefd != -1)
7697 {
7698 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00007699 if (xsmp.clientid != NULL)
7700 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00007701 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007702 xsmp_icefd = -1;
7703 }
7704}
7705#endif /* USE_XSMP */
7706
7707
7708#ifdef EBCDIC
7709/* Translate character to its CTRL- value */
7710char CtrlTable[] =
7711{
7712/* 00 - 5E */
7713 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7714 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7715 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7716 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7717 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7718 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7719/* ^ */ 0x1E,
7720/* - */ 0x1F,
7721/* 61 - 6C */
7722 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7723/* _ */ 0x1F,
7724/* 6E - 80 */
7725 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7726/* a */ 0x01,
7727/* b */ 0x02,
7728/* c */ 0x03,
7729/* d */ 0x37,
7730/* e */ 0x2D,
7731/* f */ 0x2E,
7732/* g */ 0x2F,
7733/* h */ 0x16,
7734/* i */ 0x05,
7735/* 8A - 90 */
7736 0, 0, 0, 0, 0, 0, 0,
7737/* j */ 0x15,
7738/* k */ 0x0B,
7739/* l */ 0x0C,
7740/* m */ 0x0D,
7741/* n */ 0x0E,
7742/* o */ 0x0F,
7743/* p */ 0x10,
7744/* q */ 0x11,
7745/* r */ 0x12,
7746/* 9A - A1 */
7747 0, 0, 0, 0, 0, 0, 0, 0,
7748/* s */ 0x13,
7749/* t */ 0x3C,
7750/* u */ 0x3D,
7751/* v */ 0x32,
7752/* w */ 0x26,
7753/* x */ 0x18,
7754/* y */ 0x19,
7755/* z */ 0x3F,
7756/* AA - AC */
7757 0, 0, 0,
7758/* [ */ 0x27,
7759/* AE - BC */
7760 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7761/* ] */ 0x1D,
7762/* BE - C0 */ 0, 0, 0,
7763/* A */ 0x01,
7764/* B */ 0x02,
7765/* C */ 0x03,
7766/* D */ 0x37,
7767/* E */ 0x2D,
7768/* F */ 0x2E,
7769/* G */ 0x2F,
7770/* H */ 0x16,
7771/* I */ 0x05,
7772/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
7773/* J */ 0x15,
7774/* K */ 0x0B,
7775/* L */ 0x0C,
7776/* M */ 0x0D,
7777/* N */ 0x0E,
7778/* O */ 0x0F,
7779/* P */ 0x10,
7780/* Q */ 0x11,
7781/* R */ 0x12,
7782/* DA - DF */ 0, 0, 0, 0, 0, 0,
7783/* \ */ 0x1C,
7784/* E1 */ 0,
7785/* S */ 0x13,
7786/* T */ 0x3C,
7787/* U */ 0x3D,
7788/* V */ 0x32,
7789/* W */ 0x26,
7790/* X */ 0x18,
7791/* Y */ 0x19,
7792/* Z */ 0x3F,
7793/* EA - FF*/ 0, 0, 0, 0, 0, 0,
7794 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7795};
7796
7797char MetaCharTable[]=
7798{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
7799 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
7800 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
7801 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
7802 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
7803};
7804
7805
7806/* TODO: Use characters NOT numbers!!! */
7807char CtrlCharTable[]=
7808{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
7809 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
7810 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
7811 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
7812 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
7813};
7814
7815
7816#endif