blob: f08adc58b1594362fa80a8952faafafc8b687c4c [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)
3414 tnew.c_lflag &= ~(ECHO);
3415
3416# if defined(HAVE_TERMIOS_H)
3417 {
3418 int n = 10;
3419
3420 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3421 * few times. */
3422 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3423 && errno == EINTR && n > 0)
3424 --n;
3425 }
3426# else
3427 ioctl(read_cmd_fd, TCSETA, &tnew);
3428# endif
3429
3430#else
3431
3432 /*
3433 * for "old" tty systems
3434 */
3435# ifndef TIOCSETN
3436# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3437# endif
3438 static struct sgttyb ttybold;
3439 struct sgttyb ttybnew;
3440
3441 if (first)
3442 {
3443 first = FALSE;
3444 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3445 }
3446
3447 ttybnew = ttybold;
3448 if (tmode == TMODE_RAW)
3449 {
3450 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3451 ttybnew.sg_flags |= RAW;
3452 }
3453 else if (tmode == TMODE_SLEEP)
3454 ttybnew.sg_flags &= ~(ECHO);
3455 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3456#endif
3457 curr_tmode = tmode;
3458}
3459
3460/*
3461 * Try to get the code for "t_kb" from the stty setting
3462 *
3463 * Even if termcap claims a backspace key, the user's setting *should*
3464 * prevail. stty knows more about reality than termcap does, and if
3465 * somebody's usual erase key is DEL (which, for most BSD users, it will
3466 * be), they're going to get really annoyed if their erase key starts
3467 * doing forward deletes for no reason. (Eric Fischer)
3468 */
3469 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003470get_stty(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471{
3472 char_u buf[2];
3473 char_u *p;
3474
3475 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3476#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3477 /* for "new" tty systems */
3478# ifdef HAVE_TERMIOS_H
3479 struct termios keys;
3480# else
3481 struct termio keys;
3482# endif
3483
3484# if defined(HAVE_TERMIOS_H)
3485 if (tcgetattr(read_cmd_fd, &keys) != -1)
3486# else
3487 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3488# endif
3489 {
3490 buf[0] = keys.c_cc[VERASE];
3491 intr_char = keys.c_cc[VINTR];
3492#else
3493 /* for "old" tty systems */
3494 struct sgttyb keys;
3495
3496 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3497 {
3498 buf[0] = keys.sg_erase;
3499 intr_char = keys.sg_kill;
3500#endif
3501 buf[1] = NUL;
3502 add_termcode((char_u *)"kb", buf, FALSE);
3503
3504 /*
3505 * If <BS> and <DEL> are now the same, redefine <DEL>.
3506 */
3507 p = find_termcode((char_u *)"kD");
3508 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3509 do_fixdel(NULL);
3510 }
3511#if 0
3512 } /* to keep cindent happy */
3513#endif
3514}
3515
3516#endif /* VMS */
3517
3518#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3519/*
3520 * Set mouse clicks on or off.
3521 */
3522 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003523mch_setmouse(int on)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003524{
3525 static int ison = FALSE;
3526 int xterm_mouse_vers;
3527
3528 if (on == ison) /* return quickly if nothing to do */
3529 return;
3530
3531 xterm_mouse_vers = use_xterm_mouse();
Bram Moolenaarc8427482011-10-20 21:09:35 +02003532
3533# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003534 if (ttym_flags == TTYM_URXVT)
3535 {
Bram Moolenaarc8427482011-10-20 21:09:35 +02003536 out_str_nf((char_u *)
3537 (on
3538 ? IF_EB("\033[?1015h", ESC_STR "[?1015h")
3539 : IF_EB("\033[?1015l", ESC_STR "[?1015l")));
3540 ison = on;
3541 }
3542# endif
3543
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003544# ifdef FEAT_MOUSE_SGR
3545 if (ttym_flags == TTYM_SGR)
3546 {
3547 out_str_nf((char_u *)
3548 (on
3549 ? IF_EB("\033[?1006h", ESC_STR "[?1006h")
3550 : IF_EB("\033[?1006l", ESC_STR "[?1006l")));
3551 ison = on;
3552 }
3553# endif
3554
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 if (xterm_mouse_vers > 0)
3556 {
3557 if (on) /* enable mouse events, use mouse tracking if available */
3558 out_str_nf((char_u *)
3559 (xterm_mouse_vers > 1
3560 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3561 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3562 else /* disable mouse events, could probably always send the same */
3563 out_str_nf((char_u *)
3564 (xterm_mouse_vers > 1
3565 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3566 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3567 ison = on;
3568 }
3569
3570# ifdef FEAT_MOUSE_DEC
3571 else if (ttym_flags == TTYM_DEC)
3572 {
3573 if (on) /* enable mouse events */
3574 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3575 else /* disable mouse events */
3576 out_str_nf((char_u *)"\033['z");
3577 ison = on;
3578 }
3579# endif
3580
3581# ifdef FEAT_MOUSE_GPM
3582 else
3583 {
3584 if (on)
3585 {
3586 if (gpm_open())
3587 ison = TRUE;
3588 }
3589 else
3590 {
3591 gpm_close();
3592 ison = FALSE;
3593 }
3594 }
3595# endif
3596
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003597# ifdef FEAT_SYSMOUSE
3598 else
3599 {
3600 if (on)
3601 {
3602 if (sysmouse_open() == OK)
3603 ison = TRUE;
3604 }
3605 else
3606 {
3607 sysmouse_close();
3608 ison = FALSE;
3609 }
3610 }
3611# endif
3612
Bram Moolenaar071d4272004-06-13 20:20:40 +00003613# ifdef FEAT_MOUSE_JSB
3614 else
3615 {
3616 if (on)
3617 {
3618 /* D - Enable Mouse up/down messages
3619 * L - Enable Left Button Reporting
3620 * M - Enable Middle Button Reporting
3621 * R - Enable Right Button Reporting
3622 * K - Enable SHIFT and CTRL key Reporting
3623 * + - Enable Advanced messaging of mouse moves and up/down messages
3624 * Q - Quiet No Ack
3625 * # - Numeric value of mouse pointer required
3626 * 0 = Multiview 2000 cursor, used as standard
3627 * 1 = Windows Arrow
3628 * 2 = Windows I Beam
3629 * 3 = Windows Hour Glass
3630 * 4 = Windows Cross Hair
3631 * 5 = Windows UP Arrow
3632 */
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003633# ifdef JSBTERM_MOUSE_NONADVANCED
3634 /* Disables full feedback of pointer movements */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3636 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003637# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3639 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
Bram Moolenaarf8de1612013-04-15 15:32:25 +02003640# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003641 ison = TRUE;
3642 }
3643 else
3644 {
3645 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3646 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3647 ison = FALSE;
3648 }
3649 }
3650# endif
3651# ifdef FEAT_MOUSE_PTERM
3652 else
3653 {
3654 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3655 if (on)
3656 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3657 else
3658 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3659 ison = on;
3660 }
3661# endif
3662}
3663
3664/*
3665 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3666 */
3667 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003668check_mouse_termcode(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669{
3670# ifdef FEAT_MOUSE_XTERM
3671 if (use_xterm_mouse()
Bram Moolenaarc8427482011-10-20 21:09:35 +02003672# ifdef FEAT_MOUSE_URXVT
3673 && use_xterm_mouse() != 3
3674# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003675# ifdef FEAT_GUI
3676 && !gui.in_use
3677# endif
3678 )
3679 {
3680 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003681 ? IF_EB("\233M", CSI_STR "M")
3682 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683 if (*p_mouse != NUL)
3684 {
3685 /* force mouse off and maybe on to send possibly new mouse
3686 * activation sequence to the xterm, with(out) drag tracing. */
3687 mch_setmouse(FALSE);
3688 setmouse();
3689 }
3690 }
3691 else
3692 del_mouse_termcode(KS_MOUSE);
3693# endif
3694
3695# ifdef FEAT_MOUSE_GPM
3696 if (!use_xterm_mouse()
3697# ifdef FEAT_GUI
3698 && !gui.in_use
3699# endif
3700 )
3701 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3702# endif
3703
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00003704# ifdef FEAT_SYSMOUSE
3705 if (!use_xterm_mouse()
3706# ifdef FEAT_GUI
3707 && !gui.in_use
3708# endif
3709 )
3710 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS"));
3711# endif
3712
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713# ifdef FEAT_MOUSE_JSB
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003714 /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 if (!use_xterm_mouse()
3716# ifdef FEAT_GUI
3717 && !gui.in_use
3718# endif
3719 )
3720 set_mouse_termcode(KS_JSBTERM_MOUSE,
3721 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3722 else
3723 del_mouse_termcode(KS_JSBTERM_MOUSE);
3724# endif
3725
3726# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003727 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728 * define it in the GUI or when using an xterm. */
3729 if (!use_xterm_mouse()
3730# ifdef FEAT_GUI
3731 && !gui.in_use
3732# endif
3733 )
3734 set_mouse_termcode(KS_NETTERM_MOUSE,
3735 (char_u *)IF_EB("\033}", ESC_STR "}"));
3736 else
3737 del_mouse_termcode(KS_NETTERM_MOUSE);
3738# endif
3739
3740# ifdef FEAT_MOUSE_DEC
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003741 /* Conflicts with xterm mouse: "\033[" and "\033[M" */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003742 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003743# ifdef FEAT_GUI
3744 && !gui.in_use
3745# endif
3746 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003747 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3748 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003749 else
3750 del_mouse_termcode(KS_DEC_MOUSE);
3751# endif
3752# ifdef FEAT_MOUSE_PTERM
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003753 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003754 if (!use_xterm_mouse()
Bram Moolenaar071d4272004-06-13 20:20:40 +00003755# ifdef FEAT_GUI
3756 && !gui.in_use
3757# endif
3758 )
3759 set_mouse_termcode(KS_PTERM_MOUSE,
3760 (char_u *) IF_EB("\033[", ESC_STR "["));
3761 else
3762 del_mouse_termcode(KS_PTERM_MOUSE);
3763# endif
Bram Moolenaarc8427482011-10-20 21:09:35 +02003764# ifdef FEAT_MOUSE_URXVT
Bram Moolenaar4e067c82014-07-30 17:21:58 +02003765 /* same conflict as the dec mouse */
Bram Moolenaarcbc17d62014-05-22 21:22:19 +02003766 if (use_xterm_mouse() == 3
Bram Moolenaarc8427482011-10-20 21:09:35 +02003767# ifdef FEAT_GUI
3768 && !gui.in_use
3769# endif
3770 )
3771 {
3772 set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3773 ? IF_EB("\233", CSI_STR)
3774 : IF_EB("\033[", ESC_STR "[")));
3775
3776 if (*p_mouse != NUL)
3777 {
3778 mch_setmouse(FALSE);
3779 setmouse();
3780 }
3781 }
3782 else
3783 del_mouse_termcode(KS_URXVT_MOUSE);
3784# endif
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003785# ifdef FEAT_MOUSE_SGR
Bram Moolenaar24dc2302014-05-13 20:19:58 +02003786 /* There is no conflict with xterm mouse */
Bram Moolenaar2b9578f2012-08-15 16:21:32 +02003787 if (use_xterm_mouse() == 4
3788# ifdef FEAT_GUI
3789 && !gui.in_use
3790# endif
3791 )
3792 {
3793 set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3794 ? IF_EB("\233<", CSI_STR "<")
3795 : IF_EB("\033[<", ESC_STR "[<")));
3796
3797 if (*p_mouse != NUL)
3798 {
3799 mch_setmouse(FALSE);
3800 setmouse();
3801 }
3802 }
3803 else
3804 del_mouse_termcode(KS_SGR_MOUSE);
3805# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806}
3807#endif
3808
3809/*
3810 * set screen mode, always fails.
3811 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003813mch_screenmode(char_u *arg UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814{
3815 EMSG(_(e_screenmode));
3816 return FAIL;
3817}
3818
3819#ifndef VMS
3820
3821/*
3822 * Try to get the current window size:
3823 * 1. with an ioctl(), most accurate method
3824 * 2. from the environment variables LINES and COLUMNS
3825 * 3. from the termcap
3826 * 4. keep using the old values
3827 * Return OK when size could be determined, FAIL otherwise.
3828 */
3829 int
Bram Moolenaar05540972016-01-30 20:31:25 +01003830mch_get_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831{
3832 long rows = 0;
3833 long columns = 0;
3834 char_u *p;
3835
3836 /*
3837 * For OS/2 use _scrsize().
3838 */
3839# ifdef __EMX__
3840 {
3841 int s[2];
3842
3843 _scrsize(s);
3844 columns = s[0];
3845 rows = s[1];
3846 }
3847# endif
3848
3849 /*
3850 * 1. try using an ioctl. It is the most accurate method.
3851 *
3852 * Try using TIOCGWINSZ first, some systems that have it also define
3853 * TIOCGSIZE but don't have a struct ttysize.
3854 */
3855# ifdef TIOCGWINSZ
3856 {
3857 struct winsize ws;
3858 int fd = 1;
3859
3860 /* When stdout is not a tty, use stdin for the ioctl(). */
3861 if (!isatty(fd) && isatty(read_cmd_fd))
3862 fd = read_cmd_fd;
3863 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3864 {
3865 columns = ws.ws_col;
3866 rows = ws.ws_row;
3867 }
3868 }
3869# else /* TIOCGWINSZ */
3870# ifdef TIOCGSIZE
3871 {
3872 struct ttysize ts;
3873 int fd = 1;
3874
3875 /* When stdout is not a tty, use stdin for the ioctl(). */
3876 if (!isatty(fd) && isatty(read_cmd_fd))
3877 fd = read_cmd_fd;
3878 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3879 {
3880 columns = ts.ts_cols;
3881 rows = ts.ts_lines;
3882 }
3883 }
3884# endif /* TIOCGSIZE */
3885# endif /* TIOCGWINSZ */
3886
3887 /*
3888 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003889 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3890 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003892 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003893 {
3894 if ((p = (char_u *)getenv("LINES")))
3895 rows = atoi((char *)p);
3896 if ((p = (char_u *)getenv("COLUMNS")))
3897 columns = atoi((char *)p);
3898 }
3899
3900#ifdef HAVE_TGETENT
3901 /*
3902 * 3. try reading "co" and "li" entries from termcap
3903 */
3904 if (columns == 0 || rows == 0)
3905 getlinecol(&columns, &rows);
3906#endif
3907
3908 /*
3909 * 4. If everything fails, use the old values
3910 */
3911 if (columns <= 0 || rows <= 0)
3912 return FAIL;
3913
3914 Rows = rows;
3915 Columns = columns;
Bram Moolenaare057d402013-06-30 17:51:51 +02003916 limit_screen_size();
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 return OK;
3918}
3919
3920/*
3921 * Try to set the window size to Rows and Columns.
3922 */
3923 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003924mch_set_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925{
3926 if (*T_CWS)
3927 {
3928 /*
3929 * NOTE: if you get an error here that term_set_winsize() is
3930 * undefined, check the output of configure. It could probably not
3931 * find a ncurses, termcap or termlib library.
3932 */
3933 term_set_winsize((int)Rows, (int)Columns);
3934 out_flush();
3935 screen_start(); /* don't know where cursor is now */
3936 }
3937}
3938
3939#endif /* VMS */
3940
3941/*
3942 * Rows and/or Columns has changed.
3943 */
3944 void
Bram Moolenaar05540972016-01-30 20:31:25 +01003945mch_new_shellsize(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946{
3947 /* Nothing to do. */
3948}
3949
Bram Moolenaar205b8862011-09-07 15:04:31 +02003950/*
3951 * Wait for process "child" to end.
3952 * Return "child" if it exited properly, <= 0 on error.
3953 */
3954 static pid_t
Bram Moolenaar05540972016-01-30 20:31:25 +01003955wait4pid(pid_t child, waitstatus *status)
Bram Moolenaar205b8862011-09-07 15:04:31 +02003956{
3957 pid_t wait_pid = 0;
3958
3959 while (wait_pid != child)
3960 {
Bram Moolenaar6be120e2012-04-20 15:55:16 +02003961 /* When compiled with Python threads are probably used, in which case
3962 * wait() sometimes hangs for no obvious reason. Use waitpid()
3963 * instead and loop (like the GUI). Also needed for other interfaces,
3964 * they might call system(). */
3965# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02003966 wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02003967# else
Bram Moolenaar205b8862011-09-07 15:04:31 +02003968 wait_pid = waitpid(child, status, WNOHANG);
Bram Moolenaar6be120e2012-04-20 15:55:16 +02003969# endif
Bram Moolenaar205b8862011-09-07 15:04:31 +02003970 if (wait_pid == 0)
3971 {
Bram Moolenaar75676462013-01-30 14:55:42 +01003972 /* Wait for 10 msec before trying again. */
Bram Moolenaar205b8862011-09-07 15:04:31 +02003973 mch_delay(10L, TRUE);
3974 continue;
3975 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02003976 if (wait_pid <= 0
3977# ifdef ECHILD
3978 && errno == ECHILD
3979# endif
3980 )
3981 break;
3982 }
3983 return wait_pid;
3984}
3985
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003986#if defined(FEAT_JOB_CHANNEL) || !defined(USE_SYSTEM) || defined(PROTO)
Bram Moolenaar72801402016-02-09 11:37:50 +01003987/*
3988 * Parse "cmd" and put the white-separated parts in "argv".
3989 * "argv" is an allocated array with "argc" entries.
3990 * Returns FAIL when out of memory.
3991 */
Bram Moolenaar835dc632016-02-07 14:27:38 +01003992 int
3993mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc)
3994{
3995 int i;
3996 char_u *p;
3997 int inquote;
3998
3999 /*
4000 * Do this loop twice:
4001 * 1: find number of arguments
4002 * 2: separate them and build argv[]
4003 */
4004 for (i = 0; i < 2; ++i)
4005 {
Bram Moolenaar6231cb82016-04-26 19:42:42 +02004006 p = skipwhite(cmd);
Bram Moolenaar835dc632016-02-07 14:27:38 +01004007 inquote = FALSE;
4008 *argc = 0;
4009 for (;;)
4010 {
4011 if (i == 1)
4012 (*argv)[*argc] = (char *)p;
4013 ++*argc;
4014 while (*p != NUL && (inquote || (*p != ' ' && *p != TAB)))
4015 {
4016 if (*p == '"')
4017 inquote = !inquote;
4018 ++p;
4019 }
4020 if (*p == NUL)
4021 break;
4022 if (i == 1)
4023 *p++ = NUL;
4024 p = skipwhite(p);
4025 }
4026 if (*argv == NULL)
4027 {
4028 if (use_shcf)
4029 {
4030 /* Account for possible multiple args in p_shcf. */
4031 p = p_shcf;
4032 for (;;)
4033 {
4034 p = skiptowhite(p);
4035 if (*p == NUL)
4036 break;
4037 ++*argc;
4038 p = skipwhite(p);
4039 }
4040 }
4041
4042 *argv = (char **)alloc((unsigned)((*argc + 4) * sizeof(char *)));
4043 if (*argv == NULL) /* out of memory */
4044 return FAIL;
4045 }
4046 }
4047 return OK;
4048}
4049#endif
4050
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01004051#if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004052 static void
4053set_child_environment(void)
4054{
4055# ifdef HAVE_SETENV
4056 char envbuf[50];
4057# else
4058 static char envbuf_Rows[20];
4059 static char envbuf_Columns[20];
4060# endif
4061
4062 /* Simulate to have a dumb terminal (for now) */
4063# ifdef HAVE_SETENV
4064 setenv("TERM", "dumb", 1);
4065 sprintf((char *)envbuf, "%ld", Rows);
4066 setenv("ROWS", (char *)envbuf, 1);
4067 sprintf((char *)envbuf, "%ld", Rows);
4068 setenv("LINES", (char *)envbuf, 1);
4069 sprintf((char *)envbuf, "%ld", Columns);
4070 setenv("COLUMNS", (char *)envbuf, 1);
4071# else
4072 /*
4073 * Putenv does not copy the string, it has to remain valid.
4074 * Use a static array to avoid losing allocated memory.
4075 */
4076 putenv("TERM=dumb");
4077 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
4078 putenv(envbuf_Rows);
4079 sprintf(envbuf_Rows, "LINES=%ld", Rows);
4080 putenv(envbuf_Rows);
4081 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
4082 putenv(envbuf_Columns);
4083# endif
4084}
4085#endif
4086
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 int
Bram Moolenaar05540972016-01-30 20:31:25 +01004088mch_call_shell(
4089 char_u *cmd,
4090 int options) /* SHELL_*, see vim.h */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004091{
4092#ifdef VMS
4093 char *ifn = NULL;
4094 char *ofn = NULL;
4095#endif
4096 int tmode = cur_tmode;
4097#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
4098 int x;
4099# ifndef __EMX__
4100 char_u *newcmd; /* only needed for unix */
4101# else
4102 /*
4103 * Set the preferred shell in the EMXSHELL environment variable (but
4104 * only if it is different from what is already in the environment).
4105 * Emx then takes care of whether to use "/c" or "-c" in an
4106 * intelligent way. Simply pass the whole thing to emx's system() call.
4107 * Emx also starts an interactive shell if system() is passed an empty
4108 * string.
4109 */
4110 char_u *p, *old;
4111
4112 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
4113 {
4114 /* should check HAVE_SETENV, but I know we don't have it. */
4115 p = alloc(10 + strlen(p_sh));
4116 if (p)
4117 {
4118 sprintf((char *)p, "EMXSHELL=%s", p_sh);
4119 putenv((char *)p); /* don't free the pointer! */
4120 }
4121 }
4122# endif
4123
4124 out_flush();
4125
4126 if (options & SHELL_COOKED)
4127 settmode(TMODE_COOK); /* set to normal mode */
4128
Bram Moolenaar62b42182010-09-21 22:09:37 +02004129# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004130 save_clipboard();
Bram Moolenaar62b42182010-09-21 22:09:37 +02004131 loose_clipboard();
4132# endif
4133
Bram Moolenaar071d4272004-06-13 20:20:40 +00004134# ifdef __EMX__
4135 if (cmd == NULL)
4136 x = system(""); /* this starts an interactive shell in emx */
4137 else
4138 x = system((char *)cmd);
4139 /* system() returns -1 when error occurs in starting shell */
4140 if (x == -1 && !emsg_silent)
4141 {
4142 MSG_PUTS(_("\nCannot execute shell "));
4143 msg_outtrans(p_sh);
4144 msg_putchar('\n');
4145 }
4146# else /* not __EMX__ */
4147 if (cmd == NULL)
4148 x = system((char *)p_sh);
4149 else
4150 {
4151# ifdef VMS
4152 if (ofn = strchr((char *)cmd, '>'))
4153 *ofn++ = '\0';
4154 if (ifn = strchr((char *)cmd, '<'))
4155 {
4156 char *p;
4157
4158 *ifn++ = '\0';
4159 p = strchr(ifn,' '); /* chop off any trailing spaces */
4160 if (p)
4161 *p = '\0';
4162 }
4163 if (ofn)
4164 x = vms_sys((char *)cmd, ofn, ifn);
4165 else
4166 x = system((char *)cmd);
4167# else
4168 newcmd = lalloc(STRLEN(p_sh)
4169 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
4170 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
4171 if (newcmd == NULL)
4172 x = 0;
4173 else
4174 {
4175 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
4176 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
4177 (char *)p_shcf,
4178 (char *)cmd);
4179 x = system((char *)newcmd);
4180 vim_free(newcmd);
4181 }
4182# endif
4183 }
4184# ifdef VMS
4185 x = vms_sys_status(x);
4186# endif
4187 if (emsg_silent)
4188 ;
4189 else if (x == 127)
4190 MSG_PUTS(_("\nCannot execute shell sh\n"));
4191# endif /* __EMX__ */
4192 else if (x && !(options & SHELL_SILENT))
4193 {
4194 MSG_PUTS(_("\nshell returned "));
4195 msg_outnum((long)x);
4196 msg_putchar('\n');
4197 }
4198
4199 if (tmode == TMODE_RAW)
4200 settmode(TMODE_RAW); /* set to raw mode */
4201# ifdef FEAT_TITLE
4202 resettitle();
4203# endif
Bram Moolenaar1a0316c2013-03-13 17:50:25 +01004204# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
4205 restore_clipboard();
4206# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004207 return x;
4208
4209#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
4210
Bram Moolenaardf177f62005-02-22 08:39:57 +00004211# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
4212 127, some shells use that already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213
Bram Moolenaar835dc632016-02-07 14:27:38 +01004214 char_u *newcmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004215 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004216 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 pid_t wait_pid = 0;
4218# ifdef HAVE_UNION_WAIT
4219 union wait status;
4220# else
4221 int status = -1;
4222# endif
4223 int retval = -1;
4224 char **argv = NULL;
4225 int argc;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004226 char_u *p_shcf_copy = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004227 int i;
4228 char_u *p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004230# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004231 int pty_slave_fd = -1;
4232 char *tty_name;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004233# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004234 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 int fd_fromshell[2];
4236 int pipe_error = FALSE;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004237 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004238
Bram Moolenaar62b42182010-09-21 22:09:37 +02004239 newcmd = vim_strsave(p_sh);
4240 if (newcmd == NULL) /* out of memory */
4241 goto error;
4242
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 out_flush();
4244 if (options & SHELL_COOKED)
4245 settmode(TMODE_COOK); /* set to normal mode */
4246
Bram Moolenaar835dc632016-02-07 14:27:38 +01004247 if (mch_parse_cmd(newcmd, TRUE, &argv, &argc) == FAIL)
4248 goto error;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004249
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 if (cmd != NULL)
4251 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004252 char_u *s;
4253
Bram Moolenaar071d4272004-06-13 20:20:40 +00004254 if (extra_shell_arg != NULL)
4255 argv[argc++] = (char *)extra_shell_arg;
Bram Moolenaarea35ef62011-08-04 22:59:28 +02004256
4257 /* Break 'shellcmdflag' into white separated parts. This doesn't
4258 * handle quoted strings, they are very unlikely to appear. */
4259 p_shcf_copy = alloc((unsigned)STRLEN(p_shcf) + 1);
4260 if (p_shcf_copy == NULL) /* out of memory */
4261 goto error;
4262 s = p_shcf_copy;
4263 p = p_shcf;
4264 while (*p != NUL)
4265 {
4266 argv[argc++] = (char *)s;
4267 while (*p && *p != ' ' && *p != TAB)
4268 *s++ = *p++;
4269 *s++ = NUL;
4270 p = skipwhite(p);
4271 }
4272
Bram Moolenaar071d4272004-06-13 20:20:40 +00004273 argv[argc++] = (char *)cmd;
4274 }
4275 argv[argc] = NULL;
4276
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00004278 * For the GUI, when writing the output into the buffer and when reading
4279 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
4280 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004281 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004282 if ((options & (SHELL_READ|SHELL_WRITE))
4283# ifdef FEAT_GUI
4284 || (gui.in_use && show_shell_mess)
4285# endif
4286 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004288# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 /*
4290 * Try to open a master pty.
4291 * If this works, open the slave pty.
4292 * If the slave can't be opened, close the master pty.
4293 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004294 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 {
4296 pty_master_fd = OpenPTY(&tty_name); /* open pty */
Bram Moolenaare70172e2011-08-04 19:36:52 +02004297 if (pty_master_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004298 {
Bram Moolenaare70172e2011-08-04 19:36:52 +02004299 /* Leaving out O_NOCTTY may lead to waitpid() always returning
4300 * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume
4301 * adding O_NOCTTY always works when defined. */
4302#ifdef O_NOCTTY
4303 pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0);
4304#else
4305 pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0);
4306#endif
4307 if (pty_slave_fd < 0)
4308 {
4309 close(pty_master_fd);
4310 pty_master_fd = -1;
4311 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 }
4313 }
4314 /*
4315 * If not opening a pty or it didn't work, try using pipes.
4316 */
4317 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004318# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 {
4320 pipe_error = (pipe(fd_toshell) < 0);
4321 if (!pipe_error) /* pipe create OK */
4322 {
4323 pipe_error = (pipe(fd_fromshell) < 0);
4324 if (pipe_error) /* pipe create failed */
4325 {
4326 close(fd_toshell[0]);
4327 close(fd_toshell[1]);
4328 }
4329 }
4330 if (pipe_error)
4331 {
4332 MSG_PUTS(_("\nCannot create pipes\n"));
4333 out_flush();
4334 }
4335 }
4336 }
4337
4338 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004339 {
4340# ifdef __BEOS__
4341 beos_cleanup_read_thread();
4342# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004343
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 if ((pid = fork()) == -1) /* maybe we should use vfork() */
4345 {
4346 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004347 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004348# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004349 || (gui.in_use && show_shell_mess)
4350# endif
4351 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004352 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004353# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004354 if (pty_master_fd >= 0) /* close the pseudo tty */
4355 {
4356 close(pty_master_fd);
4357 close(pty_slave_fd);
4358 }
4359 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004360# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 {
4362 close(fd_toshell[0]);
4363 close(fd_toshell[1]);
4364 close(fd_fromshell[0]);
4365 close(fd_fromshell[1]);
4366 }
4367 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 }
4369 else if (pid == 0) /* child */
4370 {
4371 reset_signals(); /* handle signals normally */
4372
4373 if (!show_shell_mess || (options & SHELL_EXPAND))
4374 {
4375 int fd;
4376
4377 /*
4378 * Don't want to show any message from the shell. Can't just
4379 * close stdout and stderr though, because some systems will
4380 * break if you try to write to them after that, so we must
4381 * use dup() to replace them with something else -- webb
4382 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
4383 * waiting for input.
4384 */
4385 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
4386 fclose(stdin);
4387 fclose(stdout);
4388 fclose(stderr);
4389
4390 /*
4391 * If any of these open()'s and dup()'s fail, we just continue
4392 * anyway. It's not fatal, and on most systems it will make
4393 * no difference at all. On a few it will cause the execvp()
4394 * to exit with a non-zero status even when the completion
4395 * could be done, which is nothing too serious. If the open()
4396 * or dup() failed we'd just do the same thing ourselves
4397 * anyway -- webb
4398 */
4399 if (fd >= 0)
4400 {
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004401 ignored = dup(fd); /* To replace stdin (fd 0) */
4402 ignored = dup(fd); /* To replace stdout (fd 1) */
4403 ignored = dup(fd); /* To replace stderr (fd 2) */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404
4405 /* Don't need this now that we've duplicated it */
4406 close(fd);
4407 }
4408 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004409 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004410# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00004411 || gui.in_use
4412# endif
4413 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 {
4415
Bram Moolenaardf177f62005-02-22 08:39:57 +00004416# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004417 /* Create our own process group, so that the child and all its
4418 * children can be kill()ed. Don't do this when using pipes,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004419 * because stdin is not a tty, we would lose /dev/tty. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004420 if (p_stmp)
Bram Moolenaar07256082009-02-04 13:19:42 +00004421 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004422 (void)setsid();
Bram Moolenaar07256082009-02-04 13:19:42 +00004423# if defined(SIGHUP)
4424 /* When doing "!xterm&" and 'shell' is bash: the shell
4425 * will exit and send SIGHUP to all processes in its
4426 * group, killing the just started process. Ignore SIGHUP
4427 * to avoid that. (suggested by Simon Schubert)
4428 */
4429 signal(SIGHUP, SIG_IGN);
4430# endif
4431 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004432# endif
4433# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004434 if (pty_slave_fd >= 0)
4435 {
4436 /* push stream discipline modules */
4437 if (options & SHELL_COOKED)
4438 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004440 /* Try to become controlling tty (probably doesn't work,
4441 * unless run by root) */
4442 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004444 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004445# endif
Bram Moolenaar6463ca22016-02-13 17:04:46 +01004446 set_child_environment();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004447
Bram Moolenaara5792f52005-11-23 21:25:05 +00004448 /*
4449 * stderr is only redirected when using the GUI, so that a
4450 * program like gpg can still access the terminal to get a
4451 * passphrase using stderr.
4452 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004453# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 if (pty_master_fd >= 0)
4455 {
4456 close(pty_master_fd); /* close master side of pty */
4457
4458 /* set up stdin/stdout/stderr for the child */
4459 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004460 ignored = dup(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004462 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004463 if (gui.in_use)
4464 {
4465 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004466 ignored = dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004467 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468
4469 close(pty_slave_fd); /* has been dupped, close it now */
4470 }
4471 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004472# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004473 {
4474 /* set up stdin for the child */
4475 close(fd_toshell[1]);
4476 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004477 ignored = dup(fd_toshell[0]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004478 close(fd_toshell[0]);
4479
4480 /* set up stdout for the child */
4481 close(fd_fromshell[0]);
4482 close(1);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004483 ignored = dup(fd_fromshell[1]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484 close(fd_fromshell[1]);
4485
Bram Moolenaara5792f52005-11-23 21:25:05 +00004486# ifdef FEAT_GUI
4487 if (gui.in_use)
4488 {
4489 /* set up stderr for the child */
4490 close(2);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004491 ignored = dup(1);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004492 }
4493# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004494 }
4495 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004496
Bram Moolenaar071d4272004-06-13 20:20:40 +00004497 /*
4498 * There is no type cast for the argv, because the type may be
4499 * different on different machines. This may cause a warning
4500 * message with strict compilers, don't worry about it.
4501 * Call _exit() instead of exit() to avoid closing the connection
4502 * to the X server (esp. with GTK, which uses atexit()).
4503 */
4504 execvp(argv[0], argv);
4505 _exit(EXEC_FAILED); /* exec failed, return failure code */
4506 }
4507 else /* parent */
4508 {
4509 /*
4510 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004511 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004512 */
4513 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004514 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515
4516 /*
4517 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004518 * This is also used to pipe stdin/stdout to/from the external
4519 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004520 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004521 if ((options & (SHELL_READ|SHELL_WRITE))
4522# ifdef FEAT_GUI
4523 || (gui.in_use && show_shell_mess)
4524# endif
4525 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004526 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004527# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004528 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004529# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004531# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004532 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4533 int ta_len = 0; /* valid bytes in ta_buf[] */
4534 int len;
4535 int p_more_save;
4536 int old_State;
4537 int c;
4538 int toshell_fd;
4539 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004540 garray_T ga;
4541 int noread_cnt;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004542# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4543 struct timeval start_tv;
4544# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004545
Bram Moolenaardf177f62005-02-22 08:39:57 +00004546# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547 if (pty_master_fd >= 0)
4548 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004549 fromshell_fd = pty_master_fd;
4550 toshell_fd = dup(pty_master_fd);
4551 }
4552 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004553# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004554 {
4555 close(fd_toshell[0]);
4556 close(fd_fromshell[1]);
4557 toshell_fd = fd_toshell[1];
4558 fromshell_fd = fd_fromshell[0];
4559 }
4560
4561 /*
4562 * Write to the child if there are typed characters.
4563 * Read from the child if there are characters available.
4564 * Repeat the reading a few times if more characters are
4565 * available. Need to check for typed keys now and then, but
4566 * not too often (delays when no chars are available).
4567 * This loop is quit if no characters can be read from the pty
4568 * (WaitForChar detected special condition), or there are no
4569 * characters available and the child has exited.
4570 * Only check if the child has exited when there is no more
4571 * output. The child may exit before all the output has
4572 * been printed.
4573 *
4574 * Currently this busy loops!
4575 * This can probably dead-lock when the write blocks!
4576 */
4577 p_more_save = p_more;
4578 p_more = FALSE;
4579 old_State = State;
4580 State = EXTERNCMD; /* don't redraw at window resize */
4581
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004582 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004583 {
4584 /* Fork a process that will write the lines to the
4585 * external program. */
4586 if ((wpid = fork()) == -1)
4587 {
4588 MSG_PUTS(_("\nCannot fork\n"));
4589 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004590 else if (wpid == 0) /* child */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004591 {
4592 linenr_T lnum = curbuf->b_op_start.lnum;
4593 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004594 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004595 size_t l;
4596
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004597 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004598 for (;;)
4599 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004600 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004601 if (l == 0)
4602 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004603 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004604 /* NL -> NUL translation */
4605 len = write(toshell_fd, "", (size_t)1);
4606 else
4607 {
Bram Moolenaar70b2a562012-01-10 22:26:17 +01004608 char_u *s = vim_strchr(lp + written, NL);
4609
Bram Moolenaar89d40322006-08-29 15:30:07 +00004610 len = write(toshell_fd, (char *)lp + written,
Bram Moolenaar78a15312009-05-15 19:33:18 +00004611 s == NULL ? l
4612 : (size_t)(s - (lp + written)));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004613 }
Bram Moolenaar78a15312009-05-15 19:33:18 +00004614 if (len == (int)l)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004615 {
4616 /* Finished a line, add a NL, unless this line
4617 * should not have one. */
4618 if (lnum != curbuf->b_op_end.lnum
Bram Moolenaar34d72d42015-07-17 14:18:08 +02004619 || (!curbuf->b_p_bin
4620 && curbuf->b_p_fixeol)
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004621 || (lnum != curbuf->b_no_eol_lnum
Bram Moolenaardf177f62005-02-22 08:39:57 +00004622 && (lnum !=
4623 curbuf->b_ml.ml_line_count
4624 || curbuf->b_p_eol)))
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00004625 ignored = write(toshell_fd, "\n",
4626 (size_t)1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004627 ++lnum;
4628 if (lnum > curbuf->b_op_end.lnum)
4629 {
4630 /* finished all the lines, close pipe */
4631 close(toshell_fd);
4632 toshell_fd = -1;
4633 break;
4634 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004635 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004636 written = 0;
4637 }
4638 else if (len > 0)
4639 written += len;
4640 }
4641 _exit(0);
4642 }
Bram Moolenaar205b8862011-09-07 15:04:31 +02004643 else /* parent */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004644 {
4645 close(toshell_fd);
4646 toshell_fd = -1;
4647 }
4648 }
4649
4650 if (options & SHELL_READ)
4651 ga_init2(&ga, 1, BUFLEN);
4652
4653 noread_cnt = 0;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004654# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4655 gettimeofday(&start_tv, NULL);
4656# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004657 for (;;)
4658 {
4659 /*
4660 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004661 * if there are any.
4662 * Don't do this if we are expanding wild cards (would eat
4663 * typeahead).
4664 * Don't do this when filtering and terminal is in cooked
4665 * mode, the shell command will handle the I/O. Avoids
4666 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004667 * Don't get characters when the child has already
4668 * finished (wait_pid == 0).
Bram Moolenaardf177f62005-02-22 08:39:57 +00004669 * Don't read characters unless we didn't get output for a
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004670 * while (noread_cnt > 4), avoids that ":r !ls" eats
4671 * typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004672 */
4673 len = 0;
4674 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004675 && ((options &
4676 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4677 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004678# ifdef FEAT_GUI
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004679 || gui.in_use
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004680# endif
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004681 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004682 && wait_pid == 0
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004683 && (ta_len > 0 || noread_cnt > 4))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 {
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004685 if (ta_len == 0)
4686 {
4687 /* Get extra characters when we don't have any.
4688 * Reset the counter and timer. */
4689 noread_cnt = 0;
4690# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4691 gettimeofday(&start_tv, NULL);
4692# endif
4693 len = ui_inchar(ta_buf, BUFLEN, 10L, 0);
4694 }
4695 if (ta_len > 0 || len > 0)
4696 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 /*
4698 * For pipes:
4699 * Check for CTRL-C: send interrupt signal to child.
4700 * Check for CTRL-D: EOF, close pipe to child.
4701 */
4702 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4703 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004704# ifdef SIGINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 /*
4706 * Send SIGINT to the child's group or all
4707 * processes in our group.
4708 */
4709 if (ta_buf[ta_len] == Ctrl_C
4710 || ta_buf[ta_len] == intr_char)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004711 {
4712# ifdef HAVE_SETSID
Bram Moolenaar071d4272004-06-13 20:20:40 +00004713 kill(-pid, SIGINT);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004714# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 kill(0, SIGINT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716# endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00004717 if (wpid > 0)
4718 kill(wpid, SIGINT);
4719 }
4720# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721 if (pty_master_fd < 0 && toshell_fd >= 0
4722 && ta_buf[ta_len] == Ctrl_D)
4723 {
4724 close(toshell_fd);
4725 toshell_fd = -1;
4726 }
4727 }
4728
4729 /* replace K_BS by <BS> and K_DEL by <DEL> */
4730 for (i = ta_len; i < ta_len + len; ++i)
4731 {
4732 if (ta_buf[i] == CSI && len - i > 2)
4733 {
4734 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4735 if (c == K_DEL || c == K_KDEL || c == K_BS)
4736 {
4737 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4738 (size_t)(len - i - 2));
4739 if (c == K_DEL || c == K_KDEL)
4740 ta_buf[i] = DEL;
4741 else
4742 ta_buf[i] = Ctrl_H;
4743 len -= 2;
4744 }
4745 }
4746 else if (ta_buf[i] == '\r')
4747 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004748# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749 if (has_mbyte)
Bram Moolenaarfeba08b2009-06-16 13:12:07 +00004750 i += (*mb_ptr2len_len)(ta_buf + i,
4751 ta_len + len - i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004752# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753 }
4754
4755 /*
4756 * For pipes: echo the typed characters.
4757 * For a pty this does not seem to work.
4758 */
4759 if (pty_master_fd < 0)
4760 {
4761 for (i = ta_len; i < ta_len + len; ++i)
4762 {
4763 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4764 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004765# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766 else if (has_mbyte)
4767 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004768 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769
4770 msg_outtrans_len(ta_buf + i, l);
4771 i += l - 1;
4772 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004773# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004774 else
4775 msg_outtrans_len(ta_buf + i, 1);
4776 }
4777 windgoto(msg_row, msg_col);
4778 out_flush();
4779 }
4780
4781 ta_len += len;
4782
4783 /*
4784 * Write the characters to the child, unless EOF has
4785 * been typed for pipes. Write one character at a
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004786 * time, to avoid losing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004787 * When writing buffer lines, drop the typed
4788 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004789 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004790 if (options & SHELL_WRITE)
4791 ta_len = 0;
4792 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004793 {
4794 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4795 if (len > 0)
4796 {
4797 ta_len -= len;
4798 mch_memmove(ta_buf, ta_buf + len, ta_len);
4799 }
4800 }
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004802 }
4803
Bram Moolenaardf177f62005-02-22 08:39:57 +00004804 if (got_int)
4805 {
4806 /* CTRL-C sends a signal to the child, we ignore it
4807 * ourselves */
4808# ifdef HAVE_SETSID
4809 kill(-pid, SIGINT);
4810# else
4811 kill(0, SIGINT);
4812# endif
4813 if (wpid > 0)
4814 kill(wpid, SIGINT);
4815 got_int = FALSE;
4816 }
4817
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 /*
4819 * Check if the child has any characters to be printed.
4820 * Read them and write them to our window. Repeat this as
4821 * long as there is something to do, avoid the 10ms wait
4822 * for mch_inchar(), or sending typeahead characters to
4823 * the external process.
4824 * TODO: This should handle escape sequences, compatible
4825 * to some terminal (vt52?).
4826 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004827 ++noread_cnt;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01004828 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004830 len = read_eintr(fromshell_fd, buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004831# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004833# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004834 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004835# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 );
4837 if (len <= 0) /* end of file or error */
4838 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004839
4840 noread_cnt = 0;
4841 if (options & SHELL_READ)
4842 {
4843 /* Do NUL -> NL translation, append NL separated
4844 * lines to the current buffer. */
4845 for (i = 0; i < len; ++i)
4846 {
4847 if (buffer[i] == NL)
4848 append_ga_line(&ga);
4849 else if (buffer[i] == NUL)
4850 ga_append(&ga, NL);
4851 else
4852 ga_append(&ga, buffer[i]);
4853 }
4854 }
4855# ifdef FEAT_MBYTE
4856 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 {
4858 int l;
4859
Bram Moolenaardf177f62005-02-22 08:39:57 +00004860 len += buffer_off;
4861 buffer[len] = NUL;
4862
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 /* Check if the last character in buffer[] is
4864 * incomplete, keep these bytes for the next
4865 * round. */
4866 for (p = buffer; p < buffer + len; p += l)
4867 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004868 l = mb_cptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004869 if (l == 0)
4870 l = 1; /* NUL byte? */
4871 else if (MB_BYTE2LEN(*p) != l)
4872 break;
4873 }
4874 if (p == buffer) /* no complete character */
4875 {
4876 /* avoid getting stuck at an illegal byte */
4877 if (len >= 12)
4878 ++p;
4879 else
4880 {
4881 buffer_off = len;
4882 continue;
4883 }
4884 }
4885 c = *p;
4886 *p = NUL;
4887 msg_puts(buffer);
4888 if (p < buffer + len)
4889 {
4890 *p = c;
4891 buffer_off = (buffer + len) - p;
4892 mch_memmove(buffer, p, buffer_off);
4893 continue;
4894 }
4895 buffer_off = 0;
4896 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004897# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899 {
4900 buffer[len] = NUL;
4901 msg_puts(buffer);
4902 }
4903
4904 windgoto(msg_row, msg_col);
4905 cursor_on();
4906 out_flush();
4907 if (got_int)
4908 break;
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004909
4910# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004911 if (wait_pid == 0)
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004912 {
Bram Moolenaare30a3d02016-06-04 14:11:20 +02004913 long msec = elapsed(&start_tv);
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004914
4915 /* Avoid that we keep looping here without
4916 * checking for a CTRL-C for a long time. Don't
4917 * break out too often to avoid losing typeahead. */
Bram Moolenaarb3dc8fd2009-02-22 01:52:59 +00004918 if (msec > 2000)
4919 {
4920 noread_cnt = 5;
4921 break;
4922 }
4923 }
4924# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004925 }
4926
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004927 /* If we already detected the child has finished, continue
4928 * reading output for a short while. Some text may be
4929 * buffered. */
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004930 if (wait_pid == pid)
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004931 {
4932 if (noread_cnt < 5)
4933 continue;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004934 break;
Bram Moolenaar17fe5e12016-04-04 22:03:08 +02004935 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004936
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 /*
4938 * Check if the child still exists, before checking for
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004939 * typed characters (otherwise we would lose typeahead).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004941# ifdef __NeXT__
Bram Moolenaar205b8862011-09-07 15:04:31 +02004942 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004943# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004944 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004945# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4947 || (wait_pid == pid && WIFEXITED(status)))
4948 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004949 /* Don't break the loop yet, try reading more
4950 * characters from "fromshell_fd" first. When using
4951 * pipes there might still be something to read and
4952 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004954 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004955 else
4956 wait_pid = 0;
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004957
Bram Moolenaar95a51352013-03-21 22:53:50 +01004958# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004959 /* Handle any X events, e.g. serving the clipboard. */
4960 clip_update();
4961# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 }
4963finished:
4964 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004965 if (options & SHELL_READ)
4966 {
4967 if (ga.ga_len > 0)
4968 {
4969 append_ga_line(&ga);
4970 /* remember that the NL was missing */
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004971 curbuf->b_no_eol_lnum = curwin->w_cursor.lnum;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004972 }
4973 else
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01004974 curbuf->b_no_eol_lnum = 0;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004975 ga_clear(&ga);
4976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978 /*
4979 * Give all typeahead that wasn't used back to ui_inchar().
4980 */
4981 if (ta_len)
4982 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 State = old_State;
4984 if (toshell_fd >= 0)
4985 close(toshell_fd);
4986 close(fromshell_fd);
4987 }
Bram Moolenaar95a51352013-03-21 22:53:50 +01004988# if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01004989 else
4990 {
4991 /*
4992 * Similar to the loop above, but only handle X events, no
4993 * I/O.
4994 */
4995 for (;;)
4996 {
4997 if (got_int)
4998 {
4999 /* CTRL-C sends a signal to the child, we ignore it
5000 * ourselves */
5001# ifdef HAVE_SETSID
5002 kill(-pid, SIGINT);
5003# else
5004 kill(0, SIGINT);
5005# endif
5006 got_int = FALSE;
5007 }
5008# ifdef __NeXT__
5009 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
5010# else
5011 wait_pid = waitpid(pid, &status, WNOHANG);
5012# endif
5013 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
5014 || (wait_pid == pid && WIFEXITED(status)))
5015 {
5016 wait_pid = pid;
5017 break;
5018 }
5019
5020 /* Handle any X events, e.g. serving the clipboard. */
5021 clip_update();
5022
5023 mch_delay(10L, TRUE);
5024 }
5025 }
5026# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027
5028 /*
5029 * Wait until our child has exited.
5030 * Ignore wait() returning pids of other children and returning
5031 * because of some signal like SIGWINCH.
5032 * Don't wait if wait_pid was already set above, indicating the
5033 * child already exited.
5034 */
Bram Moolenaar205b8862011-09-07 15:04:31 +02005035 if (wait_pid != pid)
5036 wait_pid = wait4pid(pid, &status);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005037
Bram Moolenaar624891f2010-10-13 16:22:09 +02005038# ifdef FEAT_GUI
5039 /* Close slave side of pty. Only do this after the child has
5040 * exited, otherwise the child may hang when it tries to write on
5041 * the pty. */
5042 if (pty_master_fd >= 0)
5043 close(pty_slave_fd);
5044# endif
5045
Bram Moolenaardf177f62005-02-22 08:39:57 +00005046 /* Make sure the child that writes to the external program is
5047 * dead. */
5048 if (wpid > 0)
Bram Moolenaar205b8862011-09-07 15:04:31 +02005049 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00005050 kill(wpid, SIGKILL);
Bram Moolenaar205b8862011-09-07 15:04:31 +02005051 wait4pid(wpid, NULL);
5052 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00005053
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 /*
5055 * Set to raw mode right now, otherwise a CTRL-C after
5056 * catch_signals() will kill Vim.
5057 */
5058 if (tmode == TMODE_RAW)
5059 settmode(TMODE_RAW);
5060 did_settmode = TRUE;
5061 set_signals();
5062
5063 if (WIFEXITED(status))
5064 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00005065 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 retval = WEXITSTATUS(status);
Bram Moolenaar75676462013-01-30 14:55:42 +01005067 if (retval != 0 && !emsg_silent)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068 {
5069 if (retval == EXEC_FAILED)
5070 {
5071 MSG_PUTS(_("\nCannot execute shell "));
5072 msg_outtrans(p_sh);
5073 msg_putchar('\n');
5074 }
5075 else if (!(options & SHELL_SILENT))
5076 {
5077 MSG_PUTS(_("\nshell returned "));
5078 msg_outnum((long)retval);
5079 msg_putchar('\n');
5080 }
5081 }
5082 }
5083 else
5084 MSG_PUTS(_("\nCommand terminated\n"));
5085 }
5086 }
5087 vim_free(argv);
Bram Moolenaarea35ef62011-08-04 22:59:28 +02005088 vim_free(p_shcf_copy);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089
5090error:
5091 if (!did_settmode)
5092 if (tmode == TMODE_RAW)
5093 settmode(TMODE_RAW); /* set to raw mode */
5094# ifdef FEAT_TITLE
5095 resettitle();
5096# endif
5097 vim_free(newcmd);
5098
5099 return retval;
5100
5101#endif /* USE_SYSTEM */
5102}
5103
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005104#if defined(FEAT_JOB_CHANNEL) || defined(PROTO)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005105 void
Bram Moolenaar802d5592016-03-05 22:05:27 +01005106mch_start_job(char **argv, job_T *job, jobopt_T *options UNUSED)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005107{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005108 pid_t pid;
5109 int fd_in[2]; /* for stdin */
5110 int fd_out[2]; /* for stdout */
5111 int fd_err[2]; /* for stderr */
Bram Moolenaar16eb4f82016-02-14 23:02:34 +01005112 channel_T *channel = NULL;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005113 int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL;
5114 int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL;
5115 int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL;
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005116 int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005117 int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE;
5118 int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE;
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005119 int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005120
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005121 if (use_out_for_err && use_null_for_out)
5122 use_null_for_err = TRUE;
5123
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005124 /* default is to fail */
5125 job->jv_status = JOB_FAILED;
5126 fd_in[0] = -1;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005127 fd_in[1] = -1;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005128 fd_out[0] = -1;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005129 fd_out[1] = -1;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005130 fd_err[0] = -1;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005131 fd_err[1] = -1;
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005132
Bram Moolenaar12dcf022016-02-15 23:09:04 +01005133 /* TODO: without the channel feature connect the child to /dev/null? */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005134 /* Open pipes for stdin, stdout, stderr. */
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005135 if (use_file_for_in)
5136 {
5137 char_u *fname = options->jo_io_name[PART_IN];
5138
5139 fd_in[0] = mch_open((char *)fname, O_RDONLY, 0);
5140 if (fd_in[0] < 0)
5141 {
5142 EMSG2(_(e_notopen), fname);
5143 goto failed;
5144 }
5145 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005146 else if (!use_null_for_in && pipe(fd_in) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005147 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005148
5149 if (use_file_for_out)
5150 {
5151 char_u *fname = options->jo_io_name[PART_OUT];
5152
5153 fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644);
5154 if (fd_out[1] < 0)
5155 {
5156 EMSG2(_(e_notopen), fname);
5157 goto failed;
5158 }
5159 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005160 else if (!use_null_for_out && pipe(fd_out) < 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005161 goto failed;
Bram Moolenaare98d1212016-03-08 15:37:41 +01005162
5163 if (use_file_for_err)
5164 {
5165 char_u *fname = options->jo_io_name[PART_ERR];
5166
5167 fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600);
5168 if (fd_err[1] < 0)
5169 {
5170 EMSG2(_(e_notopen), fname);
5171 goto failed;
5172 }
5173 }
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005174 else if (!use_out_for_err && !use_null_for_err && pipe(fd_err) < 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005175 goto failed;
5176
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005177 if (!use_null_for_in || !use_null_for_out || !use_null_for_err)
5178 {
Bram Moolenaarde279892016-03-11 22:19:44 +01005179 if (options->jo_set & JO_CHANNEL)
5180 {
5181 channel = options->jo_channel;
5182 if (channel != NULL)
5183 ++channel->ch_refcount;
5184 }
5185 else
5186 channel = add_channel();
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005187 if (channel == NULL)
5188 goto failed;
5189 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005190
5191 pid = fork(); /* maybe we should use vfork() */
5192 if (pid == -1)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005193 {
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005194 /* failed to fork */
5195 goto failed;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005196 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005197
5198 if (pid == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005199 {
Bram Moolenaar4694a172016-04-21 14:05:23 +02005200 int null_fd = -1;
5201 int stderr_works = TRUE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005202
Bram Moolenaar835dc632016-02-07 14:27:38 +01005203 /* child */
5204 reset_signals(); /* handle signals normally */
5205
5206# ifdef HAVE_SETSID
5207 /* Create our own process group, so that the child and all its
5208 * children can be kill()ed. Don't do this when using pipes,
5209 * because stdin is not a tty, we would lose /dev/tty. */
5210 (void)setsid();
5211# endif
5212
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005213 set_child_environment();
5214
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005215 if (use_null_for_in || use_null_for_out || use_null_for_err)
5216 null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
5217
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005218 /* set up stdin for the child */
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005219 if (use_null_for_in && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005220 {
5221 close(0);
5222 ignored = dup(null_fd);
5223 }
5224 else
5225 {
5226 if (!use_file_for_in)
5227 close(fd_in[1]);
5228 close(0);
5229 ignored = dup(fd_in[0]);
5230 close(fd_in[0]);
5231 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005232
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005233 /* set up stderr for the child */
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005234 if (use_null_for_err && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005235 {
5236 close(2);
5237 ignored = dup(null_fd);
Bram Moolenaar4694a172016-04-21 14:05:23 +02005238 stderr_works = FALSE;
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005239 }
5240 else if (use_out_for_err)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005241 {
5242 close(2);
5243 ignored = dup(fd_out[1]);
5244 }
5245 else
5246 {
Bram Moolenaare98d1212016-03-08 15:37:41 +01005247 if (!use_file_for_err)
5248 close(fd_err[0]);
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005249 close(2);
5250 ignored = dup(fd_err[1]);
5251 close(fd_err[1]);
5252 }
5253
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005254 /* set up stdout for the child */
Bram Moolenaarc0a1d7f2016-03-19 14:12:50 +01005255 if (use_null_for_out && null_fd >= 0)
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005256 {
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005257 close(1);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005258 ignored = dup(null_fd);
5259 }
5260 else
5261 {
5262 if (!use_file_for_out)
5263 close(fd_out[0]);
5264 close(1);
5265 ignored = dup(fd_out[1]);
5266 close(fd_out[1]);
5267 }
Bram Moolenaarea83bf02016-05-08 09:40:51 +02005268
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005269 if (null_fd >= 0)
5270 close(null_fd);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005271
Bram Moolenaar835dc632016-02-07 14:27:38 +01005272 /* See above for type of argv. */
5273 execvp(argv[0], argv);
5274
Bram Moolenaar4694a172016-04-21 14:05:23 +02005275 if (stderr_works)
5276 perror("executing job failed");
Bram Moolenaarcda77642016-06-04 13:32:35 +02005277#ifdef EXITFREE
5278 /* calling free_all_mem() here causes problems. Ignore valgrind
5279 * reporting possibly leaked memory. */
5280#endif
Bram Moolenaar835dc632016-02-07 14:27:38 +01005281 _exit(EXEC_FAILED); /* exec failed, return failure code */
5282 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005283
5284 /* parent */
5285 job->jv_pid = pid;
5286 job->jv_status = JOB_STARTED;
Bram Moolenaarde279892016-03-11 22:19:44 +01005287 job->jv_channel = channel; /* ch_refcount was set above */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005288
5289 /* child stdin, stdout and stderr */
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005290 if (!use_file_for_in && fd_in[0] >= 0)
Bram Moolenaarb69fccf2016-03-06 23:06:25 +01005291 close(fd_in[0]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005292 if (!use_file_for_out && fd_out[1] >= 0)
Bram Moolenaare98d1212016-03-08 15:37:41 +01005293 close(fd_out[1]);
Bram Moolenaarbe6aa462016-03-20 21:02:00 +01005294 if (!use_out_for_err && !use_file_for_err && fd_err[1] >= 0)
Bram Moolenaarc25558b2016-03-03 21:02:23 +01005295 close(fd_err[1]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005296 if (channel != NULL)
5297 {
5298 channel_set_pipes(channel,
5299 use_file_for_in || use_null_for_in
5300 ? INVALID_FD : fd_in[1],
5301 use_file_for_out || use_null_for_out
5302 ? INVALID_FD : fd_out[0],
5303 use_out_for_err || use_file_for_err || use_null_for_err
Bram Moolenaare98d1212016-03-08 15:37:41 +01005304 ? INVALID_FD : fd_err[0]);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005305 channel_set_job(channel, job, options);
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005306 }
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005307
Bram Moolenaarf65333c2016-03-08 18:27:21 +01005308 /* success! */
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005309 return;
5310
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005311failed:
Bram Moolenaarde279892016-03-11 22:19:44 +01005312 channel_unref(channel);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005313 if (fd_in[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005314 close(fd_in[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005315 if (fd_in[1] >= 0)
5316 close(fd_in[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005317 if (fd_out[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005318 close(fd_out[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005319 if (fd_out[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005320 close(fd_out[1]);
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005321 if (fd_err[0] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005322 close(fd_err[0]);
Bram Moolenaare98d1212016-03-08 15:37:41 +01005323 if (fd_err[1] >= 0)
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005324 close(fd_err[1]);
Bram Moolenaar835dc632016-02-07 14:27:38 +01005325}
5326
5327 char *
5328mch_job_status(job_T *job)
5329{
5330# ifdef HAVE_UNION_WAIT
5331 union wait status;
5332# else
5333 int status = -1;
5334# endif
5335 pid_t wait_pid = 0;
5336
5337# ifdef __NeXT__
5338 wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0);
5339# else
5340 wait_pid = waitpid(job->jv_pid, &status, WNOHANG);
5341# endif
5342 if (wait_pid == -1)
5343 {
5344 /* process must have exited */
5345 job->jv_status = JOB_ENDED;
5346 return "dead";
5347 }
5348 if (wait_pid == 0)
5349 return "run";
5350 if (WIFEXITED(status))
5351 {
5352 /* LINTED avoid "bitwise operation on signed value" */
5353 job->jv_exitval = WEXITSTATUS(status);
5354 job->jv_status = JOB_ENDED;
5355 return "dead";
5356 }
Bram Moolenaar76467df2016-02-12 19:30:26 +01005357 if (WIFSIGNALED(status))
5358 {
5359 job->jv_exitval = -1;
5360 job->jv_status = JOB_ENDED;
5361 return "dead";
5362 }
Bram Moolenaar835dc632016-02-07 14:27:38 +01005363 return "run";
5364}
5365
5366 int
5367mch_stop_job(job_T *job, char_u *how)
5368{
Bram Moolenaar6463ca22016-02-13 17:04:46 +01005369 int sig = -1;
5370 pid_t job_pid;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005371
Bram Moolenaar923d9262016-02-25 20:56:01 +01005372 if (*how == NUL || STRCMP(how, "term") == 0)
Bram Moolenaar835dc632016-02-07 14:27:38 +01005373 sig = SIGTERM;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005374 else if (STRCMP(how, "hup") == 0)
5375 sig = SIGHUP;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005376 else if (STRCMP(how, "quit") == 0)
5377 sig = SIGQUIT;
Bram Moolenaar923d9262016-02-25 20:56:01 +01005378 else if (STRCMP(how, "int") == 0)
5379 sig = SIGINT;
Bram Moolenaar835dc632016-02-07 14:27:38 +01005380 else if (STRCMP(how, "kill") == 0)
5381 sig = SIGKILL;
5382 else if (isdigit(*how))
5383 sig = atoi((char *)how);
5384 else
5385 return FAIL;
Bram Moolenaar76467df2016-02-12 19:30:26 +01005386
Bram Moolenaar72801402016-02-09 11:37:50 +01005387 /* TODO: have an option to only kill the process, not the group? */
Bram Moolenaar76467df2016-02-12 19:30:26 +01005388 job_pid = job->jv_pid;
5389 if (job_pid == getpgid(job_pid))
5390 job_pid = -job_pid;
5391
5392 kill(job_pid, sig);
5393
Bram Moolenaar835dc632016-02-07 14:27:38 +01005394 return OK;
5395}
Bram Moolenaar76467df2016-02-12 19:30:26 +01005396
5397/*
5398 * Clear the data related to "job".
5399 */
5400 void
5401mch_clear_job(job_T *job)
5402{
5403 /* call waitpid because child process may become zombie */
5404# ifdef __NeXT__
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005405 (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005406# else
Bram Moolenaar4ca812b2016-03-02 21:51:16 +01005407 (void)waitpid(job->jv_pid, NULL, WNOHANG);
Bram Moolenaar76467df2016-02-12 19:30:26 +01005408# endif
5409}
Bram Moolenaar835dc632016-02-07 14:27:38 +01005410#endif
5411
Bram Moolenaar071d4272004-06-13 20:20:40 +00005412/*
5413 * Check for CTRL-C typed by reading all available characters.
5414 * In cooked mode we should get SIGINT, no need to check.
5415 */
5416 void
Bram Moolenaar05540972016-01-30 20:31:25 +01005417mch_breakcheck(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418{
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005419 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 fill_input_buf(FALSE);
5421}
5422
5423/*
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005424 * Wait "msec" msec until a character is available from the mouse, keyboard,
5425 * from inbuf[].
5426 * "msec" == -1 will block forever.
5427 * Invokes timer callbacks when needed.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005428 * "interrupted" (if not NULL) is set to TRUE when no character is available
5429 * but something else needs to be done.
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005430 * Returns TRUE when a character is available.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005431 * When a GUI is being used, this will never get called -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005432 */
5433 static int
Bram Moolenaarcda77642016-06-04 13:32:35 +02005434WaitForChar(long msec, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435{
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005436#ifdef FEAT_TIMERS
5437 long due_time;
5438 long remaining = msec;
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005439 int tb_change_cnt = typebuf.tb_change_cnt;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005440
5441 /* When waiting very briefly don't trigger timers. */
5442 if (msec >= 0 && msec < 10L)
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005443 return WaitForCharOrMouse(msec, NULL);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005444
5445 while (msec < 0 || remaining > 0)
5446 {
5447 /* Trigger timers and then get the time in msec until the next one is
5448 * due. Wait up to that time. */
5449 due_time = check_due_timer();
Bram Moolenaar40b1b542016-04-20 20:18:23 +02005450 if (typebuf.tb_change_cnt != tb_change_cnt)
5451 {
5452 /* timer may have used feedkeys() */
5453 return FALSE;
5454 }
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005455 if (due_time <= 0 || (msec > 0 && due_time > remaining))
5456 due_time = remaining;
Bram Moolenaarcda77642016-06-04 13:32:35 +02005457 if (WaitForCharOrMouse(due_time, interrupted))
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005458 return TRUE;
Bram Moolenaarcda77642016-06-04 13:32:35 +02005459 if (interrupted != NULL && *interrupted)
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005460 /* Nothing available, but need to return so that side effects get
5461 * handled, such as handling a message on a channel. */
5462 return FALSE;
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005463 if (msec > 0)
5464 remaining -= due_time;
5465 }
5466 return FALSE;
5467#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005468 return WaitForCharOrMouse(msec, interrupted);
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005469#endif
5470}
5471
5472/*
5473 * Wait "msec" msec until a character is available from the mouse or keyboard
5474 * or from inbuf[].
5475 * "msec" == -1 will block forever.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005476 * "interrupted" (if not NULL) is set to TRUE when no character is available
5477 * but something else needs to be done.
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005478 * When a GUI is being used, this will never get called -- webb
5479 */
5480 static int
Bram Moolenaarcda77642016-06-04 13:32:35 +02005481WaitForCharOrMouse(long msec, int *interrupted)
Bram Moolenaar943bb2b2016-03-19 14:11:18 +01005482{
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483#ifdef FEAT_MOUSE_GPM
5484 int gpm_process_wanted;
5485#endif
5486#ifdef FEAT_XCLIPBOARD
5487 int rest;
5488#endif
5489 int avail;
5490
5491 if (input_available()) /* something in inbuf[] */
5492 return 1;
5493
5494#if defined(FEAT_MOUSE_DEC)
5495 /* May need to query the mouse position. */
5496 if (WantQueryMouse)
5497 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00005498 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
5500 }
5501#endif
5502
5503 /*
5504 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
5505 * events. This is a bit complicated, because they might both be defined.
5506 */
5507#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
5508# ifdef FEAT_XCLIPBOARD
5509 rest = 0;
5510 if (do_xterm_trace())
5511 rest = msec;
5512# endif
5513 do
5514 {
5515# ifdef FEAT_XCLIPBOARD
5516 if (rest != 0)
5517 {
5518 msec = XT_TRACE_DELAY;
5519 if (rest >= 0 && rest < XT_TRACE_DELAY)
5520 msec = rest;
5521 if (rest >= 0)
5522 rest -= msec;
5523 }
5524# endif
5525# ifdef FEAT_MOUSE_GPM
5526 gpm_process_wanted = 0;
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005527 avail = RealWaitForChar(read_cmd_fd, msec,
Bram Moolenaarcda77642016-06-04 13:32:35 +02005528 &gpm_process_wanted, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005529# else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005530 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531# endif
5532 if (!avail)
5533 {
5534 if (input_available())
5535 return 1;
5536# ifdef FEAT_XCLIPBOARD
5537 if (rest == 0 || !do_xterm_trace())
5538# endif
5539 break;
5540 }
5541 }
5542 while (FALSE
5543# ifdef FEAT_MOUSE_GPM
5544 || (gpm_process_wanted && mch_gpm_process() == 0)
5545# endif
5546# ifdef FEAT_XCLIPBOARD
5547 || (!avail && rest != 0)
5548# endif
Bram Moolenaar8fdd7212016-03-26 19:41:48 +01005549 )
5550 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551
5552#else
Bram Moolenaarcda77642016-06-04 13:32:35 +02005553 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554#endif
5555 return avail;
5556}
5557
Bram Moolenaar4ffa0702013-12-11 17:12:37 +01005558#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559/*
5560 * Wait "msec" msec until a character is available from file descriptor "fd".
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005561 * "msec" == 0 will check for characters once.
5562 * "msec" == -1 will block until a character is available.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 * When a GUI is being used, this will not be used for input -- webb
Bram Moolenaar071d4272004-06-13 20:20:40 +00005564 * Or when a Linux GPM mouse event is waiting.
Bram Moolenaar93c88e02015-09-15 14:12:05 +02005565 * Or when a clientserver message is on the queue.
Bram Moolenaarcda77642016-06-04 13:32:35 +02005566 * "interrupted" (if not NULL) is set to TRUE when no character is available
5567 * but something else needs to be done.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005568 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569#if defined(__BEOS__)
5570 int
5571#else
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005572 static int
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005574RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575{
5576 int ret;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005577 int result;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005578#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005579 static int busy = FALSE;
5580
5581 /* May retry getting characters after an event was handled. */
5582# define MAY_LOOP
5583
5584# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
5585 /* Remember at what time we started, so that we know how much longer we
5586 * should wait after being interrupted. */
5587# define USE_START_TV
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005588 long start_msec = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005589 struct timeval start_tv;
5590
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005591 if (msec > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005592 gettimeofday(&start_tv, NULL);
5593# endif
5594
5595 /* Handle being called recursively. This may happen for the session
5596 * manager stuff, it may save the file, which does a breakcheck. */
5597 if (busy)
5598 return 0;
5599#endif
5600
5601#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00005602 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005603#endif
5604 {
5605#ifdef MAY_LOOP
5606 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005607# ifdef FEAT_MZSCHEME
5608 int mzquantum_used = FALSE;
5609# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610#endif
5611#ifndef HAVE_SELECT
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005612 /* each channel may use in, out and err */
5613 struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS];
Bram Moolenaar071d4272004-06-13 20:20:40 +00005614 int nfd;
5615# ifdef FEAT_XCLIPBOARD
5616 int xterm_idx = -1;
5617# endif
5618# ifdef FEAT_MOUSE_GPM
5619 int gpm_idx = -1;
5620# endif
5621# ifdef USE_XSMP
5622 int xsmp_idx = -1;
5623# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005624 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005625
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005626# ifdef FEAT_MZSCHEME
5627 mzvim_check_threads();
5628 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
5629 {
5630 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
5631 mzquantum_used = TRUE;
5632 }
5633# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005634 fds[0].fd = fd;
5635 fds[0].events = POLLIN;
5636 nfd = 1;
5637
Bram Moolenaar071d4272004-06-13 20:20:40 +00005638# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01005639 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 if (xterm_Shell != (Widget)0)
5641 {
5642 xterm_idx = nfd;
5643 fds[nfd].fd = ConnectionNumber(xterm_dpy);
5644 fds[nfd].events = POLLIN;
5645 nfd++;
5646 }
5647# endif
5648# ifdef FEAT_MOUSE_GPM
5649 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
5650 {
5651 gpm_idx = nfd;
5652 fds[nfd].fd = gpm_fd;
5653 fds[nfd].events = POLLIN;
5654 nfd++;
5655 }
5656# endif
5657# ifdef USE_XSMP
5658 if (xsmp_icefd != -1)
5659 {
5660 xsmp_idx = nfd;
5661 fds[nfd].fd = xsmp_icefd;
5662 fds[nfd].events = POLLIN;
5663 nfd++;
5664 }
5665# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005666#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01005667 nfd = channel_poll_setup(nfd, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005668#endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005669 if (interrupted != NULL)
5670 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005671
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005672 ret = poll(fds, nfd, towait);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005673
5674 result = ret > 0 && (fds[0].revents & POLLIN);
Bram Moolenaarcda77642016-06-04 13:32:35 +02005675 if (result == 0 && interrupted != NULL && ret > 0)
5676 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005677
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005678# ifdef FEAT_MZSCHEME
5679 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005680 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005681 finished = FALSE;
5682# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005683
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684# ifdef FEAT_XCLIPBOARD
5685 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
5686 {
5687 xterm_update(); /* Maybe we should hand out clipboard */
5688 if (--ret == 0 && !input_available())
5689 /* Try again */
5690 finished = FALSE;
5691 }
5692# endif
5693# ifdef FEAT_MOUSE_GPM
5694 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
5695 {
5696 *check_for_gpm = 1;
5697 }
5698# endif
5699# ifdef USE_XSMP
5700 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
5701 {
5702 if (fds[xsmp_idx].revents & POLLIN)
5703 {
5704 busy = TRUE;
5705 xsmp_handle_requests();
5706 busy = FALSE;
5707 }
5708 else if (fds[xsmp_idx].revents & POLLHUP)
5709 {
5710 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005711 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 xsmp_close();
5713 }
5714 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005715 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716 }
5717# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005718#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01005719 if (ret > 0)
5720 ret = channel_poll_check(ret, &fds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005721#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722
Bram Moolenaar071d4272004-06-13 20:20:40 +00005723#else /* HAVE_SELECT */
5724
5725 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005726 struct timeval *tvp;
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005727 fd_set rfds, wfds, efds;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005728 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005729 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005730
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005731# ifdef FEAT_MZSCHEME
5732 mzvim_check_threads();
5733 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
5734 {
5735 towait = p_mzq; /* don't wait longer than 'mzquantum' */
5736 mzquantum_used = TRUE;
5737 }
5738# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005739# ifdef __EMX__
5740 /* don't check for incoming chars if not in raw mode, because select()
5741 * always returns TRUE then (in some version of emx.dll) */
5742 if (curr_tmode != TMODE_RAW)
5743 return 0;
5744# endif
5745
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005746 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005747 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005748 tv.tv_sec = towait / 1000;
5749 tv.tv_usec = (towait % 1000) * (1000000/1000);
5750 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005752 else
5753 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005754
5755 /*
5756 * Select on ready for reading and exceptional condition (end of file).
5757 */
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005758select_eintr:
5759 FD_ZERO(&rfds);
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005760 FD_ZERO(&wfds);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761 FD_ZERO(&efds);
5762 FD_SET(fd, &rfds);
5763# if !defined(__QNX__) && !defined(__CYGWIN32__)
5764 /* For QNX select() always returns 1 if this is set. Why? */
5765 FD_SET(fd, &efds);
5766# endif
5767 maxfd = fd;
5768
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769# ifdef FEAT_XCLIPBOARD
Bram Moolenaarb1e26502014-11-19 18:48:46 +01005770 may_restore_clipboard();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005771 if (xterm_Shell != (Widget)0)
5772 {
5773 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
5774 if (maxfd < ConnectionNumber(xterm_dpy))
5775 maxfd = ConnectionNumber(xterm_dpy);
Bram Moolenaardd82d692012-08-15 17:26:57 +02005776
5777 /* An event may have already been read but not handled. In
5778 * particulary, XFlush may cause this. */
5779 xterm_update();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005780 }
5781# endif
5782# ifdef FEAT_MOUSE_GPM
5783 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
5784 {
5785 FD_SET(gpm_fd, &rfds);
5786 FD_SET(gpm_fd, &efds);
5787 if (maxfd < gpm_fd)
5788 maxfd = gpm_fd;
5789 }
5790# endif
5791# ifdef USE_XSMP
5792 if (xsmp_icefd != -1)
5793 {
5794 FD_SET(xsmp_icefd, &rfds);
5795 FD_SET(xsmp_icefd, &efds);
5796 if (maxfd < xsmp_icefd)
5797 maxfd = xsmp_icefd;
5798 }
5799# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005800# ifdef FEAT_JOB_CHANNEL
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005801 maxfd = channel_select_setup(maxfd, &rfds, &wfds);
Bram Moolenaardd82d692012-08-15 17:26:57 +02005802# endif
Bram Moolenaarcda77642016-06-04 13:32:35 +02005803 if (interrupted != NULL)
5804 *interrupted = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005805
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005806 ret = select(maxfd + 1, &rfds, &wfds, &efds, tvp);
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005807 result = ret > 0 && FD_ISSET(fd, &rfds);
5808 if (result)
5809 --ret;
Bram Moolenaarcda77642016-06-04 13:32:35 +02005810 else if (interrupted != NULL && ret > 0)
5811 *interrupted = TRUE;
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005812
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005813# ifdef EINTR
5814 if (ret == -1 && errno == EINTR)
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02005815 {
5816 /* Check whether window has been resized, EINTR may be caused by
5817 * SIGWINCH. */
5818 if (do_resize)
5819 handle_resize();
5820
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005821 /* Interrupted by a signal, need to try again. We ignore msec
5822 * here, because we do want to check even after a timeout if
5823 * characters are available. Needed for reading output of an
5824 * external command after the process has finished. */
5825 goto select_eintr;
Bram Moolenaar2e7b1df2011-10-12 21:04:20 +02005826 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005827# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00005828# ifdef __TANDEM
5829 if (ret == -1 && errno == ENOTSUP)
5830 {
5831 FD_ZERO(&rfds);
5832 FD_ZERO(&efds);
5833 ret = 0;
5834 }
Bram Moolenaar493c7a82011-09-07 14:06:47 +02005835# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005836# ifdef FEAT_MZSCHEME
5837 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005838 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00005839 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005840# endif
5841
Bram Moolenaar071d4272004-06-13 20:20:40 +00005842# ifdef FEAT_XCLIPBOARD
5843 if (ret > 0 && xterm_Shell != (Widget)0
5844 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
5845 {
5846 xterm_update(); /* Maybe we should hand out clipboard */
5847 /* continue looping when we only got the X event and the input
5848 * buffer is empty */
5849 if (--ret == 0 && !input_available())
5850 {
5851 /* Try again */
5852 finished = FALSE;
5853 }
5854 }
5855# endif
5856# ifdef FEAT_MOUSE_GPM
5857 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
5858 {
5859 if (FD_ISSET(gpm_fd, &efds))
5860 gpm_close();
5861 else if (FD_ISSET(gpm_fd, &rfds))
5862 *check_for_gpm = 1;
5863 }
5864# endif
5865# ifdef USE_XSMP
5866 if (ret > 0 && xsmp_icefd != -1)
5867 {
5868 if (FD_ISSET(xsmp_icefd, &efds))
5869 {
5870 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00005871 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005872 xsmp_close();
5873 if (--ret == 0)
5874 finished = FALSE; /* keep going if event was only one */
5875 }
5876 else if (FD_ISSET(xsmp_icefd, &rfds))
5877 {
5878 busy = TRUE;
5879 xsmp_handle_requests();
5880 busy = FALSE;
5881 if (--ret == 0)
5882 finished = FALSE; /* keep going if event was only one */
5883 }
5884 }
5885# endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01005886#ifdef FEAT_JOB_CHANNEL
Bram Moolenaare0874f82016-01-24 20:36:41 +01005887 if (ret > 0)
Bram Moolenaar8b877ac2016-03-28 19:16:20 +02005888 ret = channel_select_check(ret, &rfds, &wfds);
Bram Moolenaar67c53842010-05-22 18:28:27 +02005889#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890
5891#endif /* HAVE_SELECT */
5892
5893#ifdef MAY_LOOP
5894 if (finished || msec == 0)
5895 break;
5896
Bram Moolenaar93c88e02015-09-15 14:12:05 +02005897# ifdef FEAT_CLIENTSERVER
5898 if (server_waiting())
5899 break;
5900# endif
5901
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 /* We're going to loop around again, find out for how long */
5903 if (msec > 0)
5904 {
5905# ifdef USE_START_TV
Bram Moolenaar071d4272004-06-13 20:20:40 +00005906 /* Compute remaining wait time. */
Bram Moolenaar76b6dfe2016-06-04 14:37:22 +02005907 msec = start_msec - elapsed(&start_tv);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908# else
5909 /* Guess we got interrupted halfway. */
5910 msec = msec / 2;
5911# endif
5912 if (msec <= 0)
5913 break; /* waited long enough */
5914 }
5915#endif
5916 }
5917
Bram Moolenaarec70bdd2016-02-18 22:17:42 +01005918 return result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005919}
5920
Bram Moolenaar071d4272004-06-13 20:20:40 +00005921#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922/*
Bram Moolenaar02743632005-07-25 20:42:36 +00005923 * Expand a path into all matching files and/or directories. Handles "*",
5924 * "?", "[a-z]", "**", etc.
5925 * "path" has backslashes before chars that are not to be expanded.
5926 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 */
5928 int
Bram Moolenaar05540972016-01-30 20:31:25 +01005929mch_expandpath(
5930 garray_T *gap,
5931 char_u *path,
5932 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933{
Bram Moolenaar02743632005-07-25 20:42:36 +00005934 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005935}
5936#endif
5937
5938/*
5939 * mch_expand_wildcards() - this code does wild-card pattern matching using
5940 * the shell
5941 *
5942 * return OK for success, FAIL for error (you may lose some memory) and put
5943 * an error message in *file.
5944 *
5945 * num_pat is number of input patterns
5946 * pat is array of pointers to input patterns
5947 * num_file is pointer to number of matched file names
5948 * file is pointer to array of pointers to matched file names
5949 */
5950
5951#ifndef SEEK_SET
5952# define SEEK_SET 0
5953#endif
5954#ifndef SEEK_END
5955# define SEEK_END 2
5956#endif
5957
Bram Moolenaar5555acc2006-04-07 21:33:12 +00005958#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00005959
Bram Moolenaar071d4272004-06-13 20:20:40 +00005960 int
Bram Moolenaar05540972016-01-30 20:31:25 +01005961mch_expand_wildcards(
5962 int num_pat,
5963 char_u **pat,
5964 int *num_file,
5965 char_u ***file,
5966 int flags) /* EW_* flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005967{
5968 int i;
5969 size_t len;
5970 char_u *p;
5971 int dir;
5972#ifdef __EMX__
Bram Moolenaarc7247912008-01-13 12:54:11 +00005973 /*
5974 * This is the OS/2 implementation.
5975 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976# define EXPL_ALLOC_INC 16
5977 char_u **expl_files;
5978 size_t files_alloced, files_free;
5979 char_u *buf;
5980 int has_wildcard;
5981
5982 *num_file = 0; /* default: no files found */
5983 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5984 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5985 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5986 if (*file == NULL)
5987 return FAIL;
5988
5989 for (; num_pat > 0; num_pat--, pat++)
5990 {
5991 expl_files = NULL;
5992 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5993 /* expand environment var or home dir */
5994 buf = expand_env_save(*pat);
5995 else
5996 buf = vim_strsave(*pat);
5997 expl_files = NULL;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005998 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005999 if (has_wildcard) /* yes, so expand them */
6000 expl_files = (char_u **)_fnexplode(buf);
6001
6002 /*
6003 * return value of buf if no wildcards left,
6004 * OR if no match AND EW_NOTFOUND is set.
6005 */
6006 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
6007 || (expl_files == NULL && (flags & EW_NOTFOUND)))
6008 { /* simply save the current contents of *buf */
6009 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
6010 if (expl_files != NULL)
6011 {
6012 expl_files[0] = vim_strsave(buf);
6013 expl_files[1] = NULL;
6014 }
6015 }
6016 vim_free(buf);
6017
6018 /*
6019 * Count number of names resulting from expansion,
6020 * At the same time add a backslash to the end of names that happen to
6021 * be directories, and replace slashes with backslashes.
6022 */
6023 if (expl_files)
6024 {
6025 for (i = 0; (p = expl_files[i]) != NULL; i++)
6026 {
6027 dir = mch_isdir(p);
6028 /* If we don't want dirs and this is one, skip it */
6029 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6030 continue;
6031
Bram Moolenaara2031822006-03-07 22:29:51 +00006032 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006033 if (!dir && (flags & EW_EXEC)
6034 && !mch_can_exe(p, NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006035 continue;
6036
Bram Moolenaar071d4272004-06-13 20:20:40 +00006037 if (--files_free == 0)
6038 {
6039 /* need more room in table of pointers */
6040 files_alloced += EXPL_ALLOC_INC;
6041 *file = (char_u **)vim_realloc(*file,
6042 sizeof(char_u **) * files_alloced);
6043 if (*file == NULL)
6044 {
6045 EMSG(_(e_outofmem));
6046 *num_file = 0;
6047 return FAIL;
6048 }
6049 files_free = EXPL_ALLOC_INC;
6050 }
6051 slash_adjust(p);
6052 if (dir)
6053 {
6054 /* For a directory we add a '/', unless it's already
6055 * there. */
6056 len = STRLEN(p);
6057 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
6058 {
6059 STRCPY((*file)[*num_file], p);
Bram Moolenaar654b5b52006-06-22 17:47:10 +00006060 if (!after_pathsep((*file)[*num_file],
6061 (*file)[*num_file] + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006062 {
6063 (*file)[*num_file][len] = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006064 (*file)[*num_file][len + 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 }
6066 }
6067 }
6068 else
6069 {
6070 (*file)[*num_file] = vim_strsave(p);
6071 }
6072
6073 /*
6074 * Error message already given by either alloc or vim_strsave.
6075 * Should return FAIL, but returning OK works also.
6076 */
6077 if ((*file)[*num_file] == NULL)
6078 break;
6079 (*num_file)++;
6080 }
6081 _fnexplodefree((char **)expl_files);
6082 }
6083 }
6084 return OK;
6085
6086#else /* __EMX__ */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006087 /*
6088 * This is the non-OS/2 implementation (really Unix).
6089 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006090 int j;
6091 char_u *tempname;
6092 char_u *command;
6093 FILE *fd;
6094 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006095#define STYLE_ECHO 0 /* use "echo", the default */
6096#define STYLE_GLOB 1 /* use "glob", for csh */
6097#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
6098#define STYLE_PRINT 3 /* use "print -N", for zsh */
6099#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
6100 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006101 int shell_style = STYLE_ECHO;
6102 int check_spaces;
6103 static int did_find_nul = FALSE;
6104 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006105 /* vimglob() function to define for Posix shell */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006106 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006107
6108 *num_file = 0; /* default: no files found */
6109 *file = NULL;
6110
6111 /*
6112 * If there are no wildcards, just copy the names to allocated memory.
6113 * Saves a lot of time, because we don't have to start a new shell.
6114 */
6115 if (!have_wildcard(num_pat, pat))
6116 return save_patterns(num_pat, pat, num_file, file);
6117
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006118# ifdef HAVE_SANDBOX
6119 /* Don't allow any shell command in the sandbox. */
6120 if (sandbox != 0 && check_secure())
6121 return FAIL;
6122# endif
6123
Bram Moolenaar071d4272004-06-13 20:20:40 +00006124 /*
6125 * Don't allow the use of backticks in secure and restricted mode.
6126 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00006127 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006128 for (i = 0; i < num_pat; ++i)
6129 if (vim_strchr(pat[i], '`') != NULL
6130 && (check_restricted() || check_secure()))
6131 return FAIL;
6132
6133 /*
6134 * get a name for the temp file
6135 */
Bram Moolenaare5c421c2015-03-31 13:33:08 +02006136 if ((tempname = vim_tempname('o', FALSE)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006137 {
6138 EMSG(_(e_notmp));
6139 return FAIL;
6140 }
6141
6142 /*
6143 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00006144 * file.
6145 * STYLE_BT: NL separated
6146 * If expanding `cmd` execute it directly.
6147 * STYLE_GLOB: NUL separated
6148 * If we use *csh, "glob" will work better than "echo".
6149 * STYLE_PRINT: NL or NUL separated
6150 * If we use *zsh, "print -N" will work better than "glob".
6151 * STYLE_VIMGLOB: NL separated
6152 * If we use *sh*, we define "vimglob()".
6153 * STYLE_ECHO: space separated.
6154 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00006155 */
6156 if (num_pat == 1 && *pat[0] == '`'
6157 && (len = STRLEN(pat[0])) > 2
6158 && *(pat[0] + len - 1) == '`')
6159 shell_style = STYLE_BT;
6160 else if ((len = STRLEN(p_sh)) >= 3)
6161 {
6162 if (STRCMP(p_sh + len - 3, "csh") == 0)
6163 shell_style = STYLE_GLOB;
6164 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
6165 shell_style = STYLE_PRINT;
6166 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006167 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
6168 "sh") != NULL)
6169 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006170
Bram Moolenaarc7247912008-01-13 12:54:11 +00006171 /* Compute the length of the command. We need 2 extra bytes: for the
6172 * optional '&' and for the NUL.
6173 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006174 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00006175 if (shell_style == STYLE_VIMGLOB)
6176 len += STRLEN(sh_vimglob_func);
6177
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006178 for (i = 0; i < num_pat; ++i)
6179 {
6180 /* Count the length of the patterns in the same way as they are put in
6181 * "command" below. */
6182#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00006183 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006184#else
6185 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006186 for (j = 0; pat[i][j] != NUL; ++j)
6187 {
6188 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
6189 ++len; /* may add a backslash */
6190 ++len;
6191 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00006192#endif
6193 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006194 command = alloc(len);
6195 if (command == NULL)
6196 {
6197 /* out of memory */
6198 vim_free(tempname);
6199 return FAIL;
6200 }
6201
6202 /*
6203 * Build the shell command:
6204 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
6205 * recognizes this).
6206 * - Add the shell command to print the expanded names.
6207 * - Add the temp file name.
6208 * - Add the file name patterns.
6209 */
6210 if (shell_style == STYLE_BT)
6211 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00006212 /* change `command; command& ` to (command; command ) */
6213 STRCPY(command, "(");
6214 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006215 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006216 *p-- = ')'; /* remove last backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006217 while (p > command && vim_iswhite(*p))
6218 --p;
6219 if (*p == '&') /* remove trailing '&' */
6220 {
6221 ampersent = TRUE;
6222 *p = ' ';
6223 }
6224 STRCAT(command, ">");
6225 }
6226 else
6227 {
6228 if (flags & EW_NOTFOUND)
6229 STRCPY(command, "set nonomatch; ");
6230 else
6231 STRCPY(command, "unset nonomatch; ");
6232 if (shell_style == STYLE_GLOB)
6233 STRCAT(command, "glob >");
6234 else if (shell_style == STYLE_PRINT)
6235 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00006236 else if (shell_style == STYLE_VIMGLOB)
6237 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238 else
6239 STRCAT(command, "echo >");
6240 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00006241
Bram Moolenaar071d4272004-06-13 20:20:40 +00006242 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00006243
Bram Moolenaar071d4272004-06-13 20:20:40 +00006244 if (shell_style != STYLE_BT)
6245 for (i = 0; i < num_pat; ++i)
6246 {
6247 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00006248 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006249 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250#ifdef USE_SYSTEM
6251 STRCAT(command, " \"");
6252 STRCAT(command, pat[i]);
6253 STRCAT(command, "\"");
6254#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00006255 int intick = FALSE;
6256
Bram Moolenaar071d4272004-06-13 20:20:40 +00006257 p = command + STRLEN(command);
6258 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00006259 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00006260 {
6261 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00006262 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006263 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
6264 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006265 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00006266 * backslash inside backticks, before a special character
6267 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006268 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00006269 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
6270 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00006271 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006272 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00006273 }
Bram Moolenaare4df1642014-08-29 12:58:44 +02006274 else if (!intick
6275 && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$')
6276 && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00006277 /* Put a backslash before a special character, but not
Bram Moolenaare4df1642014-08-29 12:58:44 +02006278 * when inside ``. And not for $var when EW_KEEPDOLLAR is
6279 * set. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00006280 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00006281
6282 /* Copy one character. */
6283 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00006284 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006285 *p = NUL;
6286#endif
6287 }
6288 if (flags & EW_SILENT)
6289 show_shell_mess = FALSE;
6290 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00006291 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006292
6293 /*
6294 * Using zsh -G: If a pattern has no matches, it is just deleted from
6295 * the argument list, otherwise zsh gives an error message and doesn't
6296 * expand any other pattern.
6297 */
6298 if (shell_style == STYLE_PRINT)
6299 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
6300
6301 /*
6302 * If we use -f then shell variables set in .cshrc won't get expanded.
6303 * vi can do it, so we will too, but it is only necessary if there is a "$"
6304 * in one of the patterns, otherwise we can still use the fast option.
6305 */
6306 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
6307 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
6308
6309 /*
6310 * execute the shell command
6311 */
6312 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
6313
6314 /* When running in the background, give it some time to create the temp
6315 * file, but don't wait for it to finish. */
6316 if (ampersent)
6317 mch_delay(10L, TRUE);
6318
6319 extra_shell_arg = NULL; /* cleanup */
6320 show_shell_mess = TRUE;
6321 vim_free(command);
6322
Bram Moolenaarc7247912008-01-13 12:54:11 +00006323 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006324 {
6325 mch_remove(tempname);
6326 vim_free(tempname);
6327 /*
6328 * With interactive completion, the error message is not printed.
6329 * However with USE_SYSTEM, I don't know how to turn off error messages
6330 * from the shell, so screen may still get messed up -- webb.
6331 */
6332#ifndef USE_SYSTEM
6333 if (!(flags & EW_SILENT))
6334#endif
6335 {
6336 redraw_later_clear(); /* probably messed up screen */
6337 msg_putchar('\n'); /* clear bottom line quickly */
6338 cmdline_row = Rows - 1; /* continue on last line */
6339#ifdef USE_SYSTEM
6340 if (!(flags & EW_SILENT))
6341#endif
6342 {
6343 MSG(_(e_wildexpand));
6344 msg_start(); /* don't overwrite this message */
6345 }
6346 }
6347 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
6348 * EW_NOTFOUND is given */
6349 if (shell_style == STYLE_BT)
6350 return FAIL;
6351 goto notfound;
6352 }
6353
6354 /*
6355 * read the names from the file into memory
6356 */
6357 fd = fopen((char *)tempname, READBIN);
6358 if (fd == NULL)
6359 {
6360 /* Something went wrong, perhaps a file name with a special char. */
6361 if (!(flags & EW_SILENT))
6362 {
6363 MSG(_(e_wildexpand));
6364 msg_start(); /* don't overwrite this message */
6365 }
6366 vim_free(tempname);
6367 goto notfound;
6368 }
6369 fseek(fd, 0L, SEEK_END);
6370 len = ftell(fd); /* get size of temp file */
6371 fseek(fd, 0L, SEEK_SET);
6372 buffer = alloc(len + 1);
6373 if (buffer == NULL)
6374 {
6375 /* out of memory */
6376 mch_remove(tempname);
6377 vim_free(tempname);
6378 fclose(fd);
6379 return FAIL;
6380 }
6381 i = fread((char *)buffer, 1, len, fd);
6382 fclose(fd);
6383 mch_remove(tempname);
Bram Moolenaar78a15312009-05-15 19:33:18 +00006384 if (i != (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006385 {
6386 /* unexpected read error */
6387 EMSG2(_(e_notread), tempname);
6388 vim_free(tempname);
6389 vim_free(buffer);
6390 return FAIL;
6391 }
6392 vim_free(tempname);
6393
Bram Moolenaarc7247912008-01-13 12:54:11 +00006394# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006395 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
6396 p = buffer;
Bram Moolenaarfe17e762013-06-29 14:17:02 +02006397 for (i = 0; i < (int)len; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006398 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
6399 *p++ = buffer[i];
6400 len = p - buffer;
6401# endif
6402
6403
6404 /* file names are separated with Space */
6405 if (shell_style == STYLE_ECHO)
6406 {
6407 buffer[len] = '\n'; /* make sure the buffer ends in NL */
6408 p = buffer;
6409 for (i = 0; *p != '\n'; ++i) /* count number of entries */
6410 {
6411 while (*p != ' ' && *p != '\n')
6412 ++p;
6413 p = skipwhite(p); /* skip to next entry */
6414 }
6415 }
6416 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006417 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006418 {
6419 buffer[len] = NUL; /* make sure the buffer ends in NUL */
6420 p = buffer;
6421 for (i = 0; *p != NUL; ++i) /* count number of entries */
6422 {
6423 while (*p != '\n' && *p != NUL)
6424 ++p;
6425 if (*p != NUL)
6426 ++p;
6427 p = skipwhite(p); /* skip leading white space */
6428 }
6429 }
6430 /* file names are separated with NUL */
6431 else
6432 {
6433 /*
6434 * Some versions of zsh use spaces instead of NULs to separate
6435 * results. Only do this when there is no NUL before the end of the
6436 * buffer, otherwise we would never be able to use file names with
6437 * embedded spaces when zsh does use NULs.
6438 * When we found a NUL once, we know zsh is OK, set did_find_nul and
6439 * don't check for spaces again.
6440 */
6441 check_spaces = FALSE;
6442 if (shell_style == STYLE_PRINT && !did_find_nul)
6443 {
6444 /* If there is a NUL, set did_find_nul, else set check_spaces */
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02006445 buffer[len] = NUL;
Bram Moolenaarb011af92013-12-11 13:21:51 +01006446 if (len && (int)STRLEN(buffer) < (int)len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006447 did_find_nul = TRUE;
6448 else
6449 check_spaces = TRUE;
6450 }
6451
6452 /*
6453 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
6454 * already is one, for STYLE_GLOB it needs to be added.
6455 */
6456 if (len && buffer[len - 1] == NUL)
6457 --len;
6458 else
6459 buffer[len] = NUL;
6460 i = 0;
6461 for (p = buffer; p < buffer + len; ++p)
6462 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
6463 {
6464 ++i;
6465 *p = NUL;
6466 }
6467 if (len)
6468 ++i; /* count last entry */
6469 }
6470 if (i == 0)
6471 {
6472 /*
6473 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
6474 * /bin/sh will happily expand it to nothing rather than returning an
6475 * error; and hey, it's good to check anyway -- webb.
6476 */
6477 vim_free(buffer);
6478 goto notfound;
6479 }
6480 *num_file = i;
6481 *file = (char_u **)alloc(sizeof(char_u *) * i);
6482 if (*file == NULL)
6483 {
6484 /* out of memory */
6485 vim_free(buffer);
6486 return FAIL;
6487 }
6488
6489 /*
6490 * Isolate the individual file names.
6491 */
6492 p = buffer;
6493 for (i = 0; i < *num_file; ++i)
6494 {
6495 (*file)[i] = p;
6496 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00006497 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
6498 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006499 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00006500 while (!(shell_style == STYLE_ECHO && *p == ' ')
6501 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006502 ++p;
6503 if (p == buffer + len) /* last entry */
6504 *p = NUL;
6505 else
6506 {
6507 *p++ = NUL;
6508 p = skipwhite(p); /* skip to next entry */
6509 }
6510 }
6511 else /* NUL separates */
6512 {
6513 while (*p && p < buffer + len) /* skip entry */
6514 ++p;
6515 ++p; /* skip NUL */
6516 }
6517 }
6518
6519 /*
6520 * Move the file names to allocated memory.
6521 */
6522 for (j = 0, i = 0; i < *num_file; ++i)
6523 {
6524 /* Require the files to exist. Helps when using /bin/sh */
6525 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
6526 continue;
6527
6528 /* check if this entry should be included */
6529 dir = (mch_isdir((*file)[i]));
6530 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
6531 continue;
6532
Bram Moolenaara2031822006-03-07 22:29:51 +00006533 /* Skip files that are not executable if we check for that. */
Bram Moolenaarb5971142015-03-21 17:32:19 +01006534 if (!dir && (flags & EW_EXEC)
6535 && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD)))
Bram Moolenaara2031822006-03-07 22:29:51 +00006536 continue;
6537
Bram Moolenaar071d4272004-06-13 20:20:40 +00006538 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
6539 if (p)
6540 {
6541 STRCPY(p, (*file)[i]);
6542 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00006543 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006544 (*file)[j++] = p;
6545 }
6546 }
6547 vim_free(buffer);
6548 *num_file = j;
6549
6550 if (*num_file == 0) /* rejected all entries */
6551 {
6552 vim_free(*file);
6553 *file = NULL;
6554 goto notfound;
6555 }
6556
6557 return OK;
6558
6559notfound:
6560 if (flags & EW_NOTFOUND)
6561 return save_patterns(num_pat, pat, num_file, file);
6562 return FAIL;
6563
6564#endif /* __EMX__ */
6565}
6566
6567#endif /* VMS */
6568
6569#ifndef __EMX__
6570 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006571save_patterns(
6572 int num_pat,
6573 char_u **pat,
6574 int *num_file,
6575 char_u ***file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006576{
6577 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00006578 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006579
6580 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
6581 if (*file == NULL)
6582 return FAIL;
6583 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00006584 {
6585 s = vim_strsave(pat[i]);
6586 if (s != NULL)
6587 /* Be compatible with expand_filename(): halve the number of
6588 * backslashes. */
6589 backslash_halve(s);
6590 (*file)[i] = s;
6591 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006592 *num_file = num_pat;
6593 return OK;
6594}
6595#endif
6596
Bram Moolenaar071d4272004-06-13 20:20:40 +00006597/*
6598 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
6599 * expand.
6600 */
6601 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006602mch_has_exp_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006603{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006604 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006605 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 if (*p == '\\' && p[1] != NUL)
6607 ++p;
6608 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006609 if (vim_strchr((char_u *)
6610#ifdef VMS
6611 "*?%"
6612#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006613 "*?[{'"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006614#endif
6615 , *p) != NULL)
6616 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006617 }
6618 return FALSE;
6619}
6620
6621/*
6622 * Return TRUE if the string "p" contains a wildcard.
6623 * Don't recognize '~' at the end as a wildcard.
6624 */
6625 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006626mch_has_wildcard(char_u *p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006627{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006628 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006629 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006630 if (*p == '\\' && p[1] != NUL)
6631 ++p;
6632 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006633 if (vim_strchr((char_u *)
6634#ifdef VMS
6635 "*?%$"
6636#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006637 "*?[{`'$"
Bram Moolenaar071d4272004-06-13 20:20:40 +00006638#endif
6639 , *p) != NULL
6640 || (*p == '~' && p[1] != NUL))
6641 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006642 }
6643 return FALSE;
6644}
6645
6646#ifndef __EMX__
6647 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006648have_wildcard(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006649{
6650 int i;
6651
6652 for (i = 0; i < num; i++)
6653 if (mch_has_wildcard(file[i]))
6654 return 1;
6655 return 0;
6656}
6657
6658 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006659have_dollars(int num, char_u **file)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660{
6661 int i;
6662
6663 for (i = 0; i < num; i++)
6664 if (vim_strchr(file[i], '$') != NULL)
6665 return TRUE;
6666 return FALSE;
6667}
6668#endif /* ifndef __EMX__ */
6669
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006670#if !defined(HAVE_RENAME) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671/*
6672 * Scaled-down version of rename(), which is missing in Xenix.
6673 * This version can only move regular files and will fail if the
6674 * destination exists.
6675 */
6676 int
Bram Moolenaarfdcc9af2016-02-29 12:52:39 +01006677mch_rename(const char *src, const char *dest)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006678{
6679 struct stat st;
6680
6681 if (stat(dest, &st) >= 0) /* fail if destination exists */
6682 return -1;
6683 if (link(src, dest) != 0) /* link file to new name */
6684 return -1;
6685 if (mch_remove(src) == 0) /* delete link to old name */
6686 return 0;
6687 return -1;
6688}
6689#endif /* !HAVE_RENAME */
6690
6691#ifdef FEAT_MOUSE_GPM
6692/*
6693 * Initializes connection with gpm (if it isn't already opened)
6694 * Return 1 if succeeded (or connection already opened), 0 if failed
6695 */
6696 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006697gpm_open(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006698{
6699 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
6700
6701 if (!gpm_flag)
6702 {
6703 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
6704 gpm_connect.defaultMask = ~GPM_HARD;
6705 /* Default handling for mouse move*/
6706 gpm_connect.minMod = 0; /* Handle any modifier keys */
6707 gpm_connect.maxMod = 0xffff;
6708 if (Gpm_Open(&gpm_connect, 0) > 0)
6709 {
6710 /* gpm library tries to handling TSTP causes
6711 * problems. Anyways, we close connection to Gpm whenever
6712 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00006713 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714 */
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006715# ifdef SIGTSTP
Bram Moolenaar071d4272004-06-13 20:20:40 +00006716 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
Bram Moolenaar76243bd2009-03-02 01:47:02 +00006717# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006718 return 1; /* succeed */
6719 }
6720 if (gpm_fd == -2)
6721 Gpm_Close(); /* We don't want to talk to xterm via gpm */
6722 return 0;
6723 }
6724 return 1; /* already open */
6725}
6726
6727/*
6728 * Closes connection to gpm
Bram Moolenaar071d4272004-06-13 20:20:40 +00006729 */
6730 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006731gpm_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006732{
6733 if (gpm_flag && gpm_fd >= 0) /* if Open */
6734 Gpm_Close();
6735}
6736
6737/* Reads gpm event and adds special keys to input buf. Returns length of
6738 * generated key sequence.
Bram Moolenaarc7f02552014-04-01 21:00:59 +02006739 * This function is styled after gui_send_mouse_event().
Bram Moolenaar071d4272004-06-13 20:20:40 +00006740 */
6741 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006742mch_gpm_process(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006743{
6744 int button;
6745 static Gpm_Event gpm_event;
6746 char_u string[6];
6747 int_u vim_modifiers;
6748 int row,col;
6749 unsigned char buttons_mask;
6750 unsigned char gpm_modifiers;
6751 static unsigned char old_buttons = 0;
6752
6753 Gpm_GetEvent(&gpm_event);
6754
6755#ifdef FEAT_GUI
6756 /* Don't put events in the input queue now. */
6757 if (hold_gui_events)
6758 return 0;
6759#endif
6760
6761 row = gpm_event.y - 1;
6762 col = gpm_event.x - 1;
6763
6764 string[0] = ESC; /* Our termcode */
6765 string[1] = 'M';
6766 string[2] = 'G';
6767 switch (GPM_BARE_EVENTS(gpm_event.type))
6768 {
6769 case GPM_DRAG:
6770 string[3] = MOUSE_DRAG;
6771 break;
6772 case GPM_DOWN:
6773 buttons_mask = gpm_event.buttons & ~old_buttons;
6774 old_buttons = gpm_event.buttons;
6775 switch (buttons_mask)
6776 {
6777 case GPM_B_LEFT:
6778 button = MOUSE_LEFT;
6779 break;
6780 case GPM_B_MIDDLE:
6781 button = MOUSE_MIDDLE;
6782 break;
6783 case GPM_B_RIGHT:
6784 button = MOUSE_RIGHT;
6785 break;
6786 default:
6787 return 0;
6788 /*Don't know what to do. Can more than one button be
6789 * reported in one event? */
6790 }
6791 string[3] = (char_u)(button | 0x20);
6792 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
6793 break;
6794 case GPM_UP:
6795 string[3] = MOUSE_RELEASE;
6796 old_buttons &= ~gpm_event.buttons;
6797 break;
6798 default:
6799 return 0;
6800 }
6801 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
6802 gpm_modifiers = gpm_event.modifiers;
6803 vim_modifiers = 0x0;
6804 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
6805 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
6806 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
6807 */
6808 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
6809 vim_modifiers |= MOUSE_SHIFT;
6810
6811 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
6812 vim_modifiers |= MOUSE_CTRL;
6813 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
6814 vim_modifiers |= MOUSE_ALT;
6815 string[3] |= vim_modifiers;
6816 string[4] = (char_u)(col + ' ' + 1);
6817 string[5] = (char_u)(row + ' ' + 1);
6818 add_to_input_buf(string, 6);
6819 return 6;
6820}
6821#endif /* FEAT_MOUSE_GPM */
6822
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006823#ifdef FEAT_SYSMOUSE
6824/*
6825 * Initialize connection with sysmouse.
6826 * Let virtual console inform us with SIGUSR2 for pending sysmouse
6827 * output, any sysmouse output than will be processed via sig_sysmouse().
6828 * Return OK if succeeded, FAIL if failed.
6829 */
6830 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01006831sysmouse_open(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006832{
6833 struct mouse_info mouse;
6834
6835 mouse.operation = MOUSE_MODE;
6836 mouse.u.mode.mode = 0;
6837 mouse.u.mode.signal = SIGUSR2;
6838 if (ioctl(1, CONS_MOUSECTL, &mouse) != -1)
6839 {
6840 signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse);
6841 mouse.operation = MOUSE_SHOW;
6842 ioctl(1, CONS_MOUSECTL, &mouse);
6843 return OK;
6844 }
6845 return FAIL;
6846}
6847
6848/*
6849 * Stop processing SIGUSR2 signals, and also make sure that
6850 * virtual console do not send us any sysmouse related signal.
6851 */
6852 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01006853sysmouse_close(void)
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006854{
6855 struct mouse_info mouse;
6856
6857 signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL);
6858 mouse.operation = MOUSE_MODE;
6859 mouse.u.mode.mode = 0;
6860 mouse.u.mode.signal = 0;
6861 ioctl(1, CONS_MOUSECTL, &mouse);
6862}
6863
6864/*
6865 * Gets info from sysmouse and adds special keys to input buf.
6866 */
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006867 static RETSIGTYPE
6868sig_sysmouse SIGDEFARG(sigarg)
6869{
6870 struct mouse_info mouse;
6871 struct video_info video;
6872 char_u string[6];
6873 int row, col;
6874 int button;
6875 int buttons;
6876 static int oldbuttons = 0;
6877
6878#ifdef FEAT_GUI
6879 /* Don't put events in the input queue now. */
6880 if (hold_gui_events)
6881 return;
6882#endif
6883
6884 mouse.operation = MOUSE_GETINFO;
6885 if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1
6886 && ioctl(1, FBIO_MODEINFO, &video) != -1
6887 && ioctl(1, CONS_MOUSECTL, &mouse) != -1
6888 && video.vi_cheight > 0 && video.vi_cwidth > 0)
6889 {
6890 row = mouse.u.data.y / video.vi_cheight;
6891 col = mouse.u.data.x / video.vi_cwidth;
6892 buttons = mouse.u.data.buttons;
6893 string[0] = ESC; /* Our termcode */
6894 string[1] = 'M';
6895 string[2] = 'S';
6896 if (oldbuttons == buttons && buttons != 0)
6897 {
6898 button = MOUSE_DRAG;
6899 }
6900 else
6901 {
6902 switch (buttons)
6903 {
6904 case 0:
6905 button = MOUSE_RELEASE;
6906 break;
6907 case 1:
6908 button = MOUSE_LEFT;
6909 break;
6910 case 2:
6911 button = MOUSE_MIDDLE;
6912 break;
6913 case 4:
6914 button = MOUSE_RIGHT;
6915 break;
6916 default:
6917 return;
6918 }
6919 oldbuttons = buttons;
6920 }
6921 string[3] = (char_u)(button);
6922 string[4] = (char_u)(col + ' ' + 1);
6923 string[5] = (char_u)(row + ' ' + 1);
6924 add_to_input_buf(string, 6);
6925 }
6926 return;
6927}
6928#endif /* FEAT_SYSMOUSE */
6929
Bram Moolenaar071d4272004-06-13 20:20:40 +00006930#if defined(FEAT_LIBCALL) || defined(PROTO)
Bram Moolenaard99df422016-01-29 23:20:40 +01006931typedef char_u * (*STRPROCSTR)(char_u *);
6932typedef char_u * (*INTPROCSTR)(int);
6933typedef int (*STRPROCINT)(char_u *);
6934typedef int (*INTPROCINT)(int);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006935
6936/*
6937 * Call a DLL routine which takes either a string or int param
6938 * and returns an allocated string.
6939 */
6940 int
Bram Moolenaar05540972016-01-30 20:31:25 +01006941mch_libcall(
6942 char_u *libname,
6943 char_u *funcname,
6944 char_u *argstring, /* NULL when using a argint */
6945 int argint,
6946 char_u **string_result,/* NULL when using number_result */
6947 int *number_result)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006948{
6949# if defined(USE_DLOPEN)
6950 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006951 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006952# else
6953 shl_t hinstLib;
6954# endif
6955 STRPROCSTR ProcAdd;
6956 INTPROCSTR ProcAddI;
6957 char_u *retval_str = NULL;
6958 int retval_int = 0;
6959 int success = FALSE;
6960
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006961 /*
6962 * Get a handle to the DLL module.
6963 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006964# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00006965 /* First clear any error, it's not cleared by the dlopen() call. */
6966 (void)dlerror();
6967
Bram Moolenaar071d4272004-06-13 20:20:40 +00006968 hinstLib = dlopen((char *)libname, RTLD_LAZY
6969# ifdef RTLD_LOCAL
6970 | RTLD_LOCAL
6971# endif
6972 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006973 if (hinstLib == NULL)
6974 {
6975 /* "dlerr" must be used before dlclose() */
6976 dlerr = (char *)dlerror();
6977 if (dlerr != NULL)
6978 EMSG2(_("dlerror = \"%s\""), dlerr);
6979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006980# else
6981 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
6982# endif
6983
6984 /* If the handle is valid, try to get the function address. */
6985 if (hinstLib != NULL)
6986 {
6987# ifdef HAVE_SETJMP_H
6988 /*
6989 * Catch a crash when calling the library function. For example when
6990 * using a number where a string pointer is expected.
6991 */
6992 mch_startjmp();
6993 if (SETJMP(lc_jump_env) != 0)
6994 {
6995 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006996# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006997 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00006998# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006999 mch_didjmp();
7000 }
7001 else
7002# endif
7003 {
7004 retval_str = NULL;
7005 retval_int = 0;
7006
7007 if (argstring != NULL)
7008 {
7009# if defined(USE_DLOPEN)
7010 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007011 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007012# else
7013 if (shl_findsym(&hinstLib, (const char *)funcname,
7014 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
7015 ProcAdd = NULL;
7016# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007017 if ((success = (ProcAdd != NULL
7018# if defined(USE_DLOPEN)
7019 && dlerr == NULL
7020# endif
7021 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007022 {
7023 if (string_result == NULL)
7024 retval_int = ((STRPROCINT)ProcAdd)(argstring);
7025 else
7026 retval_str = (ProcAdd)(argstring);
7027 }
7028 }
7029 else
7030 {
7031# if defined(USE_DLOPEN)
7032 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007033 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007034# else
7035 if (shl_findsym(&hinstLib, (const char *)funcname,
7036 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
7037 ProcAddI = NULL;
7038# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007039 if ((success = (ProcAddI != NULL
7040# if defined(USE_DLOPEN)
7041 && dlerr == NULL
7042# endif
7043 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007044 {
7045 if (string_result == NULL)
7046 retval_int = ((INTPROCINT)ProcAddI)(argint);
7047 else
7048 retval_str = (ProcAddI)(argint);
7049 }
7050 }
7051
7052 /* Save the string before we free the library. */
7053 /* Assume that a "1" or "-1" result is an illegal pointer. */
7054 if (string_result == NULL)
7055 *number_result = retval_int;
7056 else if (retval_str != NULL
7057 && retval_str != (char_u *)1
7058 && retval_str != (char_u *)-1)
7059 *string_result = vim_strsave(retval_str);
7060 }
7061
7062# ifdef HAVE_SETJMP_H
7063 mch_endjmp();
7064# ifdef SIGHASARG
7065 if (lc_signal != 0)
7066 {
7067 int i;
7068
7069 /* try to find the name of this signal */
7070 for (i = 0; signal_info[i].sig != -1; i++)
7071 if (lc_signal == signal_info[i].sig)
7072 break;
7073 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
7074 }
7075# endif
7076# endif
7077
Bram Moolenaar071d4272004-06-13 20:20:40 +00007078# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007079 /* "dlerr" must be used before dlclose() */
7080 if (dlerr != NULL)
7081 EMSG2(_("dlerror = \"%s\""), dlerr);
7082
7083 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007084 (void)dlclose(hinstLib);
7085# else
7086 (void)shl_unload(hinstLib);
7087# endif
7088 }
7089
7090 if (!success)
7091 {
7092 EMSG2(_(e_libcall), funcname);
7093 return FAIL;
7094 }
7095
7096 return OK;
7097}
7098#endif
7099
7100#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
7101static int xterm_trace = -1; /* default: disabled */
7102static int xterm_button;
7103
7104/*
7105 * Setup a dummy window for X selections in a terminal.
7106 */
7107 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007108setup_term_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007109{
7110 int z = 0;
7111 char *strp = "";
7112 Widget AppShell;
7113
7114 if (!x_connect_to_server())
7115 return;
7116
7117 open_app_context();
7118 if (app_context != NULL && xterm_Shell == (Widget)0)
7119 {
7120 int (*oldhandler)();
7121#if defined(HAVE_SETJMP_H)
7122 int (*oldIOhandler)();
7123#endif
7124# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
7125 struct timeval start_tv;
7126
7127 if (p_verbose > 0)
7128 gettimeofday(&start_tv, NULL);
7129# endif
7130
7131 /* Ignore X errors while opening the display */
7132 oldhandler = XSetErrorHandler(x_error_check);
7133
7134#if defined(HAVE_SETJMP_H)
7135 /* Ignore X IO errors while opening the display */
7136 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
7137 mch_startjmp();
7138 if (SETJMP(lc_jump_env) != 0)
7139 {
7140 mch_didjmp();
7141 xterm_dpy = NULL;
7142 }
7143 else
7144#endif
7145 {
7146 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
7147 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
7148#if defined(HAVE_SETJMP_H)
7149 mch_endjmp();
7150#endif
7151 }
7152
7153#if defined(HAVE_SETJMP_H)
7154 /* Now handle X IO errors normally. */
7155 (void)XSetIOErrorHandler(oldIOhandler);
7156#endif
7157 /* Now handle X errors normally. */
7158 (void)XSetErrorHandler(oldhandler);
7159
7160 if (xterm_dpy == NULL)
7161 {
7162 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007163 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007164 return;
7165 }
7166
7167 /* Catch terminating error of the X server connection. */
7168 (void)XSetIOErrorHandler(x_IOerror_handler);
7169
7170# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
7171 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007172 {
7173 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00007174 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007175 verbose_leave();
7176 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007177# endif
7178
7179 /* Create a Shell to make converters work. */
7180 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
7181 applicationShellWidgetClass, xterm_dpy,
7182 NULL);
7183 if (AppShell == (Widget)0)
7184 return;
7185 xterm_Shell = XtVaCreatePopupShell("VIM",
7186 topLevelShellWidgetClass, AppShell,
7187 XtNmappedWhenManaged, 0,
7188 XtNwidth, 1,
7189 XtNheight, 1,
7190 NULL);
7191 if (xterm_Shell == (Widget)0)
7192 return;
7193
7194 x11_setup_atoms(xterm_dpy);
Bram Moolenaar7cfea752010-06-22 06:07:12 +02007195 x11_setup_selection(xterm_Shell);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007196 if (x11_display == NULL)
7197 x11_display = xterm_dpy;
7198
7199 XtRealizeWidget(xterm_Shell);
7200 XSync(xterm_dpy, False);
7201 xterm_update();
7202 }
7203 if (xterm_Shell != (Widget)0)
7204 {
7205 clip_init(TRUE);
7206 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
7207 x11_window = (Window)atol(strp);
7208 /* Check if $WINDOWID is valid. */
7209 if (test_x11_window(xterm_dpy) == FAIL)
7210 x11_window = 0;
7211 if (x11_window != 0)
7212 xterm_trace = 0;
7213 }
7214}
7215
7216 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007217start_xterm_trace(int button)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007218{
7219 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
7220 return;
7221 xterm_trace = 1;
7222 xterm_button = button;
7223 do_xterm_trace();
7224}
7225
7226
7227 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007228stop_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007229{
7230 if (xterm_trace < 0)
7231 return;
7232 xterm_trace = 0;
7233}
7234
7235/*
7236 * Query the xterm pointer and generate mouse termcodes if necessary
7237 * return TRUE if dragging is active, else FALSE
7238 */
7239 static int
Bram Moolenaar05540972016-01-30 20:31:25 +01007240do_xterm_trace(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007241{
7242 Window root, child;
7243 int root_x, root_y;
7244 int win_x, win_y;
7245 int row, col;
7246 int_u mask_return;
7247 char_u buf[50];
7248 char_u *strp;
7249 long got_hints;
7250 static char_u *mouse_code;
7251 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
7252 static int prev_row = 0, prev_col = 0;
7253 static XSizeHints xterm_hints;
7254
7255 if (xterm_trace <= 0)
7256 return FALSE;
7257
7258 if (xterm_trace == 1)
7259 {
7260 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00007261 * have changed recently. */
7262 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
7263 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007264 || xterm_hints.width_inc <= 1
7265 || xterm_hints.height_inc <= 1)
7266 {
7267 xterm_trace = -1; /* Not enough data -- disable tracing */
7268 return FALSE;
7269 }
7270
7271 /* Rely on the same mouse code for the duration of this */
7272 mouse_code = find_termcode(mouse_name);
7273 prev_row = mouse_row;
Bram Moolenaarcde88542015-08-11 19:14:00 +02007274 prev_col = mouse_col;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007275 xterm_trace = 2;
7276
7277 /* Find the offset of the chars, there might be a scrollbar on the
7278 * left of the window and/or a menu on the top (eterm etc.) */
7279 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7280 &win_x, &win_y, &mask_return);
7281 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
7282 - (xterm_hints.height_inc / 2);
7283 if (xterm_hints.y <= xterm_hints.height_inc / 2)
7284 xterm_hints.y = 2;
7285 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
7286 - (xterm_hints.width_inc / 2);
7287 if (xterm_hints.x <= xterm_hints.width_inc / 2)
7288 xterm_hints.x = 2;
7289 return TRUE;
7290 }
Bram Moolenaaref9d6aa2011-04-11 16:56:35 +02007291 if (mouse_code == NULL || STRLEN(mouse_code) > 45)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007292 {
7293 xterm_trace = 0;
7294 return FALSE;
7295 }
7296
7297 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
7298 &win_x, &win_y, &mask_return);
7299
7300 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
7301 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
7302 if (row == prev_row && col == prev_col)
7303 return TRUE;
7304
7305 STRCPY(buf, mouse_code);
7306 strp = buf + STRLEN(buf);
7307 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
7308 *strp++ = (char_u)(col + ' ' + 1);
7309 *strp++ = (char_u)(row + ' ' + 1);
7310 *strp = 0;
7311 add_to_input_buf(buf, STRLEN(buf));
7312
7313 prev_row = row;
7314 prev_col = col;
7315 return TRUE;
7316}
7317
7318# if defined(FEAT_GUI) || defined(PROTO)
7319/*
7320 * Destroy the display, window and app_context. Required for GTK.
7321 */
7322 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007323clear_xterm_clip(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007324{
7325 if (xterm_Shell != (Widget)0)
7326 {
7327 XtDestroyWidget(xterm_Shell);
7328 xterm_Shell = (Widget)0;
7329 }
7330 if (xterm_dpy != NULL)
7331 {
Bram Moolenaare8208012008-06-20 09:59:25 +00007332# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007333 /* Lesstif and Solaris crash here, lose some memory */
7334 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00007335# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336 if (x11_display == xterm_dpy)
7337 x11_display = NULL;
7338 xterm_dpy = NULL;
7339 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007340# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00007341 if (app_context != (XtAppContext)NULL)
7342 {
7343 /* Lesstif and Solaris crash here, lose some memory */
7344 XtDestroyApplicationContext(app_context);
7345 app_context = (XtAppContext)NULL;
7346 }
Bram Moolenaare8208012008-06-20 09:59:25 +00007347# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007348}
7349# endif
7350
7351/*
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007352 * Catch up with GUI or X events.
7353 */
7354 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007355clip_update(void)
Bram Moolenaar090cfc12013-03-19 12:35:42 +01007356{
7357# ifdef FEAT_GUI
7358 if (gui.in_use)
7359 gui_mch_update();
7360 else
7361# endif
7362 if (xterm_Shell != (Widget)0)
7363 xterm_update();
7364}
7365
7366/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007367 * Catch up with any queued X events. This may put keyboard input into the
7368 * input buffer, call resize call-backs, trigger timers etc. If there is
7369 * nothing in the X event queue (& no timers pending), then we return
7370 * immediately.
7371 */
7372 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007373xterm_update(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007374{
7375 XEvent event;
7376
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007377 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007378 {
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007379 XtInputMask mask = XtAppPending(app_context);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007380
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007381 if (mask == 0 || vim_is_input_buf_full())
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007382 break;
7383
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007384 if (mask & XtIMXEvent)
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007385 {
7386 /* There is an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007387 XtAppNextEvent(app_context, &event);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007388#ifdef FEAT_CLIENTSERVER
7389 {
7390 XPropertyEvent *e = (XPropertyEvent *)&event;
7391
7392 if (e->type == PropertyNotify && e->window == commWindow
Bram Moolenaar071d4272004-06-13 20:20:40 +00007393 && e->atom == commProperty && e->state == PropertyNewValue)
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007394 serverEventProc(xterm_dpy, &event, 0);
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007395 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007396#endif
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007397 XtDispatchEvent(&event);
7398 }
Bram Moolenaarb1fc2bf2015-03-20 16:26:54 +01007399 else
7400 {
7401 /* There is something else than an event to process. */
Bram Moolenaar93c88e02015-09-15 14:12:05 +02007402 XtAppProcessEvent(app_context, mask);
7403 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007404 }
7405}
7406
7407 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007408clip_xterm_own_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007409{
7410 if (xterm_Shell != (Widget)0)
7411 return clip_x11_own_selection(xterm_Shell, cbd);
7412 return FAIL;
7413}
7414
7415 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007416clip_xterm_lose_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007417{
7418 if (xterm_Shell != (Widget)0)
7419 clip_x11_lose_selection(xterm_Shell, cbd);
7420}
7421
7422 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007423clip_xterm_request_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007424{
7425 if (xterm_Shell != (Widget)0)
7426 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
7427}
7428
7429 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007430clip_xterm_set_selection(VimClipboard *cbd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007431{
7432 clip_x11_set_selection(cbd);
7433}
7434#endif
7435
7436
7437#if defined(USE_XSMP) || defined(PROTO)
7438/*
7439 * Code for X Session Management Protocol.
7440 */
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007441static void xsmp_handle_save_yourself(SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast);
7442static void xsmp_die(SmcConn smc_conn, SmPointer client_data);
7443static void xsmp_save_complete(SmcConn smc_conn, SmPointer client_data);
7444static void xsmp_shutdown_cancelled(SmcConn smc_conn, SmPointer client_data);
7445static void xsmp_ice_connection(IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007446
7447
7448# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
Bram Moolenaarbaaa7e92016-01-29 22:47:03 +01007449static void xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450
7451/*
7452 * This is our chance to ask the user if they want to save,
7453 * or abort the logout
7454 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007455 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007456xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007457{
7458 cmdmod_T save_cmdmod;
7459 int cancel_shutdown = False;
7460
7461 save_cmdmod = cmdmod;
7462 cmdmod.confirm = TRUE;
Bram Moolenaar027387f2016-01-02 22:25:52 +01007463 if (check_changed_any(FALSE, FALSE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007464 /* Mustn't logout */
7465 cancel_shutdown = True;
7466 cmdmod = save_cmdmod;
7467 setcursor(); /* position cursor */
7468 out_flush();
7469
7470 /* Done interaction */
7471 SmcInteractDone(smc_conn, cancel_shutdown);
7472
7473 /* Finish off
7474 * Only end save-yourself here if we're not cancelling shutdown;
7475 * we'll get a cancelled callback later in which we'll end it.
7476 * Hopefully get around glitchy SMs (like GNOME-1)
7477 */
7478 if (!cancel_shutdown)
7479 {
7480 xsmp.save_yourself = False;
7481 SmcSaveYourselfDone(smc_conn, True);
7482 }
7483}
7484# endif
7485
7486/*
7487 * Callback that starts save-yourself.
7488 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007489 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007490xsmp_handle_save_yourself(
7491 SmcConn smc_conn,
7492 SmPointer client_data UNUSED,
7493 int save_type UNUSED,
7494 Bool shutdown,
7495 int interact_style UNUSED,
7496 Bool fast UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007497{
7498 /* Handle already being in saveyourself */
7499 if (xsmp.save_yourself)
7500 SmcSaveYourselfDone(smc_conn, True);
7501 xsmp.save_yourself = True;
7502 xsmp.shutdown = shutdown;
7503
7504 /* First up, preserve all files */
7505 out_flush();
7506 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
7507
7508 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007509 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007510
7511# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
7512 /* Now see if we can ask about unsaved files */
7513 if (shutdown && !fast && gui.in_use)
7514 /* Need to interact with user, but need SM's permission */
7515 SmcInteractRequest(smc_conn, SmDialogError,
7516 xsmp_handle_interaction, client_data);
7517 else
7518# endif
7519 {
7520 /* Can stop the cycle here */
7521 SmcSaveYourselfDone(smc_conn, True);
7522 xsmp.save_yourself = False;
7523 }
7524}
7525
7526
7527/*
7528 * Callback to warn us of imminent death.
7529 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007530 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007531xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007532{
7533 xsmp_close();
7534
7535 /* quit quickly leaving swapfiles for modified buffers behind */
7536 getout_preserve_modified(0);
7537}
7538
7539
7540/*
7541 * Callback to tell us that save-yourself has completed.
7542 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007543 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007544xsmp_save_complete(
7545 SmcConn smc_conn UNUSED,
7546 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007547{
7548 xsmp.save_yourself = False;
7549}
7550
7551
7552/*
7553 * Callback to tell us that an instigated shutdown was cancelled
7554 * (maybe even by us)
7555 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007556 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007557xsmp_shutdown_cancelled(
7558 SmcConn smc_conn,
7559 SmPointer client_data UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560{
7561 if (xsmp.save_yourself)
7562 SmcSaveYourselfDone(smc_conn, True);
7563 xsmp.save_yourself = False;
7564 xsmp.shutdown = False;
7565}
7566
7567
7568/*
7569 * Callback to tell us that a new ICE connection has been established.
7570 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007571 static void
Bram Moolenaar05540972016-01-30 20:31:25 +01007572xsmp_ice_connection(
7573 IceConn iceConn,
7574 IcePointer clientData UNUSED,
7575 Bool opening,
7576 IcePointer *watchData UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007577{
7578 /* Intercept creation of ICE connection fd */
7579 if (opening)
7580 {
7581 xsmp_icefd = IceConnectionNumber(iceConn);
7582 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
7583 }
7584}
7585
7586
7587/* Handle any ICE processing that's required; return FAIL if SM lost */
7588 int
Bram Moolenaar05540972016-01-30 20:31:25 +01007589xsmp_handle_requests(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007590{
7591 Bool rep;
7592
7593 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
7594 == IceProcessMessagesIOError)
7595 {
7596 /* Lost ICE */
7597 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007598 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007599 xsmp_close();
7600 return FAIL;
7601 }
7602 else
7603 return OK;
7604}
7605
7606static int dummy;
7607
7608/* Set up X Session Management Protocol */
7609 void
7610xsmp_init(void)
7611{
7612 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00007613 SmcCallbacks smcallbacks;
7614#if 0
7615 SmPropValue smname;
7616 SmProp smnameprop;
7617 SmProp *smprops[1];
7618#endif
7619
7620 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007621 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007622
7623 xsmp.save_yourself = xsmp.shutdown = False;
7624
7625 /* Set up SM callbacks - must have all, even if they're not used */
7626 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
7627 smcallbacks.save_yourself.client_data = NULL;
7628 smcallbacks.die.callback = xsmp_die;
7629 smcallbacks.die.client_data = NULL;
7630 smcallbacks.save_complete.callback = xsmp_save_complete;
7631 smcallbacks.save_complete.client_data = NULL;
7632 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
7633 smcallbacks.shutdown_cancelled.client_data = NULL;
7634
7635 /* Set up a watch on ICE connection creations. The "dummy" argument is
7636 * apparently required for FreeBSD (we get a BUS error when using NULL). */
7637 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
7638 {
7639 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007640 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007641 return;
7642 }
7643
7644 /* Create an SM connection */
7645 xsmp.smcconn = SmcOpenConnection(
7646 NULL,
7647 NULL,
7648 SmProtoMajor,
7649 SmProtoMinor,
7650 SmcSaveYourselfProcMask | SmcDieProcMask
7651 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
7652 &smcallbacks,
7653 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00007654 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007655 sizeof(errorstring),
7656 errorstring);
7657 if (xsmp.smcconn == NULL)
7658 {
7659 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00007660
Bram Moolenaar071d4272004-06-13 20:20:40 +00007661 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00007662 {
7663 vim_snprintf(errorreport, sizeof(errorreport),
7664 _("XSMP SmcOpenConnection failed: %s"), errorstring);
7665 verb_msg((char_u *)errorreport);
7666 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007667 return;
7668 }
7669 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
7670
7671#if 0
7672 /* ID ourselves */
7673 smname.value = "vim";
7674 smname.length = 3;
7675 smnameprop.name = "SmProgram";
7676 smnameprop.type = "SmARRAY8";
7677 smnameprop.num_vals = 1;
7678 smnameprop.vals = &smname;
7679
7680 smprops[0] = &smnameprop;
7681 SmcSetProperties(xsmp.smcconn, 1, smprops);
7682#endif
7683}
7684
7685
7686/* Shut down XSMP comms. */
7687 void
Bram Moolenaar05540972016-01-30 20:31:25 +01007688xsmp_close(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007689{
7690 if (xsmp_icefd != -1)
7691 {
7692 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaar5a221812008-11-12 12:08:45 +00007693 if (xsmp.clientid != NULL)
7694 free(xsmp.clientid);
Bram Moolenaare8208012008-06-20 09:59:25 +00007695 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007696 xsmp_icefd = -1;
7697 }
7698}
7699#endif /* USE_XSMP */
7700
7701
7702#ifdef EBCDIC
7703/* Translate character to its CTRL- value */
7704char CtrlTable[] =
7705{
7706/* 00 - 5E */
7707 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7708 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7709 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7710 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7711 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7712 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7713/* ^ */ 0x1E,
7714/* - */ 0x1F,
7715/* 61 - 6C */
7716 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7717/* _ */ 0x1F,
7718/* 6E - 80 */
7719 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7720/* a */ 0x01,
7721/* b */ 0x02,
7722/* c */ 0x03,
7723/* d */ 0x37,
7724/* e */ 0x2D,
7725/* f */ 0x2E,
7726/* g */ 0x2F,
7727/* h */ 0x16,
7728/* i */ 0x05,
7729/* 8A - 90 */
7730 0, 0, 0, 0, 0, 0, 0,
7731/* j */ 0x15,
7732/* k */ 0x0B,
7733/* l */ 0x0C,
7734/* m */ 0x0D,
7735/* n */ 0x0E,
7736/* o */ 0x0F,
7737/* p */ 0x10,
7738/* q */ 0x11,
7739/* r */ 0x12,
7740/* 9A - A1 */
7741 0, 0, 0, 0, 0, 0, 0, 0,
7742/* s */ 0x13,
7743/* t */ 0x3C,
7744/* u */ 0x3D,
7745/* v */ 0x32,
7746/* w */ 0x26,
7747/* x */ 0x18,
7748/* y */ 0x19,
7749/* z */ 0x3F,
7750/* AA - AC */
7751 0, 0, 0,
7752/* [ */ 0x27,
7753/* AE - BC */
7754 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7755/* ] */ 0x1D,
7756/* BE - C0 */ 0, 0, 0,
7757/* A */ 0x01,
7758/* B */ 0x02,
7759/* C */ 0x03,
7760/* D */ 0x37,
7761/* E */ 0x2D,
7762/* F */ 0x2E,
7763/* G */ 0x2F,
7764/* H */ 0x16,
7765/* I */ 0x05,
7766/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
7767/* J */ 0x15,
7768/* K */ 0x0B,
7769/* L */ 0x0C,
7770/* M */ 0x0D,
7771/* N */ 0x0E,
7772/* O */ 0x0F,
7773/* P */ 0x10,
7774/* Q */ 0x11,
7775/* R */ 0x12,
7776/* DA - DF */ 0, 0, 0, 0, 0, 0,
7777/* \ */ 0x1C,
7778/* E1 */ 0,
7779/* S */ 0x13,
7780/* T */ 0x3C,
7781/* U */ 0x3D,
7782/* V */ 0x32,
7783/* W */ 0x26,
7784/* X */ 0x18,
7785/* Y */ 0x19,
7786/* Z */ 0x3F,
7787/* EA - FF*/ 0, 0, 0, 0, 0, 0,
7788 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
7789};
7790
7791char MetaCharTable[]=
7792{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
7793 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
7794 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
7795 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
7796 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
7797};
7798
7799
7800/* TODO: Use characters NOT numbers!!! */
7801char CtrlCharTable[]=
7802{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
7803 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
7804 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
7805 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
7806 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
7807};
7808
7809
7810#endif