blob: 4c3f39f2c77dd80eef39c872c80dfcff22cbc98f [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#ifdef HAVE_FCNTL_H
39# include <fcntl.h>
40#endif
41
42#include "os_unixx.h" /* unix includes for os_unix.c only */
43
44#ifdef USE_XSMP
45# include <X11/SM/SMlib.h>
46#endif
47
Bram Moolenaar588ebeb2008-05-07 17:09:24 +000048#ifdef HAVE_SELINUX
49# include <selinux/selinux.h>
50static int selinux_enabled = -1;
51#endif
52
Bram Moolenaar071d4272004-06-13 20:20:40 +000053/*
54 * Use this prototype for select, some include files have a wrong prototype
55 */
Bram Moolenaar311d9822007-02-27 15:48:28 +000056#ifndef __TANDEM
57# undef select
58# ifdef __BEOS__
59# define select beos_select
60# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000061#endif
62
Bram Moolenaara2442432007-04-26 14:26:37 +000063#ifdef __CYGWIN__
64# ifndef WIN32
65# include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() */
66# endif
67#endif
68
Bram Moolenaar071d4272004-06-13 20:20:40 +000069#if defined(HAVE_SELECT)
70extern int select __ARGS((int, fd_set *, fd_set *, fd_set *, struct timeval *));
71#endif
72
73#ifdef FEAT_MOUSE_GPM
74# include <gpm.h>
75/* <linux/keyboard.h> contains defines conflicting with "keymap.h",
76 * I just copied relevant defines here. A cleaner solution would be to put gpm
77 * code into separate file and include there linux/keyboard.h
78 */
79/* #include <linux/keyboard.h> */
80# define KG_SHIFT 0
81# define KG_CTRL 2
82# define KG_ALT 3
83# define KG_ALTGR 1
84# define KG_SHIFTL 4
85# define KG_SHIFTR 5
86# define KG_CTRLL 6
87# define KG_CTRLR 7
88# define KG_CAPSSHIFT 8
89
90static void gpm_close __ARGS((void));
91static int gpm_open __ARGS((void));
92static int mch_gpm_process __ARGS((void));
93#endif
94
95/*
96 * end of autoconf section. To be extended...
97 */
98
99/* Are the following #ifdefs still required? And why? Is that for X11? */
100
101#if defined(ESIX) || defined(M_UNIX) && !defined(SCO)
102# ifdef SIGWINCH
103# undef SIGWINCH
104# endif
105# ifdef TIOCGWINSZ
106# undef TIOCGWINSZ
107# endif
108#endif
109
110#if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */
111# define SIGWINCH SIGWINDOW
112#endif
113
114#ifdef FEAT_X11
115# include <X11/Xlib.h>
116# include <X11/Xutil.h>
117# include <X11/Xatom.h>
118# ifdef FEAT_XCLIPBOARD
119# include <X11/Intrinsic.h>
120# include <X11/Shell.h>
121# include <X11/StringDefs.h>
122static Widget xterm_Shell = (Widget)0;
123static void xterm_update __ARGS((void));
124# endif
125
126# if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)
127Window x11_window = 0;
128# endif
129Display *x11_display = NULL;
130
131# ifdef FEAT_TITLE
132static int get_x11_windis __ARGS((void));
133static void set_x11_title __ARGS((char_u *));
134static void set_x11_icon __ARGS((char_u *));
135# endif
136#endif
137
138#ifdef FEAT_TITLE
139static int get_x11_title __ARGS((int));
140static int get_x11_icon __ARGS((int));
141
142static char_u *oldtitle = NULL;
143static int did_set_title = FALSE;
144static char_u *oldicon = NULL;
145static int did_set_icon = FALSE;
146#endif
147
148static void may_core_dump __ARGS((void));
149
150static int WaitForChar __ARGS((long));
151#if defined(__BEOS__)
152int RealWaitForChar __ARGS((int, long, int *));
153#else
154static int RealWaitForChar __ARGS((int, long, int *));
155#endif
156
157#ifdef FEAT_XCLIPBOARD
158static int do_xterm_trace __ARGS((void));
Bram Moolenaarcf851ce2005-06-16 21:52:47 +0000159# define XT_TRACE_DELAY 50 /* delay for xterm tracing */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000160#endif
161
162static void handle_resize __ARGS((void));
163
164#if defined(SIGWINCH)
165static RETSIGTYPE sig_winch __ARGS(SIGPROTOARG);
166#endif
167#if defined(SIGINT)
168static RETSIGTYPE catch_sigint __ARGS(SIGPROTOARG);
169#endif
170#if defined(SIGPWR)
171static RETSIGTYPE catch_sigpwr __ARGS(SIGPROTOARG);
172#endif
173#if defined(SIGALRM) && defined(FEAT_X11) \
174 && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK)
175# define SET_SIG_ALARM
176static RETSIGTYPE sig_alarm __ARGS(SIGPROTOARG);
177static int sig_alarm_called;
178#endif
179static RETSIGTYPE deathtrap __ARGS(SIGPROTOARG);
180
Bram Moolenaardf177f62005-02-22 08:39:57 +0000181static void catch_int_signal __ARGS((void));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000182static void set_signals __ARGS((void));
183static void catch_signals __ARGS((RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)()));
184#ifndef __EMX__
185static int have_wildcard __ARGS((int, char_u **));
186static int have_dollars __ARGS((int, char_u **));
187#endif
188
Bram Moolenaar071d4272004-06-13 20:20:40 +0000189#ifndef __EMX__
190static int save_patterns __ARGS((int num_pat, char_u **pat, int *num_file, char_u ***file));
191#endif
192
193#ifndef SIG_ERR
194# define SIG_ERR ((RETSIGTYPE (*)())-1)
195#endif
196
197static int do_resize = FALSE;
198#ifndef __EMX__
199static char_u *extra_shell_arg = NULL;
200static int show_shell_mess = TRUE;
201#endif
202static int deadly_signal = 0; /* The signal we caught */
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000203static int in_mch_delay = FALSE; /* sleeping in mch_delay() */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000204
205static int curr_tmode = TMODE_COOK; /* contains current terminal mode */
206
207#ifdef USE_XSMP
208typedef struct
209{
210 SmcConn smcconn; /* The SM connection ID */
211 IceConn iceconn; /* The ICE connection ID */
Bram Moolenaare8208012008-06-20 09:59:25 +0000212 char *clientid; /* The client ID for the current smc session */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 Bool save_yourself; /* If we're in the middle of a save_yourself */
214 Bool shutdown; /* If we're in shutdown mode */
215} xsmp_config_T;
216
217static xsmp_config_T xsmp;
218#endif
219
220#ifdef SYS_SIGLIST_DECLARED
221/*
222 * I have seen
223 * extern char *_sys_siglist[NSIG];
224 * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings
225 * that describe the signals. That is nearly what we want here. But
226 * autoconf does only check for sys_siglist (without the underscore), I
227 * do not want to change everything today.... jw.
228 * This is why AC_DECL_SYS_SIGLIST is commented out in configure.in
229 */
230#endif
231
232static struct signalinfo
233{
234 int sig; /* Signal number, eg. SIGSEGV etc */
235 char *name; /* Signal name (not char_u!). */
236 char deadly; /* Catch as a deadly signal? */
237} signal_info[] =
238{
239#ifdef SIGHUP
240 {SIGHUP, "HUP", TRUE},
241#endif
242#ifdef SIGQUIT
243 {SIGQUIT, "QUIT", TRUE},
244#endif
245#ifdef SIGILL
246 {SIGILL, "ILL", TRUE},
247#endif
248#ifdef SIGTRAP
249 {SIGTRAP, "TRAP", TRUE},
250#endif
251#ifdef SIGABRT
252 {SIGABRT, "ABRT", TRUE},
253#endif
254#ifdef SIGEMT
255 {SIGEMT, "EMT", TRUE},
256#endif
257#ifdef SIGFPE
258 {SIGFPE, "FPE", TRUE},
259#endif
260#ifdef SIGBUS
261 {SIGBUS, "BUS", TRUE},
262#endif
263#ifdef SIGSEGV
264 {SIGSEGV, "SEGV", TRUE},
265#endif
266#ifdef SIGSYS
267 {SIGSYS, "SYS", TRUE},
268#endif
269#ifdef SIGALRM
270 {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */
271#endif
272#ifdef SIGTERM
273 {SIGTERM, "TERM", TRUE},
274#endif
275#ifdef SIGVTALRM
276 {SIGVTALRM, "VTALRM", TRUE},
277#endif
Bram Moolenaar02f07e02008-03-12 12:17:28 +0000278#if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING)
279 /* MzScheme uses SIGPROF for its own needs; On Linux with profiling
280 * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000281 {SIGPROF, "PROF", TRUE},
282#endif
283#ifdef SIGXCPU
284 {SIGXCPU, "XCPU", TRUE},
285#endif
286#ifdef SIGXFSZ
287 {SIGXFSZ, "XFSZ", TRUE},
288#endif
289#ifdef SIGUSR1
290 {SIGUSR1, "USR1", TRUE},
291#endif
292#ifdef SIGUSR2
293 {SIGUSR2, "USR2", TRUE},
294#endif
295#ifdef SIGINT
296 {SIGINT, "INT", FALSE},
297#endif
298#ifdef SIGWINCH
299 {SIGWINCH, "WINCH", FALSE},
300#endif
301#ifdef SIGTSTP
302 {SIGTSTP, "TSTP", FALSE},
303#endif
304#ifdef SIGPIPE
305 {SIGPIPE, "PIPE", FALSE},
306#endif
307 {-1, "Unknown!", FALSE}
308};
309
310 void
311mch_write(s, len)
312 char_u *s;
313 int len;
314{
315 write(1, (char *)s, len);
316 if (p_wd) /* Unix is too fast, slow down a bit more */
317 RealWaitForChar(read_cmd_fd, p_wd, NULL);
318}
319
320/*
Bram Moolenaarc2a27c32007-12-01 16:19:33 +0000321 * mch_inchar(): low level input function.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322 * Get a characters from the keyboard.
323 * Return the number of characters that are available.
324 * If wtime == 0 do not wait for characters.
325 * If wtime == n wait a short time for characters.
326 * If wtime == -1 wait forever for characters.
327 */
328 int
329mch_inchar(buf, maxlen, wtime, tb_change_cnt)
330 char_u *buf;
331 int maxlen;
332 long wtime; /* don't use "time", MIPS cannot handle it */
333 int tb_change_cnt;
334{
335 int len;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336
337 /* Check if window changed size while we were busy, perhaps the ":set
338 * columns=99" command was used. */
339 while (do_resize)
340 handle_resize();
341
342 if (wtime >= 0)
343 {
344 while (WaitForChar(wtime) == 0) /* no character available */
345 {
346 if (!do_resize) /* return if not interrupted by resize */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 return 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 handle_resize();
349 }
350 }
351 else /* wtime == -1 */
352 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353 /*
354 * If there is no character available within 'updatetime' seconds
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000355 * flush all the swap files to disk.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000356 * Also done when interrupted by SIGWINCH.
357 */
358 if (WaitForChar(p_ut) == 0)
359 {
360#ifdef FEAT_AUTOCMD
Bram Moolenaard35f9712005-12-18 22:02:33 +0000361 if (trigger_cursorhold() && maxlen >= 3
362 && !typebuf_changed(tb_change_cnt))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 {
Bram Moolenaar4317d9b2005-03-18 20:25:31 +0000364 buf[0] = K_SPECIAL;
365 buf[1] = KS_EXTRA;
366 buf[2] = (int)KE_CURSORHOLD;
367 return 3;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369#endif
Bram Moolenaard4098f52005-06-27 22:37:13 +0000370 before_blocking();
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 }
372 }
373
374 for (;;) /* repeat until we got a character */
375 {
376 while (do_resize) /* window changed size */
377 handle_resize();
378 /*
379 * we want to be interrupted by the winch signal
380 */
381 WaitForChar(-1L);
382 if (do_resize) /* interrupted by SIGWINCH signal */
383 continue;
384
385 /* If input was put directly in typeahead buffer bail out here. */
386 if (typebuf_changed(tb_change_cnt))
387 return 0;
388
389 /*
390 * For some terminals we only get one character at a time.
391 * We want the get all available characters, so we could keep on
392 * trying until none is available
393 * For some other terminals this is quite slow, that's why we don't do
394 * it.
395 */
396 len = read_from_input_buf(buf, (long)maxlen);
397 if (len > 0)
398 {
399#ifdef OS2
400 int i;
401
402 for (i = 0; i < len; i++)
403 if (buf[i] == 0)
404 buf[i] = K_NUL;
405#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000406 return len;
407 }
408 }
409}
410
411 static void
412handle_resize()
413{
414 do_resize = FALSE;
415 shell_resized();
416}
417
418/*
419 * return non-zero if a character is available
420 */
421 int
422mch_char_avail()
423{
424 return WaitForChar(0L);
425}
426
427#if defined(HAVE_TOTAL_MEM) || defined(PROTO)
428# ifdef HAVE_SYS_RESOURCE_H
429# include <sys/resource.h>
430# endif
431# if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL)
432# include <sys/sysctl.h>
433# endif
434# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
435# include <sys/sysinfo.h>
436# endif
437
438/*
Bram Moolenaar914572a2007-05-01 11:37:47 +0000439 * Return total amount of memory available in Kbyte.
440 * Doesn't change when memory has been allocated.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 */
442/* ARGSUSED */
443 long_u
444mch_total_mem(special)
445 int special;
446{
447# ifdef __EMX__
Bram Moolenaar914572a2007-05-01 11:37:47 +0000448 return ulimit(3, 0L) >> 10; /* always 32MB? */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449# else
450 long_u mem = 0;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000451 long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452
453# ifdef HAVE_SYSCTL
454 int mib[2], physmem;
455 size_t len;
456
457 /* BSD way of getting the amount of RAM available. */
458 mib[0] = CTL_HW;
459 mib[1] = HW_USERMEM;
460 len = sizeof(physmem);
461 if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0)
462 mem = (long_u)physmem;
463# endif
464
465# if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO)
466 if (mem == 0)
467 {
468 struct sysinfo sinfo;
469
470 /* Linux way of getting amount of RAM available */
471 if (sysinfo(&sinfo) == 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000472 {
473# ifdef HAVE_SYSINFO_MEM_UNIT
474 /* avoid overflow as much as possible */
475 while (shiftright > 0 && (sinfo.mem_unit & 1) == 0)
476 {
477 sinfo.mem_unit = sinfo.mem_unit >> 1;
478 --shiftright;
479 }
480 mem = sinfo.totalram * sinfo.mem_unit;
481# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 mem = sinfo.totalram;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000483# endif
484 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000485 }
486# endif
487
488# ifdef HAVE_SYSCONF
489 if (mem == 0)
490 {
491 long pagesize, pagecount;
492
493 /* Solaris way of getting amount of RAM available */
494 pagesize = sysconf(_SC_PAGESIZE);
495 pagecount = sysconf(_SC_PHYS_PAGES);
496 if (pagesize > 0 && pagecount > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000497 {
498 /* avoid overflow as much as possible */
499 while (shiftright > 0 && (pagesize & 1) == 0)
500 {
Bram Moolenaar3d27a452007-05-10 17:44:18 +0000501 pagesize = (long_u)pagesize >> 1;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000502 --shiftright;
503 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000504 mem = (long_u)pagesize * pagecount;
Bram Moolenaar914572a2007-05-01 11:37:47 +0000505 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000506 }
507# endif
508
509 /* Return the minimum of the physical memory and the user limit, because
510 * using more than the user limit may cause Vim to be terminated. */
511# if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT)
512 {
513 struct rlimit rlp;
514
515 if (getrlimit(RLIMIT_DATA, &rlp) == 0
516 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
517# ifdef RLIM_INFINITY
518 && rlp.rlim_cur != RLIM_INFINITY
519# endif
Bram Moolenaar914572a2007-05-01 11:37:47 +0000520 && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000521 )
Bram Moolenaar914572a2007-05-01 11:37:47 +0000522 {
523 mem = (long_u)rlp.rlim_cur;
524 shiftright = 10;
525 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000526 }
527# endif
528
529 if (mem > 0)
Bram Moolenaar914572a2007-05-01 11:37:47 +0000530 return mem >> shiftright;
531 return (long_u)0x1fffff;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000532# endif
533}
534#endif
535
536 void
537mch_delay(msec, ignoreinput)
538 long msec;
539 int ignoreinput;
540{
541 int old_tmode;
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000542#ifdef FEAT_MZSCHEME
543 long total = msec; /* remember original value */
544#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000545
546 if (ignoreinput)
547 {
548 /* Go to cooked mode without echo, to allow SIGINT interrupting us
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000549 * here. But we don't want QUIT to kill us (CTRL-\ used in a
550 * shell may produce SIGQUIT). */
551 in_mch_delay = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000552 old_tmode = curr_tmode;
553 if (curr_tmode == TMODE_RAW)
554 settmode(TMODE_SLEEP);
555
556 /*
557 * Everybody sleeps in a different way...
558 * Prefer nanosleep(), some versions of usleep() can only sleep up to
559 * one second.
560 */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000561#ifdef FEAT_MZSCHEME
562 do
563 {
564 /* if total is large enough, wait by portions in p_mzq */
565 if (total > p_mzq)
566 msec = p_mzq;
567 else
568 msec = total;
569 total -= msec;
570#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000571#ifdef HAVE_NANOSLEEP
572 {
573 struct timespec ts;
574
575 ts.tv_sec = msec / 1000;
576 ts.tv_nsec = (msec % 1000) * 1000000;
577 (void)nanosleep(&ts, NULL);
578 }
579#else
580# ifdef HAVE_USLEEP
581 while (msec >= 1000)
582 {
583 usleep((unsigned int)(999 * 1000));
584 msec -= 999;
585 }
586 usleep((unsigned int)(msec * 1000));
587# else
588# ifndef HAVE_SELECT
589 poll(NULL, 0, (int)msec);
590# else
591# ifdef __EMX__
592 _sleep2(msec);
593# else
594 {
595 struct timeval tv;
596
597 tv.tv_sec = msec / 1000;
598 tv.tv_usec = (msec % 1000) * 1000;
599 /*
600 * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get
601 * a patch from Sun to fix this. Reported by Gunnar Pedersen.
602 */
603 select(0, NULL, NULL, NULL, &tv);
604 }
605# endif /* __EMX__ */
606# endif /* HAVE_SELECT */
607# endif /* HAVE_NANOSLEEP */
608#endif /* HAVE_USLEEP */
Bram Moolenaar325b7a22004-07-05 15:58:32 +0000609#ifdef FEAT_MZSCHEME
610 }
611 while (total > 0);
612#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000613
614 settmode(old_tmode);
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000615 in_mch_delay = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616 }
617 else
618 WaitForChar(msec);
619}
620
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000621#if 0 /* disabled, no longer needed now that regmatch() is not recursive */
622# if defined(HAVE_GETRLIMIT)
623# define HAVE_STACK_LIMIT
624# endif
625#endif
626
627#if defined(HAVE_STACK_LIMIT) \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK))
629# define HAVE_CHECK_STACK_GROWTH
630/*
631 * Support for checking for an almost-out-of-stack-space situation.
632 */
633
634/*
635 * Return a pointer to an item on the stack. Used to find out if the stack
636 * grows up or down.
637 */
638static void check_stack_growth __ARGS((char *p));
639static int stack_grows_downwards;
640
641/*
642 * Find out if the stack grows upwards or downwards.
643 * "p" points to a variable on the stack of the caller.
644 */
645 static void
646check_stack_growth(p)
647 char *p;
648{
649 int i;
650
651 stack_grows_downwards = (p > (char *)&i);
652}
653#endif
654
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000655#if defined(HAVE_STACK_LIMIT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656static char *stack_limit = NULL;
657
658#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
659# include <pthread.h>
660# include <pthread_np.h>
661#endif
662
663/*
664 * Find out until how var the stack can grow without getting into trouble.
665 * Called when starting up and when switching to the signal stack in
666 * deathtrap().
667 */
668 static void
669get_stack_limit()
670{
671 struct rlimit rlp;
672 int i;
673 long lim;
674
675 /* Set the stack limit to 15/16 of the allowable size. Skip this when the
676 * limit doesn't fit in a long (rlim_cur might be "long long"). */
677 if (getrlimit(RLIMIT_STACK, &rlp) == 0
678 && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1))
679# ifdef RLIM_INFINITY
680 && rlp.rlim_cur != RLIM_INFINITY
681# endif
682 )
683 {
684 lim = (long)rlp.rlim_cur;
685#if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H)
686 {
687 pthread_attr_t attr;
688 size_t size;
689
690 /* On FreeBSD the initial thread always has a fixed stack size, no
691 * matter what the limits are set to. Normally it's 1 Mbyte. */
692 pthread_attr_init(&attr);
693 if (pthread_attr_get_np(pthread_self(), &attr) == 0)
694 {
695 pthread_attr_getstacksize(&attr, &size);
696 if (lim > (long)size)
697 lim = (long)size;
698 }
699 pthread_attr_destroy(&attr);
700 }
701#endif
702 if (stack_grows_downwards)
703 {
704 stack_limit = (char *)((long)&i - (lim / 16L * 15L));
705 if (stack_limit >= (char *)&i)
706 /* overflow, set to 1/16 of current stack position */
707 stack_limit = (char *)((long)&i / 16L);
708 }
709 else
710 {
711 stack_limit = (char *)((long)&i + (lim / 16L * 15L));
712 if (stack_limit <= (char *)&i)
713 stack_limit = NULL; /* overflow */
714 }
715 }
716}
717
718/*
719 * Return FAIL when running out of stack space.
720 * "p" must point to any variable local to the caller that's on the stack.
721 */
722 int
723mch_stackcheck(p)
724 char *p;
725{
726 if (stack_limit != NULL)
727 {
728 if (stack_grows_downwards)
729 {
730 if (p < stack_limit)
731 return FAIL;
732 }
733 else if (p > stack_limit)
734 return FAIL;
735 }
736 return OK;
737}
738#endif
739
740#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
741/*
742 * Support for using the signal stack.
743 * This helps when we run out of stack space, which causes a SIGSEGV. The
744 * signal handler then must run on another stack, since the normal stack is
745 * completely full.
746 */
747
748#ifndef SIGSTKSZ
749# define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */
750#endif
751
752# ifdef HAVE_SIGALTSTACK
753static stack_t sigstk; /* for sigaltstack() */
754# else
755static struct sigstack sigstk; /* for sigstack() */
756# endif
757
758static void init_signal_stack __ARGS((void));
759static char *signal_stack;
760
761 static void
762init_signal_stack()
763{
764 if (signal_stack != NULL)
765 {
766# ifdef HAVE_SIGALTSTACK
Bram Moolenaar1a3d0862007-08-30 09:47:38 +0000767# if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \
768 || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769 /* missing prototype. Adding it to osdef?.h.in doesn't work, because
770 * "struct sigaltstack" needs to be declared. */
771 extern int sigaltstack __ARGS((const struct sigaltstack *ss, struct sigaltstack *oss));
772# endif
773
774# ifdef HAVE_SS_BASE
775 sigstk.ss_base = signal_stack;
776# else
777 sigstk.ss_sp = signal_stack;
778# endif
779 sigstk.ss_size = SIGSTKSZ;
780 sigstk.ss_flags = 0;
781 (void)sigaltstack(&sigstk, NULL);
782# else
783 sigstk.ss_sp = signal_stack;
784 if (stack_grows_downwards)
785 sigstk.ss_sp += SIGSTKSZ - 1;
786 sigstk.ss_onstack = 0;
787 (void)sigstack(&sigstk, NULL);
788# endif
789 }
790}
791#endif
792
793/*
794 * We need correct potatotypes for a signal function, otherwise mean compilers
795 * will barf when the second argument to signal() is ``wrong''.
796 * Let me try it with a few tricky defines from my own osdef.h (jw).
797 */
798#if defined(SIGWINCH)
799/* ARGSUSED */
800 static RETSIGTYPE
801sig_winch SIGDEFARG(sigarg)
802{
803 /* this is not required on all systems, but it doesn't hurt anybody */
804 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
805 do_resize = TRUE;
806 SIGRETURN;
807}
808#endif
809
810#if defined(SIGINT)
811/* ARGSUSED */
812 static RETSIGTYPE
813catch_sigint SIGDEFARG(sigarg)
814{
815 /* this is not required on all systems, but it doesn't hurt anybody */
816 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
817 got_int = TRUE;
818 SIGRETURN;
819}
820#endif
821
822#if defined(SIGPWR)
823/* ARGSUSED */
824 static RETSIGTYPE
825catch_sigpwr SIGDEFARG(sigarg)
826{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000827 /* this is not required on all systems, but it doesn't hurt anybody */
828 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 /*
830 * I'm not sure we get the SIGPWR signal when the system is really going
831 * down or when the batteries are almost empty. Just preserve the swap
832 * files and don't exit, that can't do any harm.
833 */
834 ml_sync_all(FALSE, FALSE);
835 SIGRETURN;
836}
837#endif
838
839#ifdef SET_SIG_ALARM
840/*
841 * signal function for alarm().
842 */
843/* ARGSUSED */
844 static RETSIGTYPE
845sig_alarm SIGDEFARG(sigarg)
846{
847 /* doesn't do anything, just to break a system call */
848 sig_alarm_called = TRUE;
849 SIGRETURN;
850}
851#endif
852
Bram Moolenaar44ecf652005-03-07 23:09:59 +0000853#if (defined(HAVE_SETJMP_H) \
854 && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \
855 || defined(FEAT_LIBCALL))) \
856 || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857/*
858 * A simplistic version of setjmp() that only allows one level of using.
859 * Don't call twice before calling mch_endjmp()!.
860 * Usage:
861 * mch_startjmp();
862 * if (SETJMP(lc_jump_env) != 0)
863 * {
864 * mch_didjmp();
865 * EMSG("crash!");
866 * }
867 * else
868 * {
869 * do_the_work;
870 * mch_endjmp();
871 * }
872 * Note: Can't move SETJMP() here, because a function calling setjmp() must
873 * not return before the saved environment is used.
874 * Returns OK for normal return, FAIL when the protected code caused a
875 * problem and LONGJMP() was used.
876 */
877 void
878mch_startjmp()
879{
880#ifdef SIGHASARG
881 lc_signal = 0;
882#endif
883 lc_active = TRUE;
884}
885
886 void
887mch_endjmp()
888{
889 lc_active = FALSE;
890}
891
892 void
893mch_didjmp()
894{
895# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
896 /* On FreeBSD the signal stack has to be reset after using siglongjmp(),
897 * otherwise catching the signal only works once. */
898 init_signal_stack();
899# endif
900}
901#endif
902
903/*
904 * This function handles deadly signals.
905 * It tries to preserve any swap file and exit properly.
906 * (partly from Elvis).
907 */
908 static RETSIGTYPE
909deathtrap SIGDEFARG(sigarg)
910{
911 static int entered = 0; /* count the number of times we got here.
912 Note: when memory has been corrupted
913 this may get an arbitrary value! */
914#ifdef SIGHASARG
915 int i;
916#endif
917
918#if defined(HAVE_SETJMP_H)
919 /*
920 * Catch a crash in protected code.
921 * Restores the environment saved in lc_jump_env, which looks like
922 * SETJMP() returns 1.
923 */
924 if (lc_active)
925 {
926# if defined(SIGHASARG)
927 lc_signal = sigarg;
928# endif
929 lc_active = FALSE; /* don't jump again */
930 LONGJMP(lc_jump_env, 1);
931 /* NOTREACHED */
932 }
933#endif
934
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000935#ifdef SIGHASARG
Bram Moolenaarae0f2ca2008-02-10 21:25:55 +0000936# ifdef SIGQUIT
937 /* While in mch_delay() we go to cooked mode to allow a CTRL-C to
938 * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when
939 * pressing CTRL-\, but we don't want Vim to exit then. */
940 if (in_mch_delay && sigarg == SIGQUIT)
941 SIGRETURN;
942# endif
943
Bram Moolenaard8b0cf12004-12-12 11:33:30 +0000944 /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return
945 * here. This avoids that a non-reentrant function is interrupted, e.g.,
946 * free(). Calling free() again may then cause a crash. */
947 if (entered == 0
948 && (0
949# ifdef SIGHUP
950 || sigarg == SIGHUP
951# endif
952# ifdef SIGQUIT
953 || sigarg == SIGQUIT
954# endif
955# ifdef SIGTERM
956 || sigarg == SIGTERM
957# endif
958# ifdef SIGPWR
959 || sigarg == SIGPWR
960# endif
961# ifdef SIGUSR1
962 || sigarg == SIGUSR1
963# endif
964# ifdef SIGUSR2
965 || sigarg == SIGUSR2
966# endif
967 )
Bram Moolenaar1f28b072005-07-12 22:42:41 +0000968 && !vim_handle_signal(sigarg))
Bram Moolenaar293ee4d2004-12-09 21:34:53 +0000969 SIGRETURN;
970#endif
971
Bram Moolenaar071d4272004-06-13 20:20:40 +0000972 /* Remember how often we have been called. */
973 ++entered;
974
975#ifdef FEAT_EVAL
976 /* Set the v:dying variable. */
977 set_vim_var_nr(VV_DYING, (long)entered);
978#endif
979
Bram Moolenaarbc7aa852005-03-06 23:38:09 +0000980#ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 /* Since we are now using the signal stack, need to reset the stack
982 * limit. Otherwise using a regexp will fail. */
983 get_stack_limit();
984#endif
985
Bram Moolenaar1f4d4de2006-03-14 23:00:46 +0000986#if 0
987 /* This is for opening gdb the moment Vim crashes.
988 * You need to manually adjust the file name and Vim executable name.
989 * Suggested by SungHyun Nam. */
990 {
991# define VI_GDB_FILE "/tmp/vimgdb"
992# define VIM_NAME "/usr/bin/vim"
993 FILE *fp = fopen(VI_GDB_FILE, "w");
994 if (fp)
995 {
996 fprintf(fp,
997 "file %s\n"
998 "attach %d\n"
999 "set height 1000\n"
1000 "bt full\n"
1001 , VIM_NAME, getpid());
1002 fclose(fp);
1003 system("xterm -e gdb -x "VI_GDB_FILE);
1004 unlink(VI_GDB_FILE);
1005 }
1006 }
1007#endif
1008
Bram Moolenaar071d4272004-06-13 20:20:40 +00001009#ifdef SIGHASARG
1010 /* try to find the name of this signal */
1011 for (i = 0; signal_info[i].sig != -1; i++)
1012 if (sigarg == signal_info[i].sig)
1013 break;
1014 deadly_signal = sigarg;
1015#endif
1016
1017 full_screen = FALSE; /* don't write message to the GUI, it might be
1018 * part of the problem... */
1019 /*
1020 * If something goes wrong after entering here, we may get here again.
1021 * When this happens, give a message and try to exit nicely (resetting the
1022 * terminal mode, etc.)
1023 * When this happens twice, just exit, don't even try to give a message,
1024 * stack may be corrupt or something weird.
1025 * When this still happens again (or memory was corrupted in such a way
1026 * that "entered" was clobbered) use _exit(), don't try freeing resources.
1027 */
1028 if (entered >= 3)
1029 {
1030 reset_signals(); /* don't catch any signals anymore */
1031 may_core_dump();
1032 if (entered >= 4)
1033 _exit(8);
1034 exit(7);
1035 }
1036 if (entered == 2)
1037 {
1038 OUT_STR(_("Vim: Double signal, exiting\n"));
1039 out_flush();
1040 getout(1);
1041 }
1042
1043#ifdef SIGHASARG
1044 sprintf((char *)IObuff, _("Vim: Caught deadly signal %s\n"),
1045 signal_info[i].name);
1046#else
1047 sprintf((char *)IObuff, _("Vim: Caught deadly signal\n"));
1048#endif
1049 preserve_exit(); /* preserve files and exit */
1050
Bram Moolenaar009b2592004-10-24 19:18:58 +00001051#ifdef NBDEBUG
1052 reset_signals();
1053 may_core_dump();
1054 abort();
1055#endif
1056
Bram Moolenaar071d4272004-06-13 20:20:40 +00001057 SIGRETURN;
1058}
1059
1060#ifdef _REENTRANT
1061/*
1062 * On Solaris with multi-threading, suspending might not work immediately.
1063 * Catch the SIGCONT signal, which will be used as an indication whether the
1064 * suspending has been done or not.
1065 */
1066static int sigcont_received;
1067static RETSIGTYPE sigcont_handler __ARGS(SIGPROTOARG);
1068
1069/*
1070 * signal handler for SIGCONT
1071 */
1072/* ARGSUSED */
1073 static RETSIGTYPE
1074sigcont_handler SIGDEFARG(sigarg)
1075{
1076 sigcont_received = TRUE;
1077 SIGRETURN;
1078}
1079#endif
1080
1081/*
1082 * If the machine has job control, use it to suspend the program,
1083 * otherwise fake it by starting a new shell.
1084 */
1085 void
1086mch_suspend()
1087{
1088 /* BeOS does have SIGTSTP, but it doesn't work. */
1089#if defined(SIGTSTP) && !defined(__BEOS__)
1090 out_flush(); /* needed to make cursor visible on some systems */
1091 settmode(TMODE_COOK);
1092 out_flush(); /* needed to disable mouse on some systems */
1093
1094# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
1095 /* Since we are going to sleep, we can't respond to requests for the X
1096 * selections. Lose them, otherwise other applications will hang. But
1097 * first copy the text to cut buffer 0. */
1098 if (clip_star.owned || clip_plus.owned)
1099 {
1100 x11_export_final_selection();
1101 if (clip_star.owned)
1102 clip_lose_selection(&clip_star);
1103 if (clip_plus.owned)
1104 clip_lose_selection(&clip_plus);
1105 if (x11_display != NULL)
1106 XFlush(x11_display);
1107 }
1108# endif
1109
1110# ifdef _REENTRANT
1111 sigcont_received = FALSE;
1112# endif
1113 kill(0, SIGTSTP); /* send ourselves a STOP signal */
1114# ifdef _REENTRANT
1115 /* When we didn't suspend immediately in the kill(), do it now. Happens
1116 * on multi-threaded Solaris. */
1117 if (!sigcont_received)
1118 pause();
1119# endif
1120
1121# ifdef FEAT_TITLE
1122 /*
1123 * Set oldtitle to NULL, so the current title is obtained again.
1124 */
1125 vim_free(oldtitle);
1126 oldtitle = NULL;
1127# endif
1128 settmode(TMODE_RAW);
1129 need_check_timestamps = TRUE;
1130 did_check_timestamps = FALSE;
1131#else
1132 suspend_shell();
1133#endif
1134}
1135
1136 void
1137mch_init()
1138{
1139 Columns = 80;
1140 Rows = 24;
1141
1142 out_flush();
1143 set_signals();
Bram Moolenaardf177f62005-02-22 08:39:57 +00001144
Bram Moolenaar56718732006-03-15 22:53:57 +00001145#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001146 mac_conv_init();
1147#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148}
1149
1150 static void
1151set_signals()
1152{
1153#if defined(SIGWINCH)
1154 /*
1155 * WINDOW CHANGE signal is handled with sig_winch().
1156 */
1157 signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch);
1158#endif
1159
1160 /*
1161 * We want the STOP signal to work, to make mch_suspend() work.
1162 * For "rvim" the STOP signal is ignored.
1163 */
1164#ifdef SIGTSTP
1165 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
1166#endif
1167#ifdef _REENTRANT
1168 signal(SIGCONT, sigcont_handler);
1169#endif
1170
1171 /*
1172 * We want to ignore breaking of PIPEs.
1173 */
1174#ifdef SIGPIPE
1175 signal(SIGPIPE, SIG_IGN);
1176#endif
1177
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178#ifdef SIGINT
Bram Moolenaardf177f62005-02-22 08:39:57 +00001179 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001180#endif
1181
1182 /*
1183 * Ignore alarm signals (Perl's alarm() generates it).
1184 */
1185#ifdef SIGALRM
1186 signal(SIGALRM, SIG_IGN);
1187#endif
1188
1189 /*
1190 * Catch SIGPWR (power failure?) to preserve the swap files, so that no
1191 * work will be lost.
1192 */
1193#ifdef SIGPWR
1194 signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr);
1195#endif
1196
1197 /*
1198 * Arrange for other signals to gracefully shutdown Vim.
1199 */
1200 catch_signals(deathtrap, SIG_ERR);
1201
1202#if defined(FEAT_GUI) && defined(SIGHUP)
1203 /*
1204 * When the GUI is running, ignore the hangup signal.
1205 */
1206 if (gui.in_use)
1207 signal(SIGHUP, SIG_IGN);
1208#endif
1209}
1210
Bram Moolenaardf177f62005-02-22 08:39:57 +00001211#if defined(SIGINT) || defined(PROTO)
1212/*
1213 * Catch CTRL-C (only works while in Cooked mode).
1214 */
1215 static void
1216catch_int_signal()
1217{
1218 signal(SIGINT, (RETSIGTYPE (*)())catch_sigint);
1219}
1220#endif
1221
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 void
1223reset_signals()
1224{
1225 catch_signals(SIG_DFL, SIG_DFL);
1226#ifdef _REENTRANT
1227 /* SIGCONT isn't in the list, because its default action is ignore */
1228 signal(SIGCONT, SIG_DFL);
1229#endif
1230}
1231
1232 static void
1233catch_signals(func_deadly, func_other)
1234 RETSIGTYPE (*func_deadly)();
1235 RETSIGTYPE (*func_other)();
1236{
1237 int i;
1238
1239 for (i = 0; signal_info[i].sig != -1; i++)
1240 if (signal_info[i].deadly)
1241 {
1242#if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION)
1243 struct sigaction sa;
1244
1245 /* Setup to use the alternate stack for the signal function. */
1246 sa.sa_handler = func_deadly;
1247 sigemptyset(&sa.sa_mask);
1248# if defined(__linux__) && defined(_REENTRANT)
1249 /* On Linux, with glibc compiled for kernel 2.2, there is a bug in
1250 * thread handling in combination with using the alternate stack:
1251 * pthread library functions try to use the stack pointer to
1252 * identify the current thread, causing a SEGV signal, which
1253 * recursively calls deathtrap() and hangs. */
1254 sa.sa_flags = 0;
1255# else
1256 sa.sa_flags = SA_ONSTACK;
1257# endif
1258 sigaction(signal_info[i].sig, &sa, NULL);
1259#else
1260# if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC)
1261 struct sigvec sv;
1262
1263 /* Setup to use the alternate stack for the signal function. */
1264 sv.sv_handler = func_deadly;
1265 sv.sv_mask = 0;
1266 sv.sv_flags = SV_ONSTACK;
1267 sigvec(signal_info[i].sig, &sv, NULL);
1268# else
1269 signal(signal_info[i].sig, func_deadly);
1270# endif
1271#endif
1272 }
1273 else if (func_other != SIG_ERR)
1274 signal(signal_info[i].sig, func_other);
1275}
1276
1277/*
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001278 * Handling of SIGHUP, SIGQUIT and SIGTERM:
Bram Moolenaar9e1d2832007-05-06 12:51:41 +00001279 * "when" == a signal: when busy, postpone and return FALSE, otherwise
1280 * return TRUE
1281 * "when" == SIGNAL_BLOCK: Going to be busy, block signals
1282 * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed
1283 * signal
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001284 * Returns TRUE when Vim should exit.
1285 */
1286 int
Bram Moolenaar1f28b072005-07-12 22:42:41 +00001287vim_handle_signal(sig)
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001288 int sig;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001289{
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001290 static int got_signal = 0;
1291 static int blocked = TRUE;
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001292
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001293 switch (sig)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001294 {
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001295 case SIGNAL_BLOCK: blocked = TRUE;
1296 break;
1297
1298 case SIGNAL_UNBLOCK: blocked = FALSE;
1299 if (got_signal != 0)
1300 {
1301 kill(getpid(), got_signal);
1302 got_signal = 0;
1303 }
1304 break;
1305
1306 default: if (!blocked)
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001307 return TRUE; /* exit! */
Bram Moolenaard8b0cf12004-12-12 11:33:30 +00001308 got_signal = sig;
1309#ifdef SIGPWR
1310 if (sig != SIGPWR)
1311#endif
1312 got_int = TRUE; /* break any loops */
Bram Moolenaar293ee4d2004-12-09 21:34:53 +00001313 break;
1314 }
1315 return FALSE;
1316}
1317
1318/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 * Check_win checks whether we have an interactive stdout.
1320 */
1321/* ARGSUSED */
1322 int
1323mch_check_win(argc, argv)
1324 int argc;
1325 char **argv;
1326{
1327#ifdef OS2
1328 /*
1329 * Store argv[0], may be used for $VIM. Only use it if it is an absolute
1330 * name, mostly it's just "vim" and found in the path, which is unusable.
1331 */
1332 if (mch_isFullName(argv[0]))
1333 exe_name = vim_strsave((char_u *)argv[0]);
1334#endif
1335 if (isatty(1))
1336 return OK;
1337 return FAIL;
1338}
1339
1340/*
1341 * Return TRUE if the input comes from a terminal, FALSE otherwise.
1342 */
1343 int
1344mch_input_isatty()
1345{
1346 if (isatty(read_cmd_fd))
1347 return TRUE;
1348 return FALSE;
1349}
1350
1351#ifdef FEAT_X11
1352
1353# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) \
1354 && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE))
1355
1356static void xopen_message __ARGS((struct timeval *tvp));
1357
1358/*
1359 * Give a message about the elapsed time for opening the X window.
1360 */
1361 static void
1362xopen_message(tvp)
1363 struct timeval *tvp; /* must contain start time */
1364{
1365 struct timeval end_tv;
1366
1367 /* Compute elapsed time. */
1368 gettimeofday(&end_tv, NULL);
1369 smsg((char_u *)_("Opening the X display took %ld msec"),
1370 (end_tv.tv_sec - tvp->tv_sec) * 1000L
Bram Moolenaar051b7822005-05-19 21:00:46 +00001371 + (end_tv.tv_usec - tvp->tv_usec) / 1000L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372}
1373# endif
1374#endif
1375
1376#if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD))
1377/*
1378 * A few functions shared by X11 title and clipboard code.
1379 */
1380static int x_error_handler __ARGS((Display *dpy, XErrorEvent *error_event));
1381static int x_error_check __ARGS((Display *dpy, XErrorEvent *error_event));
1382static int x_connect_to_server __ARGS((void));
1383static int test_x11_window __ARGS((Display *dpy));
1384
1385static int got_x_error = FALSE;
1386
1387/*
1388 * X Error handler, otherwise X just exits! (very rude) -- webb
1389 */
1390 static int
1391x_error_handler(dpy, error_event)
1392 Display *dpy;
1393 XErrorEvent *error_event;
1394{
Bram Moolenaar843ee412004-06-30 16:16:41 +00001395 XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 STRCAT(IObuff, _("\nVim: Got X error\n"));
1397
1398 /* We cannot print a message and continue, because no X calls are allowed
1399 * here (causes my system to hang). Silently continuing might be an
1400 * alternative... */
1401 preserve_exit(); /* preserve files and exit */
1402
1403 return 0; /* NOTREACHED */
1404}
1405
1406/*
1407 * Another X Error handler, just used to check for errors.
1408 */
1409/* ARGSUSED */
1410 static int
1411x_error_check(dpy, error_event)
1412 Display *dpy;
1413 XErrorEvent *error_event;
1414{
1415 got_x_error = TRUE;
1416 return 0;
1417}
1418
1419#if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
1420# if defined(HAVE_SETJMP_H)
1421/*
1422 * An X IO Error handler, used to catch error while opening the display.
1423 */
1424static int x_IOerror_check __ARGS((Display *dpy));
1425
1426/* ARGSUSED */
1427 static int
1428x_IOerror_check(dpy)
1429 Display *dpy;
1430{
1431 /* This function should not return, it causes exit(). Longjump instead. */
1432 LONGJMP(lc_jump_env, 1);
1433 /*NOTREACHED*/
1434 return 0;
1435}
1436# endif
1437
1438/*
1439 * An X IO Error handler, used to catch terminal errors.
1440 */
1441static int x_IOerror_handler __ARGS((Display *dpy));
1442
1443/* ARGSUSED */
1444 static int
1445x_IOerror_handler(dpy)
1446 Display *dpy;
1447{
1448 xterm_dpy = NULL;
1449 x11_window = 0;
1450 x11_display = NULL;
1451 xterm_Shell = (Widget)0;
1452
1453 /* This function should not return, it causes exit(). Longjump instead. */
1454 LONGJMP(x_jump_env, 1);
1455 /*NOTREACHED*/
1456 return 0;
1457}
1458#endif
1459
1460/*
1461 * Return TRUE when connection to the X server is desired.
1462 */
1463 static int
1464x_connect_to_server()
1465{
1466 regmatch_T regmatch;
1467
1468#if defined(FEAT_CLIENTSERVER)
1469 if (x_force_connect)
1470 return TRUE;
1471#endif
1472 if (x_no_connect)
1473 return FALSE;
1474
1475 /* Check for a match with "exclude:" from 'clipboard'. */
1476 if (clip_exclude_prog != NULL)
1477 {
1478 regmatch.rm_ic = FALSE; /* Don't ignore case */
1479 regmatch.regprog = clip_exclude_prog;
1480 if (vim_regexec(&regmatch, T_NAME, (colnr_T)0))
1481 return FALSE;
1482 }
1483 return TRUE;
1484}
1485
1486/*
1487 * Test if "dpy" and x11_window are valid by getting the window title.
1488 * I don't actually want it yet, so there may be a simpler call to use, but
1489 * this will cause the error handler x_error_check() to be called if anything
1490 * is wrong, such as the window pointer being invalid (as can happen when the
1491 * user changes his DISPLAY, but not his WINDOWID) -- webb
1492 */
1493 static int
1494test_x11_window(dpy)
1495 Display *dpy;
1496{
1497 int (*old_handler)();
1498 XTextProperty text_prop;
1499
1500 old_handler = XSetErrorHandler(x_error_check);
1501 got_x_error = FALSE;
1502 if (XGetWMName(dpy, x11_window, &text_prop))
1503 XFree((void *)text_prop.value);
1504 XSync(dpy, False);
1505 (void)XSetErrorHandler(old_handler);
1506
1507 if (p_verbose > 0 && got_x_error)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001508 verb_msg((char_u *)_("Testing the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509
1510 return (got_x_error ? FAIL : OK);
1511}
1512#endif
1513
1514#ifdef FEAT_TITLE
1515
1516#ifdef FEAT_X11
1517
1518static int get_x11_thing __ARGS((int get_title, int test_only));
1519
1520/*
1521 * try to get x11 window and display
1522 *
1523 * return FAIL for failure, OK otherwise
1524 */
1525 static int
1526get_x11_windis()
1527{
1528 char *winid;
1529 static int result = -1;
1530#define XD_NONE 0 /* x11_display not set here */
1531#define XD_HERE 1 /* x11_display opened here */
1532#define XD_GUI 2 /* x11_display used from gui.dpy */
1533#define XD_XTERM 3 /* x11_display used from xterm_dpy */
1534 static int x11_display_from = XD_NONE;
1535 static int did_set_error_handler = FALSE;
1536
1537 if (!did_set_error_handler)
1538 {
1539 /* X just exits if it finds an error otherwise! */
1540 (void)XSetErrorHandler(x_error_handler);
1541 did_set_error_handler = TRUE;
1542 }
1543
Bram Moolenaar9372a112005-12-06 19:59:18 +00001544#if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001545 if (gui.in_use)
1546 {
1547 /*
1548 * If the X11 display was opened here before, for the window where Vim
1549 * was started, close that one now to avoid a memory leak.
1550 */
1551 if (x11_display_from == XD_HERE && x11_display != NULL)
1552 {
1553 XCloseDisplay(x11_display);
1554 x11_display_from = XD_NONE;
1555 }
1556 if (gui_get_x11_windis(&x11_window, &x11_display) == OK)
1557 {
1558 x11_display_from = XD_GUI;
1559 return OK;
1560 }
1561 x11_display = NULL;
1562 return FAIL;
1563 }
1564 else if (x11_display_from == XD_GUI)
1565 {
1566 /* GUI must have stopped somehow, clear x11_display */
1567 x11_window = 0;
1568 x11_display = NULL;
1569 x11_display_from = XD_NONE;
1570 }
1571#endif
1572
1573 /* When started with the "-X" argument, don't try connecting. */
1574 if (!x_connect_to_server())
1575 return FAIL;
1576
1577 /*
1578 * If WINDOWID not set, should try another method to find out
1579 * what the current window number is. The only code I know for
1580 * this is very complicated.
1581 * We assume that zero is invalid for WINDOWID.
1582 */
1583 if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL)
1584 x11_window = (Window)atol(winid);
1585
1586#ifdef FEAT_XCLIPBOARD
1587 if (xterm_dpy != NULL && x11_window != 0)
1588 {
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00001589 /* We may have checked it already, but Gnome terminal can move us to
1590 * another window, so we need to check every time. */
1591 if (x11_display_from != XD_XTERM)
1592 {
1593 /*
1594 * If the X11 display was opened here before, for the window where
1595 * Vim was started, close that one now to avoid a memory leak.
1596 */
1597 if (x11_display_from == XD_HERE && x11_display != NULL)
1598 XCloseDisplay(x11_display);
1599 x11_display = xterm_dpy;
1600 x11_display_from = XD_XTERM;
1601 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 if (test_x11_window(x11_display) == FAIL)
1603 {
1604 /* probably bad $WINDOWID */
1605 x11_window = 0;
1606 x11_display = NULL;
1607 x11_display_from = XD_NONE;
1608 return FAIL;
1609 }
1610 return OK;
1611 }
1612#endif
1613
1614 if (x11_window == 0 || x11_display == NULL)
1615 result = -1;
1616
1617 if (result != -1) /* Have already been here and set this */
1618 return result; /* Don't do all these X calls again */
1619
1620 if (x11_window != 0 && x11_display == NULL)
1621 {
1622#ifdef SET_SIG_ALARM
1623 RETSIGTYPE (*sig_save)();
1624#endif
1625#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1626 struct timeval start_tv;
1627
1628 if (p_verbose > 0)
1629 gettimeofday(&start_tv, NULL);
1630#endif
1631
1632#ifdef SET_SIG_ALARM
1633 /*
1634 * Opening the Display may hang if the DISPLAY setting is wrong, or
1635 * the network connection is bad. Set an alarm timer to get out.
1636 */
1637 sig_alarm_called = FALSE;
1638 sig_save = (RETSIGTYPE (*)())signal(SIGALRM,
1639 (RETSIGTYPE (*)())sig_alarm);
1640 alarm(2);
1641#endif
1642 x11_display = XOpenDisplay(NULL);
1643
1644#ifdef SET_SIG_ALARM
1645 alarm(0);
1646 signal(SIGALRM, (RETSIGTYPE (*)())sig_save);
1647 if (p_verbose > 0 && sig_alarm_called)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001648 verb_msg((char_u *)_("Opening the X display timed out"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001649#endif
1650 if (x11_display != NULL)
1651 {
1652# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
1653 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001654 {
1655 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001656 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00001657 verbose_leave();
1658 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001659# endif
1660 if (test_x11_window(x11_display) == FAIL)
1661 {
1662 /* Maybe window id is bad */
1663 x11_window = 0;
1664 XCloseDisplay(x11_display);
1665 x11_display = NULL;
1666 }
1667 else
1668 x11_display_from = XD_HERE;
1669 }
1670 }
1671 if (x11_window == 0 || x11_display == NULL)
1672 return (result = FAIL);
1673 return (result = OK);
1674}
1675
1676/*
1677 * Determine original x11 Window Title
1678 */
1679 static int
1680get_x11_title(test_only)
1681 int test_only;
1682{
Bram Moolenaar47136d72004-10-12 20:02:24 +00001683 return get_x11_thing(TRUE, test_only);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684}
1685
1686/*
1687 * Determine original x11 Window icon
1688 */
1689 static int
1690get_x11_icon(test_only)
1691 int test_only;
1692{
1693 int retval = FALSE;
1694
1695 retval = get_x11_thing(FALSE, test_only);
1696
1697 /* could not get old icon, use terminal name */
1698 if (oldicon == NULL && !test_only)
1699 {
1700 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1701 oldicon = T_NAME + 8;
1702 else
1703 oldicon = T_NAME;
1704 }
1705
1706 return retval;
1707}
1708
1709 static int
1710get_x11_thing(get_title, test_only)
1711 int get_title; /* get title string */
1712 int test_only;
1713{
1714 XTextProperty text_prop;
1715 int retval = FALSE;
1716 Status status;
1717
1718 if (get_x11_windis() == OK)
1719 {
1720 /* Get window/icon name if any */
1721 if (get_title)
1722 status = XGetWMName(x11_display, x11_window, &text_prop);
1723 else
1724 status = XGetWMIconName(x11_display, x11_window, &text_prop);
1725
1726 /*
1727 * If terminal is xterm, then x11_window may be a child window of the
1728 * outer xterm window that actually contains the window/icon name, so
1729 * keep traversing up the tree until a window with a title/icon is
1730 * found.
1731 */
1732 /* Previously this was only done for xterm and alikes. I don't see a
1733 * reason why it would fail for other terminal emulators.
1734 * if (term_is_xterm) */
1735 {
1736 Window root;
1737 Window parent;
1738 Window win = x11_window;
1739 Window *children;
1740 unsigned int num_children;
1741
1742 while (!status || text_prop.value == NULL)
1743 {
1744 if (!XQueryTree(x11_display, win, &root, &parent, &children,
1745 &num_children))
1746 break;
1747 if (children)
1748 XFree((void *)children);
1749 if (parent == root || parent == 0)
1750 break;
1751
1752 win = parent;
1753 if (get_title)
1754 status = XGetWMName(x11_display, win, &text_prop);
1755 else
1756 status = XGetWMIconName(x11_display, win, &text_prop);
1757 }
1758 }
1759 if (status && text_prop.value != NULL)
1760 {
1761 retval = TRUE;
1762 if (!test_only)
1763 {
1764#ifdef FEAT_XFONTSET
1765 if (text_prop.encoding == XA_STRING)
1766 {
1767#endif
1768 if (get_title)
1769 oldtitle = vim_strsave((char_u *)text_prop.value);
1770 else
1771 oldicon = vim_strsave((char_u *)text_prop.value);
1772#ifdef FEAT_XFONTSET
1773 }
1774 else
1775 {
1776 char **cl;
1777 Status transform_status;
1778 int n = 0;
1779
1780 transform_status = XmbTextPropertyToTextList(x11_display,
1781 &text_prop,
1782 &cl, &n);
1783 if (transform_status >= Success && n > 0 && cl[0])
1784 {
1785 if (get_title)
1786 oldtitle = vim_strsave((char_u *) cl[0]);
1787 else
1788 oldicon = vim_strsave((char_u *) cl[0]);
1789 XFreeStringList(cl);
1790 }
1791 else
1792 {
1793 if (get_title)
1794 oldtitle = vim_strsave((char_u *)text_prop.value);
1795 else
1796 oldicon = vim_strsave((char_u *)text_prop.value);
1797 }
1798 }
1799#endif
1800 }
1801 XFree((void *)text_prop.value);
1802 }
1803 }
1804 return retval;
1805}
1806
1807/* Are Xutf8 functions available? Avoid error from old compilers. */
1808#if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE)
1809# if X_HAVE_UTF8_STRING
1810# define USE_UTF8_STRING
1811# endif
1812#endif
1813
1814/*
1815 * Set x11 Window Title
1816 *
1817 * get_x11_windis() must be called before this and have returned OK
1818 */
1819 static void
1820set_x11_title(title)
1821 char_u *title;
1822{
1823 /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING
1824 * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't
1825 * supported everywhere and STRING doesn't work for multi-byte titles.
1826 */
1827#ifdef USE_UTF8_STRING
1828 if (enc_utf8)
1829 Xutf8SetWMProperties(x11_display, x11_window, (const char *)title,
1830 NULL, NULL, 0, NULL, NULL, NULL);
1831 else
1832#endif
1833 {
1834#if XtSpecificationRelease >= 4
1835# ifdef FEAT_XFONTSET
1836 XmbSetWMProperties(x11_display, x11_window, (const char *)title,
1837 NULL, NULL, 0, NULL, NULL, NULL);
1838# else
1839 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001840 char *c_title = (char *)title;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841
1842 /* directly from example 3-18 "basicwin" of Xlib Programming Manual */
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001843 (void)XStringListToTextProperty(&c_title, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001844 XSetWMProperties(x11_display, x11_window, &text_prop,
1845 NULL, NULL, 0, NULL, NULL, NULL);
1846# endif
1847#else
1848 XStoreName(x11_display, x11_window, (char *)title);
1849#endif
1850 }
1851 XFlush(x11_display);
1852}
1853
1854/*
1855 * Set x11 Window icon
1856 *
1857 * get_x11_windis() must be called before this and have returned OK
1858 */
1859 static void
1860set_x11_icon(icon)
1861 char_u *icon;
1862{
1863 /* See above for comments about using X*SetWMProperties(). */
1864#ifdef USE_UTF8_STRING
1865 if (enc_utf8)
1866 Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1867 NULL, 0, NULL, NULL, NULL);
1868 else
1869#endif
1870 {
1871#if XtSpecificationRelease >= 4
1872# ifdef FEAT_XFONTSET
1873 XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon,
1874 NULL, 0, NULL, NULL, NULL);
1875# else
1876 XTextProperty text_prop;
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001877 char *c_icon = (char *)icon;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878
Bram Moolenaar9d75c832005-01-25 21:57:23 +00001879 (void)XStringListToTextProperty(&c_icon, 1, &text_prop);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 XSetWMProperties(x11_display, x11_window, NULL, &text_prop,
1881 NULL, 0, NULL, NULL, NULL);
1882# endif
1883#else
1884 XSetIconName(x11_display, x11_window, (char *)icon);
1885#endif
1886 }
1887 XFlush(x11_display);
1888}
1889
1890#else /* FEAT_X11 */
1891
1892/*ARGSUSED*/
1893 static int
1894get_x11_title(test_only)
1895 int test_only;
1896{
1897 return FALSE;
1898}
1899
1900 static int
1901get_x11_icon(test_only)
1902 int test_only;
1903{
1904 if (!test_only)
1905 {
1906 if (STRNCMP(T_NAME, "builtin_", 8) == 0)
1907 oldicon = T_NAME + 8;
1908 else
1909 oldicon = T_NAME;
1910 }
1911 return FALSE;
1912}
1913
1914#endif /* FEAT_X11 */
1915
1916 int
1917mch_can_restore_title()
1918{
1919 return get_x11_title(TRUE);
1920}
1921
1922 int
1923mch_can_restore_icon()
1924{
1925 return get_x11_icon(TRUE);
1926}
1927
1928/*
1929 * Set the window title and icon.
1930 */
1931 void
1932mch_settitle(title, icon)
1933 char_u *title;
1934 char_u *icon;
1935{
1936 int type = 0;
1937 static int recursive = 0;
1938
1939 if (T_NAME == NULL) /* no terminal name (yet) */
1940 return;
1941 if (title == NULL && icon == NULL) /* nothing to do */
1942 return;
1943
1944 /* When one of the X11 functions causes a deadly signal, we get here again
1945 * recursively. Avoid hanging then (something is probably locked). */
1946 if (recursive)
1947 return;
1948 ++recursive;
1949
1950 /*
1951 * if the window ID and the display is known, we may use X11 calls
1952 */
1953#ifdef FEAT_X11
1954 if (get_x11_windis() == OK)
1955 type = 1;
1956#else
1957# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK)
1958 if (gui.in_use)
1959 type = 1;
1960# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961#endif
1962
1963 /*
1964 * Note: if "t_TS" is set, title is set with escape sequence rather
1965 * than x11 calls, because the x11 calls don't always work
1966 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 if ((type || *T_TS != NUL) && title != NULL)
1968 {
1969 if (oldtitle == NULL
1970#ifdef FEAT_GUI
1971 && !gui.in_use
1972#endif
1973 ) /* first call but not in GUI, save title */
1974 (void)get_x11_title(FALSE);
1975
1976 if (*T_TS != NUL) /* it's OK if t_fs is empty */
1977 term_settitle(title);
1978#ifdef FEAT_X11
1979 else
1980# ifdef FEAT_GUI_GTK
1981 if (!gui.in_use) /* don't do this if GTK+ is running */
1982# endif
1983 set_x11_title(title); /* x11 */
1984#endif
Bram Moolenaar2fa15e62005-01-04 21:23:48 +00001985#if defined(FEAT_GUI_GTK) \
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC)
1987 else
1988 gui_mch_settitle(title, icon);
1989#endif
1990 did_set_title = TRUE;
1991 }
1992
1993 if ((type || *T_CIS != NUL) && icon != NULL)
1994 {
1995 if (oldicon == NULL
1996#ifdef FEAT_GUI
1997 && !gui.in_use
1998#endif
1999 ) /* first call, save icon */
2000 get_x11_icon(FALSE);
2001
2002 if (*T_CIS != NUL)
2003 {
2004 out_str(T_CIS); /* set icon start */
2005 out_str_nf(icon);
2006 out_str(T_CIE); /* set icon end */
2007 out_flush();
2008 }
2009#ifdef FEAT_X11
2010 else
2011# ifdef FEAT_GUI_GTK
2012 if (!gui.in_use) /* don't do this if GTK+ is running */
2013# endif
2014 set_x11_icon(icon); /* x11 */
2015#endif
2016 did_set_icon = TRUE;
2017 }
2018 --recursive;
2019}
2020
2021/*
2022 * Restore the window/icon title.
2023 * "which" is one of:
2024 * 1 only restore title
2025 * 2 only restore icon
2026 * 3 restore title and icon
2027 */
2028 void
2029mch_restore_title(which)
2030 int which;
2031{
2032 /* only restore the title or icon when it has been set */
2033 mch_settitle(((which & 1) && did_set_title) ?
2034 (oldtitle ? oldtitle : p_titleold) : NULL,
2035 ((which & 2) && did_set_icon) ? oldicon : NULL);
2036}
2037
2038#endif /* FEAT_TITLE */
2039
2040/*
2041 * Return TRUE if "name" looks like some xterm name.
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002042 * Seiichi Sato mentioned that "mlterm" works like xterm.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 */
2044 int
2045vim_is_xterm(name)
2046 char_u *name;
2047{
2048 if (name == NULL)
2049 return FALSE;
2050 return (STRNICMP(name, "xterm", 5) == 0
2051 || STRNICMP(name, "nxterm", 6) == 0
2052 || STRNICMP(name, "kterm", 5) == 0
Bram Moolenaar3a7c85b2005-02-05 21:39:53 +00002053 || STRNICMP(name, "mlterm", 6) == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 || STRNICMP(name, "rxvt", 4) == 0
2055 || STRCMP(name, "builtin_xterm") == 0);
2056}
2057
2058#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
2059/*
2060 * Return non-zero when using an xterm mouse, according to 'ttymouse'.
2061 * Return 1 for "xterm".
2062 * Return 2 for "xterm2".
2063 */
2064 int
2065use_xterm_mouse()
2066{
2067 if (ttym_flags == TTYM_XTERM2)
2068 return 2;
2069 if (ttym_flags == TTYM_XTERM)
2070 return 1;
2071 return 0;
2072}
2073#endif
2074
2075 int
2076vim_is_iris(name)
2077 char_u *name;
2078{
2079 if (name == NULL)
2080 return FALSE;
2081 return (STRNICMP(name, "iris-ansi", 9) == 0
2082 || STRCMP(name, "builtin_iris-ansi") == 0);
2083}
2084
2085 int
2086vim_is_vt300(name)
2087 char_u *name;
2088{
2089 if (name == NULL)
2090 return FALSE; /* actually all ANSI comp. terminals should be here */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00002091 /* catch VT100 - VT5xx */
2092 return ((STRNICMP(name, "vt", 2) == 0
2093 && vim_strchr((char_u *)"12345", name[2]) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002094 || STRCMP(name, "builtin_vt320") == 0);
2095}
2096
2097/*
2098 * Return TRUE if "name" is a terminal for which 'ttyfast' should be set.
2099 * This should include all windowed terminal emulators.
2100 */
2101 int
2102vim_is_fastterm(name)
2103 char_u *name;
2104{
2105 if (name == NULL)
2106 return FALSE;
2107 if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name))
2108 return TRUE;
2109 return ( STRNICMP(name, "hpterm", 6) == 0
2110 || STRNICMP(name, "sun-cmd", 7) == 0
2111 || STRNICMP(name, "screen", 6) == 0
2112 || STRNICMP(name, "dtterm", 6) == 0);
2113}
2114
2115/*
2116 * Insert user name in s[len].
2117 * Return OK if a name found.
2118 */
2119 int
2120mch_get_user_name(s, len)
2121 char_u *s;
2122 int len;
2123{
2124#ifdef VMS
Bram Moolenaarffb8ab02005-09-07 21:15:32 +00002125 vim_strncpy(s, (char_u *)cuserid(NULL), len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 return OK;
2127#else
2128 return mch_get_uname(getuid(), s, len);
2129#endif
2130}
2131
2132/*
2133 * Insert user name for "uid" in s[len].
2134 * Return OK if a name found.
2135 */
2136 int
2137mch_get_uname(uid, s, len)
2138 uid_t uid;
2139 char_u *s;
2140 int len;
2141{
2142#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
2143 struct passwd *pw;
2144
2145 if ((pw = getpwuid(uid)) != NULL
2146 && pw->pw_name != NULL && *(pw->pw_name) != NUL)
2147 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002148 vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149 return OK;
2150 }
2151#endif
2152 sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
2153 return FAIL; /* a number is not a name */
2154}
2155
2156/*
2157 * Insert host name is s[len].
2158 */
2159
2160#ifdef HAVE_SYS_UTSNAME_H
2161 void
2162mch_get_host_name(s, len)
2163 char_u *s;
2164 int len;
2165{
2166 struct utsname vutsname;
2167
2168 if (uname(&vutsname) < 0)
2169 *s = NUL;
2170 else
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002171 vim_strncpy(s, (char_u *)vutsname.nodename, len - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172}
2173#else /* HAVE_SYS_UTSNAME_H */
2174
2175# ifdef HAVE_SYS_SYSTEMINFO_H
2176# define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len)
2177# endif
2178
2179 void
2180mch_get_host_name(s, len)
2181 char_u *s;
2182 int len;
2183{
2184# ifdef VAXC
2185 vaxc$gethostname((char *)s, len);
2186# else
2187 gethostname((char *)s, len);
2188# endif
2189 s[len - 1] = NUL; /* make sure it's terminated */
2190}
2191#endif /* HAVE_SYS_UTSNAME_H */
2192
2193/*
2194 * return process ID
2195 */
2196 long
2197mch_get_pid()
2198{
2199 return (long)getpid();
2200}
2201
2202#if !defined(HAVE_STRERROR) && defined(USE_GETCWD)
2203static char *strerror __ARGS((int));
2204
2205 static char *
2206strerror(err)
2207 int err;
2208{
2209 extern int sys_nerr;
2210 extern char *sys_errlist[];
2211 static char er[20];
2212
2213 if (err > 0 && err < sys_nerr)
2214 return (sys_errlist[err]);
2215 sprintf(er, "Error %d", err);
2216 return er;
2217}
2218#endif
2219
2220/*
2221 * Get name of current directory into buffer 'buf' of length 'len' bytes.
2222 * Return OK for success, FAIL for failure.
2223 */
2224 int
2225mch_dirname(buf, len)
2226 char_u *buf;
2227 int len;
2228{
2229#if defined(USE_GETCWD)
2230 if (getcwd((char *)buf, len) == NULL)
2231 {
2232 STRCPY(buf, strerror(errno));
2233 return FAIL;
2234 }
2235 return OK;
2236#else
2237 return (getwd((char *)buf) != NULL ? OK : FAIL);
2238#endif
2239}
2240
2241#if defined(OS2) || defined(PROTO)
2242/*
2243 * Replace all slashes by backslashes.
2244 * When 'shellslash' set do it the other way around.
2245 */
2246 void
2247slash_adjust(p)
2248 char_u *p;
2249{
2250 while (*p)
2251 {
2252 if (*p == psepcN)
2253 *p = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002254 mb_ptr_adv(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 }
2256}
2257#endif
2258
2259/*
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002260 * Get absolute file name into "buf[len]".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 *
2262 * return FAIL for failure, OK for success
2263 */
2264 int
2265mch_FullName(fname, buf, len, force)
2266 char_u *fname, *buf;
2267 int len;
2268 int force; /* also expand when already absolute path */
2269{
2270 int l;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002271#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002272 int only_drive; /* file name is only a drive letter */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002273#endif
2274#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 int fd = -1;
2276 static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002277#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 char_u olddir[MAXPATHL];
2279 char_u *p;
2280 int retval = OK;
Bram Moolenaarbf820722008-06-21 11:12:49 +00002281#ifdef __CYGWIN__
2282 char_u posix_fname[MAX_PATH];
2283#endif
2284
Bram Moolenaar071d4272004-06-13 20:20:40 +00002285
Bram Moolenaar38323e42007-03-06 19:22:53 +00002286#ifdef VMS
2287 fname = vms_fixfilename(fname);
2288#endif
2289
Bram Moolenaara2442432007-04-26 14:26:37 +00002290#ifdef __CYGWIN__
2291 /*
2292 * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts".
2293 */
Bram Moolenaarbf820722008-06-21 11:12:49 +00002294 cygwin_conv_to_posix_path(fname, posix_fname);
2295 fname = posix_fname;
Bram Moolenaara2442432007-04-26 14:26:37 +00002296#endif
2297
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 /* expand it if forced or not an absolute path */
2299 if (force || !mch_isFullName(fname))
2300 {
2301 /*
2302 * If the file name has a path, change to that directory for a moment,
2303 * and then do the getwd() (and get back to where we were).
2304 * This will get the correct path name with "../" things.
2305 */
Bram Moolenaar38323e42007-03-06 19:22:53 +00002306#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002307 only_drive = 0;
2308 if (((p = vim_strrchr(fname, '/')) != NULL)
2309 || ((p = vim_strrchr(fname, '\\')) != NULL)
2310 || (((p = vim_strchr(fname, ':')) != NULL) && ++only_drive))
Bram Moolenaar38323e42007-03-06 19:22:53 +00002311#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002312 if ((p = vim_strrchr(fname, '/')) != NULL)
Bram Moolenaar38323e42007-03-06 19:22:53 +00002313#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002314 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002315#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002316 /*
2317 * Use fchdir() if possible, it's said to be faster and more
2318 * reliable. But on SunOS 4 it might not work. Check this by
2319 * doing a fchdir() right now.
2320 */
2321 if (!dont_fchdir)
2322 {
2323 fd = open(".", O_RDONLY | O_EXTRA, 0);
2324 if (fd >= 0 && fchdir(fd) < 0)
2325 {
2326 close(fd);
2327 fd = -1;
2328 dont_fchdir = TRUE; /* don't try again */
2329 }
2330 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002331#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332
2333 /* Only change directory when we are sure we can return to where
2334 * we are now. After doing "su" chdir(".") might not work. */
2335 if (
Bram Moolenaar38323e42007-03-06 19:22:53 +00002336#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 fd < 0 &&
Bram Moolenaar38323e42007-03-06 19:22:53 +00002338#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 (mch_dirname(olddir, MAXPATHL) == FAIL
2340 || mch_chdir((char *)olddir) != 0))
2341 {
2342 p = NULL; /* can't get current dir: don't chdir */
2343 retval = FAIL;
2344 }
2345 else
2346 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002347#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002348 /*
2349 * compensate for case where ':' from "D:" was the only
2350 * path separator detected in the file name; the _next_
2351 * character has to be removed, and then restored later.
2352 */
2353 if (only_drive)
2354 p++;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002355#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 /* The directory is copied into buf[], to be able to remove
2357 * the file name without changing it (could be a string in
2358 * read-only memory) */
2359 if (p - fname >= len)
2360 retval = FAIL;
2361 else
2362 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002363 vim_strncpy(buf, fname, p - fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 if (mch_chdir((char *)buf))
2365 retval = FAIL;
2366 else
2367 fname = p + 1;
2368 *buf = NUL;
2369 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002370#ifdef OS2
Bram Moolenaar071d4272004-06-13 20:20:40 +00002371 if (only_drive)
2372 {
2373 p--;
2374 if (retval != FAIL)
2375 fname--;
2376 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002377#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002378 }
2379 }
2380 if (mch_dirname(buf, len) == FAIL)
2381 {
2382 retval = FAIL;
2383 *buf = NUL;
2384 }
2385 if (p != NULL)
2386 {
Bram Moolenaar38323e42007-03-06 19:22:53 +00002387#ifdef HAVE_FCHDIR
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388 if (fd >= 0)
2389 {
2390 l = fchdir(fd);
2391 close(fd);
2392 }
2393 else
Bram Moolenaar38323e42007-03-06 19:22:53 +00002394#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 l = mch_chdir((char *)olddir);
2396 if (l != 0)
2397 EMSG(_(e_prev_dir));
2398 }
2399
2400 l = STRLEN(buf);
2401 if (l >= len)
2402 retval = FAIL;
Bram Moolenaar38323e42007-03-06 19:22:53 +00002403#ifndef VMS
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 else
2405 {
2406 if (l > 0 && buf[l - 1] != '/' && *fname != NUL
2407 && STRCMP(fname, ".") != 0)
2408 STRCAT(buf, "/");
2409 }
Bram Moolenaar38323e42007-03-06 19:22:53 +00002410#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002411 }
Bram Moolenaar3d20ca12006-11-28 16:43:58 +00002412
Bram Moolenaar071d4272004-06-13 20:20:40 +00002413 /* Catch file names which are too long. */
2414 if (retval == FAIL || STRLEN(buf) + STRLEN(fname) >= len)
2415 return FAIL;
2416
2417 /* Do not append ".", "/dir/." is equal to "/dir". */
2418 if (STRCMP(fname, ".") != 0)
2419 STRCAT(buf, fname);
2420
2421 return OK;
2422}
2423
2424/*
2425 * Return TRUE if "fname" does not depend on the current directory.
2426 */
2427 int
2428mch_isFullName(fname)
2429 char_u *fname;
2430{
2431#ifdef __EMX__
2432 return _fnisabs(fname);
2433#else
2434# ifdef VMS
2435 return ( fname[0] == '/' || fname[0] == '.' ||
2436 strchr((char *)fname,':') || strchr((char *)fname,'"') ||
2437 (strchr((char *)fname,'[') && strchr((char *)fname,']'))||
2438 (strchr((char *)fname,'<') && strchr((char *)fname,'>')) );
2439# else
2440 return (*fname == '/' || *fname == '~');
2441# endif
2442#endif
2443}
2444
Bram Moolenaar24552be2005-12-10 20:17:30 +00002445#if defined(USE_FNAME_CASE) || defined(PROTO)
2446/*
2447 * Set the case of the file name, if it already exists. This will cause the
2448 * file name to remain exactly the same.
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00002449 * Only required for file systems where case is ignored and preserved.
Bram Moolenaar24552be2005-12-10 20:17:30 +00002450 */
2451/*ARGSUSED*/
2452 void
2453fname_case(name, len)
2454 char_u *name;
2455 int len; /* buffer size, only used when name gets longer */
2456{
2457 struct stat st;
2458 char_u *slash, *tail;
2459 DIR *dirp;
2460 struct dirent *dp;
2461
2462 if (lstat((char *)name, &st) >= 0)
2463 {
2464 /* Open the directory where the file is located. */
2465 slash = vim_strrchr(name, '/');
2466 if (slash == NULL)
2467 {
2468 dirp = opendir(".");
2469 tail = name;
2470 }
2471 else
2472 {
2473 *slash = NUL;
2474 dirp = opendir((char *)name);
2475 *slash = '/';
2476 tail = slash + 1;
2477 }
2478
2479 if (dirp != NULL)
2480 {
2481 while ((dp = readdir(dirp)) != NULL)
2482 {
2483 /* Only accept names that differ in case and are the same byte
2484 * length. TODO: accept different length name. */
2485 if (STRICMP(tail, dp->d_name) == 0
2486 && STRLEN(tail) == STRLEN(dp->d_name))
2487 {
2488 char_u newname[MAXPATHL + 1];
2489 struct stat st2;
2490
2491 /* Verify the inode is equal. */
2492 vim_strncpy(newname, name, MAXPATHL);
2493 vim_strncpy(newname + (tail - name), (char_u *)dp->d_name,
2494 MAXPATHL - (tail - name));
2495 if (lstat((char *)newname, &st2) >= 0
2496 && st.st_ino == st2.st_ino
2497 && st.st_dev == st2.st_dev)
2498 {
2499 STRCPY(tail, dp->d_name);
2500 break;
2501 }
2502 }
2503 }
2504
2505 closedir(dirp);
2506 }
2507 }
2508}
2509#endif
2510
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511/*
2512 * Get file permissions for 'name'.
2513 * Returns -1 when it doesn't exist.
2514 */
2515 long
2516mch_getperm(name)
2517 char_u *name;
2518{
2519 struct stat statb;
2520
2521 /* Keep the #ifdef outside of stat(), it may be a macro. */
2522#ifdef VMS
2523 if (stat((char *)vms_fixfilename(name), &statb))
2524#else
2525 if (stat((char *)name, &statb))
2526#endif
2527 return -1;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002528#ifdef __INTERIX
2529 /* The top bit makes the value negative, which means the file doesn't
2530 * exist. Remove the bit, we don't use it. */
2531 return statb.st_mode & ~S_ADDACE;
2532#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002533 return statb.st_mode;
Bram Moolenaar708f62c2007-08-11 20:24:10 +00002534#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535}
2536
2537/*
2538 * set file permission for 'name' to 'perm'
2539 *
2540 * return FAIL for failure, OK otherwise
2541 */
2542 int
2543mch_setperm(name, perm)
2544 char_u *name;
2545 long perm;
2546{
2547 return (chmod((char *)
2548#ifdef VMS
2549 vms_fixfilename(name),
2550#else
2551 name,
2552#endif
2553 (mode_t)perm) == 0 ? OK : FAIL);
2554}
2555
2556#if defined(HAVE_ACL) || defined(PROTO)
2557# ifdef HAVE_SYS_ACL_H
2558# include <sys/acl.h>
2559# endif
2560# ifdef HAVE_SYS_ACCESS_H
2561# include <sys/access.h>
2562# endif
2563
2564# ifdef HAVE_SOLARIS_ACL
2565typedef struct vim_acl_solaris_T {
2566 int acl_cnt;
2567 aclent_t *acl_entry;
2568} vim_acl_solaris_T;
2569# endif
2570
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00002571#if defined(HAVE_SELINUX) || defined(PROTO)
2572/*
2573 * Copy security info from "from_file" to "to_file".
2574 */
2575 void
2576mch_copy_sec(from_file, to_file)
2577 char_u *from_file;
2578 char_u *to_file;
2579{
2580 if (from_file == NULL)
2581 return;
2582
2583 if (selinux_enabled == -1)
2584 selinux_enabled = is_selinux_enabled();
2585
2586 if (selinux_enabled > 0)
2587 {
2588 security_context_t from_context = NULL;
2589 security_context_t to_context = NULL;
2590
2591 if (getfilecon((char *)from_file, &from_context) < 0)
2592 {
2593 /* If the filesystem doesn't support extended attributes,
2594 the original had no special security context and the
2595 target cannot have one either. */
2596 if (errno == EOPNOTSUPP)
2597 return;
2598
2599 MSG_PUTS(_("\nCould not get security context for "));
2600 msg_outtrans(from_file);
2601 msg_putchar('\n');
2602 return;
2603 }
2604 if (getfilecon((char *)to_file, &to_context) < 0)
2605 {
2606 MSG_PUTS(_("\nCould not get security context for "));
2607 msg_outtrans(to_file);
2608 msg_putchar('\n');
2609 freecon (from_context);
2610 return ;
2611 }
2612 if (strcmp(from_context, to_context) != 0)
2613 {
2614 if (setfilecon((char *)to_file, from_context) < 0)
2615 {
2616 MSG_PUTS(_("\nCould not set security context for "));
2617 msg_outtrans(to_file);
2618 msg_putchar('\n');
2619 }
2620 }
2621 freecon(to_context);
2622 freecon(from_context);
2623 }
2624}
2625#endif /* HAVE_SELINUX */
2626
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627/*
2628 * Return a pointer to the ACL of file "fname" in allocated memory.
2629 * Return NULL if the ACL is not available for whatever reason.
2630 */
2631 vim_acl_T
2632mch_get_acl(fname)
2633 char_u *fname;
2634{
2635 vim_acl_T ret = NULL;
2636#ifdef HAVE_POSIX_ACL
2637 ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS);
2638#else
2639#ifdef HAVE_SOLARIS_ACL
2640 vim_acl_solaris_T *aclent;
2641
2642 aclent = malloc(sizeof(vim_acl_solaris_T));
2643 if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0)
2644 {
2645 free(aclent);
2646 return NULL;
2647 }
2648 aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t));
2649 if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0)
2650 {
2651 free(aclent->acl_entry);
2652 free(aclent);
2653 return NULL;
2654 }
2655 ret = (vim_acl_T)aclent;
2656#else
2657#if defined(HAVE_AIX_ACL)
2658 int aclsize;
2659 struct acl *aclent;
2660
2661 aclsize = sizeof(struct acl);
2662 aclent = malloc(aclsize);
2663 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2664 {
2665 if (errno == ENOSPC)
2666 {
2667 aclsize = aclent->acl_len;
2668 aclent = realloc(aclent, aclsize);
2669 if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0)
2670 {
2671 free(aclent);
2672 return NULL;
2673 }
2674 }
2675 else
2676 {
2677 free(aclent);
2678 return NULL;
2679 }
2680 }
2681 ret = (vim_acl_T)aclent;
2682#endif /* HAVE_AIX_ACL */
2683#endif /* HAVE_SOLARIS_ACL */
2684#endif /* HAVE_POSIX_ACL */
2685 return ret;
2686}
2687
2688/*
2689 * Set the ACL of file "fname" to "acl" (unless it's NULL).
2690 */
2691 void
2692mch_set_acl(fname, aclent)
2693 char_u *fname;
2694 vim_acl_T aclent;
2695{
2696 if (aclent == NULL)
2697 return;
2698#ifdef HAVE_POSIX_ACL
2699 acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent);
2700#else
2701#ifdef HAVE_SOLARIS_ACL
2702 acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt,
2703 ((vim_acl_solaris_T *)aclent)->acl_entry);
2704#else
2705#ifdef HAVE_AIX_ACL
2706 chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len);
2707#endif /* HAVE_AIX_ACL */
2708#endif /* HAVE_SOLARIS_ACL */
2709#endif /* HAVE_POSIX_ACL */
2710}
2711
2712 void
2713mch_free_acl(aclent)
2714 vim_acl_T aclent;
2715{
2716 if (aclent == NULL)
2717 return;
2718#ifdef HAVE_POSIX_ACL
2719 acl_free((acl_t)aclent);
2720#else
2721#ifdef HAVE_SOLARIS_ACL
2722 free(((vim_acl_solaris_T *)aclent)->acl_entry);
2723 free(aclent);
2724#else
2725#ifdef HAVE_AIX_ACL
2726 free(aclent);
2727#endif /* HAVE_AIX_ACL */
2728#endif /* HAVE_SOLARIS_ACL */
2729#endif /* HAVE_POSIX_ACL */
2730}
2731#endif
2732
2733/*
2734 * Set hidden flag for "name".
2735 */
2736/* ARGSUSED */
2737 void
2738mch_hide(name)
2739 char_u *name;
2740{
2741 /* can't hide a file */
2742}
2743
2744/*
2745 * return TRUE if "name" is a directory
2746 * return FALSE if "name" is not a directory
2747 * return FALSE for error
2748 */
2749 int
2750mch_isdir(name)
2751 char_u *name;
2752{
2753 struct stat statb;
2754
2755 if (*name == NUL) /* Some stat()s don't flag "" as an error. */
2756 return FALSE;
2757 if (stat((char *)name, &statb))
2758 return FALSE;
2759#ifdef _POSIX_SOURCE
2760 return (S_ISDIR(statb.st_mode) ? TRUE : FALSE);
2761#else
2762 return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE);
2763#endif
2764}
2765
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766static int executable_file __ARGS((char_u *name));
2767
2768/*
2769 * Return 1 if "name" is an executable file, 0 if not or it doesn't exist.
2770 */
2771 static int
2772executable_file(name)
2773 char_u *name;
2774{
2775 struct stat st;
2776
2777 if (stat((char *)name, &st))
2778 return 0;
2779 return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0;
2780}
2781
2782/*
2783 * Return 1 if "name" can be found in $PATH and executed, 0 if not.
2784 * Return -1 if unknown.
2785 */
2786 int
2787mch_can_exe(name)
2788 char_u *name;
2789{
2790 char_u *buf;
2791 char_u *p, *e;
2792 int retval;
2793
2794 /* If it's an absolute or relative path don't need to use $PATH. */
2795 if (mch_isFullName(name) || (name[0] == '.' && (name[1] == '/'
2796 || (name[1] == '.' && name[2] == '/'))))
2797 return executable_file(name);
2798
2799 p = (char_u *)getenv("PATH");
2800 if (p == NULL || *p == NUL)
2801 return -1;
2802 buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2));
2803 if (buf == NULL)
2804 return -1;
2805
2806 /*
2807 * Walk through all entries in $PATH to check if "name" exists there and
2808 * is an executable file.
2809 */
2810 for (;;)
2811 {
2812 e = (char_u *)strchr((char *)p, ':');
2813 if (e == NULL)
2814 e = p + STRLEN(p);
2815 if (e - p <= 1) /* empty entry means current dir */
2816 STRCPY(buf, "./");
2817 else
2818 {
Bram Moolenaarbbebc852005-07-18 21:47:53 +00002819 vim_strncpy(buf, p, e - p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820 add_pathsep(buf);
2821 }
2822 STRCAT(buf, name);
2823 retval = executable_file(buf);
2824 if (retval == 1)
2825 break;
2826
2827 if (*e != ':')
2828 break;
2829 p = e + 1;
2830 }
2831
2832 vim_free(buf);
2833 return retval;
2834}
Bram Moolenaar071d4272004-06-13 20:20:40 +00002835
2836/*
2837 * Check what "name" is:
2838 * NODE_NORMAL: file or directory (or doesn't exist)
2839 * NODE_WRITABLE: writable device, socket, fifo, etc.
2840 * NODE_OTHER: non-writable things
2841 */
2842 int
2843mch_nodetype(name)
2844 char_u *name;
2845{
2846 struct stat st;
2847
2848 if (stat((char *)name, &st))
2849 return NODE_NORMAL;
2850 if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode))
2851 return NODE_NORMAL;
2852#ifndef OS2
2853 if (S_ISBLK(st.st_mode)) /* block device isn't writable */
2854 return NODE_OTHER;
2855#endif
2856 /* Everything else is writable? */
2857 return NODE_WRITABLE;
2858}
2859
2860 void
2861mch_early_init()
2862{
2863#ifdef HAVE_CHECK_STACK_GROWTH
2864 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865
Bram Moolenaar071d4272004-06-13 20:20:40 +00002866 check_stack_growth((char *)&i);
2867
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00002868# ifdef HAVE_STACK_LIMIT
Bram Moolenaar071d4272004-06-13 20:20:40 +00002869 get_stack_limit();
2870# endif
2871
2872#endif
2873
2874 /*
2875 * Setup an alternative stack for signals. Helps to catch signals when
2876 * running out of stack space.
2877 * Use of sigaltstack() is preferred, it's more portable.
2878 * Ignore any errors.
2879 */
2880#if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2881 signal_stack = malloc(SIGSTKSZ);
2882 init_signal_stack();
2883#endif
2884}
2885
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002886#if defined(EXITFREE) || defined(PROTO)
2887 void
2888mch_free_mem()
2889{
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002890# if defined(FEAT_CLIPBOARD) && defined(FEAT_X11)
2891 if (clip_star.owned)
2892 clip_lose_selection(&clip_star);
2893 if (clip_plus.owned)
2894 clip_lose_selection(&clip_plus);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002895# endif
Bram Moolenaare8208012008-06-20 09:59:25 +00002896# if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002897 if (xterm_Shell != (Widget)0)
2898 XtDestroyWidget(xterm_Shell);
Bram Moolenaare8208012008-06-20 09:59:25 +00002899# ifndef LESSTIF_VERSION
2900 /* Lesstif crashes here, lose some memory */
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002901 if (xterm_dpy != NULL)
2902 XtCloseDisplay(xterm_dpy);
2903 if (app_context != (XtAppContext)NULL)
Bram Moolenaare8208012008-06-20 09:59:25 +00002904 {
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002905 XtDestroyApplicationContext(app_context);
Bram Moolenaare8208012008-06-20 09:59:25 +00002906# ifdef FEAT_X11
2907 x11_display = NULL; /* freed by XtDestroyApplicationContext() */
2908# endif
2909 }
2910# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002911# endif
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002912# ifdef FEAT_X11
Bram Moolenaare8208012008-06-20 09:59:25 +00002913 if (x11_display != NULL
2914# ifdef FEAT_XCLIPBOARD
2915 && x11_display != xterm_dpy
2916# endif
2917 )
Bram Moolenaarf461c8e2005-06-25 23:04:51 +00002918 XCloseDisplay(x11_display);
2919# endif
2920# if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK)
2921 vim_free(signal_stack);
2922 signal_stack = NULL;
2923# endif
2924# ifdef FEAT_TITLE
2925 vim_free(oldtitle);
2926 vim_free(oldicon);
2927# endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00002928}
2929#endif
2930
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931static void exit_scroll __ARGS((void));
2932
2933/*
2934 * Output a newline when exiting.
2935 * Make sure the newline goes to the same stream as the text.
2936 */
2937 static void
2938exit_scroll()
2939{
Bram Moolenaardf177f62005-02-22 08:39:57 +00002940 if (silent_mode)
2941 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002942 if (newline_on_exit || msg_didout)
2943 {
2944 if (msg_use_printf())
2945 {
2946 if (info_message)
2947 mch_msg("\n");
2948 else
2949 mch_errmsg("\r\n");
2950 }
2951 else
2952 out_char('\n');
2953 }
2954 else
2955 {
2956 restore_cterm_colors(); /* get original colors back */
2957 msg_clr_eos_force(); /* clear the rest of the display */
2958 windgoto((int)Rows - 1, 0); /* may have moved the cursor */
2959 }
2960}
2961
2962 void
2963mch_exit(r)
2964 int r;
2965{
2966 exiting = TRUE;
2967
2968#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
2969 x11_export_final_selection();
2970#endif
2971
2972#ifdef FEAT_GUI
2973 if (!gui.in_use)
2974#endif
2975 {
2976 settmode(TMODE_COOK);
2977#ifdef FEAT_TITLE
2978 mch_restore_title(3); /* restore xterm title and icon name */
2979#endif
2980 /*
2981 * When t_ti is not empty but it doesn't cause swapping terminal
2982 * pages, need to output a newline when msg_didout is set. But when
2983 * t_ti does swap pages it should not go to the shell page. Do this
2984 * before stoptermcap().
2985 */
2986 if (swapping_screen() && !newline_on_exit)
2987 exit_scroll();
2988
2989 /* Stop termcap: May need to check for T_CRV response, which
2990 * requires RAW mode. */
2991 stoptermcap();
2992
2993 /*
2994 * A newline is only required after a message in the alternate screen.
2995 * This is set to TRUE by wait_return().
2996 */
2997 if (!swapping_screen() || newline_on_exit)
2998 exit_scroll();
2999
3000 /* Cursor may have been switched off without calling starttermcap()
3001 * when doing "vim -u vimrc" and vimrc contains ":q". */
3002 if (full_screen)
3003 cursor_on();
3004 }
3005 out_flush();
3006 ml_close_all(TRUE); /* remove all memfiles */
3007 may_core_dump();
3008#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003009 if (gui.in_use)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 gui_exit(r);
3011#endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00003012
Bram Moolenaar56718732006-03-15 22:53:57 +00003013#ifdef MACOS_CONVERT
Bram Moolenaardf177f62005-02-22 08:39:57 +00003014 mac_conv_cleanup();
3015#endif
3016
Bram Moolenaar071d4272004-06-13 20:20:40 +00003017#ifdef __QNX__
3018 /* A core dump won't be created if the signal handler
3019 * doesn't return, so we can't call exit() */
3020 if (deadly_signal != 0)
3021 return;
3022#endif
3023
Bram Moolenaar009b2592004-10-24 19:18:58 +00003024#ifdef FEAT_NETBEANS_INTG
3025 if (usingNetbeans)
3026 netbeans_send_disconnect();
3027#endif
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00003028
3029#ifdef EXITFREE
3030 free_all_mem();
3031#endif
3032
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 exit(r);
3034}
3035
3036 static void
3037may_core_dump()
3038{
3039 if (deadly_signal != 0)
3040 {
3041 signal(deadly_signal, SIG_DFL);
3042 kill(getpid(), deadly_signal); /* Die using the signal we caught */
3043 }
3044}
3045
3046#ifndef VMS
3047
3048 void
3049mch_settmode(tmode)
3050 int tmode;
3051{
3052 static int first = TRUE;
3053
3054 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3055#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3056 /*
3057 * for "new" tty systems
3058 */
3059# ifdef HAVE_TERMIOS_H
3060 static struct termios told;
3061 struct termios tnew;
3062# else
3063 static struct termio told;
3064 struct termio tnew;
3065# endif
3066
3067 if (first)
3068 {
3069 first = FALSE;
3070# if defined(HAVE_TERMIOS_H)
3071 tcgetattr(read_cmd_fd, &told);
3072# else
3073 ioctl(read_cmd_fd, TCGETA, &told);
3074# endif
3075 }
3076
3077 tnew = told;
3078 if (tmode == TMODE_RAW)
3079 {
3080 /*
3081 * ~ICRNL enables typing ^V^M
3082 */
3083 tnew.c_iflag &= ~ICRNL;
3084 tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE
3085# if defined(IEXTEN) && !defined(__MINT__)
3086 | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */
3087 /* but it breaks function keys on MINT */
3088# endif
3089 );
3090# ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */
3091 tnew.c_oflag &= ~ONLCR;
3092# endif
3093 tnew.c_cc[VMIN] = 1; /* return after 1 char */
3094 tnew.c_cc[VTIME] = 0; /* don't wait */
3095 }
3096 else if (tmode == TMODE_SLEEP)
3097 tnew.c_lflag &= ~(ECHO);
3098
3099# if defined(HAVE_TERMIOS_H)
3100 {
3101 int n = 10;
3102
3103 /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a
3104 * few times. */
3105 while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1
3106 && errno == EINTR && n > 0)
3107 --n;
3108 }
3109# else
3110 ioctl(read_cmd_fd, TCSETA, &tnew);
3111# endif
3112
3113#else
3114
3115 /*
3116 * for "old" tty systems
3117 */
3118# ifndef TIOCSETN
3119# define TIOCSETN TIOCSETP /* for hpux 9.0 */
3120# endif
3121 static struct sgttyb ttybold;
3122 struct sgttyb ttybnew;
3123
3124 if (first)
3125 {
3126 first = FALSE;
3127 ioctl(read_cmd_fd, TIOCGETP, &ttybold);
3128 }
3129
3130 ttybnew = ttybold;
3131 if (tmode == TMODE_RAW)
3132 {
3133 ttybnew.sg_flags &= ~(CRMOD | ECHO);
3134 ttybnew.sg_flags |= RAW;
3135 }
3136 else if (tmode == TMODE_SLEEP)
3137 ttybnew.sg_flags &= ~(ECHO);
3138 ioctl(read_cmd_fd, TIOCSETN, &ttybnew);
3139#endif
3140 curr_tmode = tmode;
3141}
3142
3143/*
3144 * Try to get the code for "t_kb" from the stty setting
3145 *
3146 * Even if termcap claims a backspace key, the user's setting *should*
3147 * prevail. stty knows more about reality than termcap does, and if
3148 * somebody's usual erase key is DEL (which, for most BSD users, it will
3149 * be), they're going to get really annoyed if their erase key starts
3150 * doing forward deletes for no reason. (Eric Fischer)
3151 */
3152 void
3153get_stty()
3154{
3155 char_u buf[2];
3156 char_u *p;
3157
3158 /* Why is NeXT excluded here (and not in os_unixx.h)? */
3159#if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__)
3160 /* for "new" tty systems */
3161# ifdef HAVE_TERMIOS_H
3162 struct termios keys;
3163# else
3164 struct termio keys;
3165# endif
3166
3167# if defined(HAVE_TERMIOS_H)
3168 if (tcgetattr(read_cmd_fd, &keys) != -1)
3169# else
3170 if (ioctl(read_cmd_fd, TCGETA, &keys) != -1)
3171# endif
3172 {
3173 buf[0] = keys.c_cc[VERASE];
3174 intr_char = keys.c_cc[VINTR];
3175#else
3176 /* for "old" tty systems */
3177 struct sgttyb keys;
3178
3179 if (ioctl(read_cmd_fd, TIOCGETP, &keys) != -1)
3180 {
3181 buf[0] = keys.sg_erase;
3182 intr_char = keys.sg_kill;
3183#endif
3184 buf[1] = NUL;
3185 add_termcode((char_u *)"kb", buf, FALSE);
3186
3187 /*
3188 * If <BS> and <DEL> are now the same, redefine <DEL>.
3189 */
3190 p = find_termcode((char_u *)"kD");
3191 if (p != NULL && p[0] == buf[0] && p[1] == buf[1])
3192 do_fixdel(NULL);
3193 }
3194#if 0
3195 } /* to keep cindent happy */
3196#endif
3197}
3198
3199#endif /* VMS */
3200
3201#if defined(FEAT_MOUSE_TTY) || defined(PROTO)
3202/*
3203 * Set mouse clicks on or off.
3204 */
3205 void
3206mch_setmouse(on)
3207 int on;
3208{
3209 static int ison = FALSE;
3210 int xterm_mouse_vers;
3211
3212 if (on == ison) /* return quickly if nothing to do */
3213 return;
3214
3215 xterm_mouse_vers = use_xterm_mouse();
3216 if (xterm_mouse_vers > 0)
3217 {
3218 if (on) /* enable mouse events, use mouse tracking if available */
3219 out_str_nf((char_u *)
3220 (xterm_mouse_vers > 1
3221 ? IF_EB("\033[?1002h", ESC_STR "[?1002h")
3222 : IF_EB("\033[?1000h", ESC_STR "[?1000h")));
3223 else /* disable mouse events, could probably always send the same */
3224 out_str_nf((char_u *)
3225 (xterm_mouse_vers > 1
3226 ? IF_EB("\033[?1002l", ESC_STR "[?1002l")
3227 : IF_EB("\033[?1000l", ESC_STR "[?1000l")));
3228 ison = on;
3229 }
3230
3231# ifdef FEAT_MOUSE_DEC
3232 else if (ttym_flags == TTYM_DEC)
3233 {
3234 if (on) /* enable mouse events */
3235 out_str_nf((char_u *)"\033[1;2'z\033[1;3'{");
3236 else /* disable mouse events */
3237 out_str_nf((char_u *)"\033['z");
3238 ison = on;
3239 }
3240# endif
3241
3242# ifdef FEAT_MOUSE_GPM
3243 else
3244 {
3245 if (on)
3246 {
3247 if (gpm_open())
3248 ison = TRUE;
3249 }
3250 else
3251 {
3252 gpm_close();
3253 ison = FALSE;
3254 }
3255 }
3256# endif
3257
3258# ifdef FEAT_MOUSE_JSB
3259 else
3260 {
3261 if (on)
3262 {
3263 /* D - Enable Mouse up/down messages
3264 * L - Enable Left Button Reporting
3265 * M - Enable Middle Button Reporting
3266 * R - Enable Right Button Reporting
3267 * K - Enable SHIFT and CTRL key Reporting
3268 * + - Enable Advanced messaging of mouse moves and up/down messages
3269 * Q - Quiet No Ack
3270 * # - Numeric value of mouse pointer required
3271 * 0 = Multiview 2000 cursor, used as standard
3272 * 1 = Windows Arrow
3273 * 2 = Windows I Beam
3274 * 3 = Windows Hour Glass
3275 * 4 = Windows Cross Hair
3276 * 5 = Windows UP Arrow
3277 */
3278#ifdef JSBTERM_MOUSE_NONADVANCED /* Disables full feedback of pointer movements */
3279 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\",
3280 ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\"));
3281#else
3282 out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\",
3283 ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\"));
3284#endif
3285 ison = TRUE;
3286 }
3287 else
3288 {
3289 out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\",
3290 ESC_STR "[0~ZwQ" ESC_STR "\\"));
3291 ison = FALSE;
3292 }
3293 }
3294# endif
3295# ifdef FEAT_MOUSE_PTERM
3296 else
3297 {
3298 /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */
3299 if (on)
3300 out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l");
3301 else
3302 out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h");
3303 ison = on;
3304 }
3305# endif
3306}
3307
3308/*
3309 * Set the mouse termcode, depending on the 'term' and 'ttymouse' options.
3310 */
3311 void
3312check_mouse_termcode()
3313{
3314# ifdef FEAT_MOUSE_XTERM
3315 if (use_xterm_mouse()
3316# ifdef FEAT_GUI
3317 && !gui.in_use
3318# endif
3319 )
3320 {
3321 set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME)
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003322 ? IF_EB("\233M", CSI_STR "M")
3323 : IF_EB("\033[M", ESC_STR "[M")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003324 if (*p_mouse != NUL)
3325 {
3326 /* force mouse off and maybe on to send possibly new mouse
3327 * activation sequence to the xterm, with(out) drag tracing. */
3328 mch_setmouse(FALSE);
3329 setmouse();
3330 }
3331 }
3332 else
3333 del_mouse_termcode(KS_MOUSE);
3334# endif
3335
3336# ifdef FEAT_MOUSE_GPM
3337 if (!use_xterm_mouse()
3338# ifdef FEAT_GUI
3339 && !gui.in_use
3340# endif
3341 )
3342 set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG"));
3343# endif
3344
3345# ifdef FEAT_MOUSE_JSB
3346 /* conflicts with xterm mouse: "\033[" and "\033[M" ??? */
3347 if (!use_xterm_mouse()
3348# ifdef FEAT_GUI
3349 && !gui.in_use
3350# endif
3351 )
3352 set_mouse_termcode(KS_JSBTERM_MOUSE,
3353 (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw"));
3354 else
3355 del_mouse_termcode(KS_JSBTERM_MOUSE);
3356# endif
3357
3358# ifdef FEAT_MOUSE_NET
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003359 /* There is no conflict, but one may type "ESC }" from Insert mode. Don't
Bram Moolenaar071d4272004-06-13 20:20:40 +00003360 * define it in the GUI or when using an xterm. */
3361 if (!use_xterm_mouse()
3362# ifdef FEAT_GUI
3363 && !gui.in_use
3364# endif
3365 )
3366 set_mouse_termcode(KS_NETTERM_MOUSE,
3367 (char_u *)IF_EB("\033}", ESC_STR "}"));
3368 else
3369 del_mouse_termcode(KS_NETTERM_MOUSE);
3370# endif
3371
3372# ifdef FEAT_MOUSE_DEC
3373 /* conflicts with xterm mouse: "\033[" and "\033[M" */
3374 if (!use_xterm_mouse()
3375# ifdef FEAT_GUI
3376 && !gui.in_use
3377# endif
3378 )
Bram Moolenaarbc7aa852005-03-06 23:38:09 +00003379 set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME)
3380 ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "[")));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 else
3382 del_mouse_termcode(KS_DEC_MOUSE);
3383# endif
3384# ifdef FEAT_MOUSE_PTERM
3385 /* same as the dec mouse */
3386 if (!use_xterm_mouse()
3387# ifdef FEAT_GUI
3388 && !gui.in_use
3389# endif
3390 )
3391 set_mouse_termcode(KS_PTERM_MOUSE,
3392 (char_u *) IF_EB("\033[", ESC_STR "["));
3393 else
3394 del_mouse_termcode(KS_PTERM_MOUSE);
3395# endif
3396}
3397#endif
3398
3399/*
3400 * set screen mode, always fails.
3401 */
3402/* ARGSUSED */
3403 int
3404mch_screenmode(arg)
3405 char_u *arg;
3406{
3407 EMSG(_(e_screenmode));
3408 return FAIL;
3409}
3410
3411#ifndef VMS
3412
3413/*
3414 * Try to get the current window size:
3415 * 1. with an ioctl(), most accurate method
3416 * 2. from the environment variables LINES and COLUMNS
3417 * 3. from the termcap
3418 * 4. keep using the old values
3419 * Return OK when size could be determined, FAIL otherwise.
3420 */
3421 int
3422mch_get_shellsize()
3423{
3424 long rows = 0;
3425 long columns = 0;
3426 char_u *p;
3427
3428 /*
3429 * For OS/2 use _scrsize().
3430 */
3431# ifdef __EMX__
3432 {
3433 int s[2];
3434
3435 _scrsize(s);
3436 columns = s[0];
3437 rows = s[1];
3438 }
3439# endif
3440
3441 /*
3442 * 1. try using an ioctl. It is the most accurate method.
3443 *
3444 * Try using TIOCGWINSZ first, some systems that have it also define
3445 * TIOCGSIZE but don't have a struct ttysize.
3446 */
3447# ifdef TIOCGWINSZ
3448 {
3449 struct winsize ws;
3450 int fd = 1;
3451
3452 /* When stdout is not a tty, use stdin for the ioctl(). */
3453 if (!isatty(fd) && isatty(read_cmd_fd))
3454 fd = read_cmd_fd;
3455 if (ioctl(fd, TIOCGWINSZ, &ws) == 0)
3456 {
3457 columns = ws.ws_col;
3458 rows = ws.ws_row;
3459 }
3460 }
3461# else /* TIOCGWINSZ */
3462# ifdef TIOCGSIZE
3463 {
3464 struct ttysize ts;
3465 int fd = 1;
3466
3467 /* When stdout is not a tty, use stdin for the ioctl(). */
3468 if (!isatty(fd) && isatty(read_cmd_fd))
3469 fd = read_cmd_fd;
3470 if (ioctl(fd, TIOCGSIZE, &ts) == 0)
3471 {
3472 columns = ts.ts_cols;
3473 rows = ts.ts_lines;
3474 }
3475 }
3476# endif /* TIOCGSIZE */
3477# endif /* TIOCGWINSZ */
3478
3479 /*
3480 * 2. get size from environment
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003481 * When being POSIX compliant ('|' flag in 'cpoptions') this overrules
3482 * the ioctl() values!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003483 */
Bram Moolenaar4399ef42005-02-12 14:29:27 +00003484 if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 {
3486 if ((p = (char_u *)getenv("LINES")))
3487 rows = atoi((char *)p);
3488 if ((p = (char_u *)getenv("COLUMNS")))
3489 columns = atoi((char *)p);
3490 }
3491
3492#ifdef HAVE_TGETENT
3493 /*
3494 * 3. try reading "co" and "li" entries from termcap
3495 */
3496 if (columns == 0 || rows == 0)
3497 getlinecol(&columns, &rows);
3498#endif
3499
3500 /*
3501 * 4. If everything fails, use the old values
3502 */
3503 if (columns <= 0 || rows <= 0)
3504 return FAIL;
3505
3506 Rows = rows;
3507 Columns = columns;
3508 return OK;
3509}
3510
3511/*
3512 * Try to set the window size to Rows and Columns.
3513 */
3514 void
3515mch_set_shellsize()
3516{
3517 if (*T_CWS)
3518 {
3519 /*
3520 * NOTE: if you get an error here that term_set_winsize() is
3521 * undefined, check the output of configure. It could probably not
3522 * find a ncurses, termcap or termlib library.
3523 */
3524 term_set_winsize((int)Rows, (int)Columns);
3525 out_flush();
3526 screen_start(); /* don't know where cursor is now */
3527 }
3528}
3529
3530#endif /* VMS */
3531
3532/*
3533 * Rows and/or Columns has changed.
3534 */
3535 void
3536mch_new_shellsize()
3537{
3538 /* Nothing to do. */
3539}
3540
Bram Moolenaardf177f62005-02-22 08:39:57 +00003541#ifndef USE_SYSTEM
3542static void append_ga_line __ARGS((garray_T *gap));
3543
3544/*
3545 * Append the text in "gap" below the cursor line and clear "gap".
3546 */
3547 static void
3548append_ga_line(gap)
3549 garray_T *gap;
3550{
3551 /* Remove trailing CR. */
3552 if (gap->ga_len > 0
3553 && !curbuf->b_p_bin
3554 && ((char_u *)gap->ga_data)[gap->ga_len - 1] == CAR)
3555 --gap->ga_len;
3556 ga_append(gap, NUL);
3557 ml_append(curwin->w_cursor.lnum++, gap->ga_data, 0, FALSE);
3558 gap->ga_len = 0;
3559}
3560#endif
3561
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 int
3563mch_call_shell(cmd, options)
3564 char_u *cmd;
3565 int options; /* SHELL_*, see vim.h */
3566{
3567#ifdef VMS
3568 char *ifn = NULL;
3569 char *ofn = NULL;
3570#endif
3571 int tmode = cur_tmode;
3572#ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */
3573 int x;
3574# ifndef __EMX__
3575 char_u *newcmd; /* only needed for unix */
3576# else
3577 /*
3578 * Set the preferred shell in the EMXSHELL environment variable (but
3579 * only if it is different from what is already in the environment).
3580 * Emx then takes care of whether to use "/c" or "-c" in an
3581 * intelligent way. Simply pass the whole thing to emx's system() call.
3582 * Emx also starts an interactive shell if system() is passed an empty
3583 * string.
3584 */
3585 char_u *p, *old;
3586
3587 if (((old = (char_u *)getenv("EMXSHELL")) == NULL) || STRCMP(old, p_sh))
3588 {
3589 /* should check HAVE_SETENV, but I know we don't have it. */
3590 p = alloc(10 + strlen(p_sh));
3591 if (p)
3592 {
3593 sprintf((char *)p, "EMXSHELL=%s", p_sh);
3594 putenv((char *)p); /* don't free the pointer! */
3595 }
3596 }
3597# endif
3598
3599 out_flush();
3600
3601 if (options & SHELL_COOKED)
3602 settmode(TMODE_COOK); /* set to normal mode */
3603
3604# ifdef __EMX__
3605 if (cmd == NULL)
3606 x = system(""); /* this starts an interactive shell in emx */
3607 else
3608 x = system((char *)cmd);
3609 /* system() returns -1 when error occurs in starting shell */
3610 if (x == -1 && !emsg_silent)
3611 {
3612 MSG_PUTS(_("\nCannot execute shell "));
3613 msg_outtrans(p_sh);
3614 msg_putchar('\n');
3615 }
3616# else /* not __EMX__ */
3617 if (cmd == NULL)
3618 x = system((char *)p_sh);
3619 else
3620 {
3621# ifdef VMS
3622 if (ofn = strchr((char *)cmd, '>'))
3623 *ofn++ = '\0';
3624 if (ifn = strchr((char *)cmd, '<'))
3625 {
3626 char *p;
3627
3628 *ifn++ = '\0';
3629 p = strchr(ifn,' '); /* chop off any trailing spaces */
3630 if (p)
3631 *p = '\0';
3632 }
3633 if (ofn)
3634 x = vms_sys((char *)cmd, ofn, ifn);
3635 else
3636 x = system((char *)cmd);
3637# else
3638 newcmd = lalloc(STRLEN(p_sh)
3639 + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg))
3640 + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE);
3641 if (newcmd == NULL)
3642 x = 0;
3643 else
3644 {
3645 sprintf((char *)newcmd, "%s %s %s %s", p_sh,
3646 extra_shell_arg == NULL ? "" : (char *)extra_shell_arg,
3647 (char *)p_shcf,
3648 (char *)cmd);
3649 x = system((char *)newcmd);
3650 vim_free(newcmd);
3651 }
3652# endif
3653 }
3654# ifdef VMS
3655 x = vms_sys_status(x);
3656# endif
3657 if (emsg_silent)
3658 ;
3659 else if (x == 127)
3660 MSG_PUTS(_("\nCannot execute shell sh\n"));
3661# endif /* __EMX__ */
3662 else if (x && !(options & SHELL_SILENT))
3663 {
3664 MSG_PUTS(_("\nshell returned "));
3665 msg_outnum((long)x);
3666 msg_putchar('\n');
3667 }
3668
3669 if (tmode == TMODE_RAW)
3670 settmode(TMODE_RAW); /* set to raw mode */
3671# ifdef FEAT_TITLE
3672 resettitle();
3673# endif
3674 return x;
3675
3676#else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */
3677
Bram Moolenaardf177f62005-02-22 08:39:57 +00003678# define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use
3679 127, some shells use that already */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003680
3681 char_u *newcmd = NULL;
3682 pid_t pid;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003683 pid_t wpid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 pid_t wait_pid = 0;
3685# ifdef HAVE_UNION_WAIT
3686 union wait status;
3687# else
3688 int status = -1;
3689# endif
3690 int retval = -1;
3691 char **argv = NULL;
3692 int argc;
3693 int i;
3694 char_u *p;
3695 int inquote;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003696 int pty_master_fd = -1; /* for pty's */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003697# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 int pty_slave_fd = -1;
3699 char *tty_name;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003700# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003701 int fd_toshell[2]; /* for pipes */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 int fd_fromshell[2];
3703 int pipe_error = FALSE;
Bram Moolenaardf177f62005-02-22 08:39:57 +00003704# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 char envbuf[50];
Bram Moolenaardf177f62005-02-22 08:39:57 +00003706# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 static char envbuf_Rows[20];
3708 static char envbuf_Columns[20];
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003710 int did_settmode = FALSE; /* settmode(TMODE_RAW) called */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711
3712 out_flush();
3713 if (options & SHELL_COOKED)
3714 settmode(TMODE_COOK); /* set to normal mode */
3715
Bram Moolenaar071d4272004-06-13 20:20:40 +00003716 newcmd = vim_strsave(p_sh);
3717 if (newcmd == NULL) /* out of memory */
3718 goto error;
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003719
3720 /*
3721 * Do this loop twice:
3722 * 1: find number of arguments
3723 * 2: separate them and build argv[]
3724 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003725 for (i = 0; i < 2; ++i)
3726 {
3727 p = newcmd;
3728 inquote = FALSE;
3729 argc = 0;
3730 for (;;)
3731 {
3732 if (i == 1)
3733 argv[argc] = (char *)p;
3734 ++argc;
3735 while (*p && (inquote || (*p != ' ' && *p != TAB)))
3736 {
3737 if (*p == '"')
3738 inquote = !inquote;
3739 ++p;
3740 }
3741 if (*p == NUL)
3742 break;
3743 if (i == 1)
3744 *p++ = NUL;
3745 p = skipwhite(p);
3746 }
Bram Moolenaareb3593b2006-04-22 22:33:57 +00003747 if (argv == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 {
3749 argv = (char **)alloc((unsigned)((argc + 4) * sizeof(char *)));
3750 if (argv == NULL) /* out of memory */
3751 goto error;
3752 }
3753 }
3754 if (cmd != NULL)
3755 {
3756 if (extra_shell_arg != NULL)
3757 argv[argc++] = (char *)extra_shell_arg;
3758 argv[argc++] = (char *)p_shcf;
3759 argv[argc++] = (char *)cmd;
3760 }
3761 argv[argc] = NULL;
3762
Bram Moolenaar071d4272004-06-13 20:20:40 +00003763 /*
Bram Moolenaardf177f62005-02-22 08:39:57 +00003764 * For the GUI, when writing the output into the buffer and when reading
3765 * input from the buffer: Try using a pseudo-tty to get the stdin/stdout
3766 * of the executed command into the Vim window. Or use a pipe.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003767 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003768 if ((options & (SHELL_READ|SHELL_WRITE))
3769# ifdef FEAT_GUI
3770 || (gui.in_use && show_shell_mess)
3771# endif
3772 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003773 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003774# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003775 /*
3776 * Try to open a master pty.
3777 * If this works, open the slave pty.
3778 * If the slave can't be opened, close the master pty.
3779 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003780 if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781 {
3782 pty_master_fd = OpenPTY(&tty_name); /* open pty */
3783 if (pty_master_fd >= 0 && ((pty_slave_fd =
3784 open(tty_name, O_RDWR | O_EXTRA, 0)) < 0))
3785 {
3786 close(pty_master_fd);
3787 pty_master_fd = -1;
3788 }
3789 }
3790 /*
3791 * If not opening a pty or it didn't work, try using pipes.
3792 */
3793 if (pty_master_fd < 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00003794# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003795 {
3796 pipe_error = (pipe(fd_toshell) < 0);
3797 if (!pipe_error) /* pipe create OK */
3798 {
3799 pipe_error = (pipe(fd_fromshell) < 0);
3800 if (pipe_error) /* pipe create failed */
3801 {
3802 close(fd_toshell[0]);
3803 close(fd_toshell[1]);
3804 }
3805 }
3806 if (pipe_error)
3807 {
3808 MSG_PUTS(_("\nCannot create pipes\n"));
3809 out_flush();
3810 }
3811 }
3812 }
3813
3814 if (!pipe_error) /* pty or pipe opened or not used */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815 {
3816# ifdef __BEOS__
3817 beos_cleanup_read_thread();
3818# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003819
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 if ((pid = fork()) == -1) /* maybe we should use vfork() */
3821 {
3822 MSG_PUTS(_("\nCannot fork\n"));
Bram Moolenaardf177f62005-02-22 08:39:57 +00003823 if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003825 || (gui.in_use && show_shell_mess)
3826# endif
3827 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00003829# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003830 if (pty_master_fd >= 0) /* close the pseudo tty */
3831 {
3832 close(pty_master_fd);
3833 close(pty_slave_fd);
3834 }
3835 else /* close the pipes */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003836# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 {
3838 close(fd_toshell[0]);
3839 close(fd_toshell[1]);
3840 close(fd_fromshell[0]);
3841 close(fd_fromshell[1]);
3842 }
3843 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 }
3845 else if (pid == 0) /* child */
3846 {
3847 reset_signals(); /* handle signals normally */
3848
3849 if (!show_shell_mess || (options & SHELL_EXPAND))
3850 {
3851 int fd;
3852
3853 /*
3854 * Don't want to show any message from the shell. Can't just
3855 * close stdout and stderr though, because some systems will
3856 * break if you try to write to them after that, so we must
3857 * use dup() to replace them with something else -- webb
3858 * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang,
3859 * waiting for input.
3860 */
3861 fd = open("/dev/null", O_RDWR | O_EXTRA, 0);
3862 fclose(stdin);
3863 fclose(stdout);
3864 fclose(stderr);
3865
3866 /*
3867 * If any of these open()'s and dup()'s fail, we just continue
3868 * anyway. It's not fatal, and on most systems it will make
3869 * no difference at all. On a few it will cause the execvp()
3870 * to exit with a non-zero status even when the completion
3871 * could be done, which is nothing too serious. If the open()
3872 * or dup() failed we'd just do the same thing ourselves
3873 * anyway -- webb
3874 */
3875 if (fd >= 0)
3876 {
3877 dup(fd); /* To replace stdin (file descriptor 0) */
3878 dup(fd); /* To replace stdout (file descriptor 1) */
3879 dup(fd); /* To replace stderr (file descriptor 2) */
3880
3881 /* Don't need this now that we've duplicated it */
3882 close(fd);
3883 }
3884 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003885 else if ((options & (SHELL_READ|SHELL_WRITE))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886# ifdef FEAT_GUI
Bram Moolenaardf177f62005-02-22 08:39:57 +00003887 || gui.in_use
3888# endif
3889 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003890 {
3891
Bram Moolenaardf177f62005-02-22 08:39:57 +00003892# ifdef HAVE_SETSID
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003893 /* Create our own process group, so that the child and all its
3894 * children can be kill()ed. Don't do this when using pipes,
3895 * because stdin is not a tty, we would loose /dev/tty. */
3896 if (p_stmp)
3897 (void)setsid();
Bram Moolenaardf177f62005-02-22 08:39:57 +00003898# endif
3899# ifdef FEAT_GUI
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003900 if (pty_slave_fd >= 0)
3901 {
3902 /* push stream discipline modules */
3903 if (options & SHELL_COOKED)
3904 SetupSlavePTY(pty_slave_fd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003905# ifdef TIOCSCTTY
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003906 /* Try to become controlling tty (probably doesn't work,
3907 * unless run by root) */
3908 ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909# endif
Bram Moolenaar12033fb2005-12-16 21:49:31 +00003910 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003911# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 /* Simulate to have a dumb terminal (for now) */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003913# ifdef HAVE_SETENV
Bram Moolenaar071d4272004-06-13 20:20:40 +00003914 setenv("TERM", "dumb", 1);
3915 sprintf((char *)envbuf, "%ld", Rows);
3916 setenv("ROWS", (char *)envbuf, 1);
3917 sprintf((char *)envbuf, "%ld", Rows);
3918 setenv("LINES", (char *)envbuf, 1);
3919 sprintf((char *)envbuf, "%ld", Columns);
3920 setenv("COLUMNS", (char *)envbuf, 1);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003921# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 /*
3923 * Putenv does not copy the string, it has to remain valid.
3924 * Use a static array to avoid loosing allocated memory.
3925 */
3926 putenv("TERM=dumb");
3927 sprintf(envbuf_Rows, "ROWS=%ld", Rows);
3928 putenv(envbuf_Rows);
3929 sprintf(envbuf_Rows, "LINES=%ld", Rows);
3930 putenv(envbuf_Rows);
3931 sprintf(envbuf_Columns, "COLUMNS=%ld", Columns);
3932 putenv(envbuf_Columns);
Bram Moolenaardf177f62005-02-22 08:39:57 +00003933# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934
Bram Moolenaara5792f52005-11-23 21:25:05 +00003935 /*
3936 * stderr is only redirected when using the GUI, so that a
3937 * program like gpg can still access the terminal to get a
3938 * passphrase using stderr.
3939 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00003940# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 if (pty_master_fd >= 0)
3942 {
3943 close(pty_master_fd); /* close master side of pty */
3944
3945 /* set up stdin/stdout/stderr for the child */
3946 close(0);
3947 dup(pty_slave_fd);
3948 close(1);
3949 dup(pty_slave_fd);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003950 if (gui.in_use)
3951 {
3952 close(2);
3953 dup(pty_slave_fd);
3954 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003955
3956 close(pty_slave_fd); /* has been dupped, close it now */
3957 }
3958 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00003959# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003960 {
3961 /* set up stdin for the child */
3962 close(fd_toshell[1]);
3963 close(0);
3964 dup(fd_toshell[0]);
3965 close(fd_toshell[0]);
3966
3967 /* set up stdout for the child */
3968 close(fd_fromshell[0]);
3969 close(1);
3970 dup(fd_fromshell[1]);
3971 close(fd_fromshell[1]);
3972
Bram Moolenaara5792f52005-11-23 21:25:05 +00003973# ifdef FEAT_GUI
3974 if (gui.in_use)
3975 {
3976 /* set up stderr for the child */
3977 close(2);
3978 dup(1);
3979 }
3980# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 }
3982 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00003983
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 /*
3985 * There is no type cast for the argv, because the type may be
3986 * different on different machines. This may cause a warning
3987 * message with strict compilers, don't worry about it.
3988 * Call _exit() instead of exit() to avoid closing the connection
3989 * to the X server (esp. with GTK, which uses atexit()).
3990 */
3991 execvp(argv[0], argv);
3992 _exit(EXEC_FAILED); /* exec failed, return failure code */
3993 }
3994 else /* parent */
3995 {
3996 /*
3997 * While child is running, ignore terminating signals.
Bram Moolenaardf177f62005-02-22 08:39:57 +00003998 * Do catch CTRL-C, so that "got_int" is set.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 */
4000 catch_signals(SIG_IGN, SIG_ERR);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004001 catch_int_signal();
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002
4003 /*
4004 * For the GUI we redirect stdin, stdout and stderr to our window.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004005 * This is also used to pipe stdin/stdout to/from the external
4006 * command.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004008 if ((options & (SHELL_READ|SHELL_WRITE))
4009# ifdef FEAT_GUI
4010 || (gui.in_use && show_shell_mess)
4011# endif
4012 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00004013 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004014# define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004015 char_u buffer[BUFLEN + 1];
Bram Moolenaardf177f62005-02-22 08:39:57 +00004016# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 int buffer_off = 0; /* valid bytes in buffer[] */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004018# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 char_u ta_buf[BUFLEN + 1]; /* TypeAHead */
4020 int ta_len = 0; /* valid bytes in ta_buf[] */
4021 int len;
4022 int p_more_save;
4023 int old_State;
4024 int c;
4025 int toshell_fd;
4026 int fromshell_fd;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004027 garray_T ga;
4028 int noread_cnt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029
Bram Moolenaardf177f62005-02-22 08:39:57 +00004030# ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 if (pty_master_fd >= 0)
4032 {
4033 close(pty_slave_fd); /* close slave side of pty */
4034 fromshell_fd = pty_master_fd;
4035 toshell_fd = dup(pty_master_fd);
4036 }
4037 else
Bram Moolenaardf177f62005-02-22 08:39:57 +00004038# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039 {
4040 close(fd_toshell[0]);
4041 close(fd_fromshell[1]);
4042 toshell_fd = fd_toshell[1];
4043 fromshell_fd = fd_fromshell[0];
4044 }
4045
4046 /*
4047 * Write to the child if there are typed characters.
4048 * Read from the child if there are characters available.
4049 * Repeat the reading a few times if more characters are
4050 * available. Need to check for typed keys now and then, but
4051 * not too often (delays when no chars are available).
4052 * This loop is quit if no characters can be read from the pty
4053 * (WaitForChar detected special condition), or there are no
4054 * characters available and the child has exited.
4055 * Only check if the child has exited when there is no more
4056 * output. The child may exit before all the output has
4057 * been printed.
4058 *
4059 * Currently this busy loops!
4060 * This can probably dead-lock when the write blocks!
4061 */
4062 p_more_save = p_more;
4063 p_more = FALSE;
4064 old_State = State;
4065 State = EXTERNCMD; /* don't redraw at window resize */
4066
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004067 if ((options & SHELL_WRITE) && toshell_fd >= 0)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004068 {
4069 /* Fork a process that will write the lines to the
4070 * external program. */
4071 if ((wpid = fork()) == -1)
4072 {
4073 MSG_PUTS(_("\nCannot fork\n"));
4074 }
4075 else if (wpid == 0)
4076 {
4077 linenr_T lnum = curbuf->b_op_start.lnum;
4078 int written = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004079 char_u *lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004080 char_u *s;
4081 size_t l;
4082
4083 /* child */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00004084 close(fromshell_fd);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004085 for (;;)
4086 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004087 l = STRLEN(lp + written);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004088 if (l == 0)
4089 len = 0;
Bram Moolenaar89d40322006-08-29 15:30:07 +00004090 else if (lp[written] == NL)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004091 /* NL -> NUL translation */
4092 len = write(toshell_fd, "", (size_t)1);
4093 else
4094 {
Bram Moolenaar89d40322006-08-29 15:30:07 +00004095 s = vim_strchr(lp + written, NL);
4096 len = write(toshell_fd, (char *)lp + written,
4097 s == NULL ? l : s - (lp + written));
Bram Moolenaardf177f62005-02-22 08:39:57 +00004098 }
4099 if (len == l)
4100 {
4101 /* Finished a line, add a NL, unless this line
4102 * should not have one. */
4103 if (lnum != curbuf->b_op_end.lnum
4104 || !curbuf->b_p_bin
4105 || (lnum != write_no_eol_lnum
4106 && (lnum !=
4107 curbuf->b_ml.ml_line_count
4108 || curbuf->b_p_eol)))
4109 write(toshell_fd, "\n", (size_t)1);
4110 ++lnum;
4111 if (lnum > curbuf->b_op_end.lnum)
4112 {
4113 /* finished all the lines, close pipe */
4114 close(toshell_fd);
4115 toshell_fd = -1;
4116 break;
4117 }
Bram Moolenaar89d40322006-08-29 15:30:07 +00004118 lp = ml_get(lnum);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004119 written = 0;
4120 }
4121 else if (len > 0)
4122 written += len;
4123 }
4124 _exit(0);
4125 }
4126 else
4127 {
4128 close(toshell_fd);
4129 toshell_fd = -1;
4130 }
4131 }
4132
4133 if (options & SHELL_READ)
4134 ga_init2(&ga, 1, BUFLEN);
4135
4136 noread_cnt = 0;
4137
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138 for (;;)
4139 {
4140 /*
4141 * Check if keys have been typed, write them to the child
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004142 * if there are any.
4143 * Don't do this if we are expanding wild cards (would eat
4144 * typeahead).
4145 * Don't do this when filtering and terminal is in cooked
4146 * mode, the shell command will handle the I/O. Avoids
4147 * that a typed password is echoed for ssh or gpg command.
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004148 * Don't get characters when the child has already
4149 * finished (wait_pid == 0).
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004150 * Don't get extra characters when we already have one.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004151 * Don't read characters unless we didn't get output for a
4152 * while, avoids that ":r !ls" eats typeahead.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 */
4154 len = 0;
4155 if (!(options & SHELL_EXPAND)
Bram Moolenaar5b962cf2005-12-12 21:58:40 +00004156 && ((options &
4157 (SHELL_READ|SHELL_WRITE|SHELL_COOKED))
4158 != (SHELL_READ|SHELL_WRITE|SHELL_COOKED)
4159#ifdef FEAT_GUI
4160 || gui.in_use
4161#endif
4162 )
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004163 && wait_pid == 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004164 && (ta_len > 0
Bram Moolenaardf177f62005-02-22 08:39:57 +00004165 || (noread_cnt > 4
4166 && (len = ui_inchar(ta_buf,
4167 BUFLEN, 10L, 0)) > 0)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 {
4169 /*
4170 * For pipes:
4171 * Check for CTRL-C: send interrupt signal to child.
4172 * Check for CTRL-D: EOF, close pipe to child.
4173 */
4174 if (len == 1 && (pty_master_fd < 0 || cmd != NULL))
4175 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004176# ifdef SIGINT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004177 /*
4178 * Send SIGINT to the child's group or all
4179 * processes in our group.
4180 */
4181 if (ta_buf[ta_len] == Ctrl_C
4182 || ta_buf[ta_len] == intr_char)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004183 {
4184# ifdef HAVE_SETSID
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 kill(-pid, SIGINT);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004186# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 kill(0, SIGINT);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188# endif
Bram Moolenaardf177f62005-02-22 08:39:57 +00004189 if (wpid > 0)
4190 kill(wpid, SIGINT);
4191 }
4192# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004193 if (pty_master_fd < 0 && toshell_fd >= 0
4194 && ta_buf[ta_len] == Ctrl_D)
4195 {
4196 close(toshell_fd);
4197 toshell_fd = -1;
4198 }
4199 }
4200
4201 /* replace K_BS by <BS> and K_DEL by <DEL> */
4202 for (i = ta_len; i < ta_len + len; ++i)
4203 {
4204 if (ta_buf[i] == CSI && len - i > 2)
4205 {
4206 c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]);
4207 if (c == K_DEL || c == K_KDEL || c == K_BS)
4208 {
4209 mch_memmove(ta_buf + i + 1, ta_buf + i + 3,
4210 (size_t)(len - i - 2));
4211 if (c == K_DEL || c == K_KDEL)
4212 ta_buf[i] = DEL;
4213 else
4214 ta_buf[i] = Ctrl_H;
4215 len -= 2;
4216 }
4217 }
4218 else if (ta_buf[i] == '\r')
4219 ta_buf[i] = '\n';
Bram Moolenaardf177f62005-02-22 08:39:57 +00004220# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004221 if (has_mbyte)
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004222 i += (*mb_ptr2len)(ta_buf + i) - 1;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004223# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 }
4225
4226 /*
4227 * For pipes: echo the typed characters.
4228 * For a pty this does not seem to work.
4229 */
4230 if (pty_master_fd < 0)
4231 {
4232 for (i = ta_len; i < ta_len + len; ++i)
4233 {
4234 if (ta_buf[i] == '\n' || ta_buf[i] == '\b')
4235 msg_putchar(ta_buf[i]);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004236# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 else if (has_mbyte)
4238 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004239 int l = (*mb_ptr2len)(ta_buf + i);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004240
4241 msg_outtrans_len(ta_buf + i, l);
4242 i += l - 1;
4243 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004244# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004245 else
4246 msg_outtrans_len(ta_buf + i, 1);
4247 }
4248 windgoto(msg_row, msg_col);
4249 out_flush();
4250 }
4251
4252 ta_len += len;
4253
4254 /*
4255 * Write the characters to the child, unless EOF has
4256 * been typed for pipes. Write one character at a
4257 * time, to avoid loosing too much typeahead.
Bram Moolenaardf177f62005-02-22 08:39:57 +00004258 * When writing buffer lines, drop the typed
4259 * characters (only check for CTRL-C).
Bram Moolenaar071d4272004-06-13 20:20:40 +00004260 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004261 if (options & SHELL_WRITE)
4262 ta_len = 0;
4263 else if (toshell_fd >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 {
4265 len = write(toshell_fd, (char *)ta_buf, (size_t)1);
4266 if (len > 0)
4267 {
4268 ta_len -= len;
4269 mch_memmove(ta_buf, ta_buf + len, ta_len);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004270 noread_cnt = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004271 }
4272 }
4273 }
4274
Bram Moolenaardf177f62005-02-22 08:39:57 +00004275 if (got_int)
4276 {
4277 /* CTRL-C sends a signal to the child, we ignore it
4278 * ourselves */
4279# ifdef HAVE_SETSID
4280 kill(-pid, SIGINT);
4281# else
4282 kill(0, SIGINT);
4283# endif
4284 if (wpid > 0)
4285 kill(wpid, SIGINT);
4286 got_int = FALSE;
4287 }
4288
Bram Moolenaar071d4272004-06-13 20:20:40 +00004289 /*
4290 * Check if the child has any characters to be printed.
4291 * Read them and write them to our window. Repeat this as
4292 * long as there is something to do, avoid the 10ms wait
4293 * for mch_inchar(), or sending typeahead characters to
4294 * the external process.
4295 * TODO: This should handle escape sequences, compatible
4296 * to some terminal (vt52?).
4297 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004298 ++noread_cnt;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 while (RealWaitForChar(fromshell_fd, 10L, NULL))
4300 {
4301 len = read(fromshell_fd, (char *)buffer
Bram Moolenaardf177f62005-02-22 08:39:57 +00004302# ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004303 + buffer_off, (size_t)(BUFLEN - buffer_off)
Bram Moolenaardf177f62005-02-22 08:39:57 +00004304# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305 , (size_t)BUFLEN
Bram Moolenaardf177f62005-02-22 08:39:57 +00004306# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 );
4308 if (len <= 0) /* end of file or error */
4309 goto finished;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004310
4311 noread_cnt = 0;
4312 if (options & SHELL_READ)
4313 {
4314 /* Do NUL -> NL translation, append NL separated
4315 * lines to the current buffer. */
4316 for (i = 0; i < len; ++i)
4317 {
4318 if (buffer[i] == NL)
4319 append_ga_line(&ga);
4320 else if (buffer[i] == NUL)
4321 ga_append(&ga, NL);
4322 else
4323 ga_append(&ga, buffer[i]);
4324 }
4325 }
4326# ifdef FEAT_MBYTE
4327 else if (has_mbyte)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004328 {
4329 int l;
4330
Bram Moolenaardf177f62005-02-22 08:39:57 +00004331 len += buffer_off;
4332 buffer[len] = NUL;
4333
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334 /* Check if the last character in buffer[] is
4335 * incomplete, keep these bytes for the next
4336 * round. */
4337 for (p = buffer; p < buffer + len; p += l)
4338 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00004339 l = mb_cptr2len(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 if (l == 0)
4341 l = 1; /* NUL byte? */
4342 else if (MB_BYTE2LEN(*p) != l)
4343 break;
4344 }
4345 if (p == buffer) /* no complete character */
4346 {
4347 /* avoid getting stuck at an illegal byte */
4348 if (len >= 12)
4349 ++p;
4350 else
4351 {
4352 buffer_off = len;
4353 continue;
4354 }
4355 }
4356 c = *p;
4357 *p = NUL;
4358 msg_puts(buffer);
4359 if (p < buffer + len)
4360 {
4361 *p = c;
4362 buffer_off = (buffer + len) - p;
4363 mch_memmove(buffer, p, buffer_off);
4364 continue;
4365 }
4366 buffer_off = 0;
4367 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004368# endif /* FEAT_MBYTE */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004369 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004370 {
4371 buffer[len] = NUL;
4372 msg_puts(buffer);
4373 }
4374
4375 windgoto(msg_row, msg_col);
4376 cursor_on();
4377 out_flush();
4378 if (got_int)
4379 break;
4380 }
4381
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004382 /* If we already detected the child has finished break the
4383 * loop now. */
4384 if (wait_pid == pid)
4385 break;
4386
Bram Moolenaar071d4272004-06-13 20:20:40 +00004387 /*
4388 * Check if the child still exists, before checking for
4389 * typed characters (otherwise we would loose typeahead).
4390 */
Bram Moolenaardf177f62005-02-22 08:39:57 +00004391# ifdef __NeXT__
Bram Moolenaar071d4272004-06-13 20:20:40 +00004392 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *) 0);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004393# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 wait_pid = waitpid(pid, &status, WNOHANG);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004395# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004396 if ((wait_pid == (pid_t)-1 && errno == ECHILD)
4397 || (wait_pid == pid && WIFEXITED(status)))
4398 {
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004399 /* Don't break the loop yet, try reading more
4400 * characters from "fromshell_fd" first. When using
4401 * pipes there might still be something to read and
4402 * then we'll break the loop at the "break" above. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004403 wait_pid = pid;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004404 }
Bram Moolenaar12033fb2005-12-16 21:49:31 +00004405 else
4406 wait_pid = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004407 }
4408finished:
4409 p_more = p_more_save;
Bram Moolenaardf177f62005-02-22 08:39:57 +00004410 if (options & SHELL_READ)
4411 {
4412 if (ga.ga_len > 0)
4413 {
4414 append_ga_line(&ga);
4415 /* remember that the NL was missing */
4416 write_no_eol_lnum = curwin->w_cursor.lnum;
4417 }
4418 else
4419 write_no_eol_lnum = 0;
4420 ga_clear(&ga);
4421 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004422
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 /*
4424 * Give all typeahead that wasn't used back to ui_inchar().
4425 */
4426 if (ta_len)
4427 ui_inchar_undo(ta_buf, ta_len);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004428 State = old_State;
4429 if (toshell_fd >= 0)
4430 close(toshell_fd);
4431 close(fromshell_fd);
4432 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433
4434 /*
4435 * Wait until our child has exited.
4436 * Ignore wait() returning pids of other children and returning
4437 * because of some signal like SIGWINCH.
4438 * Don't wait if wait_pid was already set above, indicating the
4439 * child already exited.
4440 */
4441 while (wait_pid != pid)
4442 {
Bram Moolenaardf177f62005-02-22 08:39:57 +00004443# ifdef _THREAD_SAFE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444 /* Ugly hack: when compiled with Python threads are probably
4445 * used, in which case wait() sometimes hangs for no obvious
4446 * reason. Use waitpid() instead and loop (like the GUI). */
4447# ifdef __NeXT__
4448 wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0);
4449# else
4450 wait_pid = waitpid(pid, &status, WNOHANG);
4451# endif
4452 if (wait_pid == 0)
4453 {
4454 /* Wait for 1/100 sec before trying again. */
4455 mch_delay(10L, TRUE);
4456 continue;
4457 }
Bram Moolenaardf177f62005-02-22 08:39:57 +00004458# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 wait_pid = wait(&status);
Bram Moolenaardf177f62005-02-22 08:39:57 +00004460# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 if (wait_pid <= 0
4462# ifdef ECHILD
4463 && errno == ECHILD
4464# endif
4465 )
4466 break;
4467 }
4468
Bram Moolenaardf177f62005-02-22 08:39:57 +00004469 /* Make sure the child that writes to the external program is
4470 * dead. */
4471 if (wpid > 0)
4472 kill(wpid, SIGKILL);
4473
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474 /*
4475 * Set to raw mode right now, otherwise a CTRL-C after
4476 * catch_signals() will kill Vim.
4477 */
4478 if (tmode == TMODE_RAW)
4479 settmode(TMODE_RAW);
4480 did_settmode = TRUE;
4481 set_signals();
4482
4483 if (WIFEXITED(status))
4484 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +00004485 /* LINTED avoid "bitwise operation on signed value" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 retval = WEXITSTATUS(status);
4487 if (retval && !emsg_silent)
4488 {
4489 if (retval == EXEC_FAILED)
4490 {
4491 MSG_PUTS(_("\nCannot execute shell "));
4492 msg_outtrans(p_sh);
4493 msg_putchar('\n');
4494 }
4495 else if (!(options & SHELL_SILENT))
4496 {
4497 MSG_PUTS(_("\nshell returned "));
4498 msg_outnum((long)retval);
4499 msg_putchar('\n');
4500 }
4501 }
4502 }
4503 else
4504 MSG_PUTS(_("\nCommand terminated\n"));
4505 }
4506 }
4507 vim_free(argv);
4508
4509error:
4510 if (!did_settmode)
4511 if (tmode == TMODE_RAW)
4512 settmode(TMODE_RAW); /* set to raw mode */
4513# ifdef FEAT_TITLE
4514 resettitle();
4515# endif
4516 vim_free(newcmd);
4517
4518 return retval;
4519
4520#endif /* USE_SYSTEM */
4521}
4522
4523/*
4524 * Check for CTRL-C typed by reading all available characters.
4525 * In cooked mode we should get SIGINT, no need to check.
4526 */
4527 void
4528mch_breakcheck()
4529{
4530 if (curr_tmode == TMODE_RAW && RealWaitForChar(read_cmd_fd, 0L, NULL))
4531 fill_input_buf(FALSE);
4532}
4533
4534/*
4535 * Wait "msec" msec until a character is available from the keyboard or from
4536 * inbuf[]. msec == -1 will block forever.
4537 * When a GUI is being used, this will never get called -- webb
4538 */
4539 static int
4540WaitForChar(msec)
4541 long msec;
4542{
4543#ifdef FEAT_MOUSE_GPM
4544 int gpm_process_wanted;
4545#endif
4546#ifdef FEAT_XCLIPBOARD
4547 int rest;
4548#endif
4549 int avail;
4550
4551 if (input_available()) /* something in inbuf[] */
4552 return 1;
4553
4554#if defined(FEAT_MOUSE_DEC)
4555 /* May need to query the mouse position. */
4556 if (WantQueryMouse)
4557 {
Bram Moolenaar6bb68362005-03-22 23:03:44 +00004558 WantQueryMouse = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5);
4560 }
4561#endif
4562
4563 /*
4564 * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse
4565 * events. This is a bit complicated, because they might both be defined.
4566 */
4567#if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD)
4568# ifdef FEAT_XCLIPBOARD
4569 rest = 0;
4570 if (do_xterm_trace())
4571 rest = msec;
4572# endif
4573 do
4574 {
4575# ifdef FEAT_XCLIPBOARD
4576 if (rest != 0)
4577 {
4578 msec = XT_TRACE_DELAY;
4579 if (rest >= 0 && rest < XT_TRACE_DELAY)
4580 msec = rest;
4581 if (rest >= 0)
4582 rest -= msec;
4583 }
4584# endif
4585# ifdef FEAT_MOUSE_GPM
4586 gpm_process_wanted = 0;
4587 avail = RealWaitForChar(read_cmd_fd, msec, &gpm_process_wanted);
4588# else
4589 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4590# endif
4591 if (!avail)
4592 {
4593 if (input_available())
4594 return 1;
4595# ifdef FEAT_XCLIPBOARD
4596 if (rest == 0 || !do_xterm_trace())
4597# endif
4598 break;
4599 }
4600 }
4601 while (FALSE
4602# ifdef FEAT_MOUSE_GPM
4603 || (gpm_process_wanted && mch_gpm_process() == 0)
4604# endif
4605# ifdef FEAT_XCLIPBOARD
4606 || (!avail && rest != 0)
4607# endif
4608 );
4609
4610#else
4611 avail = RealWaitForChar(read_cmd_fd, msec, NULL);
4612#endif
4613 return avail;
4614}
4615
4616/*
4617 * Wait "msec" msec until a character is available from file descriptor "fd".
4618 * Time == -1 will block forever.
4619 * When a GUI is being used, this will not be used for input -- webb
4620 * Returns also, when a request from Sniff is waiting -- toni.
4621 * Or when a Linux GPM mouse event is waiting.
4622 */
4623/* ARGSUSED */
4624#if defined(__BEOS__)
4625 int
4626#else
4627 static int
4628#endif
4629RealWaitForChar(fd, msec, check_for_gpm)
4630 int fd;
4631 long msec;
4632 int *check_for_gpm;
4633{
4634 int ret;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004635#if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 static int busy = FALSE;
4637
4638 /* May retry getting characters after an event was handled. */
4639# define MAY_LOOP
4640
4641# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
4642 /* Remember at what time we started, so that we know how much longer we
4643 * should wait after being interrupted. */
4644# define USE_START_TV
4645 struct timeval start_tv;
4646
4647 if (msec > 0 && (
4648# ifdef FEAT_XCLIPBOARD
4649 xterm_Shell != (Widget)0
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004650# if defined(USE_XSMP) || defined(FEAT_MZSCHEME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004651 ||
4652# endif
4653# endif
4654# ifdef USE_XSMP
4655 xsmp_icefd != -1
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004656# ifdef FEAT_MZSCHEME
4657 ||
4658# endif
4659# endif
4660# ifdef FEAT_MZSCHEME
4661 (mzthreads_allowed() && p_mzq > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004662# endif
4663 ))
4664 gettimeofday(&start_tv, NULL);
4665# endif
4666
4667 /* Handle being called recursively. This may happen for the session
4668 * manager stuff, it may save the file, which does a breakcheck. */
4669 if (busy)
4670 return 0;
4671#endif
4672
4673#ifdef MAY_LOOP
Bram Moolenaar35fdbb52005-07-09 21:08:57 +00004674 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675#endif
4676 {
4677#ifdef MAY_LOOP
4678 int finished = TRUE; /* default is to 'loop' just once */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004679# ifdef FEAT_MZSCHEME
4680 int mzquantum_used = FALSE;
4681# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004682#endif
4683#ifndef HAVE_SELECT
4684 struct pollfd fds[5];
4685 int nfd;
4686# ifdef FEAT_XCLIPBOARD
4687 int xterm_idx = -1;
4688# endif
4689# ifdef FEAT_MOUSE_GPM
4690 int gpm_idx = -1;
4691# endif
4692# ifdef USE_XSMP
4693 int xsmp_idx = -1;
4694# endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004695 int towait = (int)msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004697# ifdef FEAT_MZSCHEME
4698 mzvim_check_threads();
4699 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4700 {
4701 towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */
4702 mzquantum_used = TRUE;
4703 }
4704# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004705 fds[0].fd = fd;
4706 fds[0].events = POLLIN;
4707 nfd = 1;
4708
4709# ifdef FEAT_SNIFF
4710# define SNIFF_IDX 1
4711 if (want_sniff_request)
4712 {
4713 fds[SNIFF_IDX].fd = fd_from_sniff;
4714 fds[SNIFF_IDX].events = POLLIN;
4715 nfd++;
4716 }
4717# endif
4718# ifdef FEAT_XCLIPBOARD
4719 if (xterm_Shell != (Widget)0)
4720 {
4721 xterm_idx = nfd;
4722 fds[nfd].fd = ConnectionNumber(xterm_dpy);
4723 fds[nfd].events = POLLIN;
4724 nfd++;
4725 }
4726# endif
4727# ifdef FEAT_MOUSE_GPM
4728 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4729 {
4730 gpm_idx = nfd;
4731 fds[nfd].fd = gpm_fd;
4732 fds[nfd].events = POLLIN;
4733 nfd++;
4734 }
4735# endif
4736# ifdef USE_XSMP
4737 if (xsmp_icefd != -1)
4738 {
4739 xsmp_idx = nfd;
4740 fds[nfd].fd = xsmp_icefd;
4741 fds[nfd].events = POLLIN;
4742 nfd++;
4743 }
4744# endif
4745
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004746 ret = poll(fds, nfd, towait);
4747# ifdef FEAT_MZSCHEME
4748 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00004749 /* MzThreads scheduling is required and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004750 finished = FALSE;
4751# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004752
4753# ifdef FEAT_SNIFF
4754 if (ret < 0)
4755 sniff_disconnect(1);
4756 else if (want_sniff_request)
4757 {
4758 if (fds[SNIFF_IDX].revents & POLLHUP)
4759 sniff_disconnect(1);
4760 if (fds[SNIFF_IDX].revents & POLLIN)
4761 sniff_request_waiting = 1;
4762 }
4763# endif
4764# ifdef FEAT_XCLIPBOARD
4765 if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN))
4766 {
4767 xterm_update(); /* Maybe we should hand out clipboard */
4768 if (--ret == 0 && !input_available())
4769 /* Try again */
4770 finished = FALSE;
4771 }
4772# endif
4773# ifdef FEAT_MOUSE_GPM
4774 if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN))
4775 {
4776 *check_for_gpm = 1;
4777 }
4778# endif
4779# ifdef USE_XSMP
4780 if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP)))
4781 {
4782 if (fds[xsmp_idx].revents & POLLIN)
4783 {
4784 busy = TRUE;
4785 xsmp_handle_requests();
4786 busy = FALSE;
4787 }
4788 else if (fds[xsmp_idx].revents & POLLHUP)
4789 {
4790 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004791 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 xsmp_close();
4793 }
4794 if (--ret == 0)
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004795 finished = FALSE; /* Try again */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796 }
4797# endif
4798
4799
4800#else /* HAVE_SELECT */
4801
4802 struct timeval tv;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004803 struct timeval *tvp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004804 fd_set rfds, efds;
4805 int maxfd;
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004806 long towait = msec;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004808# ifdef FEAT_MZSCHEME
4809 mzvim_check_threads();
4810 if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq))
4811 {
4812 towait = p_mzq; /* don't wait longer than 'mzquantum' */
4813 mzquantum_used = TRUE;
4814 }
4815# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816# ifdef __EMX__
4817 /* don't check for incoming chars if not in raw mode, because select()
4818 * always returns TRUE then (in some version of emx.dll) */
4819 if (curr_tmode != TMODE_RAW)
4820 return 0;
4821# endif
4822
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004823 if (towait >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004824 {
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004825 tv.tv_sec = towait / 1000;
4826 tv.tv_usec = (towait % 1000) * (1000000/1000);
4827 tvp = &tv;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004828 }
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004829 else
4830 tvp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831
4832 /*
4833 * Select on ready for reading and exceptional condition (end of file).
4834 */
4835 FD_ZERO(&rfds); /* calls bzero() on a sun */
4836 FD_ZERO(&efds);
4837 FD_SET(fd, &rfds);
4838# if !defined(__QNX__) && !defined(__CYGWIN32__)
4839 /* For QNX select() always returns 1 if this is set. Why? */
4840 FD_SET(fd, &efds);
4841# endif
4842 maxfd = fd;
4843
4844# ifdef FEAT_SNIFF
4845 if (want_sniff_request)
4846 {
4847 FD_SET(fd_from_sniff, &rfds);
4848 FD_SET(fd_from_sniff, &efds);
4849 if (maxfd < fd_from_sniff)
4850 maxfd = fd_from_sniff;
4851 }
4852# endif
4853# ifdef FEAT_XCLIPBOARD
4854 if (xterm_Shell != (Widget)0)
4855 {
4856 FD_SET(ConnectionNumber(xterm_dpy), &rfds);
4857 if (maxfd < ConnectionNumber(xterm_dpy))
4858 maxfd = ConnectionNumber(xterm_dpy);
4859 }
4860# endif
4861# ifdef FEAT_MOUSE_GPM
4862 if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0)
4863 {
4864 FD_SET(gpm_fd, &rfds);
4865 FD_SET(gpm_fd, &efds);
4866 if (maxfd < gpm_fd)
4867 maxfd = gpm_fd;
4868 }
4869# endif
4870# ifdef USE_XSMP
4871 if (xsmp_icefd != -1)
4872 {
4873 FD_SET(xsmp_icefd, &rfds);
4874 FD_SET(xsmp_icefd, &efds);
4875 if (maxfd < xsmp_icefd)
4876 maxfd = xsmp_icefd;
4877 }
4878# endif
4879
4880# ifdef OLD_VMS
4881 /* Old VMS as v6.2 and older have broken select(). It waits more than
4882 * required. Should not be used */
4883 ret = 0;
4884# else
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004885 ret = select(maxfd + 1, &rfds, NULL, &efds, tvp);
4886# endif
Bram Moolenaar311d9822007-02-27 15:48:28 +00004887# ifdef __TANDEM
4888 if (ret == -1 && errno == ENOTSUP)
4889 {
4890 FD_ZERO(&rfds);
4891 FD_ZERO(&efds);
4892 ret = 0;
4893 }
4894#endif
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004895# ifdef FEAT_MZSCHEME
4896 if (ret == 0 && mzquantum_used)
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00004897 /* loop if MzThreads must be scheduled and timeout occurred */
Bram Moolenaar325b7a22004-07-05 15:58:32 +00004898 finished = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004899# endif
4900
4901# ifdef FEAT_SNIFF
4902 if (ret < 0 )
4903 sniff_disconnect(1);
4904 else if (ret > 0 && want_sniff_request)
4905 {
4906 if (FD_ISSET(fd_from_sniff, &efds))
4907 sniff_disconnect(1);
4908 if (FD_ISSET(fd_from_sniff, &rfds))
4909 sniff_request_waiting = 1;
4910 }
4911# endif
4912# ifdef FEAT_XCLIPBOARD
4913 if (ret > 0 && xterm_Shell != (Widget)0
4914 && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds))
4915 {
4916 xterm_update(); /* Maybe we should hand out clipboard */
4917 /* continue looping when we only got the X event and the input
4918 * buffer is empty */
4919 if (--ret == 0 && !input_available())
4920 {
4921 /* Try again */
4922 finished = FALSE;
4923 }
4924 }
4925# endif
4926# ifdef FEAT_MOUSE_GPM
4927 if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0)
4928 {
4929 if (FD_ISSET(gpm_fd, &efds))
4930 gpm_close();
4931 else if (FD_ISSET(gpm_fd, &rfds))
4932 *check_for_gpm = 1;
4933 }
4934# endif
4935# ifdef USE_XSMP
4936 if (ret > 0 && xsmp_icefd != -1)
4937 {
4938 if (FD_ISSET(xsmp_icefd, &efds))
4939 {
4940 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00004941 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 xsmp_close();
4943 if (--ret == 0)
4944 finished = FALSE; /* keep going if event was only one */
4945 }
4946 else if (FD_ISSET(xsmp_icefd, &rfds))
4947 {
4948 busy = TRUE;
4949 xsmp_handle_requests();
4950 busy = FALSE;
4951 if (--ret == 0)
4952 finished = FALSE; /* keep going if event was only one */
4953 }
4954 }
4955# endif
4956
4957#endif /* HAVE_SELECT */
4958
4959#ifdef MAY_LOOP
4960 if (finished || msec == 0)
4961 break;
4962
4963 /* We're going to loop around again, find out for how long */
4964 if (msec > 0)
4965 {
4966# ifdef USE_START_TV
4967 struct timeval mtv;
4968
4969 /* Compute remaining wait time. */
4970 gettimeofday(&mtv, NULL);
4971 msec -= (mtv.tv_sec - start_tv.tv_sec) * 1000L
4972 + (mtv.tv_usec - start_tv.tv_usec) / 1000L;
4973# else
4974 /* Guess we got interrupted halfway. */
4975 msec = msec / 2;
4976# endif
4977 if (msec <= 0)
4978 break; /* waited long enough */
4979 }
4980#endif
4981 }
4982
4983 return (ret > 0);
4984}
4985
4986#ifndef VMS
4987
4988#ifndef NO_EXPANDPATH
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989/*
Bram Moolenaar02743632005-07-25 20:42:36 +00004990 * Expand a path into all matching files and/or directories. Handles "*",
4991 * "?", "[a-z]", "**", etc.
4992 * "path" has backslashes before chars that are not to be expanded.
4993 * Returns the number of matches found.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 */
4995 int
4996mch_expandpath(gap, path, flags)
4997 garray_T *gap;
4998 char_u *path;
4999 int flags; /* EW_* flags */
5000{
Bram Moolenaar02743632005-07-25 20:42:36 +00005001 return unix_expandpath(gap, path, 0, flags, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002}
5003#endif
5004
5005/*
5006 * mch_expand_wildcards() - this code does wild-card pattern matching using
5007 * the shell
5008 *
5009 * return OK for success, FAIL for error (you may lose some memory) and put
5010 * an error message in *file.
5011 *
5012 * num_pat is number of input patterns
5013 * pat is array of pointers to input patterns
5014 * num_file is pointer to number of matched file names
5015 * file is pointer to array of pointers to matched file names
5016 */
5017
5018#ifndef SEEK_SET
5019# define SEEK_SET 0
5020#endif
5021#ifndef SEEK_END
5022# define SEEK_END 2
5023#endif
5024
Bram Moolenaar5555acc2006-04-07 21:33:12 +00005025#define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|"
Bram Moolenaar316059c2006-01-14 21:18:42 +00005026
Bram Moolenaar071d4272004-06-13 20:20:40 +00005027/* ARGSUSED */
5028 int
5029mch_expand_wildcards(num_pat, pat, num_file, file, flags)
5030 int num_pat;
5031 char_u **pat;
5032 int *num_file;
5033 char_u ***file;
5034 int flags; /* EW_* flags */
5035{
5036 int i;
5037 size_t len;
5038 char_u *p;
5039 int dir;
5040#ifdef __EMX__
Bram Moolenaarc7247912008-01-13 12:54:11 +00005041 /*
5042 * This is the OS/2 implementation.
5043 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005044# define EXPL_ALLOC_INC 16
5045 char_u **expl_files;
5046 size_t files_alloced, files_free;
5047 char_u *buf;
5048 int has_wildcard;
5049
5050 *num_file = 0; /* default: no files found */
5051 files_alloced = EXPL_ALLOC_INC; /* how much space is allocated */
5052 files_free = EXPL_ALLOC_INC; /* how much space is not used */
5053 *file = (char_u **)alloc(sizeof(char_u **) * files_alloced);
5054 if (*file == NULL)
5055 return FAIL;
5056
5057 for (; num_pat > 0; num_pat--, pat++)
5058 {
5059 expl_files = NULL;
5060 if (vim_strchr(*pat, '$') || vim_strchr(*pat, '~'))
5061 /* expand environment var or home dir */
5062 buf = expand_env_save(*pat);
5063 else
5064 buf = vim_strsave(*pat);
5065 expl_files = NULL;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005066 has_wildcard = mch_has_exp_wildcard(buf); /* (still) wildcards? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 if (has_wildcard) /* yes, so expand them */
5068 expl_files = (char_u **)_fnexplode(buf);
5069
5070 /*
5071 * return value of buf if no wildcards left,
5072 * OR if no match AND EW_NOTFOUND is set.
5073 */
5074 if ((!has_wildcard && ((flags & EW_NOTFOUND) || mch_getperm(buf) >= 0))
5075 || (expl_files == NULL && (flags & EW_NOTFOUND)))
5076 { /* simply save the current contents of *buf */
5077 expl_files = (char_u **)alloc(sizeof(char_u **) * 2);
5078 if (expl_files != NULL)
5079 {
5080 expl_files[0] = vim_strsave(buf);
5081 expl_files[1] = NULL;
5082 }
5083 }
5084 vim_free(buf);
5085
5086 /*
5087 * Count number of names resulting from expansion,
5088 * At the same time add a backslash to the end of names that happen to
5089 * be directories, and replace slashes with backslashes.
5090 */
5091 if (expl_files)
5092 {
5093 for (i = 0; (p = expl_files[i]) != NULL; i++)
5094 {
5095 dir = mch_isdir(p);
5096 /* If we don't want dirs and this is one, skip it */
5097 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5098 continue;
5099
Bram Moolenaara2031822006-03-07 22:29:51 +00005100 /* Skip files that are not executable if we check for that. */
5101 if (!dir && (flags & EW_EXEC) && !mch_can_exe(p))
5102 continue;
5103
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 if (--files_free == 0)
5105 {
5106 /* need more room in table of pointers */
5107 files_alloced += EXPL_ALLOC_INC;
5108 *file = (char_u **)vim_realloc(*file,
5109 sizeof(char_u **) * files_alloced);
5110 if (*file == NULL)
5111 {
5112 EMSG(_(e_outofmem));
5113 *num_file = 0;
5114 return FAIL;
5115 }
5116 files_free = EXPL_ALLOC_INC;
5117 }
5118 slash_adjust(p);
5119 if (dir)
5120 {
5121 /* For a directory we add a '/', unless it's already
5122 * there. */
5123 len = STRLEN(p);
5124 if (((*file)[*num_file] = alloc(len + 2)) != NULL)
5125 {
5126 STRCPY((*file)[*num_file], p);
Bram Moolenaar654b5b52006-06-22 17:47:10 +00005127 if (!after_pathsep((*file)[*num_file],
5128 (*file)[*num_file] + len))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005129 {
5130 (*file)[*num_file][len] = psepc;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005131 (*file)[*num_file][len + 1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 }
5133 }
5134 }
5135 else
5136 {
5137 (*file)[*num_file] = vim_strsave(p);
5138 }
5139
5140 /*
5141 * Error message already given by either alloc or vim_strsave.
5142 * Should return FAIL, but returning OK works also.
5143 */
5144 if ((*file)[*num_file] == NULL)
5145 break;
5146 (*num_file)++;
5147 }
5148 _fnexplodefree((char **)expl_files);
5149 }
5150 }
5151 return OK;
5152
5153#else /* __EMX__ */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005154 /*
5155 * This is the non-OS/2 implementation (really Unix).
5156 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005157 int j;
5158 char_u *tempname;
5159 char_u *command;
5160 FILE *fd;
5161 char_u *buffer;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005162#define STYLE_ECHO 0 /* use "echo", the default */
5163#define STYLE_GLOB 1 /* use "glob", for csh */
5164#define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */
5165#define STYLE_PRINT 3 /* use "print -N", for zsh */
5166#define STYLE_BT 4 /* `cmd` expansion, execute the pattern
5167 * directly */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005168 int shell_style = STYLE_ECHO;
5169 int check_spaces;
5170 static int did_find_nul = FALSE;
5171 int ampersent = FALSE;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005172 /* vimglob() function to define for Posix shell */
5173 static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo -n \"$1\"; echo; shift; done }; vimglob >";
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174
5175 *num_file = 0; /* default: no files found */
5176 *file = NULL;
5177
5178 /*
5179 * If there are no wildcards, just copy the names to allocated memory.
5180 * Saves a lot of time, because we don't have to start a new shell.
5181 */
5182 if (!have_wildcard(num_pat, pat))
5183 return save_patterns(num_pat, pat, num_file, file);
5184
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005185# ifdef HAVE_SANDBOX
5186 /* Don't allow any shell command in the sandbox. */
5187 if (sandbox != 0 && check_secure())
5188 return FAIL;
5189# endif
5190
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 /*
5192 * Don't allow the use of backticks in secure and restricted mode.
5193 */
Bram Moolenaar0e634da2005-07-20 21:57:28 +00005194 if (secure || restricted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005195 for (i = 0; i < num_pat; ++i)
5196 if (vim_strchr(pat[i], '`') != NULL
5197 && (check_restricted() || check_secure()))
5198 return FAIL;
5199
5200 /*
5201 * get a name for the temp file
5202 */
5203 if ((tempname = vim_tempname('o')) == NULL)
5204 {
5205 EMSG(_(e_notmp));
5206 return FAIL;
5207 }
5208
5209 /*
5210 * Let the shell expand the patterns and write the result into the temp
Bram Moolenaarc7247912008-01-13 12:54:11 +00005211 * file.
5212 * STYLE_BT: NL separated
5213 * If expanding `cmd` execute it directly.
5214 * STYLE_GLOB: NUL separated
5215 * If we use *csh, "glob" will work better than "echo".
5216 * STYLE_PRINT: NL or NUL separated
5217 * If we use *zsh, "print -N" will work better than "glob".
5218 * STYLE_VIMGLOB: NL separated
5219 * If we use *sh*, we define "vimglob()".
5220 * STYLE_ECHO: space separated.
5221 * A shell we don't know, stay safe and use "echo".
Bram Moolenaar071d4272004-06-13 20:20:40 +00005222 */
5223 if (num_pat == 1 && *pat[0] == '`'
5224 && (len = STRLEN(pat[0])) > 2
5225 && *(pat[0] + len - 1) == '`')
5226 shell_style = STYLE_BT;
5227 else if ((len = STRLEN(p_sh)) >= 3)
5228 {
5229 if (STRCMP(p_sh + len - 3, "csh") == 0)
5230 shell_style = STYLE_GLOB;
5231 else if (STRCMP(p_sh + len - 3, "zsh") == 0)
5232 shell_style = STYLE_PRINT;
5233 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005234 if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh),
5235 "sh") != NULL)
5236 shell_style = STYLE_VIMGLOB;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237
Bram Moolenaarc7247912008-01-13 12:54:11 +00005238 /* Compute the length of the command. We need 2 extra bytes: for the
5239 * optional '&' and for the NUL.
5240 * Worst case: "unset nonomatch; print -N >" plus two is 29 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241 len = STRLEN(tempname) + 29;
Bram Moolenaarc7247912008-01-13 12:54:11 +00005242 if (shell_style == STYLE_VIMGLOB)
5243 len += STRLEN(sh_vimglob_func);
5244
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005245 for (i = 0; i < num_pat; ++i)
5246 {
5247 /* Count the length of the patterns in the same way as they are put in
5248 * "command" below. */
5249#ifdef USE_SYSTEM
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250 len += STRLEN(pat[i]) + 3; /* add space and two quotes */
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005251#else
5252 ++len; /* add space */
Bram Moolenaar316059c2006-01-14 21:18:42 +00005253 for (j = 0; pat[i][j] != NUL; ++j)
5254 {
5255 if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL)
5256 ++len; /* may add a backslash */
5257 ++len;
5258 }
Bram Moolenaarb23c3382005-01-31 19:09:12 +00005259#endif
5260 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261 command = alloc(len);
5262 if (command == NULL)
5263 {
5264 /* out of memory */
5265 vim_free(tempname);
5266 return FAIL;
5267 }
5268
5269 /*
5270 * Build the shell command:
5271 * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell
5272 * recognizes this).
5273 * - Add the shell command to print the expanded names.
5274 * - Add the temp file name.
5275 * - Add the file name patterns.
5276 */
5277 if (shell_style == STYLE_BT)
5278 {
Bram Moolenaar316059c2006-01-14 21:18:42 +00005279 /* change `command; command& ` to (command; command ) */
5280 STRCPY(command, "(");
5281 STRCAT(command, pat[0] + 1); /* exclude first backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 p = command + STRLEN(command) - 1;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005283 *p-- = ')'; /* remove last backtick */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284 while (p > command && vim_iswhite(*p))
5285 --p;
5286 if (*p == '&') /* remove trailing '&' */
5287 {
5288 ampersent = TRUE;
5289 *p = ' ';
5290 }
5291 STRCAT(command, ">");
5292 }
5293 else
5294 {
5295 if (flags & EW_NOTFOUND)
5296 STRCPY(command, "set nonomatch; ");
5297 else
5298 STRCPY(command, "unset nonomatch; ");
5299 if (shell_style == STYLE_GLOB)
5300 STRCAT(command, "glob >");
5301 else if (shell_style == STYLE_PRINT)
5302 STRCAT(command, "print -N >");
Bram Moolenaarc7247912008-01-13 12:54:11 +00005303 else if (shell_style == STYLE_VIMGLOB)
5304 STRCAT(command, sh_vimglob_func);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 else
5306 STRCAT(command, "echo >");
5307 }
Bram Moolenaarc7247912008-01-13 12:54:11 +00005308
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 STRCAT(command, tempname);
Bram Moolenaarc7247912008-01-13 12:54:11 +00005310
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 if (shell_style != STYLE_BT)
5312 for (i = 0; i < num_pat; ++i)
5313 {
5314 /* When using system() always add extra quotes, because the shell
Bram Moolenaar316059c2006-01-14 21:18:42 +00005315 * is started twice. Otherwise put a backslash before special
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005316 * characters, except inside ``. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005317#ifdef USE_SYSTEM
5318 STRCAT(command, " \"");
5319 STRCAT(command, pat[i]);
5320 STRCAT(command, "\"");
5321#else
Bram Moolenaar582fd852005-03-28 20:58:01 +00005322 int intick = FALSE;
5323
Bram Moolenaar071d4272004-06-13 20:20:40 +00005324 p = command + STRLEN(command);
5325 *p++ = ' ';
Bram Moolenaar316059c2006-01-14 21:18:42 +00005326 for (j = 0; pat[i][j] != NUL; ++j)
Bram Moolenaar582fd852005-03-28 20:58:01 +00005327 {
5328 if (pat[i][j] == '`')
Bram Moolenaar582fd852005-03-28 20:58:01 +00005329 intick = !intick;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005330 else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL)
5331 {
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005332 /* Remove a backslash, take char literally. But keep
Bram Moolenaar49315f62006-02-04 00:54:59 +00005333 * backslash inside backticks, before a special character
5334 * and before a backtick. */
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005335 if (intick
Bram Moolenaar49315f62006-02-04 00:54:59 +00005336 || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL
5337 || pat[i][j + 1] == '`')
Bram Moolenaard12f5c12006-01-25 22:10:52 +00005338 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005339 ++j;
Bram Moolenaar316059c2006-01-14 21:18:42 +00005340 }
5341 else if (!intick && vim_strchr(SHELL_SPECIAL,
Bram Moolenaar582fd852005-03-28 20:58:01 +00005342 pat[i][j]) != NULL)
Bram Moolenaar316059c2006-01-14 21:18:42 +00005343 /* Put a backslash before a special character, but not
5344 * when inside ``. */
5345 *p++ = '\\';
Bram Moolenaar280f1262006-01-30 00:14:18 +00005346
5347 /* Copy one character. */
5348 *p++ = pat[i][j];
Bram Moolenaar582fd852005-03-28 20:58:01 +00005349 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350 *p = NUL;
5351#endif
5352 }
5353 if (flags & EW_SILENT)
5354 show_shell_mess = FALSE;
5355 if (ampersent)
Bram Moolenaarc7247912008-01-13 12:54:11 +00005356 STRCAT(command, "&"); /* put the '&' after the redirection */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005357
5358 /*
5359 * Using zsh -G: If a pattern has no matches, it is just deleted from
5360 * the argument list, otherwise zsh gives an error message and doesn't
5361 * expand any other pattern.
5362 */
5363 if (shell_style == STYLE_PRINT)
5364 extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */
5365
5366 /*
5367 * If we use -f then shell variables set in .cshrc won't get expanded.
5368 * vi can do it, so we will too, but it is only necessary if there is a "$"
5369 * in one of the patterns, otherwise we can still use the fast option.
5370 */
5371 else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat))
5372 extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */
5373
5374 /*
5375 * execute the shell command
5376 */
5377 i = call_shell(command, SHELL_EXPAND | SHELL_SILENT);
5378
5379 /* When running in the background, give it some time to create the temp
5380 * file, but don't wait for it to finish. */
5381 if (ampersent)
5382 mch_delay(10L, TRUE);
5383
5384 extra_shell_arg = NULL; /* cleanup */
5385 show_shell_mess = TRUE;
5386 vim_free(command);
5387
Bram Moolenaarc7247912008-01-13 12:54:11 +00005388 if (i != 0) /* mch_call_shell() failed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005389 {
5390 mch_remove(tempname);
5391 vim_free(tempname);
5392 /*
5393 * With interactive completion, the error message is not printed.
5394 * However with USE_SYSTEM, I don't know how to turn off error messages
5395 * from the shell, so screen may still get messed up -- webb.
5396 */
5397#ifndef USE_SYSTEM
5398 if (!(flags & EW_SILENT))
5399#endif
5400 {
5401 redraw_later_clear(); /* probably messed up screen */
5402 msg_putchar('\n'); /* clear bottom line quickly */
5403 cmdline_row = Rows - 1; /* continue on last line */
5404#ifdef USE_SYSTEM
5405 if (!(flags & EW_SILENT))
5406#endif
5407 {
5408 MSG(_(e_wildexpand));
5409 msg_start(); /* don't overwrite this message */
5410 }
5411 }
5412 /* If a `cmd` expansion failed, don't list `cmd` as a match, even when
5413 * EW_NOTFOUND is given */
5414 if (shell_style == STYLE_BT)
5415 return FAIL;
5416 goto notfound;
5417 }
5418
5419 /*
5420 * read the names from the file into memory
5421 */
5422 fd = fopen((char *)tempname, READBIN);
5423 if (fd == NULL)
5424 {
5425 /* Something went wrong, perhaps a file name with a special char. */
5426 if (!(flags & EW_SILENT))
5427 {
5428 MSG(_(e_wildexpand));
5429 msg_start(); /* don't overwrite this message */
5430 }
5431 vim_free(tempname);
5432 goto notfound;
5433 }
5434 fseek(fd, 0L, SEEK_END);
5435 len = ftell(fd); /* get size of temp file */
5436 fseek(fd, 0L, SEEK_SET);
5437 buffer = alloc(len + 1);
5438 if (buffer == NULL)
5439 {
5440 /* out of memory */
5441 mch_remove(tempname);
5442 vim_free(tempname);
5443 fclose(fd);
5444 return FAIL;
5445 }
5446 i = fread((char *)buffer, 1, len, fd);
5447 fclose(fd);
5448 mch_remove(tempname);
5449 if (i != len)
5450 {
5451 /* unexpected read error */
5452 EMSG2(_(e_notread), tempname);
5453 vim_free(tempname);
5454 vim_free(buffer);
5455 return FAIL;
5456 }
5457 vim_free(tempname);
5458
Bram Moolenaarc7247912008-01-13 12:54:11 +00005459# if defined(__CYGWIN__) || defined(__CYGWIN32__)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005460 /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */
5461 p = buffer;
5462 for (i = 0; i < len; ++i)
5463 if (!(buffer[i] == CAR && buffer[i + 1] == NL))
5464 *p++ = buffer[i];
5465 len = p - buffer;
5466# endif
5467
5468
5469 /* file names are separated with Space */
5470 if (shell_style == STYLE_ECHO)
5471 {
5472 buffer[len] = '\n'; /* make sure the buffer ends in NL */
5473 p = buffer;
5474 for (i = 0; *p != '\n'; ++i) /* count number of entries */
5475 {
5476 while (*p != ' ' && *p != '\n')
5477 ++p;
5478 p = skipwhite(p); /* skip to next entry */
5479 }
5480 }
5481 /* file names are separated with NL */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005482 else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 {
5484 buffer[len] = NUL; /* make sure the buffer ends in NUL */
5485 p = buffer;
5486 for (i = 0; *p != NUL; ++i) /* count number of entries */
5487 {
5488 while (*p != '\n' && *p != NUL)
5489 ++p;
5490 if (*p != NUL)
5491 ++p;
5492 p = skipwhite(p); /* skip leading white space */
5493 }
5494 }
5495 /* file names are separated with NUL */
5496 else
5497 {
5498 /*
5499 * Some versions of zsh use spaces instead of NULs to separate
5500 * results. Only do this when there is no NUL before the end of the
5501 * buffer, otherwise we would never be able to use file names with
5502 * embedded spaces when zsh does use NULs.
5503 * When we found a NUL once, we know zsh is OK, set did_find_nul and
5504 * don't check for spaces again.
5505 */
5506 check_spaces = FALSE;
5507 if (shell_style == STYLE_PRINT && !did_find_nul)
5508 {
5509 /* If there is a NUL, set did_find_nul, else set check_spaces */
5510 if (len && (int)STRLEN(buffer) < len - 1)
5511 did_find_nul = TRUE;
5512 else
5513 check_spaces = TRUE;
5514 }
5515
5516 /*
5517 * Make sure the buffer ends with a NUL. For STYLE_PRINT there
5518 * already is one, for STYLE_GLOB it needs to be added.
5519 */
5520 if (len && buffer[len - 1] == NUL)
5521 --len;
5522 else
5523 buffer[len] = NUL;
5524 i = 0;
5525 for (p = buffer; p < buffer + len; ++p)
5526 if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */
5527 {
5528 ++i;
5529 *p = NUL;
5530 }
5531 if (len)
5532 ++i; /* count last entry */
5533 }
5534 if (i == 0)
5535 {
5536 /*
5537 * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I".
5538 * /bin/sh will happily expand it to nothing rather than returning an
5539 * error; and hey, it's good to check anyway -- webb.
5540 */
5541 vim_free(buffer);
5542 goto notfound;
5543 }
5544 *num_file = i;
5545 *file = (char_u **)alloc(sizeof(char_u *) * i);
5546 if (*file == NULL)
5547 {
5548 /* out of memory */
5549 vim_free(buffer);
5550 return FAIL;
5551 }
5552
5553 /*
5554 * Isolate the individual file names.
5555 */
5556 p = buffer;
5557 for (i = 0; i < *num_file; ++i)
5558 {
5559 (*file)[i] = p;
5560 /* Space or NL separates */
Bram Moolenaarc7247912008-01-13 12:54:11 +00005561 if (shell_style == STYLE_ECHO || shell_style == STYLE_BT
5562 || shell_style == STYLE_VIMGLOB)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563 {
Bram Moolenaar49315f62006-02-04 00:54:59 +00005564 while (!(shell_style == STYLE_ECHO && *p == ' ')
5565 && *p != '\n' && *p != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 ++p;
5567 if (p == buffer + len) /* last entry */
5568 *p = NUL;
5569 else
5570 {
5571 *p++ = NUL;
5572 p = skipwhite(p); /* skip to next entry */
5573 }
5574 }
5575 else /* NUL separates */
5576 {
5577 while (*p && p < buffer + len) /* skip entry */
5578 ++p;
5579 ++p; /* skip NUL */
5580 }
5581 }
5582
5583 /*
5584 * Move the file names to allocated memory.
5585 */
5586 for (j = 0, i = 0; i < *num_file; ++i)
5587 {
5588 /* Require the files to exist. Helps when using /bin/sh */
5589 if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0)
5590 continue;
5591
5592 /* check if this entry should be included */
5593 dir = (mch_isdir((*file)[i]));
5594 if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE)))
5595 continue;
5596
Bram Moolenaara2031822006-03-07 22:29:51 +00005597 /* Skip files that are not executable if we check for that. */
5598 if (!dir && (flags & EW_EXEC) && !mch_can_exe((*file)[i]))
5599 continue;
5600
Bram Moolenaar071d4272004-06-13 20:20:40 +00005601 p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir));
5602 if (p)
5603 {
5604 STRCPY(p, (*file)[i]);
5605 if (dir)
Bram Moolenaarb2389092008-01-03 17:56:04 +00005606 add_pathsep(p); /* add '/' to a directory name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005607 (*file)[j++] = p;
5608 }
5609 }
5610 vim_free(buffer);
5611 *num_file = j;
5612
5613 if (*num_file == 0) /* rejected all entries */
5614 {
5615 vim_free(*file);
5616 *file = NULL;
5617 goto notfound;
5618 }
5619
5620 return OK;
5621
5622notfound:
5623 if (flags & EW_NOTFOUND)
5624 return save_patterns(num_pat, pat, num_file, file);
5625 return FAIL;
5626
5627#endif /* __EMX__ */
5628}
5629
5630#endif /* VMS */
5631
5632#ifndef __EMX__
5633 static int
5634save_patterns(num_pat, pat, num_file, file)
5635 int num_pat;
5636 char_u **pat;
5637 int *num_file;
5638 char_u ***file;
5639{
5640 int i;
Bram Moolenaard8b02732005-01-14 21:48:43 +00005641 char_u *s;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642
5643 *file = (char_u **)alloc(num_pat * sizeof(char_u *));
5644 if (*file == NULL)
5645 return FAIL;
5646 for (i = 0; i < num_pat; i++)
Bram Moolenaard8b02732005-01-14 21:48:43 +00005647 {
5648 s = vim_strsave(pat[i]);
5649 if (s != NULL)
5650 /* Be compatible with expand_filename(): halve the number of
5651 * backslashes. */
5652 backslash_halve(s);
5653 (*file)[i] = s;
5654 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005655 *num_file = num_pat;
5656 return OK;
5657}
5658#endif
5659
5660
5661/*
5662 * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can
5663 * expand.
5664 */
5665 int
5666mch_has_exp_wildcard(p)
5667 char_u *p;
5668{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005669 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005670 {
5671#ifndef OS2
5672 if (*p == '\\' && p[1] != NUL)
5673 ++p;
5674 else
5675#endif
5676 if (vim_strchr((char_u *)
5677#ifdef VMS
5678 "*?%"
5679#else
5680# ifdef OS2
5681 "*?"
5682# else
5683 "*?[{'"
5684# endif
5685#endif
5686 , *p) != NULL)
5687 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 }
5689 return FALSE;
5690}
5691
5692/*
5693 * Return TRUE if the string "p" contains a wildcard.
5694 * Don't recognize '~' at the end as a wildcard.
5695 */
5696 int
5697mch_has_wildcard(p)
5698 char_u *p;
5699{
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005700 for ( ; *p; mb_ptr_adv(p))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005701 {
5702#ifndef OS2
5703 if (*p == '\\' && p[1] != NUL)
5704 ++p;
5705 else
5706#endif
5707 if (vim_strchr((char_u *)
5708#ifdef VMS
5709 "*?%$"
5710#else
5711# ifdef OS2
5712# ifdef VIM_BACKTICK
5713 "*?$`"
5714# else
5715 "*?$"
5716# endif
5717# else
5718 "*?[{`'$"
5719# endif
5720#endif
5721 , *p) != NULL
5722 || (*p == '~' && p[1] != NUL))
5723 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 }
5725 return FALSE;
5726}
5727
5728#ifndef __EMX__
5729 static int
5730have_wildcard(num, file)
5731 int num;
5732 char_u **file;
5733{
5734 int i;
5735
5736 for (i = 0; i < num; i++)
5737 if (mch_has_wildcard(file[i]))
5738 return 1;
5739 return 0;
5740}
5741
5742 static int
5743have_dollars(num, file)
5744 int num;
5745 char_u **file;
5746{
5747 int i;
5748
5749 for (i = 0; i < num; i++)
5750 if (vim_strchr(file[i], '$') != NULL)
5751 return TRUE;
5752 return FALSE;
5753}
5754#endif /* ifndef __EMX__ */
5755
5756#ifndef HAVE_RENAME
5757/*
5758 * Scaled-down version of rename(), which is missing in Xenix.
5759 * This version can only move regular files and will fail if the
5760 * destination exists.
5761 */
5762 int
5763mch_rename(src, dest)
5764 const char *src, *dest;
5765{
5766 struct stat st;
5767
5768 if (stat(dest, &st) >= 0) /* fail if destination exists */
5769 return -1;
5770 if (link(src, dest) != 0) /* link file to new name */
5771 return -1;
5772 if (mch_remove(src) == 0) /* delete link to old name */
5773 return 0;
5774 return -1;
5775}
5776#endif /* !HAVE_RENAME */
5777
5778#ifdef FEAT_MOUSE_GPM
5779/*
5780 * Initializes connection with gpm (if it isn't already opened)
5781 * Return 1 if succeeded (or connection already opened), 0 if failed
5782 */
5783 static int
5784gpm_open()
5785{
5786 static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */
5787
5788 if (!gpm_flag)
5789 {
5790 gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN);
5791 gpm_connect.defaultMask = ~GPM_HARD;
5792 /* Default handling for mouse move*/
5793 gpm_connect.minMod = 0; /* Handle any modifier keys */
5794 gpm_connect.maxMod = 0xffff;
5795 if (Gpm_Open(&gpm_connect, 0) > 0)
5796 {
5797 /* gpm library tries to handling TSTP causes
5798 * problems. Anyways, we close connection to Gpm whenever
5799 * we are going to suspend or starting an external process
Bram Moolenaarc2a27c32007-12-01 16:19:33 +00005800 * so we shouldn't have problem with this
Bram Moolenaar071d4272004-06-13 20:20:40 +00005801 */
5802 signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL);
5803 return 1; /* succeed */
5804 }
5805 if (gpm_fd == -2)
5806 Gpm_Close(); /* We don't want to talk to xterm via gpm */
5807 return 0;
5808 }
5809 return 1; /* already open */
5810}
5811
5812/*
5813 * Closes connection to gpm
Bram Moolenaar1a3d0862007-08-30 09:47:38 +00005814 * returns non-zero if connection successfully closed
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 */
5816 static void
5817gpm_close()
5818{
5819 if (gpm_flag && gpm_fd >= 0) /* if Open */
5820 Gpm_Close();
5821}
5822
5823/* Reads gpm event and adds special keys to input buf. Returns length of
5824 * generated key sequence.
5825 * This function is made after gui_send_mouse_event
5826 */
5827 static int
5828mch_gpm_process()
5829{
5830 int button;
5831 static Gpm_Event gpm_event;
5832 char_u string[6];
5833 int_u vim_modifiers;
5834 int row,col;
5835 unsigned char buttons_mask;
5836 unsigned char gpm_modifiers;
5837 static unsigned char old_buttons = 0;
5838
5839 Gpm_GetEvent(&gpm_event);
5840
5841#ifdef FEAT_GUI
5842 /* Don't put events in the input queue now. */
5843 if (hold_gui_events)
5844 return 0;
5845#endif
5846
5847 row = gpm_event.y - 1;
5848 col = gpm_event.x - 1;
5849
5850 string[0] = ESC; /* Our termcode */
5851 string[1] = 'M';
5852 string[2] = 'G';
5853 switch (GPM_BARE_EVENTS(gpm_event.type))
5854 {
5855 case GPM_DRAG:
5856 string[3] = MOUSE_DRAG;
5857 break;
5858 case GPM_DOWN:
5859 buttons_mask = gpm_event.buttons & ~old_buttons;
5860 old_buttons = gpm_event.buttons;
5861 switch (buttons_mask)
5862 {
5863 case GPM_B_LEFT:
5864 button = MOUSE_LEFT;
5865 break;
5866 case GPM_B_MIDDLE:
5867 button = MOUSE_MIDDLE;
5868 break;
5869 case GPM_B_RIGHT:
5870 button = MOUSE_RIGHT;
5871 break;
5872 default:
5873 return 0;
5874 /*Don't know what to do. Can more than one button be
5875 * reported in one event? */
5876 }
5877 string[3] = (char_u)(button | 0x20);
5878 SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1);
5879 break;
5880 case GPM_UP:
5881 string[3] = MOUSE_RELEASE;
5882 old_buttons &= ~gpm_event.buttons;
5883 break;
5884 default:
5885 return 0;
5886 }
5887 /*This code is based on gui_x11_mouse_cb in gui_x11.c */
5888 gpm_modifiers = gpm_event.modifiers;
5889 vim_modifiers = 0x0;
5890 /* I ignore capslock stats. Aren't we all just hate capslock mixing with
5891 * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and
5892 * K_CAPSSHIFT is defined 8, so it probably isn't even reported
5893 */
5894 if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL)))
5895 vim_modifiers |= MOUSE_SHIFT;
5896
5897 if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL)))
5898 vim_modifiers |= MOUSE_CTRL;
5899 if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR)))
5900 vim_modifiers |= MOUSE_ALT;
5901 string[3] |= vim_modifiers;
5902 string[4] = (char_u)(col + ' ' + 1);
5903 string[5] = (char_u)(row + ' ' + 1);
5904 add_to_input_buf(string, 6);
5905 return 6;
5906}
5907#endif /* FEAT_MOUSE_GPM */
5908
5909#if defined(FEAT_LIBCALL) || defined(PROTO)
5910typedef char_u * (*STRPROCSTR)__ARGS((char_u *));
5911typedef char_u * (*INTPROCSTR)__ARGS((int));
5912typedef int (*STRPROCINT)__ARGS((char_u *));
5913typedef int (*INTPROCINT)__ARGS((int));
5914
5915/*
5916 * Call a DLL routine which takes either a string or int param
5917 * and returns an allocated string.
5918 */
5919 int
5920mch_libcall(libname, funcname, argstring, argint, string_result, number_result)
5921 char_u *libname;
5922 char_u *funcname;
5923 char_u *argstring; /* NULL when using a argint */
5924 int argint;
5925 char_u **string_result;/* NULL when using number_result */
5926 int *number_result;
5927{
5928# if defined(USE_DLOPEN)
5929 void *hinstLib;
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005930 char *dlerr = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005931# else
5932 shl_t hinstLib;
5933# endif
5934 STRPROCSTR ProcAdd;
5935 INTPROCSTR ProcAddI;
5936 char_u *retval_str = NULL;
5937 int retval_int = 0;
5938 int success = FALSE;
5939
Bram Moolenaarb39ef122006-06-22 16:19:31 +00005940 /*
5941 * Get a handle to the DLL module.
5942 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005943# if defined(USE_DLOPEN)
Bram Moolenaarb39ef122006-06-22 16:19:31 +00005944 /* First clear any error, it's not cleared by the dlopen() call. */
5945 (void)dlerror();
5946
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947 hinstLib = dlopen((char *)libname, RTLD_LAZY
5948# ifdef RTLD_LOCAL
5949 | RTLD_LOCAL
5950# endif
5951 );
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005952 if (hinstLib == NULL)
5953 {
5954 /* "dlerr" must be used before dlclose() */
5955 dlerr = (char *)dlerror();
5956 if (dlerr != NULL)
5957 EMSG2(_("dlerror = \"%s\""), dlerr);
5958 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005959# else
5960 hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L);
5961# endif
5962
5963 /* If the handle is valid, try to get the function address. */
5964 if (hinstLib != NULL)
5965 {
5966# ifdef HAVE_SETJMP_H
5967 /*
5968 * Catch a crash when calling the library function. For example when
5969 * using a number where a string pointer is expected.
5970 */
5971 mch_startjmp();
5972 if (SETJMP(lc_jump_env) != 0)
5973 {
5974 success = FALSE;
Bram Moolenaard68071d2006-05-02 22:08:30 +00005975# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005976 dlerr = NULL;
Bram Moolenaard68071d2006-05-02 22:08:30 +00005977# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005978 mch_didjmp();
5979 }
5980 else
5981# endif
5982 {
5983 retval_str = NULL;
5984 retval_int = 0;
5985
5986 if (argstring != NULL)
5987 {
5988# if defined(USE_DLOPEN)
5989 ProcAdd = (STRPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005990 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005991# else
5992 if (shl_findsym(&hinstLib, (const char *)funcname,
5993 TYPE_PROCEDURE, (void *)&ProcAdd) < 0)
5994 ProcAdd = NULL;
5995# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00005996 if ((success = (ProcAdd != NULL
5997# if defined(USE_DLOPEN)
5998 && dlerr == NULL
5999# endif
6000 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006001 {
6002 if (string_result == NULL)
6003 retval_int = ((STRPROCINT)ProcAdd)(argstring);
6004 else
6005 retval_str = (ProcAdd)(argstring);
6006 }
6007 }
6008 else
6009 {
6010# if defined(USE_DLOPEN)
6011 ProcAddI = (INTPROCSTR)dlsym(hinstLib, (const char *)funcname);
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006012 dlerr = (char *)dlerror();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006013# else
6014 if (shl_findsym(&hinstLib, (const char *)funcname,
6015 TYPE_PROCEDURE, (void *)&ProcAddI) < 0)
6016 ProcAddI = NULL;
6017# endif
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006018 if ((success = (ProcAddI != NULL
6019# if defined(USE_DLOPEN)
6020 && dlerr == NULL
6021# endif
6022 )))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006023 {
6024 if (string_result == NULL)
6025 retval_int = ((INTPROCINT)ProcAddI)(argint);
6026 else
6027 retval_str = (ProcAddI)(argint);
6028 }
6029 }
6030
6031 /* Save the string before we free the library. */
6032 /* Assume that a "1" or "-1" result is an illegal pointer. */
6033 if (string_result == NULL)
6034 *number_result = retval_int;
6035 else if (retval_str != NULL
6036 && retval_str != (char_u *)1
6037 && retval_str != (char_u *)-1)
6038 *string_result = vim_strsave(retval_str);
6039 }
6040
6041# ifdef HAVE_SETJMP_H
6042 mch_endjmp();
6043# ifdef SIGHASARG
6044 if (lc_signal != 0)
6045 {
6046 int i;
6047
6048 /* try to find the name of this signal */
6049 for (i = 0; signal_info[i].sig != -1; i++)
6050 if (lc_signal == signal_info[i].sig)
6051 break;
6052 EMSG2("E368: got SIG%s in libcall()", signal_info[i].name);
6053 }
6054# endif
6055# endif
6056
Bram Moolenaar071d4272004-06-13 20:20:40 +00006057# if defined(USE_DLOPEN)
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00006058 /* "dlerr" must be used before dlclose() */
6059 if (dlerr != NULL)
6060 EMSG2(_("dlerror = \"%s\""), dlerr);
6061
6062 /* Free the DLL module. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006063 (void)dlclose(hinstLib);
6064# else
6065 (void)shl_unload(hinstLib);
6066# endif
6067 }
6068
6069 if (!success)
6070 {
6071 EMSG2(_(e_libcall), funcname);
6072 return FAIL;
6073 }
6074
6075 return OK;
6076}
6077#endif
6078
6079#if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO)
6080static int xterm_trace = -1; /* default: disabled */
6081static int xterm_button;
6082
6083/*
6084 * Setup a dummy window for X selections in a terminal.
6085 */
6086 void
6087setup_term_clip()
6088{
6089 int z = 0;
6090 char *strp = "";
6091 Widget AppShell;
6092
6093 if (!x_connect_to_server())
6094 return;
6095
6096 open_app_context();
6097 if (app_context != NULL && xterm_Shell == (Widget)0)
6098 {
6099 int (*oldhandler)();
6100#if defined(HAVE_SETJMP_H)
6101 int (*oldIOhandler)();
6102#endif
6103# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6104 struct timeval start_tv;
6105
6106 if (p_verbose > 0)
6107 gettimeofday(&start_tv, NULL);
6108# endif
6109
6110 /* Ignore X errors while opening the display */
6111 oldhandler = XSetErrorHandler(x_error_check);
6112
6113#if defined(HAVE_SETJMP_H)
6114 /* Ignore X IO errors while opening the display */
6115 oldIOhandler = XSetIOErrorHandler(x_IOerror_check);
6116 mch_startjmp();
6117 if (SETJMP(lc_jump_env) != 0)
6118 {
6119 mch_didjmp();
6120 xterm_dpy = NULL;
6121 }
6122 else
6123#endif
6124 {
6125 xterm_dpy = XtOpenDisplay(app_context, xterm_display,
6126 "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp);
6127#if defined(HAVE_SETJMP_H)
6128 mch_endjmp();
6129#endif
6130 }
6131
6132#if defined(HAVE_SETJMP_H)
6133 /* Now handle X IO errors normally. */
6134 (void)XSetIOErrorHandler(oldIOhandler);
6135#endif
6136 /* Now handle X errors normally. */
6137 (void)XSetErrorHandler(oldhandler);
6138
6139 if (xterm_dpy == NULL)
6140 {
6141 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006142 verb_msg((char_u *)_("Opening the X display failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006143 return;
6144 }
6145
6146 /* Catch terminating error of the X server connection. */
6147 (void)XSetIOErrorHandler(x_IOerror_handler);
6148
6149# if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
6150 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006151 {
6152 verbose_enter();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006153 xopen_message(&start_tv);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006154 verbose_leave();
6155 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006156# endif
6157
6158 /* Create a Shell to make converters work. */
6159 AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm",
6160 applicationShellWidgetClass, xterm_dpy,
6161 NULL);
6162 if (AppShell == (Widget)0)
6163 return;
6164 xterm_Shell = XtVaCreatePopupShell("VIM",
6165 topLevelShellWidgetClass, AppShell,
6166 XtNmappedWhenManaged, 0,
6167 XtNwidth, 1,
6168 XtNheight, 1,
6169 NULL);
6170 if (xterm_Shell == (Widget)0)
6171 return;
6172
6173 x11_setup_atoms(xterm_dpy);
6174 if (x11_display == NULL)
6175 x11_display = xterm_dpy;
6176
6177 XtRealizeWidget(xterm_Shell);
6178 XSync(xterm_dpy, False);
6179 xterm_update();
6180 }
6181 if (xterm_Shell != (Widget)0)
6182 {
6183 clip_init(TRUE);
6184 if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL)
6185 x11_window = (Window)atol(strp);
6186 /* Check if $WINDOWID is valid. */
6187 if (test_x11_window(xterm_dpy) == FAIL)
6188 x11_window = 0;
6189 if (x11_window != 0)
6190 xterm_trace = 0;
6191 }
6192}
6193
6194 void
6195start_xterm_trace(button)
6196 int button;
6197{
6198 if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0)
6199 return;
6200 xterm_trace = 1;
6201 xterm_button = button;
6202 do_xterm_trace();
6203}
6204
6205
6206 void
6207stop_xterm_trace()
6208{
6209 if (xterm_trace < 0)
6210 return;
6211 xterm_trace = 0;
6212}
6213
6214/*
6215 * Query the xterm pointer and generate mouse termcodes if necessary
6216 * return TRUE if dragging is active, else FALSE
6217 */
6218 static int
6219do_xterm_trace()
6220{
6221 Window root, child;
6222 int root_x, root_y;
6223 int win_x, win_y;
6224 int row, col;
6225 int_u mask_return;
6226 char_u buf[50];
6227 char_u *strp;
6228 long got_hints;
6229 static char_u *mouse_code;
6230 static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER};
6231 static int prev_row = 0, prev_col = 0;
6232 static XSizeHints xterm_hints;
6233
6234 if (xterm_trace <= 0)
6235 return FALSE;
6236
6237 if (xterm_trace == 1)
6238 {
6239 /* Get the hints just before tracking starts. The font size might
Bram Moolenaara6c2c912008-01-13 15:31:00 +00006240 * have changed recently. */
6241 if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints)
6242 || !(got_hints & PResizeInc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006243 || xterm_hints.width_inc <= 1
6244 || xterm_hints.height_inc <= 1)
6245 {
6246 xterm_trace = -1; /* Not enough data -- disable tracing */
6247 return FALSE;
6248 }
6249
6250 /* Rely on the same mouse code for the duration of this */
6251 mouse_code = find_termcode(mouse_name);
6252 prev_row = mouse_row;
6253 prev_row = mouse_col;
6254 xterm_trace = 2;
6255
6256 /* Find the offset of the chars, there might be a scrollbar on the
6257 * left of the window and/or a menu on the top (eterm etc.) */
6258 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6259 &win_x, &win_y, &mask_return);
6260 xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row)
6261 - (xterm_hints.height_inc / 2);
6262 if (xterm_hints.y <= xterm_hints.height_inc / 2)
6263 xterm_hints.y = 2;
6264 xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col)
6265 - (xterm_hints.width_inc / 2);
6266 if (xterm_hints.x <= xterm_hints.width_inc / 2)
6267 xterm_hints.x = 2;
6268 return TRUE;
6269 }
6270 if (mouse_code == NULL)
6271 {
6272 xterm_trace = 0;
6273 return FALSE;
6274 }
6275
6276 XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y,
6277 &win_x, &win_y, &mask_return);
6278
6279 row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc);
6280 col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc);
6281 if (row == prev_row && col == prev_col)
6282 return TRUE;
6283
6284 STRCPY(buf, mouse_code);
6285 strp = buf + STRLEN(buf);
6286 *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20;
6287 *strp++ = (char_u)(col + ' ' + 1);
6288 *strp++ = (char_u)(row + ' ' + 1);
6289 *strp = 0;
6290 add_to_input_buf(buf, STRLEN(buf));
6291
6292 prev_row = row;
6293 prev_col = col;
6294 return TRUE;
6295}
6296
6297# if defined(FEAT_GUI) || defined(PROTO)
6298/*
6299 * Destroy the display, window and app_context. Required for GTK.
6300 */
6301 void
6302clear_xterm_clip()
6303{
6304 if (xterm_Shell != (Widget)0)
6305 {
6306 XtDestroyWidget(xterm_Shell);
6307 xterm_Shell = (Widget)0;
6308 }
6309 if (xterm_dpy != NULL)
6310 {
Bram Moolenaare8208012008-06-20 09:59:25 +00006311# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006312 /* Lesstif and Solaris crash here, lose some memory */
6313 XtCloseDisplay(xterm_dpy);
Bram Moolenaare8208012008-06-20 09:59:25 +00006314# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006315 if (x11_display == xterm_dpy)
6316 x11_display = NULL;
6317 xterm_dpy = NULL;
6318 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006319# if 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00006320 if (app_context != (XtAppContext)NULL)
6321 {
6322 /* Lesstif and Solaris crash here, lose some memory */
6323 XtDestroyApplicationContext(app_context);
6324 app_context = (XtAppContext)NULL;
6325 }
Bram Moolenaare8208012008-06-20 09:59:25 +00006326# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006327}
6328# endif
6329
6330/*
6331 * Catch up with any queued X events. This may put keyboard input into the
6332 * input buffer, call resize call-backs, trigger timers etc. If there is
6333 * nothing in the X event queue (& no timers pending), then we return
6334 * immediately.
6335 */
6336 static void
6337xterm_update()
6338{
6339 XEvent event;
6340
6341 while (XtAppPending(app_context) && !vim_is_input_buf_full())
6342 {
6343 XtAppNextEvent(app_context, &event);
6344#ifdef FEAT_CLIENTSERVER
6345 {
6346 XPropertyEvent *e = (XPropertyEvent *)&event;
6347
6348 if (e->type == PropertyNotify && e->window == commWindow
6349 && e->atom == commProperty && e->state == PropertyNewValue)
6350 serverEventProc(xterm_dpy, &event);
6351 }
6352#endif
6353 XtDispatchEvent(&event);
6354 }
6355}
6356
6357 int
6358clip_xterm_own_selection(cbd)
6359 VimClipboard *cbd;
6360{
6361 if (xterm_Shell != (Widget)0)
6362 return clip_x11_own_selection(xterm_Shell, cbd);
6363 return FAIL;
6364}
6365
6366 void
6367clip_xterm_lose_selection(cbd)
6368 VimClipboard *cbd;
6369{
6370 if (xterm_Shell != (Widget)0)
6371 clip_x11_lose_selection(xterm_Shell, cbd);
6372}
6373
6374 void
6375clip_xterm_request_selection(cbd)
6376 VimClipboard *cbd;
6377{
6378 if (xterm_Shell != (Widget)0)
6379 clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd);
6380}
6381
6382 void
6383clip_xterm_set_selection(cbd)
6384 VimClipboard *cbd;
6385{
6386 clip_x11_set_selection(cbd);
6387}
6388#endif
6389
6390
6391#if defined(USE_XSMP) || defined(PROTO)
6392/*
6393 * Code for X Session Management Protocol.
6394 */
6395static void xsmp_handle_save_yourself __ARGS((SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast));
6396static void xsmp_die __ARGS((SmcConn smc_conn, SmPointer client_data));
6397static void xsmp_save_complete __ARGS((SmcConn smc_conn, SmPointer client_data));
6398static void xsmp_shutdown_cancelled __ARGS((SmcConn smc_conn, SmPointer client_data));
6399static void xsmp_ice_connection __ARGS((IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData));
6400
6401
6402# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6403static void xsmp_handle_interaction __ARGS((SmcConn smc_conn, SmPointer client_data));
6404
6405/*
6406 * This is our chance to ask the user if they want to save,
6407 * or abort the logout
6408 */
6409/*ARGSUSED*/
6410 static void
6411xsmp_handle_interaction(smc_conn, client_data)
6412 SmcConn smc_conn;
6413 SmPointer client_data;
6414{
6415 cmdmod_T save_cmdmod;
6416 int cancel_shutdown = False;
6417
6418 save_cmdmod = cmdmod;
6419 cmdmod.confirm = TRUE;
6420 if (check_changed_any(FALSE))
6421 /* Mustn't logout */
6422 cancel_shutdown = True;
6423 cmdmod = save_cmdmod;
6424 setcursor(); /* position cursor */
6425 out_flush();
6426
6427 /* Done interaction */
6428 SmcInteractDone(smc_conn, cancel_shutdown);
6429
6430 /* Finish off
6431 * Only end save-yourself here if we're not cancelling shutdown;
6432 * we'll get a cancelled callback later in which we'll end it.
6433 * Hopefully get around glitchy SMs (like GNOME-1)
6434 */
6435 if (!cancel_shutdown)
6436 {
6437 xsmp.save_yourself = False;
6438 SmcSaveYourselfDone(smc_conn, True);
6439 }
6440}
6441# endif
6442
6443/*
6444 * Callback that starts save-yourself.
6445 */
6446/*ARGSUSED*/
6447 static void
6448xsmp_handle_save_yourself(smc_conn, client_data, save_type,
6449 shutdown, interact_style, fast)
6450 SmcConn smc_conn;
6451 SmPointer client_data;
6452 int save_type;
6453 Bool shutdown;
6454 int interact_style;
6455 Bool fast;
6456{
6457 /* Handle already being in saveyourself */
6458 if (xsmp.save_yourself)
6459 SmcSaveYourselfDone(smc_conn, True);
6460 xsmp.save_yourself = True;
6461 xsmp.shutdown = shutdown;
6462
6463 /* First up, preserve all files */
6464 out_flush();
6465 ml_sync_all(FALSE, FALSE); /* preserve all swap files */
6466
6467 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006468 verb_msg((char_u *)_("XSMP handling save-yourself request"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006469
6470# if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT)
6471 /* Now see if we can ask about unsaved files */
6472 if (shutdown && !fast && gui.in_use)
6473 /* Need to interact with user, but need SM's permission */
6474 SmcInteractRequest(smc_conn, SmDialogError,
6475 xsmp_handle_interaction, client_data);
6476 else
6477# endif
6478 {
6479 /* Can stop the cycle here */
6480 SmcSaveYourselfDone(smc_conn, True);
6481 xsmp.save_yourself = False;
6482 }
6483}
6484
6485
6486/*
6487 * Callback to warn us of imminent death.
6488 */
6489/*ARGSUSED*/
6490 static void
6491xsmp_die(smc_conn, client_data)
6492 SmcConn smc_conn;
6493 SmPointer client_data;
6494{
6495 xsmp_close();
6496
6497 /* quit quickly leaving swapfiles for modified buffers behind */
6498 getout_preserve_modified(0);
6499}
6500
6501
6502/*
6503 * Callback to tell us that save-yourself has completed.
6504 */
6505/*ARGSUSED*/
6506 static void
6507xsmp_save_complete(smc_conn, client_data)
6508 SmcConn smc_conn;
6509 SmPointer client_data;
6510{
6511 xsmp.save_yourself = False;
6512}
6513
6514
6515/*
6516 * Callback to tell us that an instigated shutdown was cancelled
6517 * (maybe even by us)
6518 */
6519/*ARGSUSED*/
6520 static void
6521xsmp_shutdown_cancelled(smc_conn, client_data)
6522 SmcConn smc_conn;
6523 SmPointer client_data;
6524{
6525 if (xsmp.save_yourself)
6526 SmcSaveYourselfDone(smc_conn, True);
6527 xsmp.save_yourself = False;
6528 xsmp.shutdown = False;
6529}
6530
6531
6532/*
6533 * Callback to tell us that a new ICE connection has been established.
6534 */
6535/*ARGSUSED*/
6536 static void
6537xsmp_ice_connection(iceConn, clientData, opening, watchData)
6538 IceConn iceConn;
6539 IcePointer clientData;
6540 Bool opening;
6541 IcePointer *watchData;
6542{
6543 /* Intercept creation of ICE connection fd */
6544 if (opening)
6545 {
6546 xsmp_icefd = IceConnectionNumber(iceConn);
6547 IceRemoveConnectionWatch(xsmp_ice_connection, NULL);
6548 }
6549}
6550
6551
6552/* Handle any ICE processing that's required; return FAIL if SM lost */
6553 int
6554xsmp_handle_requests()
6555{
6556 Bool rep;
6557
6558 if (IceProcessMessages(xsmp.iceconn, NULL, &rep)
6559 == IceProcessMessagesIOError)
6560 {
6561 /* Lost ICE */
6562 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006563 verb_msg((char_u *)_("XSMP lost ICE connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006564 xsmp_close();
6565 return FAIL;
6566 }
6567 else
6568 return OK;
6569}
6570
6571static int dummy;
6572
6573/* Set up X Session Management Protocol */
6574 void
6575xsmp_init(void)
6576{
6577 char errorstring[80];
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578 SmcCallbacks smcallbacks;
6579#if 0
6580 SmPropValue smname;
6581 SmProp smnameprop;
6582 SmProp *smprops[1];
6583#endif
6584
6585 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006586 verb_msg((char_u *)_("XSMP opening connection"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006587
6588 xsmp.save_yourself = xsmp.shutdown = False;
6589
6590 /* Set up SM callbacks - must have all, even if they're not used */
6591 smcallbacks.save_yourself.callback = xsmp_handle_save_yourself;
6592 smcallbacks.save_yourself.client_data = NULL;
6593 smcallbacks.die.callback = xsmp_die;
6594 smcallbacks.die.client_data = NULL;
6595 smcallbacks.save_complete.callback = xsmp_save_complete;
6596 smcallbacks.save_complete.client_data = NULL;
6597 smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled;
6598 smcallbacks.shutdown_cancelled.client_data = NULL;
6599
6600 /* Set up a watch on ICE connection creations. The "dummy" argument is
6601 * apparently required for FreeBSD (we get a BUS error when using NULL). */
6602 if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0)
6603 {
6604 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006605 verb_msg((char_u *)_("XSMP ICE connection watch failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00006606 return;
6607 }
6608
6609 /* Create an SM connection */
6610 xsmp.smcconn = SmcOpenConnection(
6611 NULL,
6612 NULL,
6613 SmProtoMajor,
6614 SmProtoMinor,
6615 SmcSaveYourselfProcMask | SmcDieProcMask
6616 | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask,
6617 &smcallbacks,
6618 NULL,
Bram Moolenaare8208012008-06-20 09:59:25 +00006619 &xsmp.clientid,
Bram Moolenaar071d4272004-06-13 20:20:40 +00006620 sizeof(errorstring),
6621 errorstring);
6622 if (xsmp.smcconn == NULL)
6623 {
6624 char errorreport[132];
Bram Moolenaar051b7822005-05-19 21:00:46 +00006625
Bram Moolenaar071d4272004-06-13 20:20:40 +00006626 if (p_verbose > 0)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00006627 {
6628 vim_snprintf(errorreport, sizeof(errorreport),
6629 _("XSMP SmcOpenConnection failed: %s"), errorstring);
6630 verb_msg((char_u *)errorreport);
6631 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006632 return;
6633 }
6634 xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn);
6635
6636#if 0
6637 /* ID ourselves */
6638 smname.value = "vim";
6639 smname.length = 3;
6640 smnameprop.name = "SmProgram";
6641 smnameprop.type = "SmARRAY8";
6642 smnameprop.num_vals = 1;
6643 smnameprop.vals = &smname;
6644
6645 smprops[0] = &smnameprop;
6646 SmcSetProperties(xsmp.smcconn, 1, smprops);
6647#endif
6648}
6649
6650
6651/* Shut down XSMP comms. */
6652 void
6653xsmp_close()
6654{
6655 if (xsmp_icefd != -1)
6656 {
6657 SmcCloseConnection(xsmp.smcconn, 0, NULL);
Bram Moolenaare8208012008-06-20 09:59:25 +00006658 vim_free(xsmp.clientid);
6659 xsmp.clientid = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660 xsmp_icefd = -1;
6661 }
6662}
6663#endif /* USE_XSMP */
6664
6665
6666#ifdef EBCDIC
6667/* Translate character to its CTRL- value */
6668char CtrlTable[] =
6669{
6670/* 00 - 5E */
6671 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6672 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6673 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6674 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6675 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6676 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6677/* ^ */ 0x1E,
6678/* - */ 0x1F,
6679/* 61 - 6C */
6680 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6681/* _ */ 0x1F,
6682/* 6E - 80 */
6683 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6684/* a */ 0x01,
6685/* b */ 0x02,
6686/* c */ 0x03,
6687/* d */ 0x37,
6688/* e */ 0x2D,
6689/* f */ 0x2E,
6690/* g */ 0x2F,
6691/* h */ 0x16,
6692/* i */ 0x05,
6693/* 8A - 90 */
6694 0, 0, 0, 0, 0, 0, 0,
6695/* j */ 0x15,
6696/* k */ 0x0B,
6697/* l */ 0x0C,
6698/* m */ 0x0D,
6699/* n */ 0x0E,
6700/* o */ 0x0F,
6701/* p */ 0x10,
6702/* q */ 0x11,
6703/* r */ 0x12,
6704/* 9A - A1 */
6705 0, 0, 0, 0, 0, 0, 0, 0,
6706/* s */ 0x13,
6707/* t */ 0x3C,
6708/* u */ 0x3D,
6709/* v */ 0x32,
6710/* w */ 0x26,
6711/* x */ 0x18,
6712/* y */ 0x19,
6713/* z */ 0x3F,
6714/* AA - AC */
6715 0, 0, 0,
6716/* [ */ 0x27,
6717/* AE - BC */
6718 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6719/* ] */ 0x1D,
6720/* BE - C0 */ 0, 0, 0,
6721/* A */ 0x01,
6722/* B */ 0x02,
6723/* C */ 0x03,
6724/* D */ 0x37,
6725/* E */ 0x2D,
6726/* F */ 0x2E,
6727/* G */ 0x2F,
6728/* H */ 0x16,
6729/* I */ 0x05,
6730/* CA - D0 */ 0, 0, 0, 0, 0, 0, 0,
6731/* J */ 0x15,
6732/* K */ 0x0B,
6733/* L */ 0x0C,
6734/* M */ 0x0D,
6735/* N */ 0x0E,
6736/* O */ 0x0F,
6737/* P */ 0x10,
6738/* Q */ 0x11,
6739/* R */ 0x12,
6740/* DA - DF */ 0, 0, 0, 0, 0, 0,
6741/* \ */ 0x1C,
6742/* E1 */ 0,
6743/* S */ 0x13,
6744/* T */ 0x3C,
6745/* U */ 0x3D,
6746/* V */ 0x32,
6747/* W */ 0x26,
6748/* X */ 0x18,
6749/* Y */ 0x19,
6750/* Z */ 0x3F,
6751/* EA - FF*/ 0, 0, 0, 0, 0, 0,
6752 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
6753};
6754
6755char MetaCharTable[]=
6756{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6757 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0,
6758 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0,
6759 '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0,
6760 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0
6761};
6762
6763
6764/* TODO: Use characters NOT numbers!!! */
6765char CtrlCharTable[]=
6766{/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */
6767 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214,
6768 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109,
6769 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199,
6770 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233,
6771};
6772
6773
6774#endif