Bram Moolenaar | edf3f97 | 2016-08-29 22:49:24 +0200 | [diff] [blame] | 1 | /* vi:set ts=8 sts=4 sw=4 noet: |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 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 Moolenaar | 311d982 | 2007-02-27 15:48:28 +0000 | [diff] [blame] | 28 | #if !defined(__APPLE__) && !defined(__TANDEM) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 29 | # define select select_declared_wrong |
| 30 | #endif |
| 31 | |
| 32 | #include "vim.h" |
| 33 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 34 | #ifdef FEAT_MZSCHEME |
| 35 | # include "if_mzsch.h" |
| 36 | #endif |
| 37 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 38 | #include "os_unixx.h" /* unix includes for os_unix.c only */ |
| 39 | |
| 40 | #ifdef USE_XSMP |
| 41 | # include <X11/SM/SMlib.h> |
| 42 | #endif |
| 43 | |
Bram Moolenaar | 588ebeb | 2008-05-07 17:09:24 +0000 | [diff] [blame] | 44 | #ifdef HAVE_SELINUX |
| 45 | # include <selinux/selinux.h> |
| 46 | static int selinux_enabled = -1; |
| 47 | #endif |
| 48 | |
Bram Moolenaar | 5bd32f4 | 2014-04-02 14:05:38 +0200 | [diff] [blame] | 49 | #ifdef HAVE_SMACK |
| 50 | # include <attr/xattr.h> |
| 51 | # include <linux/xattr.h> |
| 52 | # ifndef SMACK_LABEL_LEN |
| 53 | # define SMACK_LABEL_LEN 1024 |
| 54 | # endif |
| 55 | #endif |
| 56 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 57 | /* |
| 58 | * Use this prototype for select, some include files have a wrong prototype |
| 59 | */ |
Bram Moolenaar | 311d982 | 2007-02-27 15:48:28 +0000 | [diff] [blame] | 60 | #ifndef __TANDEM |
| 61 | # undef select |
| 62 | # ifdef __BEOS__ |
| 63 | # define select beos_select |
| 64 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 65 | #endif |
| 66 | |
Bram Moolenaar | a244243 | 2007-04-26 14:26:37 +0000 | [diff] [blame] | 67 | #ifdef __CYGWIN__ |
| 68 | # ifndef WIN32 |
Bram Moolenaar | 0d1498e | 2008-06-29 12:00:49 +0000 | [diff] [blame] | 69 | # include <cygwin/version.h> |
| 70 | # include <sys/cygwin.h> /* for cygwin_conv_to_posix_path() and/or |
| 71 | * for cygwin_conv_path() */ |
Bram Moolenaar | 693e40c | 2013-02-26 14:56:42 +0100 | [diff] [blame] | 72 | # ifdef FEAT_CYGWIN_WIN32_CLIPBOARD |
| 73 | # define WIN32_LEAN_AND_MEAN |
| 74 | # include <windows.h> |
| 75 | # include "winclip.pro" |
| 76 | # endif |
Bram Moolenaar | a244243 | 2007-04-26 14:26:37 +0000 | [diff] [blame] | 77 | # endif |
| 78 | #endif |
| 79 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 80 | #if defined(HAVE_SELECT) |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 81 | extern int select(int, fd_set *, fd_set *, fd_set *, struct timeval *); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 82 | #endif |
| 83 | |
| 84 | #ifdef FEAT_MOUSE_GPM |
| 85 | # include <gpm.h> |
| 86 | /* <linux/keyboard.h> contains defines conflicting with "keymap.h", |
| 87 | * I just copied relevant defines here. A cleaner solution would be to put gpm |
| 88 | * code into separate file and include there linux/keyboard.h |
| 89 | */ |
| 90 | /* #include <linux/keyboard.h> */ |
| 91 | # define KG_SHIFT 0 |
| 92 | # define KG_CTRL 2 |
| 93 | # define KG_ALT 3 |
| 94 | # define KG_ALTGR 1 |
| 95 | # define KG_SHIFTL 4 |
| 96 | # define KG_SHIFTR 5 |
| 97 | # define KG_CTRLL 6 |
| 98 | # define KG_CTRLR 7 |
| 99 | # define KG_CAPSSHIFT 8 |
| 100 | |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 101 | static void gpm_close(void); |
| 102 | static int gpm_open(void); |
| 103 | static int mch_gpm_process(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 104 | #endif |
| 105 | |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 106 | #ifdef FEAT_SYSMOUSE |
| 107 | # include <sys/consio.h> |
| 108 | # include <sys/fbio.h> |
| 109 | |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 110 | static int sysmouse_open(void); |
| 111 | static void sysmouse_close(void); |
Bram Moolenaar | d99df42 | 2016-01-29 23:20:40 +0100 | [diff] [blame] | 112 | static RETSIGTYPE sig_sysmouse SIGPROTOARG; |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 113 | #endif |
| 114 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 115 | /* |
| 116 | * end of autoconf section. To be extended... |
| 117 | */ |
| 118 | |
| 119 | /* Are the following #ifdefs still required? And why? Is that for X11? */ |
| 120 | |
| 121 | #if defined(ESIX) || defined(M_UNIX) && !defined(SCO) |
| 122 | # ifdef SIGWINCH |
| 123 | # undef SIGWINCH |
| 124 | # endif |
| 125 | # ifdef TIOCGWINSZ |
| 126 | # undef TIOCGWINSZ |
| 127 | # endif |
| 128 | #endif |
| 129 | |
| 130 | #if defined(SIGWINDOW) && !defined(SIGWINCH) /* hpux 9.01 has it */ |
| 131 | # define SIGWINCH SIGWINDOW |
| 132 | #endif |
| 133 | |
| 134 | #ifdef FEAT_X11 |
| 135 | # include <X11/Xlib.h> |
| 136 | # include <X11/Xutil.h> |
| 137 | # include <X11/Xatom.h> |
| 138 | # ifdef FEAT_XCLIPBOARD |
| 139 | # include <X11/Intrinsic.h> |
| 140 | # include <X11/Shell.h> |
| 141 | # include <X11/StringDefs.h> |
| 142 | static Widget xterm_Shell = (Widget)0; |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 143 | static void clip_update(void); |
| 144 | static void xterm_update(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 145 | # endif |
| 146 | |
| 147 | # if defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE) |
| 148 | Window x11_window = 0; |
| 149 | # endif |
| 150 | Display *x11_display = NULL; |
| 151 | |
| 152 | # ifdef FEAT_TITLE |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 153 | static int get_x11_windis(void); |
| 154 | static void set_x11_title(char_u *); |
| 155 | static void set_x11_icon(char_u *); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 156 | # endif |
| 157 | #endif |
| 158 | |
| 159 | #ifdef FEAT_TITLE |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 160 | static int get_x11_title(int); |
| 161 | static int get_x11_icon(int); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 162 | |
| 163 | static char_u *oldtitle = NULL; |
| 164 | static int did_set_title = FALSE; |
| 165 | static char_u *oldicon = NULL; |
| 166 | static int did_set_icon = FALSE; |
| 167 | #endif |
| 168 | |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 169 | static void may_core_dump(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 170 | |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 171 | #ifdef HAVE_UNION_WAIT |
| 172 | typedef union wait waitstatus; |
| 173 | #else |
| 174 | typedef int waitstatus; |
| 175 | #endif |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 176 | static pid_t wait4pid(pid_t, waitstatus *); |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 177 | |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 178 | static int WaitForChar(long msec, int *interrupted, int ignore_input); |
| 179 | static int WaitForCharOrMouse(long msec, int *interrupted, int ignore_input); |
Bram Moolenaar | 4ffa070 | 2013-12-11 17:12:37 +0100 | [diff] [blame] | 180 | #if defined(__BEOS__) || defined(VMS) |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 181 | int RealWaitForChar(int, long, int *, int *interrupted); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 182 | #else |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 183 | static int RealWaitForChar(int, long, int *, int *interrupted); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 184 | #endif |
| 185 | |
| 186 | #ifdef FEAT_XCLIPBOARD |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 187 | static int do_xterm_trace(void); |
Bram Moolenaar | cf851ce | 2005-06-16 21:52:47 +0000 | [diff] [blame] | 188 | # define XT_TRACE_DELAY 50 /* delay for xterm tracing */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 189 | #endif |
| 190 | |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 191 | static void handle_resize(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 192 | |
| 193 | #if defined(SIGWINCH) |
Bram Moolenaar | d99df42 | 2016-01-29 23:20:40 +0100 | [diff] [blame] | 194 | static RETSIGTYPE sig_winch SIGPROTOARG; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 195 | #endif |
| 196 | #if defined(SIGINT) |
Bram Moolenaar | d99df42 | 2016-01-29 23:20:40 +0100 | [diff] [blame] | 197 | static RETSIGTYPE catch_sigint SIGPROTOARG; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 198 | #endif |
| 199 | #if defined(SIGPWR) |
Bram Moolenaar | d99df42 | 2016-01-29 23:20:40 +0100 | [diff] [blame] | 200 | static RETSIGTYPE catch_sigpwr SIGPROTOARG; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 201 | #endif |
| 202 | #if defined(SIGALRM) && defined(FEAT_X11) \ |
| 203 | && defined(FEAT_TITLE) && !defined(FEAT_GUI_GTK) |
| 204 | # define SET_SIG_ALARM |
Bram Moolenaar | d99df42 | 2016-01-29 23:20:40 +0100 | [diff] [blame] | 205 | static RETSIGTYPE sig_alarm SIGPROTOARG; |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 206 | /* volatile because it is used in signal handler sig_alarm(). */ |
| 207 | static volatile int sig_alarm_called; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 208 | #endif |
Bram Moolenaar | d99df42 | 2016-01-29 23:20:40 +0100 | [diff] [blame] | 209 | static RETSIGTYPE deathtrap SIGPROTOARG; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 210 | |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 211 | static void catch_int_signal(void); |
| 212 | static void set_signals(void); |
| 213 | static void catch_signals(RETSIGTYPE (*func_deadly)(), RETSIGTYPE (*func_other)()); |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 214 | #ifdef HAVE_SIGPROCMASK |
| 215 | # define SIGSET_DECL(set) sigset_t set; |
| 216 | # define BLOCK_SIGNALS(set) block_signals(set) |
| 217 | # define UNBLOCK_SIGNALS(set) unblock_signals(set) |
| 218 | #else |
| 219 | # define SIGSET_DECL(set) |
| 220 | # define BLOCK_SIGNALS(set) do { /**/ } while (0) |
| 221 | # define UNBLOCK_SIGNALS(set) do { /**/ } while (0) |
| 222 | #endif |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 223 | static int have_wildcard(int, char_u **); |
| 224 | static int have_dollars(int, char_u **); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 225 | |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 226 | static int save_patterns(int num_pat, char_u **pat, int *num_file, char_u ***file); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 227 | |
| 228 | #ifndef SIG_ERR |
Bram Moolenaar | 8f0b2d4 | 2009-05-16 14:41:10 +0000 | [diff] [blame] | 229 | # define SIG_ERR ((RETSIGTYPE (*)())-1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 230 | #endif |
| 231 | |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 232 | /* volatile because it is used in signal handler sig_winch(). */ |
| 233 | static volatile int do_resize = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 234 | static char_u *extra_shell_arg = NULL; |
| 235 | static int show_shell_mess = TRUE; |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 236 | /* volatile because it is used in signal handler deathtrap(). */ |
| 237 | static volatile int deadly_signal = 0; /* The signal we caught */ |
| 238 | /* volatile because it is used in signal handler deathtrap(). */ |
| 239 | static volatile int in_mch_delay = FALSE; /* sleeping in mch_delay() */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 240 | |
Bram Moolenaar | c4d4ac2 | 2016-11-07 22:42:57 +0100 | [diff] [blame] | 241 | #if defined(FEAT_JOB_CHANNEL) && !defined(USE_SYSTEM) |
| 242 | static int dont_check_job_ended = 0; |
| 243 | #endif |
| 244 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 245 | static int curr_tmode = TMODE_COOK; /* contains current terminal mode */ |
| 246 | |
| 247 | #ifdef USE_XSMP |
| 248 | typedef struct |
| 249 | { |
| 250 | SmcConn smcconn; /* The SM connection ID */ |
| 251 | IceConn iceconn; /* The ICE connection ID */ |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 252 | char *clientid; /* The client ID for the current smc session */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 253 | Bool save_yourself; /* If we're in the middle of a save_yourself */ |
| 254 | Bool shutdown; /* If we're in shutdown mode */ |
| 255 | } xsmp_config_T; |
| 256 | |
| 257 | static xsmp_config_T xsmp; |
| 258 | #endif |
| 259 | |
| 260 | #ifdef SYS_SIGLIST_DECLARED |
| 261 | /* |
| 262 | * I have seen |
| 263 | * extern char *_sys_siglist[NSIG]; |
| 264 | * on Irix, Linux, NetBSD and Solaris. It contains a nice list of strings |
| 265 | * that describe the signals. That is nearly what we want here. But |
| 266 | * autoconf does only check for sys_siglist (without the underscore), I |
| 267 | * do not want to change everything today.... jw. |
Bram Moolenaar | 3f7d090 | 2016-11-12 21:13:42 +0100 | [diff] [blame] | 268 | * This is why AC_DECL_SYS_SIGLIST is commented out in configure.ac. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 269 | */ |
| 270 | #endif |
| 271 | |
| 272 | static struct signalinfo |
| 273 | { |
| 274 | int sig; /* Signal number, eg. SIGSEGV etc */ |
| 275 | char *name; /* Signal name (not char_u!). */ |
| 276 | char deadly; /* Catch as a deadly signal? */ |
| 277 | } signal_info[] = |
| 278 | { |
| 279 | #ifdef SIGHUP |
| 280 | {SIGHUP, "HUP", TRUE}, |
| 281 | #endif |
| 282 | #ifdef SIGQUIT |
| 283 | {SIGQUIT, "QUIT", TRUE}, |
| 284 | #endif |
| 285 | #ifdef SIGILL |
| 286 | {SIGILL, "ILL", TRUE}, |
| 287 | #endif |
| 288 | #ifdef SIGTRAP |
| 289 | {SIGTRAP, "TRAP", TRUE}, |
| 290 | #endif |
| 291 | #ifdef SIGABRT |
| 292 | {SIGABRT, "ABRT", TRUE}, |
| 293 | #endif |
| 294 | #ifdef SIGEMT |
| 295 | {SIGEMT, "EMT", TRUE}, |
| 296 | #endif |
| 297 | #ifdef SIGFPE |
| 298 | {SIGFPE, "FPE", TRUE}, |
| 299 | #endif |
| 300 | #ifdef SIGBUS |
| 301 | {SIGBUS, "BUS", TRUE}, |
| 302 | #endif |
Bram Moolenaar | 7567646 | 2013-01-30 14:55:42 +0100 | [diff] [blame] | 303 | #if defined(SIGSEGV) && !defined(FEAT_MZSCHEME) |
| 304 | /* MzScheme uses SEGV in its garbage collector */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 305 | {SIGSEGV, "SEGV", TRUE}, |
| 306 | #endif |
| 307 | #ifdef SIGSYS |
| 308 | {SIGSYS, "SYS", TRUE}, |
| 309 | #endif |
| 310 | #ifdef SIGALRM |
| 311 | {SIGALRM, "ALRM", FALSE}, /* Perl's alarm() can trigger it */ |
| 312 | #endif |
| 313 | #ifdef SIGTERM |
| 314 | {SIGTERM, "TERM", TRUE}, |
| 315 | #endif |
Bram Moolenaar | b292a2a | 2011-02-09 18:47:40 +0100 | [diff] [blame] | 316 | #if defined(SIGVTALRM) && !defined(FEAT_RUBY) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 317 | {SIGVTALRM, "VTALRM", TRUE}, |
| 318 | #endif |
Bram Moolenaar | 02f07e0 | 2008-03-12 12:17:28 +0000 | [diff] [blame] | 319 | #if defined(SIGPROF) && !defined(FEAT_MZSCHEME) && !defined(WE_ARE_PROFILING) |
| 320 | /* MzScheme uses SIGPROF for its own needs; On Linux with profiling |
| 321 | * this makes Vim exit. WE_ARE_PROFILING is defined in Makefile. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 322 | {SIGPROF, "PROF", TRUE}, |
| 323 | #endif |
| 324 | #ifdef SIGXCPU |
| 325 | {SIGXCPU, "XCPU", TRUE}, |
| 326 | #endif |
| 327 | #ifdef SIGXFSZ |
| 328 | {SIGXFSZ, "XFSZ", TRUE}, |
| 329 | #endif |
| 330 | #ifdef SIGUSR1 |
| 331 | {SIGUSR1, "USR1", TRUE}, |
| 332 | #endif |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 333 | #if defined(SIGUSR2) && !defined(FEAT_SYSMOUSE) |
| 334 | /* Used for sysmouse handling */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 335 | {SIGUSR2, "USR2", TRUE}, |
| 336 | #endif |
| 337 | #ifdef SIGINT |
| 338 | {SIGINT, "INT", FALSE}, |
| 339 | #endif |
| 340 | #ifdef SIGWINCH |
| 341 | {SIGWINCH, "WINCH", FALSE}, |
| 342 | #endif |
| 343 | #ifdef SIGTSTP |
| 344 | {SIGTSTP, "TSTP", FALSE}, |
| 345 | #endif |
| 346 | #ifdef SIGPIPE |
| 347 | {SIGPIPE, "PIPE", FALSE}, |
| 348 | #endif |
| 349 | {-1, "Unknown!", FALSE} |
| 350 | }; |
| 351 | |
Bram Moolenaar | 2572492 | 2009-07-14 15:38:41 +0000 | [diff] [blame] | 352 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 353 | mch_chdir(char *path) |
Bram Moolenaar | 2572492 | 2009-07-14 15:38:41 +0000 | [diff] [blame] | 354 | { |
| 355 | if (p_verbose >= 5) |
| 356 | { |
| 357 | verbose_enter(); |
| 358 | smsg((char_u *)"chdir(%s)", path); |
| 359 | verbose_leave(); |
| 360 | } |
| 361 | # ifdef VMS |
| 362 | return chdir(vms_fixfilename(path)); |
| 363 | # else |
| 364 | return chdir(path); |
| 365 | # endif |
| 366 | } |
| 367 | |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 368 | /* Why is NeXT excluded here (and not in os_unixx.h)? */ |
| 369 | #if defined(ECHOE) && defined(ICANON) && (defined(HAVE_TERMIO_H) || defined(HAVE_TERMIOS_H)) && !defined(__NeXT__) |
| 370 | # define NEW_TTY_SYSTEM |
| 371 | #endif |
| 372 | |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 373 | /* |
| 374 | * Write s[len] to the screen. |
| 375 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 376 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 377 | mch_write(char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 378 | { |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 379 | ignored = (int)write(1, (char *)s, len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 380 | if (p_wd) /* Unix is too fast, slow down a bit more */ |
Bram Moolenaar | 8fdd721 | 2016-03-26 19:41:48 +0100 | [diff] [blame] | 381 | RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | /* |
Bram Moolenaar | c2a27c3 | 2007-12-01 16:19:33 +0000 | [diff] [blame] | 385 | * mch_inchar(): low level input function. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 386 | * Get a characters from the keyboard. |
| 387 | * Return the number of characters that are available. |
| 388 | * If wtime == 0 do not wait for characters. |
| 389 | * If wtime == n wait a short time for characters. |
| 390 | * If wtime == -1 wait forever for characters. |
| 391 | */ |
| 392 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 393 | mch_inchar( |
| 394 | char_u *buf, |
| 395 | int maxlen, |
| 396 | long wtime, /* don't use "time", MIPS cannot handle it */ |
| 397 | int tb_change_cnt) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 398 | { |
| 399 | int len; |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 400 | int interrupted = FALSE; |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 401 | int did_start_blocking = FALSE; |
Bram Moolenaar | e30a3d0 | 2016-06-04 14:11:20 +0200 | [diff] [blame] | 402 | long wait_time; |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 403 | long elapsed_time = 0; |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 404 | #ifdef ELAPSED_FUNC |
| 405 | ELAPSED_TYPE start_tv; |
Bram Moolenaar | e30a3d0 | 2016-06-04 14:11:20 +0200 | [diff] [blame] | 406 | |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 407 | ELAPSED_INIT(start_tv); |
Bram Moolenaar | e30a3d0 | 2016-06-04 14:11:20 +0200 | [diff] [blame] | 408 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 409 | |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 410 | /* repeat until we got a character or waited long enough */ |
Bram Moolenaar | e30a3d0 | 2016-06-04 14:11:20 +0200 | [diff] [blame] | 411 | for (;;) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 412 | { |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 413 | /* Check if window changed size while we were busy, perhaps the ":set |
| 414 | * columns=99" command was used. */ |
| 415 | while (do_resize) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 416 | handle_resize(); |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 417 | |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 418 | #ifdef MESSAGE_QUEUE |
| 419 | parse_queued_messages(); |
Bram Moolenaar | d85f271 | 2017-07-28 21:51:57 +0200 | [diff] [blame] | 420 | /* If input was put directly in typeahead buffer bail out here. */ |
| 421 | if (typebuf_changed(tb_change_cnt)) |
| 422 | return 0; |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 423 | #endif |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 424 | if (wtime < 0 && did_start_blocking) |
| 425 | /* blocking and already waited for p_ut */ |
| 426 | wait_time = -1; |
| 427 | else |
| 428 | { |
| 429 | if (wtime >= 0) |
| 430 | wait_time = wtime; |
| 431 | else |
| 432 | /* going to block after p_ut */ |
| 433 | wait_time = p_ut; |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 434 | #ifdef ELAPSED_FUNC |
| 435 | elapsed_time = ELAPSED_FUNC(start_tv); |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 436 | #endif |
| 437 | wait_time -= elapsed_time; |
| 438 | if (wait_time < 0) |
| 439 | { |
| 440 | if (wtime >= 0) |
| 441 | /* no character available within "wtime" */ |
| 442 | return 0; |
| 443 | |
| 444 | if (wtime < 0) |
| 445 | { |
| 446 | /* no character available within 'updatetime' */ |
| 447 | did_start_blocking = TRUE; |
| 448 | #ifdef FEAT_AUTOCMD |
| 449 | if (trigger_cursorhold() && maxlen >= 3 |
| 450 | && !typebuf_changed(tb_change_cnt)) |
| 451 | { |
| 452 | buf[0] = K_SPECIAL; |
| 453 | buf[1] = KS_EXTRA; |
| 454 | buf[2] = (int)KE_CURSORHOLD; |
| 455 | return 3; |
| 456 | } |
| 457 | #endif |
| 458 | /* |
| 459 | * If there is no character available within 'updatetime' |
| 460 | * seconds flush all the swap files to disk. |
| 461 | * Also done when interrupted by SIGWINCH. |
| 462 | */ |
| 463 | before_blocking(); |
| 464 | continue; |
| 465 | } |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | #ifdef FEAT_JOB_CHANNEL |
| 470 | /* Checking if a job ended requires polling. Do this every 100 msec. */ |
| 471 | if (has_pending_job() && (wait_time < 0 || wait_time > 100L)) |
| 472 | wait_time = 100L; |
Bram Moolenaar | 8a8199e | 2016-11-26 15:13:33 +0100 | [diff] [blame] | 473 | /* If there is readahead then parse_queued_messages() timed out and we |
| 474 | * should call it again soon. */ |
| 475 | if ((wait_time < 0 || wait_time > 100L) && channel_any_readahead()) |
| 476 | wait_time = 10L; |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 477 | #endif |
Bram Moolenaar | 59716a2 | 2017-03-01 20:32:44 +0100 | [diff] [blame] | 478 | #ifdef FEAT_BEVAL |
| 479 | if (p_beval && wait_time > 100L) |
| 480 | /* The 'balloonexpr' may indirectly invoke a callback while waiting |
| 481 | * for a character, need to check often. */ |
| 482 | wait_time = 100L; |
| 483 | #endif |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 484 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 485 | /* |
Bram Moolenaar | 48bae37 | 2010-07-29 23:12:15 +0200 | [diff] [blame] | 486 | * We want to be interrupted by the winch signal |
| 487 | * or by an event on the monitored file descriptors. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 488 | */ |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 489 | if (WaitForChar(wait_time, &interrupted, FALSE)) |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 490 | { |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 491 | /* If input was put directly in typeahead buffer bail out here. */ |
| 492 | if (typebuf_changed(tb_change_cnt)) |
| 493 | return 0; |
| 494 | |
| 495 | /* |
| 496 | * For some terminals we only get one character at a time. |
| 497 | * We want the get all available characters, so we could keep on |
| 498 | * trying until none is available |
| 499 | * For some other terminals this is quite slow, that's why we don't |
| 500 | * do it. |
| 501 | */ |
| 502 | len = read_from_input_buf(buf, (long)maxlen); |
| 503 | if (len > 0) |
| 504 | return len; |
| 505 | continue; |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 506 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 507 | |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 508 | /* no character available */ |
| 509 | #if !(defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)) |
| 510 | /* estimate the elapsed time */ |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 511 | elapsed_time += wait_time; |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 512 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 513 | |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 514 | if (do_resize /* interrupted by SIGWINCH signal */ |
| 515 | #ifdef FEAT_CLIENTSERVER |
| 516 | || server_waiting() |
| 517 | #endif |
| 518 | #ifdef MESSAGE_QUEUE |
| 519 | || interrupted |
| 520 | #endif |
| 521 | || wait_time > 0 |
Bram Moolenaar | 1572e30 | 2017-03-25 20:16:28 +0100 | [diff] [blame] | 522 | || (wtime < 0 && !did_start_blocking)) |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 523 | continue; |
| 524 | |
| 525 | /* no character available or interrupted */ |
| 526 | break; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 527 | } |
Bram Moolenaar | 01688ad | 2016-10-27 20:00:07 +0200 | [diff] [blame] | 528 | return 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 532 | handle_resize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 533 | { |
| 534 | do_resize = FALSE; |
| 535 | shell_resized(); |
| 536 | } |
| 537 | |
| 538 | /* |
Bram Moolenaar | 40b1b54 | 2016-04-20 20:18:23 +0200 | [diff] [blame] | 539 | * Return non-zero if a character is available. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 540 | */ |
| 541 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 542 | mch_char_avail(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 543 | { |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 544 | return WaitForChar(0L, NULL, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 545 | } |
| 546 | |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 547 | #if defined(FEAT_TERMINAL) || defined(PROTO) |
| 548 | /* |
| 549 | * Check for any pending input or messages. |
| 550 | */ |
| 551 | int |
| 552 | mch_check_messages(void) |
| 553 | { |
| 554 | return WaitForChar(0L, NULL, TRUE); |
| 555 | } |
| 556 | #endif |
| 557 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 558 | #if defined(HAVE_TOTAL_MEM) || defined(PROTO) |
| 559 | # ifdef HAVE_SYS_RESOURCE_H |
Bram Moolenaar | 8f0b2d4 | 2009-05-16 14:41:10 +0000 | [diff] [blame] | 560 | # include <sys/resource.h> |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 561 | # endif |
| 562 | # if defined(HAVE_SYS_SYSCTL_H) && defined(HAVE_SYSCTL) |
| 563 | # include <sys/sysctl.h> |
| 564 | # endif |
| 565 | # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO) |
| 566 | # include <sys/sysinfo.h> |
| 567 | # endif |
| 568 | |
| 569 | /* |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 570 | * Return total amount of memory available in Kbyte. |
| 571 | * Doesn't change when memory has been allocated. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 572 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 573 | long_u |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 574 | mch_total_mem(int special UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 575 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 576 | long_u mem = 0; |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 577 | long_u shiftright = 10; /* how much to shift "mem" right for Kbyte */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 578 | |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 579 | # ifdef HAVE_SYSCTL |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 580 | int mib[2], physmem; |
| 581 | size_t len; |
| 582 | |
| 583 | /* BSD way of getting the amount of RAM available. */ |
| 584 | mib[0] = CTL_HW; |
| 585 | mib[1] = HW_USERMEM; |
| 586 | len = sizeof(physmem); |
| 587 | if (sysctl(mib, 2, &physmem, &len, NULL, 0) == 0) |
| 588 | mem = (long_u)physmem; |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 589 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 590 | |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 591 | # if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 592 | if (mem == 0) |
| 593 | { |
| 594 | struct sysinfo sinfo; |
| 595 | |
| 596 | /* Linux way of getting amount of RAM available */ |
| 597 | if (sysinfo(&sinfo) == 0) |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 598 | { |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 599 | # ifdef HAVE_SYSINFO_MEM_UNIT |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 600 | /* avoid overflow as much as possible */ |
| 601 | while (shiftright > 0 && (sinfo.mem_unit & 1) == 0) |
| 602 | { |
| 603 | sinfo.mem_unit = sinfo.mem_unit >> 1; |
| 604 | --shiftright; |
| 605 | } |
| 606 | mem = sinfo.totalram * sinfo.mem_unit; |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 607 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 608 | mem = sinfo.totalram; |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 609 | # endif |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 610 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 611 | } |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 612 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 613 | |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 614 | # ifdef HAVE_SYSCONF |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 615 | if (mem == 0) |
| 616 | { |
| 617 | long pagesize, pagecount; |
| 618 | |
| 619 | /* Solaris way of getting amount of RAM available */ |
| 620 | pagesize = sysconf(_SC_PAGESIZE); |
| 621 | pagecount = sysconf(_SC_PHYS_PAGES); |
| 622 | if (pagesize > 0 && pagecount > 0) |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 623 | { |
| 624 | /* avoid overflow as much as possible */ |
| 625 | while (shiftright > 0 && (pagesize & 1) == 0) |
| 626 | { |
Bram Moolenaar | 3d27a45 | 2007-05-10 17:44:18 +0000 | [diff] [blame] | 627 | pagesize = (long_u)pagesize >> 1; |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 628 | --shiftright; |
| 629 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 630 | mem = (long_u)pagesize * pagecount; |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 631 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 632 | } |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 633 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 634 | |
| 635 | /* Return the minimum of the physical memory and the user limit, because |
| 636 | * using more than the user limit may cause Vim to be terminated. */ |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 637 | # if defined(HAVE_SYS_RESOURCE_H) && defined(HAVE_GETRLIMIT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 638 | { |
| 639 | struct rlimit rlp; |
| 640 | |
| 641 | if (getrlimit(RLIMIT_DATA, &rlp) == 0 |
| 642 | && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1)) |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 643 | # ifdef RLIM_INFINITY |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 644 | && rlp.rlim_cur != RLIM_INFINITY |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 645 | # endif |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 646 | && ((long_u)rlp.rlim_cur >> 10) < (mem >> shiftright) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 647 | ) |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 648 | { |
| 649 | mem = (long_u)rlp.rlim_cur; |
| 650 | shiftright = 10; |
| 651 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 652 | } |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 653 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 654 | |
| 655 | if (mem > 0) |
Bram Moolenaar | 914572a | 2007-05-01 11:37:47 +0000 | [diff] [blame] | 656 | return mem >> shiftright; |
| 657 | return (long_u)0x1fffff; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 658 | } |
| 659 | #endif |
| 660 | |
| 661 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 662 | mch_delay(long msec, int ignoreinput) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 663 | { |
| 664 | int old_tmode; |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 665 | #ifdef FEAT_MZSCHEME |
| 666 | long total = msec; /* remember original value */ |
| 667 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 668 | |
| 669 | if (ignoreinput) |
| 670 | { |
| 671 | /* Go to cooked mode without echo, to allow SIGINT interrupting us |
Bram Moolenaar | ae0f2ca | 2008-02-10 21:25:55 +0000 | [diff] [blame] | 672 | * here. But we don't want QUIT to kill us (CTRL-\ used in a |
| 673 | * shell may produce SIGQUIT). */ |
| 674 | in_mch_delay = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 675 | old_tmode = curr_tmode; |
| 676 | if (curr_tmode == TMODE_RAW) |
| 677 | settmode(TMODE_SLEEP); |
| 678 | |
| 679 | /* |
| 680 | * Everybody sleeps in a different way... |
| 681 | * Prefer nanosleep(), some versions of usleep() can only sleep up to |
| 682 | * one second. |
| 683 | */ |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 684 | #ifdef FEAT_MZSCHEME |
| 685 | do |
| 686 | { |
| 687 | /* if total is large enough, wait by portions in p_mzq */ |
| 688 | if (total > p_mzq) |
| 689 | msec = p_mzq; |
| 690 | else |
| 691 | msec = total; |
| 692 | total -= msec; |
| 693 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 694 | #ifdef HAVE_NANOSLEEP |
| 695 | { |
| 696 | struct timespec ts; |
| 697 | |
| 698 | ts.tv_sec = msec / 1000; |
| 699 | ts.tv_nsec = (msec % 1000) * 1000000; |
| 700 | (void)nanosleep(&ts, NULL); |
| 701 | } |
| 702 | #else |
| 703 | # ifdef HAVE_USLEEP |
| 704 | while (msec >= 1000) |
| 705 | { |
| 706 | usleep((unsigned int)(999 * 1000)); |
| 707 | msec -= 999; |
| 708 | } |
| 709 | usleep((unsigned int)(msec * 1000)); |
| 710 | # else |
| 711 | # ifndef HAVE_SELECT |
| 712 | poll(NULL, 0, (int)msec); |
| 713 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 714 | { |
| 715 | struct timeval tv; |
| 716 | |
| 717 | tv.tv_sec = msec / 1000; |
| 718 | tv.tv_usec = (msec % 1000) * 1000; |
| 719 | /* |
| 720 | * NOTE: Solaris 2.6 has a bug that makes select() hang here. Get |
| 721 | * a patch from Sun to fix this. Reported by Gunnar Pedersen. |
| 722 | */ |
| 723 | select(0, NULL, NULL, NULL, &tv); |
| 724 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 725 | # endif /* HAVE_SELECT */ |
| 726 | # endif /* HAVE_NANOSLEEP */ |
| 727 | #endif /* HAVE_USLEEP */ |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 728 | #ifdef FEAT_MZSCHEME |
| 729 | } |
| 730 | while (total > 0); |
| 731 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 732 | |
| 733 | settmode(old_tmode); |
Bram Moolenaar | ae0f2ca | 2008-02-10 21:25:55 +0000 | [diff] [blame] | 734 | in_mch_delay = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 735 | } |
| 736 | else |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 737 | WaitForChar(msec, NULL, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 738 | } |
| 739 | |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 740 | #if defined(HAVE_STACK_LIMIT) \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 741 | || (!defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGSTACK)) |
| 742 | # define HAVE_CHECK_STACK_GROWTH |
| 743 | /* |
| 744 | * Support for checking for an almost-out-of-stack-space situation. |
| 745 | */ |
| 746 | |
| 747 | /* |
| 748 | * Return a pointer to an item on the stack. Used to find out if the stack |
| 749 | * grows up or down. |
| 750 | */ |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 751 | static void check_stack_growth(char *p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 752 | static int stack_grows_downwards; |
| 753 | |
| 754 | /* |
| 755 | * Find out if the stack grows upwards or downwards. |
| 756 | * "p" points to a variable on the stack of the caller. |
| 757 | */ |
| 758 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 759 | check_stack_growth(char *p) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 760 | { |
| 761 | int i; |
| 762 | |
| 763 | stack_grows_downwards = (p > (char *)&i); |
| 764 | } |
| 765 | #endif |
| 766 | |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 767 | #if defined(HAVE_STACK_LIMIT) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 768 | static char *stack_limit = NULL; |
| 769 | |
| 770 | #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H) |
| 771 | # include <pthread.h> |
| 772 | # include <pthread_np.h> |
| 773 | #endif |
| 774 | |
| 775 | /* |
| 776 | * Find out until how var the stack can grow without getting into trouble. |
| 777 | * Called when starting up and when switching to the signal stack in |
| 778 | * deathtrap(). |
| 779 | */ |
| 780 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 781 | get_stack_limit(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 782 | { |
| 783 | struct rlimit rlp; |
| 784 | int i; |
| 785 | long lim; |
| 786 | |
| 787 | /* Set the stack limit to 15/16 of the allowable size. Skip this when the |
| 788 | * limit doesn't fit in a long (rlim_cur might be "long long"). */ |
| 789 | if (getrlimit(RLIMIT_STACK, &rlp) == 0 |
| 790 | && rlp.rlim_cur < ((rlim_t)1 << (sizeof(long_u) * 8 - 1)) |
| 791 | # ifdef RLIM_INFINITY |
| 792 | && rlp.rlim_cur != RLIM_INFINITY |
| 793 | # endif |
| 794 | ) |
| 795 | { |
| 796 | lim = (long)rlp.rlim_cur; |
| 797 | #if defined(_THREAD_SAFE) && defined(HAVE_PTHREAD_NP_H) |
| 798 | { |
| 799 | pthread_attr_t attr; |
| 800 | size_t size; |
| 801 | |
| 802 | /* On FreeBSD the initial thread always has a fixed stack size, no |
| 803 | * matter what the limits are set to. Normally it's 1 Mbyte. */ |
| 804 | pthread_attr_init(&attr); |
| 805 | if (pthread_attr_get_np(pthread_self(), &attr) == 0) |
| 806 | { |
| 807 | pthread_attr_getstacksize(&attr, &size); |
| 808 | if (lim > (long)size) |
| 809 | lim = (long)size; |
| 810 | } |
| 811 | pthread_attr_destroy(&attr); |
| 812 | } |
| 813 | #endif |
| 814 | if (stack_grows_downwards) |
| 815 | { |
| 816 | stack_limit = (char *)((long)&i - (lim / 16L * 15L)); |
| 817 | if (stack_limit >= (char *)&i) |
| 818 | /* overflow, set to 1/16 of current stack position */ |
| 819 | stack_limit = (char *)((long)&i / 16L); |
| 820 | } |
| 821 | else |
| 822 | { |
| 823 | stack_limit = (char *)((long)&i + (lim / 16L * 15L)); |
| 824 | if (stack_limit <= (char *)&i) |
| 825 | stack_limit = NULL; /* overflow */ |
| 826 | } |
| 827 | } |
| 828 | } |
| 829 | |
| 830 | /* |
| 831 | * Return FAIL when running out of stack space. |
| 832 | * "p" must point to any variable local to the caller that's on the stack. |
| 833 | */ |
| 834 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 835 | mch_stackcheck(char *p) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 836 | { |
| 837 | if (stack_limit != NULL) |
| 838 | { |
| 839 | if (stack_grows_downwards) |
| 840 | { |
| 841 | if (p < stack_limit) |
| 842 | return FAIL; |
| 843 | } |
| 844 | else if (p > stack_limit) |
| 845 | return FAIL; |
| 846 | } |
| 847 | return OK; |
| 848 | } |
| 849 | #endif |
| 850 | |
| 851 | #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) |
| 852 | /* |
| 853 | * Support for using the signal stack. |
| 854 | * This helps when we run out of stack space, which causes a SIGSEGV. The |
| 855 | * signal handler then must run on another stack, since the normal stack is |
| 856 | * completely full. |
| 857 | */ |
| 858 | |
Bram Moolenaar | 39766a7 | 2013-11-03 00:41:00 +0100 | [diff] [blame] | 859 | #if defined(HAVE_AVAILABILITYMACROS_H) |
Bram Moolenaar | 4cc95d1 | 2013-11-02 21:49:32 +0100 | [diff] [blame] | 860 | # include <AvailabilityMacros.h> |
| 861 | #endif |
| 862 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 863 | #ifndef SIGSTKSZ |
| 864 | # define SIGSTKSZ 8000 /* just a guess of how much stack is needed... */ |
| 865 | #endif |
| 866 | |
| 867 | # ifdef HAVE_SIGALTSTACK |
| 868 | static stack_t sigstk; /* for sigaltstack() */ |
| 869 | # else |
| 870 | static struct sigstack sigstk; /* for sigstack() */ |
| 871 | # endif |
| 872 | |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 873 | static void init_signal_stack(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 874 | static char *signal_stack; |
| 875 | |
| 876 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 877 | init_signal_stack(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 878 | { |
| 879 | if (signal_stack != NULL) |
| 880 | { |
| 881 | # ifdef HAVE_SIGALTSTACK |
Bram Moolenaar | 1a3d086 | 2007-08-30 09:47:38 +0000 | [diff] [blame] | 882 | # if defined(__APPLE__) && (!defined(MAC_OS_X_VERSION_MAX_ALLOWED) \ |
| 883 | || MAC_OS_X_VERSION_MAX_ALLOWED <= 1040) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 884 | /* missing prototype. Adding it to osdef?.h.in doesn't work, because |
| 885 | * "struct sigaltstack" needs to be declared. */ |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 886 | extern int sigaltstack(const struct sigaltstack *ss, struct sigaltstack *oss); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 887 | # endif |
| 888 | |
| 889 | # ifdef HAVE_SS_BASE |
| 890 | sigstk.ss_base = signal_stack; |
| 891 | # else |
| 892 | sigstk.ss_sp = signal_stack; |
| 893 | # endif |
| 894 | sigstk.ss_size = SIGSTKSZ; |
| 895 | sigstk.ss_flags = 0; |
| 896 | (void)sigaltstack(&sigstk, NULL); |
| 897 | # else |
| 898 | sigstk.ss_sp = signal_stack; |
| 899 | if (stack_grows_downwards) |
| 900 | sigstk.ss_sp += SIGSTKSZ - 1; |
| 901 | sigstk.ss_onstack = 0; |
| 902 | (void)sigstack(&sigstk, NULL); |
| 903 | # endif |
| 904 | } |
| 905 | } |
| 906 | #endif |
| 907 | |
| 908 | /* |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 909 | * We need correct prototypes for a signal function, otherwise mean compilers |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 910 | * will barf when the second argument to signal() is ``wrong''. |
| 911 | * Let me try it with a few tricky defines from my own osdef.h (jw). |
| 912 | */ |
| 913 | #if defined(SIGWINCH) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 914 | static RETSIGTYPE |
| 915 | sig_winch SIGDEFARG(sigarg) |
| 916 | { |
| 917 | /* this is not required on all systems, but it doesn't hurt anybody */ |
| 918 | signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch); |
| 919 | do_resize = TRUE; |
| 920 | SIGRETURN; |
| 921 | } |
| 922 | #endif |
| 923 | |
| 924 | #if defined(SIGINT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 925 | static RETSIGTYPE |
| 926 | catch_sigint SIGDEFARG(sigarg) |
| 927 | { |
| 928 | /* this is not required on all systems, but it doesn't hurt anybody */ |
| 929 | signal(SIGINT, (RETSIGTYPE (*)())catch_sigint); |
| 930 | got_int = TRUE; |
| 931 | SIGRETURN; |
| 932 | } |
| 933 | #endif |
| 934 | |
| 935 | #if defined(SIGPWR) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 936 | static RETSIGTYPE |
| 937 | catch_sigpwr SIGDEFARG(sigarg) |
| 938 | { |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 939 | /* this is not required on all systems, but it doesn't hurt anybody */ |
| 940 | signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 941 | /* |
| 942 | * I'm not sure we get the SIGPWR signal when the system is really going |
| 943 | * down or when the batteries are almost empty. Just preserve the swap |
| 944 | * files and don't exit, that can't do any harm. |
| 945 | */ |
| 946 | ml_sync_all(FALSE, FALSE); |
| 947 | SIGRETURN; |
| 948 | } |
| 949 | #endif |
| 950 | |
| 951 | #ifdef SET_SIG_ALARM |
| 952 | /* |
| 953 | * signal function for alarm(). |
| 954 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 955 | static RETSIGTYPE |
| 956 | sig_alarm SIGDEFARG(sigarg) |
| 957 | { |
| 958 | /* doesn't do anything, just to break a system call */ |
| 959 | sig_alarm_called = TRUE; |
| 960 | SIGRETURN; |
| 961 | } |
| 962 | #endif |
| 963 | |
Bram Moolenaar | 44ecf65 | 2005-03-07 23:09:59 +0000 | [diff] [blame] | 964 | #if (defined(HAVE_SETJMP_H) \ |
| 965 | && ((defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) \ |
| 966 | || defined(FEAT_LIBCALL))) \ |
| 967 | || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 968 | /* |
| 969 | * A simplistic version of setjmp() that only allows one level of using. |
| 970 | * Don't call twice before calling mch_endjmp()!. |
| 971 | * Usage: |
| 972 | * mch_startjmp(); |
| 973 | * if (SETJMP(lc_jump_env) != 0) |
| 974 | * { |
| 975 | * mch_didjmp(); |
| 976 | * EMSG("crash!"); |
| 977 | * } |
| 978 | * else |
| 979 | * { |
| 980 | * do_the_work; |
| 981 | * mch_endjmp(); |
| 982 | * } |
| 983 | * Note: Can't move SETJMP() here, because a function calling setjmp() must |
| 984 | * not return before the saved environment is used. |
| 985 | * Returns OK for normal return, FAIL when the protected code caused a |
| 986 | * problem and LONGJMP() was used. |
| 987 | */ |
| 988 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 989 | mch_startjmp(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 990 | { |
| 991 | #ifdef SIGHASARG |
| 992 | lc_signal = 0; |
| 993 | #endif |
| 994 | lc_active = TRUE; |
| 995 | } |
| 996 | |
| 997 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 998 | mch_endjmp(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 999 | { |
| 1000 | lc_active = FALSE; |
| 1001 | } |
| 1002 | |
| 1003 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1004 | mch_didjmp(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1005 | { |
| 1006 | # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) |
| 1007 | /* On FreeBSD the signal stack has to be reset after using siglongjmp(), |
| 1008 | * otherwise catching the signal only works once. */ |
| 1009 | init_signal_stack(); |
| 1010 | # endif |
| 1011 | } |
| 1012 | #endif |
| 1013 | |
| 1014 | /* |
| 1015 | * This function handles deadly signals. |
Bram Moolenaar | bec9c20 | 2013-09-05 21:41:39 +0200 | [diff] [blame] | 1016 | * It tries to preserve any swap files and exit properly. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1017 | * (partly from Elvis). |
Bram Moolenaar | bec9c20 | 2013-09-05 21:41:39 +0200 | [diff] [blame] | 1018 | * NOTE: Avoid unsafe functions, such as allocating memory, they can result in |
| 1019 | * a deadlock. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1020 | */ |
| 1021 | static RETSIGTYPE |
| 1022 | deathtrap SIGDEFARG(sigarg) |
| 1023 | { |
| 1024 | static int entered = 0; /* count the number of times we got here. |
| 1025 | Note: when memory has been corrupted |
| 1026 | this may get an arbitrary value! */ |
| 1027 | #ifdef SIGHASARG |
| 1028 | int i; |
| 1029 | #endif |
| 1030 | |
| 1031 | #if defined(HAVE_SETJMP_H) |
| 1032 | /* |
| 1033 | * Catch a crash in protected code. |
| 1034 | * Restores the environment saved in lc_jump_env, which looks like |
| 1035 | * SETJMP() returns 1. |
| 1036 | */ |
| 1037 | if (lc_active) |
| 1038 | { |
| 1039 | # if defined(SIGHASARG) |
| 1040 | lc_signal = sigarg; |
| 1041 | # endif |
| 1042 | lc_active = FALSE; /* don't jump again */ |
| 1043 | LONGJMP(lc_jump_env, 1); |
| 1044 | /* NOTREACHED */ |
| 1045 | } |
| 1046 | #endif |
| 1047 | |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1048 | #ifdef SIGHASARG |
Bram Moolenaar | ae0f2ca | 2008-02-10 21:25:55 +0000 | [diff] [blame] | 1049 | # ifdef SIGQUIT |
| 1050 | /* While in mch_delay() we go to cooked mode to allow a CTRL-C to |
| 1051 | * interrupt us. But in cooked mode we may also get SIGQUIT, e.g., when |
| 1052 | * pressing CTRL-\, but we don't want Vim to exit then. */ |
| 1053 | if (in_mch_delay && sigarg == SIGQUIT) |
| 1054 | SIGRETURN; |
| 1055 | # endif |
| 1056 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1057 | /* When SIGHUP, SIGQUIT, etc. are blocked: postpone the effect and return |
| 1058 | * here. This avoids that a non-reentrant function is interrupted, e.g., |
| 1059 | * free(). Calling free() again may then cause a crash. */ |
| 1060 | if (entered == 0 |
| 1061 | && (0 |
| 1062 | # ifdef SIGHUP |
| 1063 | || sigarg == SIGHUP |
| 1064 | # endif |
| 1065 | # ifdef SIGQUIT |
| 1066 | || sigarg == SIGQUIT |
| 1067 | # endif |
| 1068 | # ifdef SIGTERM |
| 1069 | || sigarg == SIGTERM |
| 1070 | # endif |
| 1071 | # ifdef SIGPWR |
| 1072 | || sigarg == SIGPWR |
| 1073 | # endif |
| 1074 | # ifdef SIGUSR1 |
| 1075 | || sigarg == SIGUSR1 |
| 1076 | # endif |
| 1077 | # ifdef SIGUSR2 |
| 1078 | || sigarg == SIGUSR2 |
| 1079 | # endif |
| 1080 | ) |
Bram Moolenaar | 1f28b07 | 2005-07-12 22:42:41 +0000 | [diff] [blame] | 1081 | && !vim_handle_signal(sigarg)) |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1082 | SIGRETURN; |
| 1083 | #endif |
| 1084 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1085 | /* Remember how often we have been called. */ |
| 1086 | ++entered; |
| 1087 | |
Bram Moolenaar | e429e70 | 2016-06-10 19:49:14 +0200 | [diff] [blame] | 1088 | #ifdef FEAT_AUTOCMD |
| 1089 | /* Executing autocommands is likely to use more stack space than we have |
| 1090 | * available in the signal stack. */ |
| 1091 | block_autocmds(); |
| 1092 | #endif |
| 1093 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1094 | #ifdef FEAT_EVAL |
| 1095 | /* Set the v:dying variable. */ |
| 1096 | set_vim_var_nr(VV_DYING, (long)entered); |
| 1097 | #endif |
| 1098 | |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 1099 | #ifdef HAVE_STACK_LIMIT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1100 | /* Since we are now using the signal stack, need to reset the stack |
| 1101 | * limit. Otherwise using a regexp will fail. */ |
| 1102 | get_stack_limit(); |
| 1103 | #endif |
| 1104 | |
Bram Moolenaar | 1f4d4de | 2006-03-14 23:00:46 +0000 | [diff] [blame] | 1105 | #if 0 |
| 1106 | /* This is for opening gdb the moment Vim crashes. |
| 1107 | * You need to manually adjust the file name and Vim executable name. |
| 1108 | * Suggested by SungHyun Nam. */ |
| 1109 | { |
| 1110 | # define VI_GDB_FILE "/tmp/vimgdb" |
| 1111 | # define VIM_NAME "/usr/bin/vim" |
| 1112 | FILE *fp = fopen(VI_GDB_FILE, "w"); |
| 1113 | if (fp) |
| 1114 | { |
| 1115 | fprintf(fp, |
| 1116 | "file %s\n" |
| 1117 | "attach %d\n" |
| 1118 | "set height 1000\n" |
| 1119 | "bt full\n" |
| 1120 | , VIM_NAME, getpid()); |
| 1121 | fclose(fp); |
| 1122 | system("xterm -e gdb -x "VI_GDB_FILE); |
| 1123 | unlink(VI_GDB_FILE); |
| 1124 | } |
| 1125 | } |
| 1126 | #endif |
| 1127 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1128 | #ifdef SIGHASARG |
| 1129 | /* try to find the name of this signal */ |
| 1130 | for (i = 0; signal_info[i].sig != -1; i++) |
| 1131 | if (sigarg == signal_info[i].sig) |
| 1132 | break; |
| 1133 | deadly_signal = sigarg; |
| 1134 | #endif |
| 1135 | |
| 1136 | full_screen = FALSE; /* don't write message to the GUI, it might be |
| 1137 | * part of the problem... */ |
| 1138 | /* |
| 1139 | * If something goes wrong after entering here, we may get here again. |
| 1140 | * When this happens, give a message and try to exit nicely (resetting the |
| 1141 | * terminal mode, etc.) |
| 1142 | * When this happens twice, just exit, don't even try to give a message, |
| 1143 | * stack may be corrupt or something weird. |
| 1144 | * When this still happens again (or memory was corrupted in such a way |
| 1145 | * that "entered" was clobbered) use _exit(), don't try freeing resources. |
| 1146 | */ |
| 1147 | if (entered >= 3) |
| 1148 | { |
| 1149 | reset_signals(); /* don't catch any signals anymore */ |
| 1150 | may_core_dump(); |
| 1151 | if (entered >= 4) |
| 1152 | _exit(8); |
| 1153 | exit(7); |
| 1154 | } |
| 1155 | if (entered == 2) |
| 1156 | { |
Bram Moolenaar | bec9c20 | 2013-09-05 21:41:39 +0200 | [diff] [blame] | 1157 | /* No translation, it may call malloc(). */ |
| 1158 | OUT_STR("Vim: Double signal, exiting\n"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1159 | out_flush(); |
| 1160 | getout(1); |
| 1161 | } |
| 1162 | |
Bram Moolenaar | bec9c20 | 2013-09-05 21:41:39 +0200 | [diff] [blame] | 1163 | /* No translation, it may call malloc(). */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1164 | #ifdef SIGHASARG |
Bram Moolenaar | bec9c20 | 2013-09-05 21:41:39 +0200 | [diff] [blame] | 1165 | sprintf((char *)IObuff, "Vim: Caught deadly signal %s\n", |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1166 | signal_info[i].name); |
| 1167 | #else |
Bram Moolenaar | bec9c20 | 2013-09-05 21:41:39 +0200 | [diff] [blame] | 1168 | sprintf((char *)IObuff, "Vim: Caught deadly signal\n"); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1169 | #endif |
Bram Moolenaar | bec9c20 | 2013-09-05 21:41:39 +0200 | [diff] [blame] | 1170 | |
| 1171 | /* Preserve files and exit. This sets the really_exiting flag to prevent |
| 1172 | * calling free(). */ |
| 1173 | preserve_exit(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1174 | |
Bram Moolenaar | e429e70 | 2016-06-10 19:49:14 +0200 | [diff] [blame] | 1175 | /* NOTREACHED */ |
| 1176 | |
Bram Moolenaar | 009b259 | 2004-10-24 19:18:58 +0000 | [diff] [blame] | 1177 | #ifdef NBDEBUG |
| 1178 | reset_signals(); |
| 1179 | may_core_dump(); |
| 1180 | abort(); |
| 1181 | #endif |
| 1182 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1183 | SIGRETURN; |
| 1184 | } |
| 1185 | |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 1186 | #if defined(_REENTRANT) && defined(SIGCONT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1187 | /* |
| 1188 | * On Solaris with multi-threading, suspending might not work immediately. |
| 1189 | * Catch the SIGCONT signal, which will be used as an indication whether the |
| 1190 | * suspending has been done or not. |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 1191 | * |
| 1192 | * On Linux, signal is not always handled immediately either. |
| 1193 | * See https://bugs.launchpad.net/bugs/291373 |
| 1194 | * |
Bram Moolenaar | b292a2a | 2011-02-09 18:47:40 +0100 | [diff] [blame] | 1195 | * volatile because it is used in signal handler sigcont_handler(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1196 | */ |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 1197 | static volatile int sigcont_received; |
Bram Moolenaar | d99df42 | 2016-01-29 23:20:40 +0100 | [diff] [blame] | 1198 | static RETSIGTYPE sigcont_handler SIGPROTOARG; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1199 | |
| 1200 | /* |
| 1201 | * signal handler for SIGCONT |
| 1202 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1203 | static RETSIGTYPE |
| 1204 | sigcont_handler SIGDEFARG(sigarg) |
| 1205 | { |
| 1206 | sigcont_received = TRUE; |
| 1207 | SIGRETURN; |
| 1208 | } |
| 1209 | #endif |
| 1210 | |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 1211 | # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 1212 | static void loose_clipboard(void); |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 1213 | # ifdef USE_SYSTEM |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 1214 | static void save_clipboard(void); |
| 1215 | static void restore_clipboard(void); |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1216 | |
| 1217 | static void *clip_star_save = NULL; |
| 1218 | static void *clip_plus_save = NULL; |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 1219 | # endif |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 1220 | |
| 1221 | /* |
| 1222 | * Called when Vim is going to sleep or execute a shell command. |
| 1223 | * We can't respond to requests for the X selections. Lose them, otherwise |
| 1224 | * other applications will hang. But first copy the text to cut buffer 0. |
| 1225 | */ |
| 1226 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1227 | loose_clipboard(void) |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 1228 | { |
| 1229 | if (clip_star.owned || clip_plus.owned) |
| 1230 | { |
| 1231 | x11_export_final_selection(); |
| 1232 | if (clip_star.owned) |
| 1233 | clip_lose_selection(&clip_star); |
| 1234 | if (clip_plus.owned) |
| 1235 | clip_lose_selection(&clip_plus); |
| 1236 | if (x11_display != NULL) |
| 1237 | XFlush(x11_display); |
| 1238 | } |
| 1239 | } |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1240 | |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 1241 | # ifdef USE_SYSTEM |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1242 | /* |
| 1243 | * Save clipboard text to restore later. |
| 1244 | */ |
| 1245 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1246 | save_clipboard(void) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1247 | { |
| 1248 | if (clip_star.owned) |
| 1249 | clip_star_save = get_register('*', TRUE); |
| 1250 | if (clip_plus.owned) |
| 1251 | clip_plus_save = get_register('+', TRUE); |
| 1252 | } |
| 1253 | |
| 1254 | /* |
| 1255 | * Restore clipboard text if no one own the X selection. |
| 1256 | */ |
| 1257 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1258 | restore_clipboard(void) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 1259 | { |
| 1260 | if (clip_star_save != NULL) |
| 1261 | { |
| 1262 | if (!clip_gen_owner_exists(&clip_star)) |
| 1263 | put_register('*', clip_star_save); |
| 1264 | else |
| 1265 | free_register(clip_star_save); |
| 1266 | clip_star_save = NULL; |
| 1267 | } |
| 1268 | if (clip_plus_save != NULL) |
| 1269 | { |
| 1270 | if (!clip_gen_owner_exists(&clip_plus)) |
| 1271 | put_register('+', clip_plus_save); |
| 1272 | else |
| 1273 | free_register(clip_plus_save); |
| 1274 | clip_plus_save = NULL; |
| 1275 | } |
| 1276 | } |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 1277 | # endif |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 1278 | #endif |
| 1279 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1280 | /* |
| 1281 | * If the machine has job control, use it to suspend the program, |
| 1282 | * otherwise fake it by starting a new shell. |
| 1283 | */ |
| 1284 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1285 | mch_suspend(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1286 | { |
| 1287 | /* BeOS does have SIGTSTP, but it doesn't work. */ |
| 1288 | #if defined(SIGTSTP) && !defined(__BEOS__) |
| 1289 | out_flush(); /* needed to make cursor visible on some systems */ |
| 1290 | settmode(TMODE_COOK); |
| 1291 | out_flush(); /* needed to disable mouse on some systems */ |
| 1292 | |
| 1293 | # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 1294 | loose_clipboard(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1295 | # endif |
| 1296 | |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 1297 | # if defined(_REENTRANT) && defined(SIGCONT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1298 | sigcont_received = FALSE; |
| 1299 | # endif |
| 1300 | kill(0, SIGTSTP); /* send ourselves a STOP signal */ |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 1301 | # if defined(_REENTRANT) && defined(SIGCONT) |
| 1302 | /* |
| 1303 | * Wait for the SIGCONT signal to be handled. It generally happens |
| 1304 | * immediately, but somehow not all the time. Do not call pause() |
| 1305 | * because there would be race condition which would hang Vim if |
| 1306 | * signal happened in between the test of sigcont_received and the |
| 1307 | * call to pause(). If signal is not yet received, call sleep(0) |
| 1308 | * to just yield CPU. Signal should then be received. If somehow |
| 1309 | * it's still not received, sleep 1, 2, 3 ms. Don't bother waiting |
| 1310 | * further if signal is not received after 1+2+3+4 ms (not expected |
| 1311 | * to happen). |
| 1312 | */ |
| 1313 | { |
Bram Moolenaar | 262735e | 2009-07-14 10:20:22 +0000 | [diff] [blame] | 1314 | long wait_time; |
| 1315 | for (wait_time = 0; !sigcont_received && wait_time <= 3L; wait_time++) |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 1316 | /* Loop is not entered most of the time */ |
Bram Moolenaar | 262735e | 2009-07-14 10:20:22 +0000 | [diff] [blame] | 1317 | mch_delay(wait_time, FALSE); |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 1318 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1319 | # endif |
| 1320 | |
| 1321 | # ifdef FEAT_TITLE |
| 1322 | /* |
| 1323 | * Set oldtitle to NULL, so the current title is obtained again. |
| 1324 | */ |
| 1325 | vim_free(oldtitle); |
| 1326 | oldtitle = NULL; |
| 1327 | # endif |
| 1328 | settmode(TMODE_RAW); |
| 1329 | need_check_timestamps = TRUE; |
| 1330 | did_check_timestamps = FALSE; |
| 1331 | #else |
| 1332 | suspend_shell(); |
| 1333 | #endif |
| 1334 | } |
| 1335 | |
| 1336 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1337 | mch_init(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1338 | { |
| 1339 | Columns = 80; |
| 1340 | Rows = 24; |
| 1341 | |
| 1342 | out_flush(); |
| 1343 | set_signals(); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 1344 | |
Bram Moolenaar | 5671873 | 2006-03-15 22:53:57 +0000 | [diff] [blame] | 1345 | #ifdef MACOS_CONVERT |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 1346 | mac_conv_init(); |
| 1347 | #endif |
Bram Moolenaar | 693e40c | 2013-02-26 14:56:42 +0100 | [diff] [blame] | 1348 | #ifdef FEAT_CYGWIN_WIN32_CLIPBOARD |
| 1349 | win_clip_init(); |
| 1350 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1351 | } |
| 1352 | |
| 1353 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1354 | set_signals(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1355 | { |
| 1356 | #if defined(SIGWINCH) |
| 1357 | /* |
| 1358 | * WINDOW CHANGE signal is handled with sig_winch(). |
| 1359 | */ |
| 1360 | signal(SIGWINCH, (RETSIGTYPE (*)())sig_winch); |
| 1361 | #endif |
| 1362 | |
| 1363 | /* |
| 1364 | * We want the STOP signal to work, to make mch_suspend() work. |
| 1365 | * For "rvim" the STOP signal is ignored. |
| 1366 | */ |
| 1367 | #ifdef SIGTSTP |
| 1368 | signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL); |
| 1369 | #endif |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 1370 | #if defined(_REENTRANT) && defined(SIGCONT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1371 | signal(SIGCONT, sigcont_handler); |
| 1372 | #endif |
| 1373 | |
| 1374 | /* |
| 1375 | * We want to ignore breaking of PIPEs. |
| 1376 | */ |
| 1377 | #ifdef SIGPIPE |
| 1378 | signal(SIGPIPE, SIG_IGN); |
| 1379 | #endif |
| 1380 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1381 | #ifdef SIGINT |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 1382 | catch_int_signal(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1383 | #endif |
| 1384 | |
| 1385 | /* |
| 1386 | * Ignore alarm signals (Perl's alarm() generates it). |
| 1387 | */ |
| 1388 | #ifdef SIGALRM |
| 1389 | signal(SIGALRM, SIG_IGN); |
| 1390 | #endif |
| 1391 | |
| 1392 | /* |
| 1393 | * Catch SIGPWR (power failure?) to preserve the swap files, so that no |
| 1394 | * work will be lost. |
| 1395 | */ |
| 1396 | #ifdef SIGPWR |
| 1397 | signal(SIGPWR, (RETSIGTYPE (*)())catch_sigpwr); |
| 1398 | #endif |
| 1399 | |
| 1400 | /* |
| 1401 | * Arrange for other signals to gracefully shutdown Vim. |
| 1402 | */ |
| 1403 | catch_signals(deathtrap, SIG_ERR); |
| 1404 | |
| 1405 | #if defined(FEAT_GUI) && defined(SIGHUP) |
| 1406 | /* |
| 1407 | * When the GUI is running, ignore the hangup signal. |
| 1408 | */ |
| 1409 | if (gui.in_use) |
| 1410 | signal(SIGHUP, SIG_IGN); |
| 1411 | #endif |
| 1412 | } |
| 1413 | |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 1414 | #if defined(SIGINT) || defined(PROTO) |
| 1415 | /* |
| 1416 | * Catch CTRL-C (only works while in Cooked mode). |
| 1417 | */ |
| 1418 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1419 | catch_int_signal(void) |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 1420 | { |
| 1421 | signal(SIGINT, (RETSIGTYPE (*)())catch_sigint); |
| 1422 | } |
| 1423 | #endif |
| 1424 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1425 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1426 | reset_signals(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1427 | { |
| 1428 | catch_signals(SIG_DFL, SIG_DFL); |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 1429 | #if defined(_REENTRANT) && defined(SIGCONT) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1430 | /* SIGCONT isn't in the list, because its default action is ignore */ |
| 1431 | signal(SIGCONT, SIG_DFL); |
| 1432 | #endif |
| 1433 | } |
| 1434 | |
| 1435 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1436 | catch_signals( |
| 1437 | RETSIGTYPE (*func_deadly)(), |
| 1438 | RETSIGTYPE (*func_other)()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1439 | { |
| 1440 | int i; |
| 1441 | |
| 1442 | for (i = 0; signal_info[i].sig != -1; i++) |
| 1443 | if (signal_info[i].deadly) |
| 1444 | { |
| 1445 | #if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGACTION) |
| 1446 | struct sigaction sa; |
| 1447 | |
| 1448 | /* Setup to use the alternate stack for the signal function. */ |
| 1449 | sa.sa_handler = func_deadly; |
| 1450 | sigemptyset(&sa.sa_mask); |
| 1451 | # if defined(__linux__) && defined(_REENTRANT) |
| 1452 | /* On Linux, with glibc compiled for kernel 2.2, there is a bug in |
| 1453 | * thread handling in combination with using the alternate stack: |
| 1454 | * pthread library functions try to use the stack pointer to |
| 1455 | * identify the current thread, causing a SEGV signal, which |
| 1456 | * recursively calls deathtrap() and hangs. */ |
| 1457 | sa.sa_flags = 0; |
| 1458 | # else |
| 1459 | sa.sa_flags = SA_ONSTACK; |
| 1460 | # endif |
| 1461 | sigaction(signal_info[i].sig, &sa, NULL); |
| 1462 | #else |
| 1463 | # if defined(HAVE_SIGALTSTACK) && defined(HAVE_SIGVEC) |
| 1464 | struct sigvec sv; |
| 1465 | |
| 1466 | /* Setup to use the alternate stack for the signal function. */ |
| 1467 | sv.sv_handler = func_deadly; |
| 1468 | sv.sv_mask = 0; |
| 1469 | sv.sv_flags = SV_ONSTACK; |
| 1470 | sigvec(signal_info[i].sig, &sv, NULL); |
| 1471 | # else |
| 1472 | signal(signal_info[i].sig, func_deadly); |
| 1473 | # endif |
| 1474 | #endif |
| 1475 | } |
| 1476 | else if (func_other != SIG_ERR) |
| 1477 | signal(signal_info[i].sig, func_other); |
| 1478 | } |
| 1479 | |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 1480 | #ifdef HAVE_SIGPROCMASK |
| 1481 | static void |
| 1482 | block_signals(sigset_t *set) |
| 1483 | { |
| 1484 | sigset_t newset; |
| 1485 | int i; |
| 1486 | |
| 1487 | sigemptyset(&newset); |
| 1488 | |
| 1489 | for (i = 0; signal_info[i].sig != -1; i++) |
| 1490 | sigaddset(&newset, signal_info[i].sig); |
| 1491 | |
| 1492 | # if defined(_REENTRANT) && defined(SIGCONT) |
| 1493 | /* SIGCONT isn't in the list, because its default action is ignore */ |
| 1494 | sigaddset(&newset, SIGCONT); |
| 1495 | # endif |
| 1496 | |
| 1497 | sigprocmask(SIG_BLOCK, &newset, set); |
| 1498 | } |
| 1499 | |
| 1500 | static void |
| 1501 | unblock_signals(sigset_t *set) |
| 1502 | { |
| 1503 | sigprocmask(SIG_SETMASK, set, NULL); |
| 1504 | } |
| 1505 | #endif |
| 1506 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1507 | /* |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1508 | * Handling of SIGHUP, SIGQUIT and SIGTERM: |
Bram Moolenaar | 9e1d283 | 2007-05-06 12:51:41 +0000 | [diff] [blame] | 1509 | * "when" == a signal: when busy, postpone and return FALSE, otherwise |
| 1510 | * return TRUE |
| 1511 | * "when" == SIGNAL_BLOCK: Going to be busy, block signals |
| 1512 | * "when" == SIGNAL_UNBLOCK: Going to wait, unblock signals, use postponed |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 1513 | * signal |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1514 | * Returns TRUE when Vim should exit. |
| 1515 | */ |
| 1516 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1517 | vim_handle_signal(int sig) |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1518 | { |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1519 | static int got_signal = 0; |
| 1520 | static int blocked = TRUE; |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1521 | |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1522 | switch (sig) |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1523 | { |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1524 | case SIGNAL_BLOCK: blocked = TRUE; |
| 1525 | break; |
| 1526 | |
| 1527 | case SIGNAL_UNBLOCK: blocked = FALSE; |
| 1528 | if (got_signal != 0) |
| 1529 | { |
| 1530 | kill(getpid(), got_signal); |
| 1531 | got_signal = 0; |
| 1532 | } |
| 1533 | break; |
| 1534 | |
| 1535 | default: if (!blocked) |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1536 | return TRUE; /* exit! */ |
Bram Moolenaar | d8b0cf1 | 2004-12-12 11:33:30 +0000 | [diff] [blame] | 1537 | got_signal = sig; |
| 1538 | #ifdef SIGPWR |
| 1539 | if (sig != SIGPWR) |
| 1540 | #endif |
| 1541 | got_int = TRUE; /* break any loops */ |
Bram Moolenaar | 293ee4d | 2004-12-09 21:34:53 +0000 | [diff] [blame] | 1542 | break; |
| 1543 | } |
| 1544 | return FALSE; |
| 1545 | } |
| 1546 | |
| 1547 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1548 | * Check_win checks whether we have an interactive stdout. |
| 1549 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1550 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1551 | mch_check_win(int argc UNUSED, char **argv UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1552 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1553 | if (isatty(1)) |
| 1554 | return OK; |
| 1555 | return FAIL; |
| 1556 | } |
| 1557 | |
| 1558 | /* |
| 1559 | * Return TRUE if the input comes from a terminal, FALSE otherwise. |
| 1560 | */ |
| 1561 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1562 | mch_input_isatty(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1563 | { |
| 1564 | if (isatty(read_cmd_fd)) |
| 1565 | return TRUE; |
| 1566 | return FALSE; |
| 1567 | } |
| 1568 | |
| 1569 | #ifdef FEAT_X11 |
| 1570 | |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 1571 | # if defined(ELAPSED_TIMEVAL) \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1572 | && (defined(FEAT_XCLIPBOARD) || defined(FEAT_TITLE)) |
| 1573 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1574 | /* |
| 1575 | * Give a message about the elapsed time for opening the X window. |
| 1576 | */ |
| 1577 | static void |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 1578 | xopen_message(long elapsed_msec) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1579 | { |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 1580 | smsg((char_u *)_("Opening the X display took %ld msec"), elapsed_msec); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1581 | } |
| 1582 | # endif |
| 1583 | #endif |
| 1584 | |
| 1585 | #if defined(FEAT_X11) && (defined(FEAT_TITLE) || defined(FEAT_XCLIPBOARD)) |
| 1586 | /* |
| 1587 | * A few functions shared by X11 title and clipboard code. |
| 1588 | */ |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 1589 | static int x_error_handler(Display *dpy, XErrorEvent *error_event); |
| 1590 | static int x_error_check(Display *dpy, XErrorEvent *error_event); |
| 1591 | static int x_connect_to_server(void); |
| 1592 | static int test_x11_window(Display *dpy); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1593 | |
| 1594 | static int got_x_error = FALSE; |
| 1595 | |
| 1596 | /* |
| 1597 | * X Error handler, otherwise X just exits! (very rude) -- webb |
| 1598 | */ |
| 1599 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1600 | x_error_handler(Display *dpy, XErrorEvent *error_event) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1601 | { |
Bram Moolenaar | 843ee41 | 2004-06-30 16:16:41 +0000 | [diff] [blame] | 1602 | XGetErrorText(dpy, error_event->error_code, (char *)IObuff, IOSIZE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1603 | STRCAT(IObuff, _("\nVim: Got X error\n")); |
| 1604 | |
| 1605 | /* We cannot print a message and continue, because no X calls are allowed |
| 1606 | * here (causes my system to hang). Silently continuing might be an |
| 1607 | * alternative... */ |
| 1608 | preserve_exit(); /* preserve files and exit */ |
| 1609 | |
| 1610 | return 0; /* NOTREACHED */ |
| 1611 | } |
| 1612 | |
| 1613 | /* |
| 1614 | * Another X Error handler, just used to check for errors. |
| 1615 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1616 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1617 | x_error_check(Display *dpy UNUSED, XErrorEvent *error_event UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1618 | { |
| 1619 | got_x_error = TRUE; |
| 1620 | return 0; |
| 1621 | } |
| 1622 | |
| 1623 | #if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) |
| 1624 | # if defined(HAVE_SETJMP_H) |
| 1625 | /* |
| 1626 | * An X IO Error handler, used to catch error while opening the display. |
| 1627 | */ |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 1628 | static int x_IOerror_check(Display *dpy); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1629 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1630 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1631 | x_IOerror_check(Display *dpy UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1632 | { |
| 1633 | /* This function should not return, it causes exit(). Longjump instead. */ |
| 1634 | LONGJMP(lc_jump_env, 1); |
Bram Moolenaar | fe17e76 | 2013-06-29 14:17:02 +0200 | [diff] [blame] | 1635 | # if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__) |
Bram Moolenaar | b4990bf | 2010-02-11 18:19:38 +0100 | [diff] [blame] | 1636 | return 0; /* avoid the compiler complains about missing return value */ |
| 1637 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1638 | } |
| 1639 | # endif |
| 1640 | |
| 1641 | /* |
| 1642 | * An X IO Error handler, used to catch terminal errors. |
| 1643 | */ |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 1644 | static int x_IOerror_handler(Display *dpy); |
| 1645 | static void may_restore_clipboard(void); |
Bram Moolenaar | b1e2650 | 2014-11-19 18:48:46 +0100 | [diff] [blame] | 1646 | static int xterm_dpy_was_reset = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1647 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1648 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1649 | x_IOerror_handler(Display *dpy UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1650 | { |
| 1651 | xterm_dpy = NULL; |
Bram Moolenaar | b1e2650 | 2014-11-19 18:48:46 +0100 | [diff] [blame] | 1652 | xterm_dpy_was_reset = TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1653 | x11_window = 0; |
| 1654 | x11_display = NULL; |
| 1655 | xterm_Shell = (Widget)0; |
| 1656 | |
| 1657 | /* This function should not return, it causes exit(). Longjump instead. */ |
| 1658 | LONGJMP(x_jump_env, 1); |
Bram Moolenaar | fe17e76 | 2013-06-29 14:17:02 +0200 | [diff] [blame] | 1659 | # if defined(VMS) || defined(__CYGWIN__) || defined(__CYGWIN32__) |
Bram Moolenaar | b4990bf | 2010-02-11 18:19:38 +0100 | [diff] [blame] | 1660 | return 0; /* avoid the compiler complains about missing return value */ |
| 1661 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1662 | } |
Bram Moolenaar | b1e2650 | 2014-11-19 18:48:46 +0100 | [diff] [blame] | 1663 | |
| 1664 | /* |
| 1665 | * If the X11 connection was lost try to restore it. |
| 1666 | * Helps when the X11 server was stopped and restarted while Vim was inactive |
Bram Moolenaar | caad4f0 | 2014-12-17 14:36:14 +0100 | [diff] [blame] | 1667 | * (e.g. through tmux). |
Bram Moolenaar | b1e2650 | 2014-11-19 18:48:46 +0100 | [diff] [blame] | 1668 | */ |
| 1669 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1670 | may_restore_clipboard(void) |
Bram Moolenaar | b1e2650 | 2014-11-19 18:48:46 +0100 | [diff] [blame] | 1671 | { |
| 1672 | if (xterm_dpy_was_reset) |
| 1673 | { |
| 1674 | xterm_dpy_was_reset = FALSE; |
Bram Moolenaar | 527a678 | 2014-12-17 17:59:31 +0100 | [diff] [blame] | 1675 | |
| 1676 | # ifndef LESSTIF_VERSION |
| 1677 | /* This has been reported to avoid Vim getting stuck. */ |
| 1678 | if (app_context != (XtAppContext)NULL) |
| 1679 | { |
| 1680 | XtDestroyApplicationContext(app_context); |
| 1681 | app_context = (XtAppContext)NULL; |
| 1682 | x11_display = NULL; /* freed by XtDestroyApplicationContext() */ |
| 1683 | } |
| 1684 | # endif |
| 1685 | |
Bram Moolenaar | b1e2650 | 2014-11-19 18:48:46 +0100 | [diff] [blame] | 1686 | setup_term_clip(); |
| 1687 | get_x11_title(FALSE); |
| 1688 | } |
| 1689 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1690 | #endif |
| 1691 | |
| 1692 | /* |
| 1693 | * Return TRUE when connection to the X server is desired. |
| 1694 | */ |
| 1695 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1696 | x_connect_to_server(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1697 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1698 | #if defined(FEAT_CLIENTSERVER) |
| 1699 | if (x_force_connect) |
| 1700 | return TRUE; |
| 1701 | #endif |
| 1702 | if (x_no_connect) |
| 1703 | return FALSE; |
| 1704 | |
| 1705 | /* Check for a match with "exclude:" from 'clipboard'. */ |
| 1706 | if (clip_exclude_prog != NULL) |
| 1707 | { |
Bram Moolenaar | dffa5b8 | 2014-11-19 16:38:07 +0100 | [diff] [blame] | 1708 | if (vim_regexec_prog(&clip_exclude_prog, FALSE, T_NAME, (colnr_T)0)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1709 | return FALSE; |
| 1710 | } |
| 1711 | return TRUE; |
| 1712 | } |
| 1713 | |
| 1714 | /* |
| 1715 | * Test if "dpy" and x11_window are valid by getting the window title. |
| 1716 | * I don't actually want it yet, so there may be a simpler call to use, but |
| 1717 | * this will cause the error handler x_error_check() to be called if anything |
| 1718 | * is wrong, such as the window pointer being invalid (as can happen when the |
| 1719 | * user changes his DISPLAY, but not his WINDOWID) -- webb |
| 1720 | */ |
| 1721 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1722 | test_x11_window(Display *dpy) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1723 | { |
| 1724 | int (*old_handler)(); |
| 1725 | XTextProperty text_prop; |
| 1726 | |
| 1727 | old_handler = XSetErrorHandler(x_error_check); |
| 1728 | got_x_error = FALSE; |
| 1729 | if (XGetWMName(dpy, x11_window, &text_prop)) |
| 1730 | XFree((void *)text_prop.value); |
| 1731 | XSync(dpy, False); |
| 1732 | (void)XSetErrorHandler(old_handler); |
| 1733 | |
| 1734 | if (p_verbose > 0 && got_x_error) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 1735 | verb_msg((char_u *)_("Testing the X display failed")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1736 | |
| 1737 | return (got_x_error ? FAIL : OK); |
| 1738 | } |
| 1739 | #endif |
| 1740 | |
| 1741 | #ifdef FEAT_TITLE |
| 1742 | |
| 1743 | #ifdef FEAT_X11 |
| 1744 | |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 1745 | static int get_x11_thing(int get_title, int test_only); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1746 | |
| 1747 | /* |
| 1748 | * try to get x11 window and display |
| 1749 | * |
| 1750 | * return FAIL for failure, OK otherwise |
| 1751 | */ |
| 1752 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1753 | get_x11_windis(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1754 | { |
| 1755 | char *winid; |
| 1756 | static int result = -1; |
| 1757 | #define XD_NONE 0 /* x11_display not set here */ |
| 1758 | #define XD_HERE 1 /* x11_display opened here */ |
| 1759 | #define XD_GUI 2 /* x11_display used from gui.dpy */ |
| 1760 | #define XD_XTERM 3 /* x11_display used from xterm_dpy */ |
| 1761 | static int x11_display_from = XD_NONE; |
| 1762 | static int did_set_error_handler = FALSE; |
| 1763 | |
| 1764 | if (!did_set_error_handler) |
| 1765 | { |
| 1766 | /* X just exits if it finds an error otherwise! */ |
| 1767 | (void)XSetErrorHandler(x_error_handler); |
| 1768 | did_set_error_handler = TRUE; |
| 1769 | } |
| 1770 | |
Bram Moolenaar | 9372a11 | 2005-12-06 19:59:18 +0000 | [diff] [blame] | 1771 | #if defined(FEAT_GUI_X11) || defined(FEAT_GUI_GTK) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1772 | if (gui.in_use) |
| 1773 | { |
| 1774 | /* |
| 1775 | * If the X11 display was opened here before, for the window where Vim |
| 1776 | * was started, close that one now to avoid a memory leak. |
| 1777 | */ |
| 1778 | if (x11_display_from == XD_HERE && x11_display != NULL) |
| 1779 | { |
| 1780 | XCloseDisplay(x11_display); |
| 1781 | x11_display_from = XD_NONE; |
| 1782 | } |
| 1783 | if (gui_get_x11_windis(&x11_window, &x11_display) == OK) |
| 1784 | { |
| 1785 | x11_display_from = XD_GUI; |
| 1786 | return OK; |
| 1787 | } |
| 1788 | x11_display = NULL; |
| 1789 | return FAIL; |
| 1790 | } |
| 1791 | else if (x11_display_from == XD_GUI) |
| 1792 | { |
| 1793 | /* GUI must have stopped somehow, clear x11_display */ |
| 1794 | x11_window = 0; |
| 1795 | x11_display = NULL; |
| 1796 | x11_display_from = XD_NONE; |
| 1797 | } |
| 1798 | #endif |
| 1799 | |
| 1800 | /* When started with the "-X" argument, don't try connecting. */ |
| 1801 | if (!x_connect_to_server()) |
| 1802 | return FAIL; |
| 1803 | |
| 1804 | /* |
| 1805 | * If WINDOWID not set, should try another method to find out |
| 1806 | * what the current window number is. The only code I know for |
| 1807 | * this is very complicated. |
| 1808 | * We assume that zero is invalid for WINDOWID. |
| 1809 | */ |
| 1810 | if (x11_window == 0 && (winid = getenv("WINDOWID")) != NULL) |
| 1811 | x11_window = (Window)atol(winid); |
| 1812 | |
| 1813 | #ifdef FEAT_XCLIPBOARD |
| 1814 | if (xterm_dpy != NULL && x11_window != 0) |
| 1815 | { |
Bram Moolenaar | c2a27c3 | 2007-12-01 16:19:33 +0000 | [diff] [blame] | 1816 | /* We may have checked it already, but Gnome terminal can move us to |
| 1817 | * another window, so we need to check every time. */ |
| 1818 | if (x11_display_from != XD_XTERM) |
| 1819 | { |
| 1820 | /* |
| 1821 | * If the X11 display was opened here before, for the window where |
| 1822 | * Vim was started, close that one now to avoid a memory leak. |
| 1823 | */ |
| 1824 | if (x11_display_from == XD_HERE && x11_display != NULL) |
| 1825 | XCloseDisplay(x11_display); |
| 1826 | x11_display = xterm_dpy; |
| 1827 | x11_display_from = XD_XTERM; |
| 1828 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1829 | if (test_x11_window(x11_display) == FAIL) |
| 1830 | { |
| 1831 | /* probably bad $WINDOWID */ |
| 1832 | x11_window = 0; |
| 1833 | x11_display = NULL; |
| 1834 | x11_display_from = XD_NONE; |
| 1835 | return FAIL; |
| 1836 | } |
| 1837 | return OK; |
| 1838 | } |
| 1839 | #endif |
| 1840 | |
| 1841 | if (x11_window == 0 || x11_display == NULL) |
| 1842 | result = -1; |
| 1843 | |
| 1844 | if (result != -1) /* Have already been here and set this */ |
| 1845 | return result; /* Don't do all these X calls again */ |
| 1846 | |
| 1847 | if (x11_window != 0 && x11_display == NULL) |
| 1848 | { |
| 1849 | #ifdef SET_SIG_ALARM |
| 1850 | RETSIGTYPE (*sig_save)(); |
| 1851 | #endif |
| 1852 | #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) |
| 1853 | struct timeval start_tv; |
| 1854 | |
| 1855 | if (p_verbose > 0) |
| 1856 | gettimeofday(&start_tv, NULL); |
| 1857 | #endif |
| 1858 | |
| 1859 | #ifdef SET_SIG_ALARM |
| 1860 | /* |
| 1861 | * Opening the Display may hang if the DISPLAY setting is wrong, or |
| 1862 | * the network connection is bad. Set an alarm timer to get out. |
| 1863 | */ |
| 1864 | sig_alarm_called = FALSE; |
| 1865 | sig_save = (RETSIGTYPE (*)())signal(SIGALRM, |
| 1866 | (RETSIGTYPE (*)())sig_alarm); |
| 1867 | alarm(2); |
| 1868 | #endif |
| 1869 | x11_display = XOpenDisplay(NULL); |
| 1870 | |
| 1871 | #ifdef SET_SIG_ALARM |
| 1872 | alarm(0); |
| 1873 | signal(SIGALRM, (RETSIGTYPE (*)())sig_save); |
| 1874 | if (p_verbose > 0 && sig_alarm_called) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 1875 | verb_msg((char_u *)_("Opening the X display timed out")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1876 | #endif |
| 1877 | if (x11_display != NULL) |
| 1878 | { |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 1879 | # ifdef ELAPSED_FUNC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1880 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 1881 | { |
| 1882 | verbose_enter(); |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 1883 | xopen_message(ELAPSED_FUNC(start_tv)); |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 1884 | verbose_leave(); |
| 1885 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1886 | # endif |
| 1887 | if (test_x11_window(x11_display) == FAIL) |
| 1888 | { |
| 1889 | /* Maybe window id is bad */ |
| 1890 | x11_window = 0; |
| 1891 | XCloseDisplay(x11_display); |
| 1892 | x11_display = NULL; |
| 1893 | } |
| 1894 | else |
| 1895 | x11_display_from = XD_HERE; |
| 1896 | } |
| 1897 | } |
| 1898 | if (x11_window == 0 || x11_display == NULL) |
| 1899 | return (result = FAIL); |
Bram Moolenaar | 727c876 | 2010-10-20 19:17:48 +0200 | [diff] [blame] | 1900 | |
| 1901 | # ifdef FEAT_EVAL |
| 1902 | set_vim_var_nr(VV_WINDOWID, (long)x11_window); |
| 1903 | # endif |
| 1904 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1905 | return (result = OK); |
| 1906 | } |
| 1907 | |
| 1908 | /* |
| 1909 | * Determine original x11 Window Title |
| 1910 | */ |
| 1911 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1912 | get_x11_title(int test_only) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1913 | { |
Bram Moolenaar | 47136d7 | 2004-10-12 20:02:24 +0000 | [diff] [blame] | 1914 | return get_x11_thing(TRUE, test_only); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1915 | } |
| 1916 | |
| 1917 | /* |
| 1918 | * Determine original x11 Window icon |
| 1919 | */ |
| 1920 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1921 | get_x11_icon(int test_only) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1922 | { |
| 1923 | int retval = FALSE; |
| 1924 | |
| 1925 | retval = get_x11_thing(FALSE, test_only); |
| 1926 | |
| 1927 | /* could not get old icon, use terminal name */ |
| 1928 | if (oldicon == NULL && !test_only) |
| 1929 | { |
| 1930 | if (STRNCMP(T_NAME, "builtin_", 8) == 0) |
Bram Moolenaar | 20de1c2 | 2009-07-22 11:28:11 +0000 | [diff] [blame] | 1931 | oldicon = vim_strsave(T_NAME + 8); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1932 | else |
Bram Moolenaar | 20de1c2 | 2009-07-22 11:28:11 +0000 | [diff] [blame] | 1933 | oldicon = vim_strsave(T_NAME); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1934 | } |
| 1935 | |
| 1936 | return retval; |
| 1937 | } |
| 1938 | |
| 1939 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 1940 | get_x11_thing( |
| 1941 | int get_title, /* get title string */ |
| 1942 | int test_only) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 1943 | { |
| 1944 | XTextProperty text_prop; |
| 1945 | int retval = FALSE; |
| 1946 | Status status; |
| 1947 | |
| 1948 | if (get_x11_windis() == OK) |
| 1949 | { |
| 1950 | /* Get window/icon name if any */ |
| 1951 | if (get_title) |
| 1952 | status = XGetWMName(x11_display, x11_window, &text_prop); |
| 1953 | else |
| 1954 | status = XGetWMIconName(x11_display, x11_window, &text_prop); |
| 1955 | |
| 1956 | /* |
| 1957 | * If terminal is xterm, then x11_window may be a child window of the |
| 1958 | * outer xterm window that actually contains the window/icon name, so |
| 1959 | * keep traversing up the tree until a window with a title/icon is |
| 1960 | * found. |
| 1961 | */ |
| 1962 | /* Previously this was only done for xterm and alikes. I don't see a |
| 1963 | * reason why it would fail for other terminal emulators. |
| 1964 | * if (term_is_xterm) */ |
| 1965 | { |
| 1966 | Window root; |
| 1967 | Window parent; |
| 1968 | Window win = x11_window; |
| 1969 | Window *children; |
| 1970 | unsigned int num_children; |
| 1971 | |
| 1972 | while (!status || text_prop.value == NULL) |
| 1973 | { |
| 1974 | if (!XQueryTree(x11_display, win, &root, &parent, &children, |
| 1975 | &num_children)) |
| 1976 | break; |
| 1977 | if (children) |
| 1978 | XFree((void *)children); |
| 1979 | if (parent == root || parent == 0) |
| 1980 | break; |
| 1981 | |
| 1982 | win = parent; |
| 1983 | if (get_title) |
| 1984 | status = XGetWMName(x11_display, win, &text_prop); |
| 1985 | else |
| 1986 | status = XGetWMIconName(x11_display, win, &text_prop); |
| 1987 | } |
| 1988 | } |
| 1989 | if (status && text_prop.value != NULL) |
| 1990 | { |
| 1991 | retval = TRUE; |
| 1992 | if (!test_only) |
| 1993 | { |
Bram Moolenaar | f82bac3 | 2010-07-25 22:30:20 +0200 | [diff] [blame] | 1994 | #if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE) |
| 1995 | if (text_prop.encoding == XA_STRING |
| 1996 | # ifdef FEAT_MBYTE |
| 1997 | && !has_mbyte |
| 1998 | # endif |
| 1999 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2000 | { |
| 2001 | #endif |
| 2002 | if (get_title) |
| 2003 | oldtitle = vim_strsave((char_u *)text_prop.value); |
| 2004 | else |
| 2005 | oldicon = vim_strsave((char_u *)text_prop.value); |
Bram Moolenaar | f82bac3 | 2010-07-25 22:30:20 +0200 | [diff] [blame] | 2006 | #if defined(FEAT_XFONTSET) || defined(FEAT_MBYTE) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2007 | } |
| 2008 | else |
| 2009 | { |
| 2010 | char **cl; |
| 2011 | Status transform_status; |
| 2012 | int n = 0; |
| 2013 | |
| 2014 | transform_status = XmbTextPropertyToTextList(x11_display, |
| 2015 | &text_prop, |
| 2016 | &cl, &n); |
| 2017 | if (transform_status >= Success && n > 0 && cl[0]) |
| 2018 | { |
| 2019 | if (get_title) |
| 2020 | oldtitle = vim_strsave((char_u *) cl[0]); |
| 2021 | else |
| 2022 | oldicon = vim_strsave((char_u *) cl[0]); |
| 2023 | XFreeStringList(cl); |
| 2024 | } |
| 2025 | else |
| 2026 | { |
| 2027 | if (get_title) |
| 2028 | oldtitle = vim_strsave((char_u *)text_prop.value); |
| 2029 | else |
| 2030 | oldicon = vim_strsave((char_u *)text_prop.value); |
| 2031 | } |
| 2032 | } |
| 2033 | #endif |
| 2034 | } |
| 2035 | XFree((void *)text_prop.value); |
| 2036 | } |
| 2037 | } |
| 2038 | return retval; |
| 2039 | } |
| 2040 | |
Bram Moolenaar | cbc246a | 2014-10-11 14:47:26 +0200 | [diff] [blame] | 2041 | /* Xutf8 functions are not avaialble on older systems. Note that on some |
| 2042 | * systems X_HAVE_UTF8_STRING may be defined in a header file but |
| 2043 | * Xutf8SetWMProperties() is not in the X11 library. Configure checks for |
| 2044 | * that and defines HAVE_XUTF8SETWMPROPERTIES. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2045 | #if defined(X_HAVE_UTF8_STRING) && defined(FEAT_MBYTE) |
Bram Moolenaar | cbc246a | 2014-10-11 14:47:26 +0200 | [diff] [blame] | 2046 | # if X_HAVE_UTF8_STRING && HAVE_XUTF8SETWMPROPERTIES |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2047 | # define USE_UTF8_STRING |
| 2048 | # endif |
| 2049 | #endif |
| 2050 | |
| 2051 | /* |
| 2052 | * Set x11 Window Title |
| 2053 | * |
| 2054 | * get_x11_windis() must be called before this and have returned OK |
| 2055 | */ |
| 2056 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2057 | set_x11_title(char_u *title) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2058 | { |
| 2059 | /* XmbSetWMProperties() and Xutf8SetWMProperties() should use a STRING |
| 2060 | * when possible, COMPOUND_TEXT otherwise. COMPOUND_TEXT isn't |
| 2061 | * supported everywhere and STRING doesn't work for multi-byte titles. |
| 2062 | */ |
| 2063 | #ifdef USE_UTF8_STRING |
| 2064 | if (enc_utf8) |
| 2065 | Xutf8SetWMProperties(x11_display, x11_window, (const char *)title, |
| 2066 | NULL, NULL, 0, NULL, NULL, NULL); |
| 2067 | else |
| 2068 | #endif |
| 2069 | { |
| 2070 | #if XtSpecificationRelease >= 4 |
| 2071 | # ifdef FEAT_XFONTSET |
| 2072 | XmbSetWMProperties(x11_display, x11_window, (const char *)title, |
| 2073 | NULL, NULL, 0, NULL, NULL, NULL); |
| 2074 | # else |
| 2075 | XTextProperty text_prop; |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame] | 2076 | char *c_title = (char *)title; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2077 | |
| 2078 | /* directly from example 3-18 "basicwin" of Xlib Programming Manual */ |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame] | 2079 | (void)XStringListToTextProperty(&c_title, 1, &text_prop); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2080 | XSetWMProperties(x11_display, x11_window, &text_prop, |
| 2081 | NULL, NULL, 0, NULL, NULL, NULL); |
| 2082 | # endif |
| 2083 | #else |
| 2084 | XStoreName(x11_display, x11_window, (char *)title); |
| 2085 | #endif |
| 2086 | } |
| 2087 | XFlush(x11_display); |
| 2088 | } |
| 2089 | |
| 2090 | /* |
| 2091 | * Set x11 Window icon |
| 2092 | * |
| 2093 | * get_x11_windis() must be called before this and have returned OK |
| 2094 | */ |
| 2095 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2096 | set_x11_icon(char_u *icon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2097 | { |
| 2098 | /* See above for comments about using X*SetWMProperties(). */ |
| 2099 | #ifdef USE_UTF8_STRING |
| 2100 | if (enc_utf8) |
| 2101 | Xutf8SetWMProperties(x11_display, x11_window, NULL, (const char *)icon, |
| 2102 | NULL, 0, NULL, NULL, NULL); |
| 2103 | else |
| 2104 | #endif |
| 2105 | { |
| 2106 | #if XtSpecificationRelease >= 4 |
| 2107 | # ifdef FEAT_XFONTSET |
| 2108 | XmbSetWMProperties(x11_display, x11_window, NULL, (const char *)icon, |
| 2109 | NULL, 0, NULL, NULL, NULL); |
| 2110 | # else |
| 2111 | XTextProperty text_prop; |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame] | 2112 | char *c_icon = (char *)icon; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2113 | |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame] | 2114 | (void)XStringListToTextProperty(&c_icon, 1, &text_prop); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2115 | XSetWMProperties(x11_display, x11_window, NULL, &text_prop, |
| 2116 | NULL, 0, NULL, NULL, NULL); |
| 2117 | # endif |
| 2118 | #else |
| 2119 | XSetIconName(x11_display, x11_window, (char *)icon); |
| 2120 | #endif |
| 2121 | } |
| 2122 | XFlush(x11_display); |
| 2123 | } |
| 2124 | |
| 2125 | #else /* FEAT_X11 */ |
| 2126 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2127 | static int |
Bram Moolenaar | d14e00e | 2016-01-31 17:30:51 +0100 | [diff] [blame] | 2128 | get_x11_title(int test_only UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2129 | { |
| 2130 | return FALSE; |
| 2131 | } |
| 2132 | |
| 2133 | static int |
Bram Moolenaar | d14e00e | 2016-01-31 17:30:51 +0100 | [diff] [blame] | 2134 | get_x11_icon(int test_only) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2135 | { |
| 2136 | if (!test_only) |
| 2137 | { |
| 2138 | if (STRNCMP(T_NAME, "builtin_", 8) == 0) |
Bram Moolenaar | 20de1c2 | 2009-07-22 11:28:11 +0000 | [diff] [blame] | 2139 | oldicon = vim_strsave(T_NAME + 8); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2140 | else |
Bram Moolenaar | 20de1c2 | 2009-07-22 11:28:11 +0000 | [diff] [blame] | 2141 | oldicon = vim_strsave(T_NAME); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2142 | } |
| 2143 | return FALSE; |
| 2144 | } |
| 2145 | |
| 2146 | #endif /* FEAT_X11 */ |
| 2147 | |
| 2148 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2149 | mch_can_restore_title(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2150 | { |
| 2151 | return get_x11_title(TRUE); |
| 2152 | } |
| 2153 | |
| 2154 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2155 | mch_can_restore_icon(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2156 | { |
| 2157 | return get_x11_icon(TRUE); |
| 2158 | } |
| 2159 | |
| 2160 | /* |
| 2161 | * Set the window title and icon. |
| 2162 | */ |
| 2163 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2164 | mch_settitle(char_u *title, char_u *icon) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2165 | { |
| 2166 | int type = 0; |
| 2167 | static int recursive = 0; |
| 2168 | |
| 2169 | if (T_NAME == NULL) /* no terminal name (yet) */ |
| 2170 | return; |
| 2171 | if (title == NULL && icon == NULL) /* nothing to do */ |
| 2172 | return; |
| 2173 | |
| 2174 | /* When one of the X11 functions causes a deadly signal, we get here again |
| 2175 | * recursively. Avoid hanging then (something is probably locked). */ |
| 2176 | if (recursive) |
| 2177 | return; |
| 2178 | ++recursive; |
| 2179 | |
| 2180 | /* |
| 2181 | * if the window ID and the display is known, we may use X11 calls |
| 2182 | */ |
| 2183 | #ifdef FEAT_X11 |
| 2184 | if (get_x11_windis() == OK) |
| 2185 | type = 1; |
| 2186 | #else |
| 2187 | # if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) |
| 2188 | if (gui.in_use) |
| 2189 | type = 1; |
| 2190 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2191 | #endif |
| 2192 | |
| 2193 | /* |
Bram Moolenaar | f82bac3 | 2010-07-25 22:30:20 +0200 | [diff] [blame] | 2194 | * Note: if "t_ts" is set, title is set with escape sequence rather |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2195 | * than x11 calls, because the x11 calls don't always work |
| 2196 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2197 | if ((type || *T_TS != NUL) && title != NULL) |
| 2198 | { |
| 2199 | if (oldtitle == NULL |
| 2200 | #ifdef FEAT_GUI |
| 2201 | && !gui.in_use |
| 2202 | #endif |
| 2203 | ) /* first call but not in GUI, save title */ |
| 2204 | (void)get_x11_title(FALSE); |
| 2205 | |
| 2206 | if (*T_TS != NUL) /* it's OK if t_fs is empty */ |
| 2207 | term_settitle(title); |
| 2208 | #ifdef FEAT_X11 |
| 2209 | else |
| 2210 | # ifdef FEAT_GUI_GTK |
| 2211 | if (!gui.in_use) /* don't do this if GTK+ is running */ |
| 2212 | # endif |
| 2213 | set_x11_title(title); /* x11 */ |
| 2214 | #endif |
Bram Moolenaar | 2fa15e6 | 2005-01-04 21:23:48 +0000 | [diff] [blame] | 2215 | #if defined(FEAT_GUI_GTK) \ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2216 | || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) |
| 2217 | else |
| 2218 | gui_mch_settitle(title, icon); |
| 2219 | #endif |
| 2220 | did_set_title = TRUE; |
| 2221 | } |
| 2222 | |
| 2223 | if ((type || *T_CIS != NUL) && icon != NULL) |
| 2224 | { |
| 2225 | if (oldicon == NULL |
| 2226 | #ifdef FEAT_GUI |
| 2227 | && !gui.in_use |
| 2228 | #endif |
| 2229 | ) /* first call, save icon */ |
| 2230 | get_x11_icon(FALSE); |
| 2231 | |
| 2232 | if (*T_CIS != NUL) |
| 2233 | { |
| 2234 | out_str(T_CIS); /* set icon start */ |
| 2235 | out_str_nf(icon); |
| 2236 | out_str(T_CIE); /* set icon end */ |
| 2237 | out_flush(); |
| 2238 | } |
| 2239 | #ifdef FEAT_X11 |
| 2240 | else |
| 2241 | # ifdef FEAT_GUI_GTK |
| 2242 | if (!gui.in_use) /* don't do this if GTK+ is running */ |
| 2243 | # endif |
| 2244 | set_x11_icon(icon); /* x11 */ |
| 2245 | #endif |
| 2246 | did_set_icon = TRUE; |
| 2247 | } |
| 2248 | --recursive; |
| 2249 | } |
| 2250 | |
| 2251 | /* |
| 2252 | * Restore the window/icon title. |
| 2253 | * "which" is one of: |
| 2254 | * 1 only restore title |
| 2255 | * 2 only restore icon |
| 2256 | * 3 restore title and icon |
| 2257 | */ |
| 2258 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2259 | mch_restore_title(int which) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2260 | { |
| 2261 | /* only restore the title or icon when it has been set */ |
| 2262 | mch_settitle(((which & 1) && did_set_title) ? |
| 2263 | (oldtitle ? oldtitle : p_titleold) : NULL, |
| 2264 | ((which & 2) && did_set_icon) ? oldicon : NULL); |
| 2265 | } |
| 2266 | |
| 2267 | #endif /* FEAT_TITLE */ |
| 2268 | |
| 2269 | /* |
| 2270 | * Return TRUE if "name" looks like some xterm name. |
Bram Moolenaar | 3a7c85b | 2005-02-05 21:39:53 +0000 | [diff] [blame] | 2271 | * Seiichi Sato mentioned that "mlterm" works like xterm. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2272 | */ |
| 2273 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2274 | vim_is_xterm(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2275 | { |
| 2276 | if (name == NULL) |
| 2277 | return FALSE; |
| 2278 | return (STRNICMP(name, "xterm", 5) == 0 |
| 2279 | || STRNICMP(name, "nxterm", 6) == 0 |
| 2280 | || STRNICMP(name, "kterm", 5) == 0 |
Bram Moolenaar | 3a7c85b | 2005-02-05 21:39:53 +0000 | [diff] [blame] | 2281 | || STRNICMP(name, "mlterm", 6) == 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2282 | || STRNICMP(name, "rxvt", 4) == 0 |
| 2283 | || STRCMP(name, "builtin_xterm") == 0); |
| 2284 | } |
| 2285 | |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 2286 | #if defined(FEAT_MOUSE_XTERM) || defined(PROTO) |
| 2287 | /* |
| 2288 | * Return TRUE if "name" appears to be that of a terminal |
| 2289 | * known to support the xterm-style mouse protocol. |
| 2290 | * Relies on term_is_xterm having been set to its correct value. |
| 2291 | */ |
| 2292 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2293 | use_xterm_like_mouse(char_u *name) |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 2294 | { |
| 2295 | return (name != NULL |
Bram Moolenaar | e56132b | 2016-08-14 18:23:21 +0200 | [diff] [blame] | 2296 | && (term_is_xterm |
| 2297 | || STRNICMP(name, "screen", 6) == 0 |
Bram Moolenaar | 0ba4070 | 2016-10-12 14:50:54 +0200 | [diff] [blame] | 2298 | || STRNICMP(name, "tmux", 4) == 0 |
Bram Moolenaar | e56132b | 2016-08-14 18:23:21 +0200 | [diff] [blame] | 2299 | || STRICMP(name, "st") == 0 |
| 2300 | || STRNICMP(name, "st-", 3) == 0 |
| 2301 | || STRNICMP(name, "stterm", 6) == 0)); |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 2302 | } |
| 2303 | #endif |
| 2304 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2305 | #if defined(FEAT_MOUSE_TTY) || defined(PROTO) |
| 2306 | /* |
| 2307 | * Return non-zero when using an xterm mouse, according to 'ttymouse'. |
| 2308 | * Return 1 for "xterm". |
| 2309 | * Return 2 for "xterm2". |
Bram Moolenaar | c842748 | 2011-10-20 21:09:35 +0200 | [diff] [blame] | 2310 | * Return 3 for "urxvt". |
Bram Moolenaar | 2b9578f | 2012-08-15 16:21:32 +0200 | [diff] [blame] | 2311 | * Return 4 for "sgr". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2312 | */ |
| 2313 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2314 | use_xterm_mouse(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2315 | { |
Bram Moolenaar | 2b9578f | 2012-08-15 16:21:32 +0200 | [diff] [blame] | 2316 | if (ttym_flags == TTYM_SGR) |
| 2317 | return 4; |
Bram Moolenaar | c842748 | 2011-10-20 21:09:35 +0200 | [diff] [blame] | 2318 | if (ttym_flags == TTYM_URXVT) |
| 2319 | return 3; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2320 | if (ttym_flags == TTYM_XTERM2) |
| 2321 | return 2; |
| 2322 | if (ttym_flags == TTYM_XTERM) |
| 2323 | return 1; |
| 2324 | return 0; |
| 2325 | } |
| 2326 | #endif |
| 2327 | |
| 2328 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2329 | vim_is_iris(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2330 | { |
| 2331 | if (name == NULL) |
| 2332 | return FALSE; |
| 2333 | return (STRNICMP(name, "iris-ansi", 9) == 0 |
| 2334 | || STRCMP(name, "builtin_iris-ansi") == 0); |
| 2335 | } |
| 2336 | |
| 2337 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2338 | vim_is_vt300(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2339 | { |
| 2340 | if (name == NULL) |
| 2341 | return FALSE; /* actually all ANSI comp. terminals should be here */ |
Bram Moolenaar | d4755bb | 2004-09-02 19:12:26 +0000 | [diff] [blame] | 2342 | /* catch VT100 - VT5xx */ |
| 2343 | return ((STRNICMP(name, "vt", 2) == 0 |
| 2344 | && vim_strchr((char_u *)"12345", name[2]) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2345 | || STRCMP(name, "builtin_vt320") == 0); |
| 2346 | } |
| 2347 | |
| 2348 | /* |
| 2349 | * Return TRUE if "name" is a terminal for which 'ttyfast' should be set. |
| 2350 | * This should include all windowed terminal emulators. |
| 2351 | */ |
| 2352 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2353 | vim_is_fastterm(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2354 | { |
| 2355 | if (name == NULL) |
| 2356 | return FALSE; |
| 2357 | if (vim_is_xterm(name) || vim_is_vt300(name) || vim_is_iris(name)) |
| 2358 | return TRUE; |
| 2359 | return ( STRNICMP(name, "hpterm", 6) == 0 |
| 2360 | || STRNICMP(name, "sun-cmd", 7) == 0 |
| 2361 | || STRNICMP(name, "screen", 6) == 0 |
Bram Moolenaar | 0ba4070 | 2016-10-12 14:50:54 +0200 | [diff] [blame] | 2362 | || STRNICMP(name, "tmux", 4) == 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2363 | || STRNICMP(name, "dtterm", 6) == 0); |
| 2364 | } |
| 2365 | |
| 2366 | /* |
| 2367 | * Insert user name in s[len]. |
| 2368 | * Return OK if a name found. |
| 2369 | */ |
| 2370 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2371 | mch_get_user_name(char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2372 | { |
| 2373 | #ifdef VMS |
Bram Moolenaar | ffb8ab0 | 2005-09-07 21:15:32 +0000 | [diff] [blame] | 2374 | vim_strncpy(s, (char_u *)cuserid(NULL), len - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2375 | return OK; |
| 2376 | #else |
| 2377 | return mch_get_uname(getuid(), s, len); |
| 2378 | #endif |
| 2379 | } |
| 2380 | |
| 2381 | /* |
| 2382 | * Insert user name for "uid" in s[len]. |
| 2383 | * Return OK if a name found. |
| 2384 | */ |
| 2385 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2386 | mch_get_uname(uid_t uid, char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2387 | { |
| 2388 | #if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID) |
| 2389 | struct passwd *pw; |
| 2390 | |
| 2391 | if ((pw = getpwuid(uid)) != NULL |
| 2392 | && pw->pw_name != NULL && *(pw->pw_name) != NUL) |
| 2393 | { |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 2394 | vim_strncpy(s, (char_u *)pw->pw_name, len - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2395 | return OK; |
| 2396 | } |
| 2397 | #endif |
| 2398 | sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */ |
| 2399 | return FAIL; /* a number is not a name */ |
| 2400 | } |
| 2401 | |
| 2402 | /* |
| 2403 | * Insert host name is s[len]. |
| 2404 | */ |
| 2405 | |
| 2406 | #ifdef HAVE_SYS_UTSNAME_H |
| 2407 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2408 | mch_get_host_name(char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2409 | { |
| 2410 | struct utsname vutsname; |
| 2411 | |
| 2412 | if (uname(&vutsname) < 0) |
| 2413 | *s = NUL; |
| 2414 | else |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 2415 | vim_strncpy(s, (char_u *)vutsname.nodename, len - 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2416 | } |
| 2417 | #else /* HAVE_SYS_UTSNAME_H */ |
| 2418 | |
| 2419 | # ifdef HAVE_SYS_SYSTEMINFO_H |
| 2420 | # define gethostname(nam, len) sysinfo(SI_HOSTNAME, nam, len) |
| 2421 | # endif |
| 2422 | |
| 2423 | void |
Bram Moolenaar | d14e00e | 2016-01-31 17:30:51 +0100 | [diff] [blame] | 2424 | mch_get_host_name(char_u *s, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2425 | { |
| 2426 | # ifdef VAXC |
| 2427 | vaxc$gethostname((char *)s, len); |
| 2428 | # else |
| 2429 | gethostname((char *)s, len); |
| 2430 | # endif |
| 2431 | s[len - 1] = NUL; /* make sure it's terminated */ |
| 2432 | } |
| 2433 | #endif /* HAVE_SYS_UTSNAME_H */ |
| 2434 | |
| 2435 | /* |
| 2436 | * return process ID |
| 2437 | */ |
| 2438 | long |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2439 | mch_get_pid(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2440 | { |
| 2441 | return (long)getpid(); |
| 2442 | } |
| 2443 | |
| 2444 | #if !defined(HAVE_STRERROR) && defined(USE_GETCWD) |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 2445 | static char *strerror(int); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2446 | |
| 2447 | static char * |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2448 | strerror(int err) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2449 | { |
| 2450 | extern int sys_nerr; |
| 2451 | extern char *sys_errlist[]; |
| 2452 | static char er[20]; |
| 2453 | |
| 2454 | if (err > 0 && err < sys_nerr) |
| 2455 | return (sys_errlist[err]); |
| 2456 | sprintf(er, "Error %d", err); |
| 2457 | return er; |
| 2458 | } |
| 2459 | #endif |
| 2460 | |
| 2461 | /* |
| 2462 | * Get name of current directory into buffer 'buf' of length 'len' bytes. |
| 2463 | * Return OK for success, FAIL for failure. |
| 2464 | */ |
| 2465 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2466 | mch_dirname(char_u *buf, int len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2467 | { |
| 2468 | #if defined(USE_GETCWD) |
| 2469 | if (getcwd((char *)buf, len) == NULL) |
| 2470 | { |
| 2471 | STRCPY(buf, strerror(errno)); |
| 2472 | return FAIL; |
| 2473 | } |
| 2474 | return OK; |
| 2475 | #else |
| 2476 | return (getwd((char *)buf) != NULL ? OK : FAIL); |
| 2477 | #endif |
| 2478 | } |
| 2479 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2480 | /* |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 2481 | * Get absolute file name into "buf[len]". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2482 | * |
| 2483 | * return FAIL for failure, OK for success |
| 2484 | */ |
| 2485 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2486 | mch_FullName( |
| 2487 | char_u *fname, |
| 2488 | char_u *buf, |
| 2489 | int len, |
| 2490 | int force) /* also expand when already absolute path */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2491 | { |
| 2492 | int l; |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2493 | #ifdef HAVE_FCHDIR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2494 | int fd = -1; |
| 2495 | static int dont_fchdir = FALSE; /* TRUE when fchdir() doesn't work */ |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2496 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2497 | char_u olddir[MAXPATHL]; |
| 2498 | char_u *p; |
| 2499 | int retval = OK; |
Bram Moolenaar | bf82072 | 2008-06-21 11:12:49 +0000 | [diff] [blame] | 2500 | #ifdef __CYGWIN__ |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 2501 | char_u posix_fname[MAXPATHL]; /* Cygwin docs mention MAX_PATH, but |
| 2502 | it's not always defined */ |
Bram Moolenaar | bf82072 | 2008-06-21 11:12:49 +0000 | [diff] [blame] | 2503 | #endif |
| 2504 | |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2505 | #ifdef VMS |
| 2506 | fname = vms_fixfilename(fname); |
| 2507 | #endif |
| 2508 | |
Bram Moolenaar | a244243 | 2007-04-26 14:26:37 +0000 | [diff] [blame] | 2509 | #ifdef __CYGWIN__ |
| 2510 | /* |
| 2511 | * This helps for when "/etc/hosts" is a symlink to "c:/something/hosts". |
| 2512 | */ |
Bram Moolenaar | 0d1498e | 2008-06-29 12:00:49 +0000 | [diff] [blame] | 2513 | # if CYGWIN_VERSION_DLL_MAJOR >= 1007 |
Bram Moolenaar | 06b0734 | 2015-12-31 22:26:28 +0100 | [diff] [blame] | 2514 | /* Use CCP_RELATIVE to avoid that it sometimes returns a path that ends in |
| 2515 | * a forward slash. */ |
| 2516 | cygwin_conv_path(CCP_WIN_A_TO_POSIX | CCP_RELATIVE, |
| 2517 | fname, posix_fname, MAXPATHL); |
Bram Moolenaar | 0d1498e | 2008-06-29 12:00:49 +0000 | [diff] [blame] | 2518 | # else |
Bram Moolenaar | bf82072 | 2008-06-21 11:12:49 +0000 | [diff] [blame] | 2519 | cygwin_conv_to_posix_path(fname, posix_fname); |
Bram Moolenaar | 0d1498e | 2008-06-29 12:00:49 +0000 | [diff] [blame] | 2520 | # endif |
Bram Moolenaar | bf82072 | 2008-06-21 11:12:49 +0000 | [diff] [blame] | 2521 | fname = posix_fname; |
Bram Moolenaar | a244243 | 2007-04-26 14:26:37 +0000 | [diff] [blame] | 2522 | #endif |
| 2523 | |
Bram Moolenaar | e3303cb | 2015-12-31 18:29:46 +0100 | [diff] [blame] | 2524 | /* Expand it if forced or not an absolute path. |
| 2525 | * Do not do it for "/file", the result is always "/". */ |
| 2526 | if ((force || !mch_isFullName(fname)) |
| 2527 | && ((p = vim_strrchr(fname, '/')) == NULL || p != fname)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2528 | { |
| 2529 | /* |
| 2530 | * If the file name has a path, change to that directory for a moment, |
| 2531 | * and then do the getwd() (and get back to where we were). |
| 2532 | * This will get the correct path name with "../" things. |
| 2533 | */ |
Bram Moolenaar | e3303cb | 2015-12-31 18:29:46 +0100 | [diff] [blame] | 2534 | if (p != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2535 | { |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2536 | #ifdef HAVE_FCHDIR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2537 | /* |
| 2538 | * Use fchdir() if possible, it's said to be faster and more |
| 2539 | * reliable. But on SunOS 4 it might not work. Check this by |
| 2540 | * doing a fchdir() right now. |
| 2541 | */ |
| 2542 | if (!dont_fchdir) |
| 2543 | { |
| 2544 | fd = open(".", O_RDONLY | O_EXTRA, 0); |
| 2545 | if (fd >= 0 && fchdir(fd) < 0) |
| 2546 | { |
| 2547 | close(fd); |
| 2548 | fd = -1; |
| 2549 | dont_fchdir = TRUE; /* don't try again */ |
| 2550 | } |
| 2551 | } |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2552 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2553 | |
| 2554 | /* Only change directory when we are sure we can return to where |
| 2555 | * we are now. After doing "su" chdir(".") might not work. */ |
| 2556 | if ( |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2557 | #ifdef HAVE_FCHDIR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2558 | fd < 0 && |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2559 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2560 | (mch_dirname(olddir, MAXPATHL) == FAIL |
| 2561 | || mch_chdir((char *)olddir) != 0)) |
| 2562 | { |
| 2563 | p = NULL; /* can't get current dir: don't chdir */ |
| 2564 | retval = FAIL; |
| 2565 | } |
| 2566 | else |
| 2567 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2568 | /* The directory is copied into buf[], to be able to remove |
| 2569 | * the file name without changing it (could be a string in |
| 2570 | * read-only memory) */ |
| 2571 | if (p - fname >= len) |
| 2572 | retval = FAIL; |
| 2573 | else |
| 2574 | { |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 2575 | vim_strncpy(buf, fname, p - fname); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2576 | if (mch_chdir((char *)buf)) |
| 2577 | retval = FAIL; |
| 2578 | else |
| 2579 | fname = p + 1; |
| 2580 | *buf = NUL; |
| 2581 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2582 | } |
| 2583 | } |
| 2584 | if (mch_dirname(buf, len) == FAIL) |
| 2585 | { |
| 2586 | retval = FAIL; |
| 2587 | *buf = NUL; |
| 2588 | } |
| 2589 | if (p != NULL) |
| 2590 | { |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2591 | #ifdef HAVE_FCHDIR |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2592 | if (fd >= 0) |
| 2593 | { |
Bram Moolenaar | 2572492 | 2009-07-14 15:38:41 +0000 | [diff] [blame] | 2594 | if (p_verbose >= 5) |
| 2595 | { |
| 2596 | verbose_enter(); |
| 2597 | MSG("fchdir() to previous dir"); |
| 2598 | verbose_leave(); |
| 2599 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2600 | l = fchdir(fd); |
| 2601 | close(fd); |
| 2602 | } |
| 2603 | else |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2604 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2605 | l = mch_chdir((char *)olddir); |
| 2606 | if (l != 0) |
| 2607 | EMSG(_(e_prev_dir)); |
| 2608 | } |
| 2609 | |
| 2610 | l = STRLEN(buf); |
Bram Moolenaar | dac7569 | 2012-10-14 04:35:45 +0200 | [diff] [blame] | 2611 | if (l >= len - 1) |
| 2612 | retval = FAIL; /* no space for trailing "/" */ |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2613 | #ifndef VMS |
Bram Moolenaar | dac7569 | 2012-10-14 04:35:45 +0200 | [diff] [blame] | 2614 | else if (l > 0 && buf[l - 1] != '/' && *fname != NUL |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2615 | && STRCMP(fname, ".") != 0) |
Bram Moolenaar | dac7569 | 2012-10-14 04:35:45 +0200 | [diff] [blame] | 2616 | STRCAT(buf, "/"); |
Bram Moolenaar | 38323e4 | 2007-03-06 19:22:53 +0000 | [diff] [blame] | 2617 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2618 | } |
Bram Moolenaar | 3d20ca1 | 2006-11-28 16:43:58 +0000 | [diff] [blame] | 2619 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2620 | /* Catch file names which are too long. */ |
Bram Moolenaar | 78a1531 | 2009-05-15 19:33:18 +0000 | [diff] [blame] | 2621 | if (retval == FAIL || (int)(STRLEN(buf) + STRLEN(fname)) >= len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2622 | return FAIL; |
| 2623 | |
| 2624 | /* Do not append ".", "/dir/." is equal to "/dir". */ |
| 2625 | if (STRCMP(fname, ".") != 0) |
| 2626 | STRCAT(buf, fname); |
| 2627 | |
| 2628 | return OK; |
| 2629 | } |
| 2630 | |
| 2631 | /* |
| 2632 | * Return TRUE if "fname" does not depend on the current directory. |
| 2633 | */ |
| 2634 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2635 | mch_isFullName(char_u *fname) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2636 | { |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 2637 | #ifdef VMS |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2638 | return ( fname[0] == '/' || fname[0] == '.' || |
| 2639 | strchr((char *)fname,':') || strchr((char *)fname,'"') || |
| 2640 | (strchr((char *)fname,'[') && strchr((char *)fname,']'))|| |
| 2641 | (strchr((char *)fname,'<') && strchr((char *)fname,'>')) ); |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 2642 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2643 | return (*fname == '/' || *fname == '~'); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2644 | #endif |
| 2645 | } |
| 2646 | |
Bram Moolenaar | 24552be | 2005-12-10 20:17:30 +0000 | [diff] [blame] | 2647 | #if defined(USE_FNAME_CASE) || defined(PROTO) |
| 2648 | /* |
| 2649 | * Set the case of the file name, if it already exists. This will cause the |
| 2650 | * file name to remain exactly the same. |
Bram Moolenaar | c2a27c3 | 2007-12-01 16:19:33 +0000 | [diff] [blame] | 2651 | * Only required for file systems where case is ignored and preserved. |
Bram Moolenaar | 24552be | 2005-12-10 20:17:30 +0000 | [diff] [blame] | 2652 | */ |
Bram Moolenaar | 24552be | 2005-12-10 20:17:30 +0000 | [diff] [blame] | 2653 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2654 | fname_case( |
| 2655 | char_u *name, |
| 2656 | int len UNUSED) /* buffer size, only used when name gets longer */ |
Bram Moolenaar | 24552be | 2005-12-10 20:17:30 +0000 | [diff] [blame] | 2657 | { |
| 2658 | struct stat st; |
| 2659 | char_u *slash, *tail; |
| 2660 | DIR *dirp; |
| 2661 | struct dirent *dp; |
| 2662 | |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 2663 | if (mch_lstat((char *)name, &st) >= 0) |
Bram Moolenaar | 24552be | 2005-12-10 20:17:30 +0000 | [diff] [blame] | 2664 | { |
| 2665 | /* Open the directory where the file is located. */ |
| 2666 | slash = vim_strrchr(name, '/'); |
| 2667 | if (slash == NULL) |
| 2668 | { |
| 2669 | dirp = opendir("."); |
| 2670 | tail = name; |
| 2671 | } |
| 2672 | else |
| 2673 | { |
| 2674 | *slash = NUL; |
| 2675 | dirp = opendir((char *)name); |
| 2676 | *slash = '/'; |
| 2677 | tail = slash + 1; |
| 2678 | } |
| 2679 | |
| 2680 | if (dirp != NULL) |
| 2681 | { |
| 2682 | while ((dp = readdir(dirp)) != NULL) |
| 2683 | { |
| 2684 | /* Only accept names that differ in case and are the same byte |
| 2685 | * length. TODO: accept different length name. */ |
| 2686 | if (STRICMP(tail, dp->d_name) == 0 |
| 2687 | && STRLEN(tail) == STRLEN(dp->d_name)) |
| 2688 | { |
| 2689 | char_u newname[MAXPATHL + 1]; |
| 2690 | struct stat st2; |
| 2691 | |
| 2692 | /* Verify the inode is equal. */ |
| 2693 | vim_strncpy(newname, name, MAXPATHL); |
| 2694 | vim_strncpy(newname + (tail - name), (char_u *)dp->d_name, |
| 2695 | MAXPATHL - (tail - name)); |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 2696 | if (mch_lstat((char *)newname, &st2) >= 0 |
Bram Moolenaar | 24552be | 2005-12-10 20:17:30 +0000 | [diff] [blame] | 2697 | && st.st_ino == st2.st_ino |
| 2698 | && st.st_dev == st2.st_dev) |
| 2699 | { |
| 2700 | STRCPY(tail, dp->d_name); |
| 2701 | break; |
| 2702 | } |
| 2703 | } |
| 2704 | } |
| 2705 | |
| 2706 | closedir(dirp); |
| 2707 | } |
| 2708 | } |
| 2709 | } |
| 2710 | #endif |
| 2711 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2712 | /* |
| 2713 | * Get file permissions for 'name'. |
| 2714 | * Returns -1 when it doesn't exist. |
| 2715 | */ |
| 2716 | long |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2717 | mch_getperm(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2718 | { |
| 2719 | struct stat statb; |
| 2720 | |
| 2721 | /* Keep the #ifdef outside of stat(), it may be a macro. */ |
| 2722 | #ifdef VMS |
| 2723 | if (stat((char *)vms_fixfilename(name), &statb)) |
| 2724 | #else |
| 2725 | if (stat((char *)name, &statb)) |
| 2726 | #endif |
| 2727 | return -1; |
Bram Moolenaar | 708f62c | 2007-08-11 20:24:10 +0000 | [diff] [blame] | 2728 | #ifdef __INTERIX |
| 2729 | /* The top bit makes the value negative, which means the file doesn't |
| 2730 | * exist. Remove the bit, we don't use it. */ |
| 2731 | return statb.st_mode & ~S_ADDACE; |
| 2732 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2733 | return statb.st_mode; |
Bram Moolenaar | 708f62c | 2007-08-11 20:24:10 +0000 | [diff] [blame] | 2734 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2735 | } |
| 2736 | |
| 2737 | /* |
| 2738 | * set file permission for 'name' to 'perm' |
| 2739 | * |
| 2740 | * return FAIL for failure, OK otherwise |
| 2741 | */ |
| 2742 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2743 | mch_setperm(char_u *name, long perm) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2744 | { |
| 2745 | return (chmod((char *) |
| 2746 | #ifdef VMS |
| 2747 | vms_fixfilename(name), |
| 2748 | #else |
| 2749 | name, |
| 2750 | #endif |
| 2751 | (mode_t)perm) == 0 ? OK : FAIL); |
| 2752 | } |
| 2753 | |
| 2754 | #if defined(HAVE_ACL) || defined(PROTO) |
| 2755 | # ifdef HAVE_SYS_ACL_H |
| 2756 | # include <sys/acl.h> |
| 2757 | # endif |
| 2758 | # ifdef HAVE_SYS_ACCESS_H |
| 2759 | # include <sys/access.h> |
| 2760 | # endif |
| 2761 | |
| 2762 | # ifdef HAVE_SOLARIS_ACL |
| 2763 | typedef struct vim_acl_solaris_T { |
| 2764 | int acl_cnt; |
| 2765 | aclent_t *acl_entry; |
| 2766 | } vim_acl_solaris_T; |
| 2767 | # endif |
| 2768 | |
Bram Moolenaar | 588ebeb | 2008-05-07 17:09:24 +0000 | [diff] [blame] | 2769 | #if defined(HAVE_SELINUX) || defined(PROTO) |
| 2770 | /* |
| 2771 | * Copy security info from "from_file" to "to_file". |
| 2772 | */ |
| 2773 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2774 | mch_copy_sec(char_u *from_file, char_u *to_file) |
Bram Moolenaar | 588ebeb | 2008-05-07 17:09:24 +0000 | [diff] [blame] | 2775 | { |
| 2776 | if (from_file == NULL) |
| 2777 | return; |
| 2778 | |
| 2779 | if (selinux_enabled == -1) |
| 2780 | selinux_enabled = is_selinux_enabled(); |
| 2781 | |
| 2782 | if (selinux_enabled > 0) |
| 2783 | { |
| 2784 | security_context_t from_context = NULL; |
| 2785 | security_context_t to_context = NULL; |
| 2786 | |
| 2787 | if (getfilecon((char *)from_file, &from_context) < 0) |
| 2788 | { |
| 2789 | /* If the filesystem doesn't support extended attributes, |
| 2790 | the original had no special security context and the |
| 2791 | target cannot have one either. */ |
| 2792 | if (errno == EOPNOTSUPP) |
| 2793 | return; |
| 2794 | |
| 2795 | MSG_PUTS(_("\nCould not get security context for ")); |
| 2796 | msg_outtrans(from_file); |
| 2797 | msg_putchar('\n'); |
| 2798 | return; |
| 2799 | } |
| 2800 | if (getfilecon((char *)to_file, &to_context) < 0) |
| 2801 | { |
| 2802 | MSG_PUTS(_("\nCould not get security context for ")); |
| 2803 | msg_outtrans(to_file); |
| 2804 | msg_putchar('\n'); |
| 2805 | freecon (from_context); |
| 2806 | return ; |
| 2807 | } |
| 2808 | if (strcmp(from_context, to_context) != 0) |
| 2809 | { |
| 2810 | if (setfilecon((char *)to_file, from_context) < 0) |
| 2811 | { |
| 2812 | MSG_PUTS(_("\nCould not set security context for ")); |
| 2813 | msg_outtrans(to_file); |
| 2814 | msg_putchar('\n'); |
| 2815 | } |
| 2816 | } |
| 2817 | freecon(to_context); |
| 2818 | freecon(from_context); |
| 2819 | } |
| 2820 | } |
| 2821 | #endif /* HAVE_SELINUX */ |
| 2822 | |
Bram Moolenaar | 5bd32f4 | 2014-04-02 14:05:38 +0200 | [diff] [blame] | 2823 | #if defined(HAVE_SMACK) && !defined(PROTO) |
| 2824 | /* |
| 2825 | * Copy security info from "from_file" to "to_file". |
| 2826 | */ |
| 2827 | void |
Bram Moolenaar | d14e00e | 2016-01-31 17:30:51 +0100 | [diff] [blame] | 2828 | mch_copy_sec(char_u *from_file, char_u *to_file) |
Bram Moolenaar | 5bd32f4 | 2014-04-02 14:05:38 +0200 | [diff] [blame] | 2829 | { |
Bram Moolenaar | 62f167f | 2014-04-23 12:52:40 +0200 | [diff] [blame] | 2830 | static const char * const smack_copied_attributes[] = |
Bram Moolenaar | 5bd32f4 | 2014-04-02 14:05:38 +0200 | [diff] [blame] | 2831 | { |
| 2832 | XATTR_NAME_SMACK, |
| 2833 | XATTR_NAME_SMACKEXEC, |
| 2834 | XATTR_NAME_SMACKMMAP |
| 2835 | }; |
| 2836 | |
| 2837 | char buffer[SMACK_LABEL_LEN]; |
| 2838 | const char *name; |
| 2839 | int index; |
| 2840 | int ret; |
| 2841 | ssize_t size; |
| 2842 | |
| 2843 | if (from_file == NULL) |
| 2844 | return; |
| 2845 | |
| 2846 | for (index = 0 ; index < (int)(sizeof(smack_copied_attributes) |
| 2847 | / sizeof(smack_copied_attributes)[0]) ; index++) |
| 2848 | { |
| 2849 | /* get the name of the attribute to copy */ |
| 2850 | name = smack_copied_attributes[index]; |
| 2851 | |
| 2852 | /* get the value of the attribute in buffer */ |
| 2853 | size = getxattr((char*)from_file, name, buffer, sizeof(buffer)); |
| 2854 | if (size >= 0) |
| 2855 | { |
| 2856 | /* copy the attribute value of buffer */ |
| 2857 | ret = setxattr((char*)to_file, name, buffer, (size_t)size, 0); |
| 2858 | if (ret < 0) |
| 2859 | { |
Bram Moolenaar | 4a1314c | 2016-01-27 20:47:18 +0100 | [diff] [blame] | 2860 | vim_snprintf((char *)IObuff, IOSIZE, |
| 2861 | _("Could not set security context %s for %s"), |
| 2862 | name, to_file); |
| 2863 | msg_outtrans(IObuff); |
Bram Moolenaar | 5bd32f4 | 2014-04-02 14:05:38 +0200 | [diff] [blame] | 2864 | msg_putchar('\n'); |
| 2865 | } |
| 2866 | } |
| 2867 | else |
| 2868 | { |
| 2869 | /* what reason of not having the attribute value? */ |
| 2870 | switch (errno) |
| 2871 | { |
| 2872 | case ENOTSUP: |
| 2873 | /* extended attributes aren't supported or enabled */ |
| 2874 | /* should a message be echoed? not sure... */ |
| 2875 | return; /* leave because it isn't usefull to continue */ |
| 2876 | |
| 2877 | case ERANGE: |
| 2878 | default: |
| 2879 | /* no enough size OR unexpected error */ |
Bram Moolenaar | 4a1314c | 2016-01-27 20:47:18 +0100 | [diff] [blame] | 2880 | vim_snprintf((char *)IObuff, IOSIZE, |
| 2881 | _("Could not get security context %s for %s. Removing it!"), |
| 2882 | name, from_file); |
| 2883 | msg_puts(IObuff); |
| 2884 | msg_putchar('\n'); |
Bram Moolenaar | 5bd32f4 | 2014-04-02 14:05:38 +0200 | [diff] [blame] | 2885 | /* FALLTHROUGH to remove the attribute */ |
| 2886 | |
| 2887 | case ENODATA: |
| 2888 | /* no attribute of this name */ |
| 2889 | ret = removexattr((char*)to_file, name); |
Bram Moolenaar | 57a728d | 2014-04-02 23:09:26 +0200 | [diff] [blame] | 2890 | /* Silently ignore errors, apparently this happens when |
| 2891 | * smack is not actually being used. */ |
Bram Moolenaar | 5bd32f4 | 2014-04-02 14:05:38 +0200 | [diff] [blame] | 2892 | break; |
| 2893 | } |
| 2894 | } |
| 2895 | } |
| 2896 | } |
| 2897 | #endif /* HAVE_SMACK */ |
| 2898 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2899 | /* |
| 2900 | * Return a pointer to the ACL of file "fname" in allocated memory. |
| 2901 | * Return NULL if the ACL is not available for whatever reason. |
| 2902 | */ |
| 2903 | vim_acl_T |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2904 | mch_get_acl(char_u *fname UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2905 | { |
| 2906 | vim_acl_T ret = NULL; |
| 2907 | #ifdef HAVE_POSIX_ACL |
| 2908 | ret = (vim_acl_T)acl_get_file((char *)fname, ACL_TYPE_ACCESS); |
| 2909 | #else |
Bram Moolenaar | 8d462f9 | 2012-02-05 22:51:33 +0100 | [diff] [blame] | 2910 | #ifdef HAVE_SOLARIS_ZFS_ACL |
| 2911 | acl_t *aclent; |
| 2912 | |
| 2913 | if (acl_get((char *)fname, 0, &aclent) < 0) |
| 2914 | return NULL; |
| 2915 | ret = (vim_acl_T)aclent; |
| 2916 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2917 | #ifdef HAVE_SOLARIS_ACL |
| 2918 | vim_acl_solaris_T *aclent; |
| 2919 | |
| 2920 | aclent = malloc(sizeof(vim_acl_solaris_T)); |
| 2921 | if ((aclent->acl_cnt = acl((char *)fname, GETACLCNT, 0, NULL)) < 0) |
| 2922 | { |
| 2923 | free(aclent); |
| 2924 | return NULL; |
| 2925 | } |
| 2926 | aclent->acl_entry = malloc(aclent->acl_cnt * sizeof(aclent_t)); |
| 2927 | if (acl((char *)fname, GETACL, aclent->acl_cnt, aclent->acl_entry) < 0) |
| 2928 | { |
| 2929 | free(aclent->acl_entry); |
| 2930 | free(aclent); |
| 2931 | return NULL; |
| 2932 | } |
| 2933 | ret = (vim_acl_T)aclent; |
| 2934 | #else |
| 2935 | #if defined(HAVE_AIX_ACL) |
| 2936 | int aclsize; |
| 2937 | struct acl *aclent; |
| 2938 | |
| 2939 | aclsize = sizeof(struct acl); |
| 2940 | aclent = malloc(aclsize); |
| 2941 | if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0) |
| 2942 | { |
| 2943 | if (errno == ENOSPC) |
| 2944 | { |
| 2945 | aclsize = aclent->acl_len; |
| 2946 | aclent = realloc(aclent, aclsize); |
| 2947 | if (statacl((char *)fname, STX_NORMAL, aclent, aclsize) < 0) |
| 2948 | { |
| 2949 | free(aclent); |
| 2950 | return NULL; |
| 2951 | } |
| 2952 | } |
| 2953 | else |
| 2954 | { |
| 2955 | free(aclent); |
| 2956 | return NULL; |
| 2957 | } |
| 2958 | } |
| 2959 | ret = (vim_acl_T)aclent; |
| 2960 | #endif /* HAVE_AIX_ACL */ |
| 2961 | #endif /* HAVE_SOLARIS_ACL */ |
Bram Moolenaar | 8d462f9 | 2012-02-05 22:51:33 +0100 | [diff] [blame] | 2962 | #endif /* HAVE_SOLARIS_ZFS_ACL */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2963 | #endif /* HAVE_POSIX_ACL */ |
| 2964 | return ret; |
| 2965 | } |
| 2966 | |
| 2967 | /* |
| 2968 | * Set the ACL of file "fname" to "acl" (unless it's NULL). |
| 2969 | */ |
| 2970 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2971 | mch_set_acl(char_u *fname UNUSED, vim_acl_T aclent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2972 | { |
| 2973 | if (aclent == NULL) |
| 2974 | return; |
| 2975 | #ifdef HAVE_POSIX_ACL |
| 2976 | acl_set_file((char *)fname, ACL_TYPE_ACCESS, (acl_t)aclent); |
| 2977 | #else |
Bram Moolenaar | 8d462f9 | 2012-02-05 22:51:33 +0100 | [diff] [blame] | 2978 | #ifdef HAVE_SOLARIS_ZFS_ACL |
| 2979 | acl_set((char *)fname, (acl_t *)aclent); |
| 2980 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2981 | #ifdef HAVE_SOLARIS_ACL |
| 2982 | acl((char *)fname, SETACL, ((vim_acl_solaris_T *)aclent)->acl_cnt, |
| 2983 | ((vim_acl_solaris_T *)aclent)->acl_entry); |
| 2984 | #else |
| 2985 | #ifdef HAVE_AIX_ACL |
| 2986 | chacl((char *)fname, aclent, ((struct acl *)aclent)->acl_len); |
| 2987 | #endif /* HAVE_AIX_ACL */ |
| 2988 | #endif /* HAVE_SOLARIS_ACL */ |
Bram Moolenaar | 8d462f9 | 2012-02-05 22:51:33 +0100 | [diff] [blame] | 2989 | #endif /* HAVE_SOLARIS_ZFS_ACL */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2990 | #endif /* HAVE_POSIX_ACL */ |
| 2991 | } |
| 2992 | |
| 2993 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 2994 | mch_free_acl(vim_acl_T aclent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 2995 | { |
| 2996 | if (aclent == NULL) |
| 2997 | return; |
| 2998 | #ifdef HAVE_POSIX_ACL |
| 2999 | acl_free((acl_t)aclent); |
| 3000 | #else |
Bram Moolenaar | 8d462f9 | 2012-02-05 22:51:33 +0100 | [diff] [blame] | 3001 | #ifdef HAVE_SOLARIS_ZFS_ACL |
| 3002 | acl_free((acl_t *)aclent); |
| 3003 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3004 | #ifdef HAVE_SOLARIS_ACL |
| 3005 | free(((vim_acl_solaris_T *)aclent)->acl_entry); |
| 3006 | free(aclent); |
| 3007 | #else |
| 3008 | #ifdef HAVE_AIX_ACL |
| 3009 | free(aclent); |
| 3010 | #endif /* HAVE_AIX_ACL */ |
| 3011 | #endif /* HAVE_SOLARIS_ACL */ |
Bram Moolenaar | 8d462f9 | 2012-02-05 22:51:33 +0100 | [diff] [blame] | 3012 | #endif /* HAVE_SOLARIS_ZFS_ACL */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3013 | #endif /* HAVE_POSIX_ACL */ |
| 3014 | } |
| 3015 | #endif |
| 3016 | |
| 3017 | /* |
| 3018 | * Set hidden flag for "name". |
| 3019 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3020 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3021 | mch_hide(char_u *name UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3022 | { |
| 3023 | /* can't hide a file */ |
| 3024 | } |
| 3025 | |
| 3026 | /* |
Bram Moolenaar | 43a34f9 | 2016-01-17 15:56:34 +0100 | [diff] [blame] | 3027 | * return TRUE if "name" is a directory or a symlink to a directory |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3028 | * return FALSE if "name" is not a directory |
| 3029 | * return FALSE for error |
| 3030 | */ |
| 3031 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3032 | mch_isdir(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3033 | { |
| 3034 | struct stat statb; |
| 3035 | |
| 3036 | if (*name == NUL) /* Some stat()s don't flag "" as an error. */ |
| 3037 | return FALSE; |
| 3038 | if (stat((char *)name, &statb)) |
| 3039 | return FALSE; |
| 3040 | #ifdef _POSIX_SOURCE |
| 3041 | return (S_ISDIR(statb.st_mode) ? TRUE : FALSE); |
| 3042 | #else |
| 3043 | return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE); |
| 3044 | #endif |
| 3045 | } |
| 3046 | |
Bram Moolenaar | 43a34f9 | 2016-01-17 15:56:34 +0100 | [diff] [blame] | 3047 | /* |
| 3048 | * return TRUE if "name" is a directory, NOT a symlink to a directory |
| 3049 | * return FALSE if "name" is not a directory |
| 3050 | * return FALSE for error |
| 3051 | */ |
| 3052 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3053 | mch_isrealdir(char_u *name) |
Bram Moolenaar | 43a34f9 | 2016-01-17 15:56:34 +0100 | [diff] [blame] | 3054 | { |
| 3055 | struct stat statb; |
| 3056 | |
| 3057 | if (*name == NUL) /* Some stat()s don't flag "" as an error. */ |
| 3058 | return FALSE; |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 3059 | if (mch_lstat((char *)name, &statb)) |
Bram Moolenaar | 43a34f9 | 2016-01-17 15:56:34 +0100 | [diff] [blame] | 3060 | return FALSE; |
| 3061 | #ifdef _POSIX_SOURCE |
| 3062 | return (S_ISDIR(statb.st_mode) ? TRUE : FALSE); |
| 3063 | #else |
| 3064 | return ((statb.st_mode & S_IFMT) == S_IFDIR ? TRUE : FALSE); |
| 3065 | #endif |
| 3066 | } |
| 3067 | |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 3068 | static int executable_file(char_u *name); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3069 | |
| 3070 | /* |
| 3071 | * Return 1 if "name" is an executable file, 0 if not or it doesn't exist. |
| 3072 | */ |
| 3073 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3074 | executable_file(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3075 | { |
| 3076 | struct stat st; |
| 3077 | |
| 3078 | if (stat((char *)name, &st)) |
| 3079 | return 0; |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 3080 | #ifdef VMS |
| 3081 | /* Like on Unix system file can have executable rights but not necessarily |
| 3082 | * be an executable, but on Unix is not a default for an ordianry file to |
| 3083 | * have an executable flag - on VMS it is in most cases. |
| 3084 | * Therefore, this check does not have any sense - let keep us to the |
| 3085 | * conventions instead: |
| 3086 | * *.COM and *.EXE files are the executables - the rest are not. This is |
| 3087 | * not ideal but better then it was. |
| 3088 | */ |
| 3089 | int vms_executable = 0; |
| 3090 | if (S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0) |
| 3091 | { |
| 3092 | if (strstr(vms_tolower((char*)name),".exe") != NULL |
| 3093 | || strstr(vms_tolower((char*)name),".com")!= NULL) |
| 3094 | vms_executable = 1; |
| 3095 | } |
| 3096 | return vms_executable; |
| 3097 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3098 | return S_ISREG(st.st_mode) && mch_access((char *)name, X_OK) == 0; |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 3099 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3100 | } |
| 3101 | |
| 3102 | /* |
Bram Moolenaar | 2fcf668 | 2017-03-11 20:03:42 +0100 | [diff] [blame] | 3103 | * Return TRUE if "name" can be found in $PATH and executed, FALSE if not. |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 3104 | * If "use_path" is FALSE only check if "name" is executable. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3105 | * Return -1 if unknown. |
| 3106 | */ |
| 3107 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3108 | mch_can_exe(char_u *name, char_u **path, int use_path) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3109 | { |
| 3110 | char_u *buf; |
| 3111 | char_u *p, *e; |
| 3112 | int retval; |
| 3113 | |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 3114 | /* When "use_path" is false and if it's an absolute or relative path don't |
| 3115 | * need to use $PATH. */ |
| 3116 | if (!use_path || mch_isFullName(name) || (name[0] == '.' |
| 3117 | && (name[1] == '/' || (name[1] == '.' && name[2] == '/')))) |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 3118 | { |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 3119 | /* There must be a path separator, files in the current directory |
| 3120 | * can't be executed. */ |
| 3121 | if (gettail(name) != name && executable_file(name)) |
Bram Moolenaar | c7f0255 | 2014-04-01 21:00:59 +0200 | [diff] [blame] | 3122 | { |
| 3123 | if (path != NULL) |
| 3124 | { |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 3125 | if (name[0] != '/') |
Bram Moolenaar | c7f0255 | 2014-04-01 21:00:59 +0200 | [diff] [blame] | 3126 | *path = FullName_save(name, TRUE); |
| 3127 | else |
| 3128 | *path = vim_strsave(name); |
| 3129 | } |
| 3130 | return TRUE; |
| 3131 | } |
| 3132 | return FALSE; |
Bram Moolenaar | 206f011 | 2014-03-12 16:51:55 +0100 | [diff] [blame] | 3133 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3134 | |
| 3135 | p = (char_u *)getenv("PATH"); |
| 3136 | if (p == NULL || *p == NUL) |
| 3137 | return -1; |
| 3138 | buf = alloc((unsigned)(STRLEN(name) + STRLEN(p) + 2)); |
| 3139 | if (buf == NULL) |
| 3140 | return -1; |
| 3141 | |
| 3142 | /* |
| 3143 | * Walk through all entries in $PATH to check if "name" exists there and |
| 3144 | * is an executable file. |
| 3145 | */ |
| 3146 | for (;;) |
| 3147 | { |
| 3148 | e = (char_u *)strchr((char *)p, ':'); |
| 3149 | if (e == NULL) |
| 3150 | e = p + STRLEN(p); |
| 3151 | if (e - p <= 1) /* empty entry means current dir */ |
| 3152 | STRCPY(buf, "./"); |
| 3153 | else |
| 3154 | { |
Bram Moolenaar | bbebc85 | 2005-07-18 21:47:53 +0000 | [diff] [blame] | 3155 | vim_strncpy(buf, p, e - p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3156 | add_pathsep(buf); |
| 3157 | } |
| 3158 | STRCAT(buf, name); |
| 3159 | retval = executable_file(buf); |
| 3160 | if (retval == 1) |
Bram Moolenaar | c7f0255 | 2014-04-01 21:00:59 +0200 | [diff] [blame] | 3161 | { |
| 3162 | if (path != NULL) |
| 3163 | { |
Bram Moolenaar | 4366319 | 2017-03-05 14:29:12 +0100 | [diff] [blame] | 3164 | if (buf[0] != '/') |
Bram Moolenaar | c7f0255 | 2014-04-01 21:00:59 +0200 | [diff] [blame] | 3165 | *path = FullName_save(buf, TRUE); |
| 3166 | else |
| 3167 | *path = vim_strsave(buf); |
| 3168 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3169 | break; |
Bram Moolenaar | c7f0255 | 2014-04-01 21:00:59 +0200 | [diff] [blame] | 3170 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3171 | |
| 3172 | if (*e != ':') |
| 3173 | break; |
| 3174 | p = e + 1; |
| 3175 | } |
| 3176 | |
| 3177 | vim_free(buf); |
| 3178 | return retval; |
| 3179 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3180 | |
| 3181 | /* |
| 3182 | * Check what "name" is: |
| 3183 | * NODE_NORMAL: file or directory (or doesn't exist) |
| 3184 | * NODE_WRITABLE: writable device, socket, fifo, etc. |
| 3185 | * NODE_OTHER: non-writable things |
| 3186 | */ |
| 3187 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3188 | mch_nodetype(char_u *name) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3189 | { |
| 3190 | struct stat st; |
| 3191 | |
| 3192 | if (stat((char *)name, &st)) |
| 3193 | return NODE_NORMAL; |
| 3194 | if (S_ISREG(st.st_mode) || S_ISDIR(st.st_mode)) |
| 3195 | return NODE_NORMAL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3196 | if (S_ISBLK(st.st_mode)) /* block device isn't writable */ |
| 3197 | return NODE_OTHER; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3198 | /* Everything else is writable? */ |
| 3199 | return NODE_WRITABLE; |
| 3200 | } |
| 3201 | |
| 3202 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3203 | mch_early_init(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3204 | { |
| 3205 | #ifdef HAVE_CHECK_STACK_GROWTH |
| 3206 | int i; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3207 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3208 | check_stack_growth((char *)&i); |
| 3209 | |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 3210 | # ifdef HAVE_STACK_LIMIT |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3211 | get_stack_limit(); |
| 3212 | # endif |
| 3213 | |
| 3214 | #endif |
| 3215 | |
| 3216 | /* |
| 3217 | * Setup an alternative stack for signals. Helps to catch signals when |
| 3218 | * running out of stack space. |
| 3219 | * Use of sigaltstack() is preferred, it's more portable. |
| 3220 | * Ignore any errors. |
| 3221 | */ |
| 3222 | #if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) |
Bram Moolenaar | 5a22181 | 2008-11-12 12:08:45 +0000 | [diff] [blame] | 3223 | signal_stack = (char *)alloc(SIGSTKSZ); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3224 | init_signal_stack(); |
| 3225 | #endif |
| 3226 | } |
| 3227 | |
Bram Moolenaar | 0a5fe21 | 2005-06-24 23:01:23 +0000 | [diff] [blame] | 3228 | #if defined(EXITFREE) || defined(PROTO) |
| 3229 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3230 | mch_free_mem(void) |
Bram Moolenaar | 0a5fe21 | 2005-06-24 23:01:23 +0000 | [diff] [blame] | 3231 | { |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 3232 | # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
| 3233 | if (clip_star.owned) |
| 3234 | clip_lose_selection(&clip_star); |
| 3235 | if (clip_plus.owned) |
| 3236 | clip_lose_selection(&clip_plus); |
Bram Moolenaar | 0a5fe21 | 2005-06-24 23:01:23 +0000 | [diff] [blame] | 3237 | # endif |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 3238 | # if defined(FEAT_X11) && defined(FEAT_XCLIPBOARD) |
Bram Moolenaar | 0a5fe21 | 2005-06-24 23:01:23 +0000 | [diff] [blame] | 3239 | if (xterm_Shell != (Widget)0) |
| 3240 | XtDestroyWidget(xterm_Shell); |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 3241 | # ifndef LESSTIF_VERSION |
| 3242 | /* Lesstif crashes here, lose some memory */ |
Bram Moolenaar | 0a5fe21 | 2005-06-24 23:01:23 +0000 | [diff] [blame] | 3243 | if (xterm_dpy != NULL) |
| 3244 | XtCloseDisplay(xterm_dpy); |
| 3245 | if (app_context != (XtAppContext)NULL) |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 3246 | { |
Bram Moolenaar | 0a5fe21 | 2005-06-24 23:01:23 +0000 | [diff] [blame] | 3247 | XtDestroyApplicationContext(app_context); |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 3248 | # ifdef FEAT_X11 |
| 3249 | x11_display = NULL; /* freed by XtDestroyApplicationContext() */ |
| 3250 | # endif |
| 3251 | } |
| 3252 | # endif |
Bram Moolenaar | 0a5fe21 | 2005-06-24 23:01:23 +0000 | [diff] [blame] | 3253 | # endif |
Bram Moolenaar | 0eda7ac | 2010-06-26 05:38:18 +0200 | [diff] [blame] | 3254 | # if defined(FEAT_X11) |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 3255 | if (x11_display != NULL |
| 3256 | # ifdef FEAT_XCLIPBOARD |
| 3257 | && x11_display != xterm_dpy |
| 3258 | # endif |
| 3259 | ) |
Bram Moolenaar | f461c8e | 2005-06-25 23:04:51 +0000 | [diff] [blame] | 3260 | XCloseDisplay(x11_display); |
| 3261 | # endif |
| 3262 | # if defined(HAVE_SIGALTSTACK) || defined(HAVE_SIGSTACK) |
| 3263 | vim_free(signal_stack); |
| 3264 | signal_stack = NULL; |
| 3265 | # endif |
| 3266 | # ifdef FEAT_TITLE |
| 3267 | vim_free(oldtitle); |
| 3268 | vim_free(oldicon); |
| 3269 | # endif |
Bram Moolenaar | 0a5fe21 | 2005-06-24 23:01:23 +0000 | [diff] [blame] | 3270 | } |
| 3271 | #endif |
| 3272 | |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 3273 | static void exit_scroll(void); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3274 | |
| 3275 | /* |
| 3276 | * Output a newline when exiting. |
| 3277 | * Make sure the newline goes to the same stream as the text. |
| 3278 | */ |
| 3279 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3280 | exit_scroll(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3281 | { |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 3282 | if (silent_mode) |
| 3283 | return; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3284 | if (newline_on_exit || msg_didout) |
| 3285 | { |
| 3286 | if (msg_use_printf()) |
| 3287 | { |
| 3288 | if (info_message) |
| 3289 | mch_msg("\n"); |
| 3290 | else |
| 3291 | mch_errmsg("\r\n"); |
| 3292 | } |
| 3293 | else |
| 3294 | out_char('\n'); |
| 3295 | } |
| 3296 | else |
| 3297 | { |
| 3298 | restore_cterm_colors(); /* get original colors back */ |
| 3299 | msg_clr_eos_force(); /* clear the rest of the display */ |
| 3300 | windgoto((int)Rows - 1, 0); /* may have moved the cursor */ |
| 3301 | } |
| 3302 | } |
| 3303 | |
| 3304 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3305 | mch_exit(int r) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3306 | { |
| 3307 | exiting = TRUE; |
| 3308 | |
| 3309 | #if defined(FEAT_X11) && defined(FEAT_CLIPBOARD) |
| 3310 | x11_export_final_selection(); |
| 3311 | #endif |
| 3312 | |
| 3313 | #ifdef FEAT_GUI |
| 3314 | if (!gui.in_use) |
| 3315 | #endif |
| 3316 | { |
| 3317 | settmode(TMODE_COOK); |
| 3318 | #ifdef FEAT_TITLE |
| 3319 | mch_restore_title(3); /* restore xterm title and icon name */ |
| 3320 | #endif |
| 3321 | /* |
| 3322 | * When t_ti is not empty but it doesn't cause swapping terminal |
| 3323 | * pages, need to output a newline when msg_didout is set. But when |
| 3324 | * t_ti does swap pages it should not go to the shell page. Do this |
| 3325 | * before stoptermcap(). |
| 3326 | */ |
| 3327 | if (swapping_screen() && !newline_on_exit) |
| 3328 | exit_scroll(); |
| 3329 | |
| 3330 | /* Stop termcap: May need to check for T_CRV response, which |
| 3331 | * requires RAW mode. */ |
| 3332 | stoptermcap(); |
| 3333 | |
| 3334 | /* |
| 3335 | * A newline is only required after a message in the alternate screen. |
| 3336 | * This is set to TRUE by wait_return(). |
| 3337 | */ |
| 3338 | if (!swapping_screen() || newline_on_exit) |
| 3339 | exit_scroll(); |
| 3340 | |
| 3341 | /* Cursor may have been switched off without calling starttermcap() |
| 3342 | * when doing "vim -u vimrc" and vimrc contains ":q". */ |
| 3343 | if (full_screen) |
| 3344 | cursor_on(); |
| 3345 | } |
| 3346 | out_flush(); |
| 3347 | ml_close_all(TRUE); /* remove all memfiles */ |
| 3348 | may_core_dump(); |
| 3349 | #ifdef FEAT_GUI |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3350 | if (gui.in_use) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3351 | gui_exit(r); |
| 3352 | #endif |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 3353 | |
Bram Moolenaar | 5671873 | 2006-03-15 22:53:57 +0000 | [diff] [blame] | 3354 | #ifdef MACOS_CONVERT |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 3355 | mac_conv_cleanup(); |
| 3356 | #endif |
| 3357 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3358 | #ifdef __QNX__ |
| 3359 | /* A core dump won't be created if the signal handler |
| 3360 | * doesn't return, so we can't call exit() */ |
| 3361 | if (deadly_signal != 0) |
| 3362 | return; |
| 3363 | #endif |
| 3364 | |
Bram Moolenaar | 009b259 | 2004-10-24 19:18:58 +0000 | [diff] [blame] | 3365 | #ifdef FEAT_NETBEANS_INTG |
Bram Moolenaar | b26e632 | 2010-05-22 21:34:09 +0200 | [diff] [blame] | 3366 | netbeans_send_disconnect(); |
Bram Moolenaar | 009b259 | 2004-10-24 19:18:58 +0000 | [diff] [blame] | 3367 | #endif |
Bram Moolenaar | 0a5fe21 | 2005-06-24 23:01:23 +0000 | [diff] [blame] | 3368 | |
| 3369 | #ifdef EXITFREE |
| 3370 | free_all_mem(); |
| 3371 | #endif |
| 3372 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3373 | exit(r); |
| 3374 | } |
| 3375 | |
| 3376 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3377 | may_core_dump(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3378 | { |
| 3379 | if (deadly_signal != 0) |
| 3380 | { |
| 3381 | signal(deadly_signal, SIG_DFL); |
| 3382 | kill(getpid(), deadly_signal); /* Die using the signal we caught */ |
| 3383 | } |
| 3384 | } |
| 3385 | |
| 3386 | #ifndef VMS |
| 3387 | |
| 3388 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3389 | mch_settmode(int tmode) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3390 | { |
| 3391 | static int first = TRUE; |
| 3392 | |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3393 | #ifdef NEW_TTY_SYSTEM |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3394 | # ifdef HAVE_TERMIOS_H |
| 3395 | static struct termios told; |
| 3396 | struct termios tnew; |
| 3397 | # else |
| 3398 | static struct termio told; |
| 3399 | struct termio tnew; |
| 3400 | # endif |
| 3401 | |
| 3402 | if (first) |
| 3403 | { |
| 3404 | first = FALSE; |
| 3405 | # if defined(HAVE_TERMIOS_H) |
| 3406 | tcgetattr(read_cmd_fd, &told); |
| 3407 | # else |
| 3408 | ioctl(read_cmd_fd, TCGETA, &told); |
| 3409 | # endif |
| 3410 | } |
| 3411 | |
| 3412 | tnew = told; |
| 3413 | if (tmode == TMODE_RAW) |
| 3414 | { |
| 3415 | /* |
| 3416 | * ~ICRNL enables typing ^V^M |
| 3417 | */ |
| 3418 | tnew.c_iflag &= ~ICRNL; |
| 3419 | tnew.c_lflag &= ~(ICANON | ECHO | ISIG | ECHOE |
| 3420 | # if defined(IEXTEN) && !defined(__MINT__) |
| 3421 | | IEXTEN /* IEXTEN enables typing ^V on SOLARIS */ |
| 3422 | /* but it breaks function keys on MINT */ |
| 3423 | # endif |
| 3424 | ); |
| 3425 | # ifdef ONLCR /* don't map NL -> CR NL, we do it ourselves */ |
| 3426 | tnew.c_oflag &= ~ONLCR; |
| 3427 | # endif |
| 3428 | tnew.c_cc[VMIN] = 1; /* return after 1 char */ |
| 3429 | tnew.c_cc[VTIME] = 0; /* don't wait */ |
| 3430 | } |
| 3431 | else if (tmode == TMODE_SLEEP) |
Bram Moolenaar | 40de456 | 2016-07-01 15:03:46 +0200 | [diff] [blame] | 3432 | { |
| 3433 | /* Also reset ICANON here, otherwise on Solaris select() won't see |
| 3434 | * typeahead characters. */ |
| 3435 | tnew.c_lflag &= ~(ICANON | ECHO); |
| 3436 | tnew.c_cc[VMIN] = 1; /* return after 1 char */ |
| 3437 | tnew.c_cc[VTIME] = 0; /* don't wait */ |
| 3438 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3439 | |
| 3440 | # if defined(HAVE_TERMIOS_H) |
| 3441 | { |
| 3442 | int n = 10; |
| 3443 | |
| 3444 | /* A signal may cause tcsetattr() to fail (e.g., SIGCONT). Retry a |
| 3445 | * few times. */ |
| 3446 | while (tcsetattr(read_cmd_fd, TCSANOW, &tnew) == -1 |
| 3447 | && errno == EINTR && n > 0) |
| 3448 | --n; |
| 3449 | } |
| 3450 | # else |
| 3451 | ioctl(read_cmd_fd, TCSETA, &tnew); |
| 3452 | # endif |
| 3453 | |
| 3454 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3455 | /* |
| 3456 | * for "old" tty systems |
| 3457 | */ |
| 3458 | # ifndef TIOCSETN |
| 3459 | # define TIOCSETN TIOCSETP /* for hpux 9.0 */ |
| 3460 | # endif |
| 3461 | static struct sgttyb ttybold; |
| 3462 | struct sgttyb ttybnew; |
| 3463 | |
| 3464 | if (first) |
| 3465 | { |
| 3466 | first = FALSE; |
| 3467 | ioctl(read_cmd_fd, TIOCGETP, &ttybold); |
| 3468 | } |
| 3469 | |
| 3470 | ttybnew = ttybold; |
| 3471 | if (tmode == TMODE_RAW) |
| 3472 | { |
| 3473 | ttybnew.sg_flags &= ~(CRMOD | ECHO); |
| 3474 | ttybnew.sg_flags |= RAW; |
| 3475 | } |
| 3476 | else if (tmode == TMODE_SLEEP) |
| 3477 | ttybnew.sg_flags &= ~(ECHO); |
| 3478 | ioctl(read_cmd_fd, TIOCSETN, &ttybnew); |
| 3479 | #endif |
| 3480 | curr_tmode = tmode; |
| 3481 | } |
| 3482 | |
| 3483 | /* |
| 3484 | * Try to get the code for "t_kb" from the stty setting |
| 3485 | * |
| 3486 | * Even if termcap claims a backspace key, the user's setting *should* |
| 3487 | * prevail. stty knows more about reality than termcap does, and if |
| 3488 | * somebody's usual erase key is DEL (which, for most BSD users, it will |
| 3489 | * be), they're going to get really annoyed if their erase key starts |
| 3490 | * doing forward deletes for no reason. (Eric Fischer) |
| 3491 | */ |
| 3492 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3493 | get_stty(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3494 | { |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3495 | ttyinfo_T info; |
| 3496 | char_u buf[2]; |
| 3497 | char_u *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3498 | |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3499 | if (get_tty_info(read_cmd_fd, &info) == OK) |
| 3500 | { |
| 3501 | intr_char = info.interrupt; |
| 3502 | buf[0] = info.backspace; |
| 3503 | buf[1] = NUL; |
| 3504 | add_termcode((char_u *)"kb", buf, FALSE); |
| 3505 | |
| 3506 | /* If <BS> and <DEL> are now the same, redefine <DEL>. */ |
| 3507 | p = find_termcode((char_u *)"kD"); |
| 3508 | if (p != NULL && p[0] == buf[0] && p[1] == buf[1]) |
| 3509 | do_fixdel(NULL); |
| 3510 | } |
| 3511 | } |
| 3512 | |
| 3513 | /* |
| 3514 | * Obtain the characters that Backspace and Enter produce on "fd". |
| 3515 | * Returns OK or FAIL. |
| 3516 | */ |
| 3517 | int |
| 3518 | get_tty_info(int fd, ttyinfo_T *info) |
| 3519 | { |
| 3520 | #ifdef NEW_TTY_SYSTEM |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3521 | # ifdef HAVE_TERMIOS_H |
| 3522 | struct termios keys; |
| 3523 | # else |
| 3524 | struct termio keys; |
| 3525 | # endif |
| 3526 | |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3527 | if ( |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3528 | # if defined(HAVE_TERMIOS_H) |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3529 | tcgetattr(fd, &keys) != -1 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3530 | # else |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3531 | ioctl(fd, TCGETA, &keys) != -1 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3532 | # endif |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3533 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3534 | { |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3535 | info->backspace = keys.c_cc[VERASE]; |
| 3536 | info->interrupt = keys.c_cc[VINTR]; |
| 3537 | if (keys.c_iflag & ICRNL) |
| 3538 | info->enter = NL; |
| 3539 | else |
| 3540 | info->enter = CAR; |
| 3541 | if (keys.c_oflag & ONLCR) |
| 3542 | info->nl_does_cr = TRUE; |
| 3543 | else |
| 3544 | info->nl_does_cr = FALSE; |
| 3545 | return OK; |
| 3546 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3547 | #else |
| 3548 | /* for "old" tty systems */ |
| 3549 | struct sgttyb keys; |
| 3550 | |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3551 | if (ioctl(fd, TIOCGETP, &keys) != -1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3552 | { |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3553 | info->backspace = keys.sg_erase; |
| 3554 | info->interrupt = keys.sg_kill; |
| 3555 | info->enter = CAR; |
| 3556 | info->nl_does_cr = TRUE; |
| 3557 | return OK; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3558 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3559 | #endif |
Bram Moolenaar | 4f44b88 | 2017-08-13 20:06:18 +0200 | [diff] [blame] | 3560 | return FAIL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3561 | } |
| 3562 | |
| 3563 | #endif /* VMS */ |
| 3564 | |
| 3565 | #if defined(FEAT_MOUSE_TTY) || defined(PROTO) |
| 3566 | /* |
| 3567 | * Set mouse clicks on or off. |
| 3568 | */ |
| 3569 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3570 | mch_setmouse(int on) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3571 | { |
| 3572 | static int ison = FALSE; |
| 3573 | int xterm_mouse_vers; |
| 3574 | |
| 3575 | if (on == ison) /* return quickly if nothing to do */ |
| 3576 | return; |
| 3577 | |
| 3578 | xterm_mouse_vers = use_xterm_mouse(); |
Bram Moolenaar | c842748 | 2011-10-20 21:09:35 +0200 | [diff] [blame] | 3579 | |
| 3580 | # ifdef FEAT_MOUSE_URXVT |
Bram Moolenaar | 2b9578f | 2012-08-15 16:21:32 +0200 | [diff] [blame] | 3581 | if (ttym_flags == TTYM_URXVT) |
| 3582 | { |
Bram Moolenaar | c842748 | 2011-10-20 21:09:35 +0200 | [diff] [blame] | 3583 | out_str_nf((char_u *) |
| 3584 | (on |
| 3585 | ? IF_EB("\033[?1015h", ESC_STR "[?1015h") |
| 3586 | : IF_EB("\033[?1015l", ESC_STR "[?1015l"))); |
| 3587 | ison = on; |
| 3588 | } |
| 3589 | # endif |
| 3590 | |
Bram Moolenaar | 2b9578f | 2012-08-15 16:21:32 +0200 | [diff] [blame] | 3591 | # ifdef FEAT_MOUSE_SGR |
| 3592 | if (ttym_flags == TTYM_SGR) |
| 3593 | { |
| 3594 | out_str_nf((char_u *) |
| 3595 | (on |
| 3596 | ? IF_EB("\033[?1006h", ESC_STR "[?1006h") |
| 3597 | : IF_EB("\033[?1006l", ESC_STR "[?1006l"))); |
| 3598 | ison = on; |
| 3599 | } |
| 3600 | # endif |
| 3601 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3602 | if (xterm_mouse_vers > 0) |
| 3603 | { |
| 3604 | if (on) /* enable mouse events, use mouse tracking if available */ |
| 3605 | out_str_nf((char_u *) |
| 3606 | (xterm_mouse_vers > 1 |
| 3607 | ? IF_EB("\033[?1002h", ESC_STR "[?1002h") |
| 3608 | : IF_EB("\033[?1000h", ESC_STR "[?1000h"))); |
| 3609 | else /* disable mouse events, could probably always send the same */ |
| 3610 | out_str_nf((char_u *) |
| 3611 | (xterm_mouse_vers > 1 |
| 3612 | ? IF_EB("\033[?1002l", ESC_STR "[?1002l") |
| 3613 | : IF_EB("\033[?1000l", ESC_STR "[?1000l"))); |
| 3614 | ison = on; |
| 3615 | } |
| 3616 | |
| 3617 | # ifdef FEAT_MOUSE_DEC |
| 3618 | else if (ttym_flags == TTYM_DEC) |
| 3619 | { |
| 3620 | if (on) /* enable mouse events */ |
| 3621 | out_str_nf((char_u *)"\033[1;2'z\033[1;3'{"); |
| 3622 | else /* disable mouse events */ |
| 3623 | out_str_nf((char_u *)"\033['z"); |
| 3624 | ison = on; |
| 3625 | } |
| 3626 | # endif |
| 3627 | |
| 3628 | # ifdef FEAT_MOUSE_GPM |
| 3629 | else |
| 3630 | { |
| 3631 | if (on) |
| 3632 | { |
| 3633 | if (gpm_open()) |
| 3634 | ison = TRUE; |
| 3635 | } |
| 3636 | else |
| 3637 | { |
| 3638 | gpm_close(); |
| 3639 | ison = FALSE; |
| 3640 | } |
| 3641 | } |
| 3642 | # endif |
| 3643 | |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 3644 | # ifdef FEAT_SYSMOUSE |
| 3645 | else |
| 3646 | { |
| 3647 | if (on) |
| 3648 | { |
| 3649 | if (sysmouse_open() == OK) |
| 3650 | ison = TRUE; |
| 3651 | } |
| 3652 | else |
| 3653 | { |
| 3654 | sysmouse_close(); |
| 3655 | ison = FALSE; |
| 3656 | } |
| 3657 | } |
| 3658 | # endif |
| 3659 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3660 | # ifdef FEAT_MOUSE_JSB |
| 3661 | else |
| 3662 | { |
| 3663 | if (on) |
| 3664 | { |
| 3665 | /* D - Enable Mouse up/down messages |
| 3666 | * L - Enable Left Button Reporting |
| 3667 | * M - Enable Middle Button Reporting |
| 3668 | * R - Enable Right Button Reporting |
| 3669 | * K - Enable SHIFT and CTRL key Reporting |
| 3670 | * + - Enable Advanced messaging of mouse moves and up/down messages |
| 3671 | * Q - Quiet No Ack |
| 3672 | * # - Numeric value of mouse pointer required |
| 3673 | * 0 = Multiview 2000 cursor, used as standard |
| 3674 | * 1 = Windows Arrow |
| 3675 | * 2 = Windows I Beam |
| 3676 | * 3 = Windows Hour Glass |
| 3677 | * 4 = Windows Cross Hair |
| 3678 | * 5 = Windows UP Arrow |
| 3679 | */ |
Bram Moolenaar | f8de161 | 2013-04-15 15:32:25 +0200 | [diff] [blame] | 3680 | # ifdef JSBTERM_MOUSE_NONADVANCED |
| 3681 | /* Disables full feedback of pointer movements */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3682 | out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK1Q\033\\", |
| 3683 | ESC_STR "[0~ZwLMRK1Q" ESC_STR "\\")); |
Bram Moolenaar | f8de161 | 2013-04-15 15:32:25 +0200 | [diff] [blame] | 3684 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3685 | out_str_nf((char_u *)IF_EB("\033[0~ZwLMRK+1Q\033\\", |
| 3686 | ESC_STR "[0~ZwLMRK+1Q" ESC_STR "\\")); |
Bram Moolenaar | f8de161 | 2013-04-15 15:32:25 +0200 | [diff] [blame] | 3687 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3688 | ison = TRUE; |
| 3689 | } |
| 3690 | else |
| 3691 | { |
| 3692 | out_str_nf((char_u *)IF_EB("\033[0~ZwQ\033\\", |
| 3693 | ESC_STR "[0~ZwQ" ESC_STR "\\")); |
| 3694 | ison = FALSE; |
| 3695 | } |
| 3696 | } |
| 3697 | # endif |
| 3698 | # ifdef FEAT_MOUSE_PTERM |
| 3699 | else |
| 3700 | { |
| 3701 | /* 1 = button press, 6 = release, 7 = drag, 1h...9l = right button */ |
| 3702 | if (on) |
| 3703 | out_str_nf("\033[>1h\033[>6h\033[>7h\033[>1h\033[>9l"); |
| 3704 | else |
| 3705 | out_str_nf("\033[>1l\033[>6l\033[>7l\033[>1l\033[>9h"); |
| 3706 | ison = on; |
| 3707 | } |
| 3708 | # endif |
| 3709 | } |
| 3710 | |
| 3711 | /* |
| 3712 | * Set the mouse termcode, depending on the 'term' and 'ttymouse' options. |
| 3713 | */ |
| 3714 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3715 | check_mouse_termcode(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3716 | { |
| 3717 | # ifdef FEAT_MOUSE_XTERM |
| 3718 | if (use_xterm_mouse() |
Bram Moolenaar | c842748 | 2011-10-20 21:09:35 +0200 | [diff] [blame] | 3719 | # ifdef FEAT_MOUSE_URXVT |
| 3720 | && use_xterm_mouse() != 3 |
| 3721 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3722 | # ifdef FEAT_GUI |
| 3723 | && !gui.in_use |
| 3724 | # endif |
| 3725 | ) |
| 3726 | { |
| 3727 | set_mouse_termcode(KS_MOUSE, (char_u *)(term_is_8bit(T_NAME) |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 3728 | ? IF_EB("\233M", CSI_STR "M") |
| 3729 | : IF_EB("\033[M", ESC_STR "[M"))); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3730 | if (*p_mouse != NUL) |
| 3731 | { |
| 3732 | /* force mouse off and maybe on to send possibly new mouse |
| 3733 | * activation sequence to the xterm, with(out) drag tracing. */ |
| 3734 | mch_setmouse(FALSE); |
| 3735 | setmouse(); |
| 3736 | } |
| 3737 | } |
| 3738 | else |
| 3739 | del_mouse_termcode(KS_MOUSE); |
| 3740 | # endif |
| 3741 | |
| 3742 | # ifdef FEAT_MOUSE_GPM |
| 3743 | if (!use_xterm_mouse() |
| 3744 | # ifdef FEAT_GUI |
| 3745 | && !gui.in_use |
| 3746 | # endif |
| 3747 | ) |
| 3748 | set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MG", ESC_STR "MG")); |
| 3749 | # endif |
| 3750 | |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 3751 | # ifdef FEAT_SYSMOUSE |
| 3752 | if (!use_xterm_mouse() |
| 3753 | # ifdef FEAT_GUI |
| 3754 | && !gui.in_use |
| 3755 | # endif |
| 3756 | ) |
| 3757 | set_mouse_termcode(KS_MOUSE, (char_u *)IF_EB("\033MS", ESC_STR "MS")); |
| 3758 | # endif |
| 3759 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3760 | # ifdef FEAT_MOUSE_JSB |
Bram Moolenaar | 4e067c8 | 2014-07-30 17:21:58 +0200 | [diff] [blame] | 3761 | /* Conflicts with xterm mouse: "\033[" and "\033[M" ??? */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3762 | if (!use_xterm_mouse() |
| 3763 | # ifdef FEAT_GUI |
| 3764 | && !gui.in_use |
| 3765 | # endif |
| 3766 | ) |
| 3767 | set_mouse_termcode(KS_JSBTERM_MOUSE, |
| 3768 | (char_u *)IF_EB("\033[0~zw", ESC_STR "[0~zw")); |
| 3769 | else |
| 3770 | del_mouse_termcode(KS_JSBTERM_MOUSE); |
| 3771 | # endif |
| 3772 | |
| 3773 | # ifdef FEAT_MOUSE_NET |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 3774 | /* There is no conflict, but one may type "ESC }" from Insert mode. Don't |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3775 | * define it in the GUI or when using an xterm. */ |
| 3776 | if (!use_xterm_mouse() |
| 3777 | # ifdef FEAT_GUI |
| 3778 | && !gui.in_use |
| 3779 | # endif |
| 3780 | ) |
| 3781 | set_mouse_termcode(KS_NETTERM_MOUSE, |
| 3782 | (char_u *)IF_EB("\033}", ESC_STR "}")); |
| 3783 | else |
| 3784 | del_mouse_termcode(KS_NETTERM_MOUSE); |
| 3785 | # endif |
| 3786 | |
| 3787 | # ifdef FEAT_MOUSE_DEC |
Bram Moolenaar | 4e067c8 | 2014-07-30 17:21:58 +0200 | [diff] [blame] | 3788 | /* Conflicts with xterm mouse: "\033[" and "\033[M" */ |
Bram Moolenaar | cbc17d6 | 2014-05-22 21:22:19 +0200 | [diff] [blame] | 3789 | if (!use_xterm_mouse() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3790 | # ifdef FEAT_GUI |
| 3791 | && !gui.in_use |
| 3792 | # endif |
| 3793 | ) |
Bram Moolenaar | bc7aa85 | 2005-03-06 23:38:09 +0000 | [diff] [blame] | 3794 | set_mouse_termcode(KS_DEC_MOUSE, (char_u *)(term_is_8bit(T_NAME) |
| 3795 | ? IF_EB("\233", CSI_STR) : IF_EB("\033[", ESC_STR "["))); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3796 | else |
| 3797 | del_mouse_termcode(KS_DEC_MOUSE); |
| 3798 | # endif |
| 3799 | # ifdef FEAT_MOUSE_PTERM |
Bram Moolenaar | 4e067c8 | 2014-07-30 17:21:58 +0200 | [diff] [blame] | 3800 | /* same conflict as the dec mouse */ |
Bram Moolenaar | cbc17d6 | 2014-05-22 21:22:19 +0200 | [diff] [blame] | 3801 | if (!use_xterm_mouse() |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3802 | # ifdef FEAT_GUI |
| 3803 | && !gui.in_use |
| 3804 | # endif |
| 3805 | ) |
| 3806 | set_mouse_termcode(KS_PTERM_MOUSE, |
| 3807 | (char_u *) IF_EB("\033[", ESC_STR "[")); |
| 3808 | else |
| 3809 | del_mouse_termcode(KS_PTERM_MOUSE); |
| 3810 | # endif |
Bram Moolenaar | c842748 | 2011-10-20 21:09:35 +0200 | [diff] [blame] | 3811 | # ifdef FEAT_MOUSE_URXVT |
Bram Moolenaar | cbc17d6 | 2014-05-22 21:22:19 +0200 | [diff] [blame] | 3812 | if (use_xterm_mouse() == 3 |
Bram Moolenaar | c842748 | 2011-10-20 21:09:35 +0200 | [diff] [blame] | 3813 | # ifdef FEAT_GUI |
| 3814 | && !gui.in_use |
| 3815 | # endif |
| 3816 | ) |
| 3817 | { |
| 3818 | set_mouse_termcode(KS_URXVT_MOUSE, (char_u *)(term_is_8bit(T_NAME) |
Bram Moolenaar | a529ce0 | 2017-06-22 22:37:57 +0200 | [diff] [blame] | 3819 | ? IF_EB("\233*M", CSI_STR "*M") |
| 3820 | : IF_EB("\033[*M", ESC_STR "[*M"))); |
Bram Moolenaar | c842748 | 2011-10-20 21:09:35 +0200 | [diff] [blame] | 3821 | |
| 3822 | if (*p_mouse != NUL) |
| 3823 | { |
| 3824 | mch_setmouse(FALSE); |
| 3825 | setmouse(); |
| 3826 | } |
| 3827 | } |
| 3828 | else |
| 3829 | del_mouse_termcode(KS_URXVT_MOUSE); |
| 3830 | # endif |
Bram Moolenaar | 2b9578f | 2012-08-15 16:21:32 +0200 | [diff] [blame] | 3831 | # ifdef FEAT_MOUSE_SGR |
Bram Moolenaar | 2b9578f | 2012-08-15 16:21:32 +0200 | [diff] [blame] | 3832 | if (use_xterm_mouse() == 4 |
| 3833 | # ifdef FEAT_GUI |
| 3834 | && !gui.in_use |
| 3835 | # endif |
| 3836 | ) |
| 3837 | { |
| 3838 | set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME) |
Bram Moolenaar | a529ce0 | 2017-06-22 22:37:57 +0200 | [diff] [blame] | 3839 | ? IF_EB("\233<*M", CSI_STR "<*M") |
| 3840 | : IF_EB("\033[<*M", ESC_STR "[<*M"))); |
| 3841 | |
| 3842 | set_mouse_termcode(KS_SGR_MOUSE_RELEASE, (char_u *)(term_is_8bit(T_NAME) |
| 3843 | ? IF_EB("\233<*m", CSI_STR "<*m") |
| 3844 | : IF_EB("\033[<*m", ESC_STR "[<*m"))); |
Bram Moolenaar | 2b9578f | 2012-08-15 16:21:32 +0200 | [diff] [blame] | 3845 | |
| 3846 | if (*p_mouse != NUL) |
| 3847 | { |
| 3848 | mch_setmouse(FALSE); |
| 3849 | setmouse(); |
| 3850 | } |
| 3851 | } |
| 3852 | else |
Bram Moolenaar | a529ce0 | 2017-06-22 22:37:57 +0200 | [diff] [blame] | 3853 | { |
Bram Moolenaar | 2b9578f | 2012-08-15 16:21:32 +0200 | [diff] [blame] | 3854 | del_mouse_termcode(KS_SGR_MOUSE); |
Bram Moolenaar | a529ce0 | 2017-06-22 22:37:57 +0200 | [diff] [blame] | 3855 | del_mouse_termcode(KS_SGR_MOUSE_RELEASE); |
| 3856 | } |
Bram Moolenaar | 2b9578f | 2012-08-15 16:21:32 +0200 | [diff] [blame] | 3857 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3858 | } |
| 3859 | #endif |
| 3860 | |
| 3861 | /* |
| 3862 | * set screen mode, always fails. |
| 3863 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3864 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3865 | mch_screenmode(char_u *arg UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3866 | { |
| 3867 | EMSG(_(e_screenmode)); |
| 3868 | return FAIL; |
| 3869 | } |
| 3870 | |
| 3871 | #ifndef VMS |
| 3872 | |
| 3873 | /* |
| 3874 | * Try to get the current window size: |
| 3875 | * 1. with an ioctl(), most accurate method |
| 3876 | * 2. from the environment variables LINES and COLUMNS |
| 3877 | * 3. from the termcap |
| 3878 | * 4. keep using the old values |
| 3879 | * Return OK when size could be determined, FAIL otherwise. |
| 3880 | */ |
| 3881 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 3882 | mch_get_shellsize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3883 | { |
| 3884 | long rows = 0; |
| 3885 | long columns = 0; |
| 3886 | char_u *p; |
| 3887 | |
| 3888 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3889 | * 1. try using an ioctl. It is the most accurate method. |
| 3890 | * |
| 3891 | * Try using TIOCGWINSZ first, some systems that have it also define |
| 3892 | * TIOCGSIZE but don't have a struct ttysize. |
| 3893 | */ |
| 3894 | # ifdef TIOCGWINSZ |
| 3895 | { |
| 3896 | struct winsize ws; |
| 3897 | int fd = 1; |
| 3898 | |
| 3899 | /* When stdout is not a tty, use stdin for the ioctl(). */ |
| 3900 | if (!isatty(fd) && isatty(read_cmd_fd)) |
| 3901 | fd = read_cmd_fd; |
| 3902 | if (ioctl(fd, TIOCGWINSZ, &ws) == 0) |
| 3903 | { |
| 3904 | columns = ws.ws_col; |
| 3905 | rows = ws.ws_row; |
| 3906 | } |
| 3907 | } |
| 3908 | # else /* TIOCGWINSZ */ |
| 3909 | # ifdef TIOCGSIZE |
| 3910 | { |
| 3911 | struct ttysize ts; |
| 3912 | int fd = 1; |
| 3913 | |
| 3914 | /* When stdout is not a tty, use stdin for the ioctl(). */ |
| 3915 | if (!isatty(fd) && isatty(read_cmd_fd)) |
| 3916 | fd = read_cmd_fd; |
| 3917 | if (ioctl(fd, TIOCGSIZE, &ts) == 0) |
| 3918 | { |
| 3919 | columns = ts.ts_cols; |
| 3920 | rows = ts.ts_lines; |
| 3921 | } |
| 3922 | } |
| 3923 | # endif /* TIOCGSIZE */ |
| 3924 | # endif /* TIOCGWINSZ */ |
| 3925 | |
| 3926 | /* |
| 3927 | * 2. get size from environment |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 3928 | * When being POSIX compliant ('|' flag in 'cpoptions') this overrules |
| 3929 | * the ioctl() values! |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3930 | */ |
Bram Moolenaar | 4399ef4 | 2005-02-12 14:29:27 +0000 | [diff] [blame] | 3931 | if (columns == 0 || rows == 0 || vim_strchr(p_cpo, CPO_TSIZE) != NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3932 | { |
| 3933 | if ((p = (char_u *)getenv("LINES"))) |
| 3934 | rows = atoi((char *)p); |
| 3935 | if ((p = (char_u *)getenv("COLUMNS"))) |
| 3936 | columns = atoi((char *)p); |
| 3937 | } |
| 3938 | |
| 3939 | #ifdef HAVE_TGETENT |
| 3940 | /* |
| 3941 | * 3. try reading "co" and "li" entries from termcap |
| 3942 | */ |
| 3943 | if (columns == 0 || rows == 0) |
| 3944 | getlinecol(&columns, &rows); |
| 3945 | #endif |
| 3946 | |
| 3947 | /* |
| 3948 | * 4. If everything fails, use the old values |
| 3949 | */ |
| 3950 | if (columns <= 0 || rows <= 0) |
| 3951 | return FAIL; |
| 3952 | |
| 3953 | Rows = rows; |
| 3954 | Columns = columns; |
Bram Moolenaar | e057d40 | 2013-06-30 17:51:51 +0200 | [diff] [blame] | 3955 | limit_screen_size(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3956 | return OK; |
| 3957 | } |
| 3958 | |
Bram Moolenaar | b13501f | 2017-07-22 22:32:56 +0200 | [diff] [blame] | 3959 | #if defined(FEAT_TERMINAL) || defined(PROTO) |
| 3960 | /* |
| 3961 | * Report the windows size "rows" and "cols" to tty "fd". |
| 3962 | */ |
| 3963 | int |
| 3964 | mch_report_winsize(int fd, int rows, int cols) |
| 3965 | { |
| 3966 | # ifdef TIOCSWINSZ |
| 3967 | struct winsize ws; |
| 3968 | |
| 3969 | ws.ws_col = cols; |
| 3970 | ws.ws_row = rows; |
| 3971 | ws.ws_xpixel = cols * 5; |
| 3972 | ws.ws_ypixel = rows * 10; |
| 3973 | if (ioctl(fd, TIOCSWINSZ, &ws) == 0) |
| 3974 | { |
| 3975 | ch_log(NULL, "ioctl(TIOCSWINSZ) success"); |
| 3976 | return OK; |
| 3977 | } |
| 3978 | ch_log(NULL, "ioctl(TIOCSWINSZ) failed"); |
| 3979 | # else |
| 3980 | # ifdef TIOCSSIZE |
| 3981 | struct ttysize ts; |
| 3982 | |
| 3983 | ts.ts_cols = cols; |
| 3984 | ts.ts_lines = rows; |
| 3985 | if (ioctl(fd, TIOCSSIZE, &ws) == 0) |
| 3986 | { |
| 3987 | ch_log(NULL, "ioctl(TIOCSSIZE) success"); |
| 3988 | return OK; |
| 3989 | } |
| 3990 | ch_log(NULL, "ioctl(TIOCSSIZE) failed"); |
| 3991 | # endif |
| 3992 | # endif |
| 3993 | return FAIL; |
| 3994 | } |
| 3995 | #endif |
| 3996 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 3997 | /* |
| 3998 | * Try to set the window size to Rows and Columns. |
| 3999 | */ |
| 4000 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 4001 | mch_set_shellsize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4002 | { |
| 4003 | if (*T_CWS) |
| 4004 | { |
| 4005 | /* |
| 4006 | * NOTE: if you get an error here that term_set_winsize() is |
| 4007 | * undefined, check the output of configure. It could probably not |
| 4008 | * find a ncurses, termcap or termlib library. |
| 4009 | */ |
| 4010 | term_set_winsize((int)Rows, (int)Columns); |
| 4011 | out_flush(); |
| 4012 | screen_start(); /* don't know where cursor is now */ |
| 4013 | } |
| 4014 | } |
| 4015 | |
| 4016 | #endif /* VMS */ |
| 4017 | |
| 4018 | /* |
| 4019 | * Rows and/or Columns has changed. |
| 4020 | */ |
| 4021 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 4022 | mch_new_shellsize(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4023 | { |
| 4024 | /* Nothing to do. */ |
| 4025 | } |
| 4026 | |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 4027 | /* |
| 4028 | * Wait for process "child" to end. |
| 4029 | * Return "child" if it exited properly, <= 0 on error. |
| 4030 | */ |
| 4031 | static pid_t |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 4032 | wait4pid(pid_t child, waitstatus *status) |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 4033 | { |
| 4034 | pid_t wait_pid = 0; |
Bram Moolenaar | 0abe052 | 2016-08-28 16:53:12 +0200 | [diff] [blame] | 4035 | long delay_msec = 1; |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 4036 | |
| 4037 | while (wait_pid != child) |
| 4038 | { |
Bram Moolenaar | 6be120e | 2012-04-20 15:55:16 +0200 | [diff] [blame] | 4039 | /* When compiled with Python threads are probably used, in which case |
| 4040 | * wait() sometimes hangs for no obvious reason. Use waitpid() |
| 4041 | * instead and loop (like the GUI). Also needed for other interfaces, |
| 4042 | * they might call system(). */ |
| 4043 | # ifdef __NeXT__ |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 4044 | wait_pid = wait4(child, status, WNOHANG, (struct rusage *)0); |
Bram Moolenaar | 6be120e | 2012-04-20 15:55:16 +0200 | [diff] [blame] | 4045 | # else |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 4046 | wait_pid = waitpid(child, status, WNOHANG); |
Bram Moolenaar | 6be120e | 2012-04-20 15:55:16 +0200 | [diff] [blame] | 4047 | # endif |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 4048 | if (wait_pid == 0) |
| 4049 | { |
Bram Moolenaar | 0abe052 | 2016-08-28 16:53:12 +0200 | [diff] [blame] | 4050 | /* Wait for 1 to 10 msec before trying again. */ |
| 4051 | mch_delay(delay_msec, TRUE); |
| 4052 | if (++delay_msec > 10) |
| 4053 | delay_msec = 10; |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 4054 | continue; |
| 4055 | } |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 4056 | if (wait_pid <= 0 |
| 4057 | # ifdef ECHILD |
| 4058 | && errno == ECHILD |
| 4059 | # endif |
| 4060 | ) |
| 4061 | break; |
| 4062 | } |
| 4063 | return wait_pid; |
| 4064 | } |
| 4065 | |
Bram Moolenaar | 509ce2a | 2016-03-11 22:52:15 +0100 | [diff] [blame] | 4066 | #if defined(FEAT_JOB_CHANNEL) || !defined(USE_SYSTEM) || defined(PROTO) |
Bram Moolenaar | 7280140 | 2016-02-09 11:37:50 +0100 | [diff] [blame] | 4067 | /* |
| 4068 | * Parse "cmd" and put the white-separated parts in "argv". |
| 4069 | * "argv" is an allocated array with "argc" entries. |
| 4070 | * Returns FAIL when out of memory. |
| 4071 | */ |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 4072 | int |
| 4073 | mch_parse_cmd(char_u *cmd, int use_shcf, char ***argv, int *argc) |
| 4074 | { |
| 4075 | int i; |
| 4076 | char_u *p; |
| 4077 | int inquote; |
| 4078 | |
| 4079 | /* |
| 4080 | * Do this loop twice: |
| 4081 | * 1: find number of arguments |
| 4082 | * 2: separate them and build argv[] |
| 4083 | */ |
| 4084 | for (i = 0; i < 2; ++i) |
| 4085 | { |
Bram Moolenaar | 6231cb8 | 2016-04-26 19:42:42 +0200 | [diff] [blame] | 4086 | p = skipwhite(cmd); |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 4087 | inquote = FALSE; |
| 4088 | *argc = 0; |
| 4089 | for (;;) |
| 4090 | { |
| 4091 | if (i == 1) |
| 4092 | (*argv)[*argc] = (char *)p; |
| 4093 | ++*argc; |
| 4094 | while (*p != NUL && (inquote || (*p != ' ' && *p != TAB))) |
| 4095 | { |
| 4096 | if (*p == '"') |
| 4097 | inquote = !inquote; |
| 4098 | ++p; |
| 4099 | } |
| 4100 | if (*p == NUL) |
| 4101 | break; |
| 4102 | if (i == 1) |
| 4103 | *p++ = NUL; |
| 4104 | p = skipwhite(p); |
| 4105 | } |
| 4106 | if (*argv == NULL) |
| 4107 | { |
| 4108 | if (use_shcf) |
| 4109 | { |
| 4110 | /* Account for possible multiple args in p_shcf. */ |
| 4111 | p = p_shcf; |
| 4112 | for (;;) |
| 4113 | { |
| 4114 | p = skiptowhite(p); |
| 4115 | if (*p == NUL) |
| 4116 | break; |
| 4117 | ++*argc; |
| 4118 | p = skipwhite(p); |
| 4119 | } |
| 4120 | } |
| 4121 | |
| 4122 | *argv = (char **)alloc((unsigned)((*argc + 4) * sizeof(char *))); |
| 4123 | if (*argv == NULL) /* out of memory */ |
| 4124 | return FAIL; |
| 4125 | } |
| 4126 | } |
| 4127 | return OK; |
| 4128 | } |
| 4129 | #endif |
| 4130 | |
Bram Moolenaar | 509ce2a | 2016-03-11 22:52:15 +0100 | [diff] [blame] | 4131 | #if !defined(USE_SYSTEM) || defined(FEAT_JOB_CHANNEL) |
Bram Moolenaar | 7da3460 | 2017-08-01 17:14:21 +0200 | [diff] [blame] | 4132 | /* |
| 4133 | * Set the environment for a child process. |
| 4134 | */ |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4135 | static void |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 4136 | set_child_environment(long rows, long columns, char *term) |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4137 | { |
| 4138 | # ifdef HAVE_SETENV |
| 4139 | char envbuf[50]; |
| 4140 | # else |
Bram Moolenaar | 5f7e7bd | 2017-07-22 14:08:43 +0200 | [diff] [blame] | 4141 | static char envbuf_Term[30]; |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4142 | static char envbuf_Rows[20]; |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 4143 | static char envbuf_Lines[20]; |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4144 | static char envbuf_Columns[20]; |
Bram Moolenaar | b7a8dfe | 2017-07-22 20:33:05 +0200 | [diff] [blame] | 4145 | static char envbuf_Colors[20]; |
Bram Moolenaar | 2a4f06f | 2017-08-01 18:44:29 +0200 | [diff] [blame] | 4146 | # ifdef FEAT_CLIENTSERVER |
Bram Moolenaar | 7da3460 | 2017-08-01 17:14:21 +0200 | [diff] [blame] | 4147 | static char envbuf_Servername[60]; |
Bram Moolenaar | 2a4f06f | 2017-08-01 18:44:29 +0200 | [diff] [blame] | 4148 | # endif |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4149 | # endif |
Bram Moolenaar | b7a8dfe | 2017-07-22 20:33:05 +0200 | [diff] [blame] | 4150 | long colors = |
| 4151 | # ifdef FEAT_GUI |
| 4152 | gui.in_use ? 256*256*256 : |
| 4153 | # endif |
| 4154 | t_colors; |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4155 | |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4156 | # ifdef HAVE_SETENV |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 4157 | setenv("TERM", term, 1); |
| 4158 | sprintf((char *)envbuf, "%ld", rows); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4159 | setenv("ROWS", (char *)envbuf, 1); |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 4160 | sprintf((char *)envbuf, "%ld", rows); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4161 | setenv("LINES", (char *)envbuf, 1); |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 4162 | sprintf((char *)envbuf, "%ld", columns); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4163 | setenv("COLUMNS", (char *)envbuf, 1); |
Bram Moolenaar | b7a8dfe | 2017-07-22 20:33:05 +0200 | [diff] [blame] | 4164 | sprintf((char *)envbuf, "%ld", colors); |
| 4165 | setenv("COLORS", (char *)envbuf, 1); |
Bram Moolenaar | 2a4f06f | 2017-08-01 18:44:29 +0200 | [diff] [blame] | 4166 | # ifdef FEAT_CLIENTSERVER |
Bram Moolenaar | 7da3460 | 2017-08-01 17:14:21 +0200 | [diff] [blame] | 4167 | setenv("VIM_SERVERNAME", serverName == NULL ? "" : (char *)serverName, 1); |
Bram Moolenaar | 2a4f06f | 2017-08-01 18:44:29 +0200 | [diff] [blame] | 4168 | # endif |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4169 | # else |
| 4170 | /* |
| 4171 | * Putenv does not copy the string, it has to remain valid. |
| 4172 | * Use a static array to avoid losing allocated memory. |
Bram Moolenaar | 7da3460 | 2017-08-01 17:14:21 +0200 | [diff] [blame] | 4173 | * This won't work well when running multiple children... |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4174 | */ |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 4175 | vim_snprintf(envbuf_Term, sizeof(envbuf_Term), "TERM=%s", term); |
| 4176 | putenv(envbuf_Term); |
| 4177 | vim_snprintf(envbuf_Rows, sizeof(envbuf_Rows), "ROWS=%ld", rows); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4178 | putenv(envbuf_Rows); |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 4179 | vim_snprintf(envbuf_Lines, sizeof(envbuf_Lines), "LINES=%ld", rows); |
| 4180 | putenv(envbuf_Lines); |
| 4181 | vim_snprintf(envbuf_Columns, sizeof(envbuf_Columns), |
| 4182 | "COLUMNS=%ld", columns); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4183 | putenv(envbuf_Columns); |
Bram Moolenaar | b7a8dfe | 2017-07-22 20:33:05 +0200 | [diff] [blame] | 4184 | vim_snprintf(envbuf_Colors, sizeof(envbuf_Colors), "COLORS=%ld", colors); |
| 4185 | putenv(envbuf_Colors); |
Bram Moolenaar | 2a4f06f | 2017-08-01 18:44:29 +0200 | [diff] [blame] | 4186 | # ifdef FEAT_CLIENTSERVER |
Bram Moolenaar | 7da3460 | 2017-08-01 17:14:21 +0200 | [diff] [blame] | 4187 | vim_snprintf(envbuf_Servername, sizeof(envbuf_Servername), |
| 4188 | "VIM_SERVERNAME=%s", serverName == NULL ? "" : (char *)serverName); |
| 4189 | putenv(envbuf_Servername); |
Bram Moolenaar | 2a4f06f | 2017-08-01 18:44:29 +0200 | [diff] [blame] | 4190 | # endif |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4191 | # endif |
| 4192 | } |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 4193 | |
| 4194 | static void |
| 4195 | set_default_child_environment(void) |
| 4196 | { |
| 4197 | set_child_environment(Rows, Columns, "dumb"); |
| 4198 | } |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 4199 | #endif |
| 4200 | |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 4201 | #if defined(FEAT_GUI) || defined(FEAT_JOB_CHANNEL) |
Bram Moolenaar | 979e8c5 | 2017-08-01 15:08:07 +0200 | [diff] [blame] | 4202 | /* |
| 4203 | * Open a PTY, with FD for the master and slave side. |
| 4204 | * When failing "pty_master_fd" and "pty_slave_fd" are -1. |
| 4205 | * When successful both file descriptors are stored. |
| 4206 | */ |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 4207 | static void |
Bram Moolenaar | 7c9aec4 | 2017-08-03 13:51:25 +0200 | [diff] [blame] | 4208 | open_pty(int *pty_master_fd, int *pty_slave_fd, char_u **namep) |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 4209 | { |
| 4210 | char *tty_name; |
| 4211 | |
| 4212 | *pty_master_fd = OpenPTY(&tty_name); /* open pty */ |
| 4213 | if (*pty_master_fd >= 0) |
| 4214 | { |
| 4215 | /* Leaving out O_NOCTTY may lead to waitpid() always returning |
| 4216 | * 0 on Mac OS X 10.7 thereby causing freezes. Let's assume |
| 4217 | * adding O_NOCTTY always works when defined. */ |
| 4218 | #ifdef O_NOCTTY |
| 4219 | *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0); |
| 4220 | #else |
| 4221 | *pty_slave_fd = open(tty_name, O_RDWR | O_EXTRA, 0); |
| 4222 | #endif |
| 4223 | if (*pty_slave_fd < 0) |
| 4224 | { |
| 4225 | close(*pty_master_fd); |
| 4226 | *pty_master_fd = -1; |
| 4227 | } |
Bram Moolenaar | 7c9aec4 | 2017-08-03 13:51:25 +0200 | [diff] [blame] | 4228 | else if (namep != NULL) |
| 4229 | *namep = vim_strsave((char_u *)tty_name); |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 4230 | } |
| 4231 | } |
| 4232 | #endif |
| 4233 | |
Bram Moolenaar | fae4283 | 2017-08-01 22:24:26 +0200 | [diff] [blame] | 4234 | /* |
| 4235 | * Send SIGINT to a child process if "c" is an interrupt character. |
| 4236 | */ |
| 4237 | void |
| 4238 | may_send_sigint(int c UNUSED, pid_t pid UNUSED, pid_t wpid UNUSED) |
| 4239 | { |
| 4240 | # ifdef SIGINT |
| 4241 | if (c == Ctrl_C || c == intr_char) |
| 4242 | { |
| 4243 | # ifdef HAVE_SETSID |
| 4244 | kill(-pid, SIGINT); |
| 4245 | # else |
| 4246 | kill(0, SIGINT); |
| 4247 | # endif |
| 4248 | if (wpid > 0) |
| 4249 | kill(wpid, SIGINT); |
| 4250 | } |
| 4251 | # endif |
| 4252 | } |
| 4253 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4254 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 4255 | mch_call_shell( |
| 4256 | char_u *cmd, |
| 4257 | int options) /* SHELL_*, see vim.h */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4258 | { |
| 4259 | #ifdef VMS |
| 4260 | char *ifn = NULL; |
| 4261 | char *ofn = NULL; |
| 4262 | #endif |
| 4263 | int tmode = cur_tmode; |
| 4264 | #ifdef USE_SYSTEM /* use system() to start the shell: simple but slow */ |
Bram Moolenaar | b2b050a | 2016-07-16 21:52:46 +0200 | [diff] [blame] | 4265 | char_u *newcmd; /* only needed for unix */ |
Bram Moolenaar | de5e2c2 | 2016-11-04 20:35:31 +0100 | [diff] [blame] | 4266 | int x; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4267 | |
| 4268 | out_flush(); |
| 4269 | |
| 4270 | if (options & SHELL_COOKED) |
| 4271 | settmode(TMODE_COOK); /* set to normal mode */ |
| 4272 | |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 4273 | # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 4274 | save_clipboard(); |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 4275 | loose_clipboard(); |
| 4276 | # endif |
| 4277 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4278 | if (cmd == NULL) |
| 4279 | x = system((char *)p_sh); |
| 4280 | else |
| 4281 | { |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 4282 | # ifdef VMS |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4283 | if (ofn = strchr((char *)cmd, '>')) |
| 4284 | *ofn++ = '\0'; |
| 4285 | if (ifn = strchr((char *)cmd, '<')) |
| 4286 | { |
| 4287 | char *p; |
| 4288 | |
| 4289 | *ifn++ = '\0'; |
| 4290 | p = strchr(ifn,' '); /* chop off any trailing spaces */ |
| 4291 | if (p) |
| 4292 | *p = '\0'; |
| 4293 | } |
| 4294 | if (ofn) |
| 4295 | x = vms_sys((char *)cmd, ofn, ifn); |
| 4296 | else |
| 4297 | x = system((char *)cmd); |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 4298 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4299 | newcmd = lalloc(STRLEN(p_sh) |
| 4300 | + (extra_shell_arg == NULL ? 0 : STRLEN(extra_shell_arg)) |
| 4301 | + STRLEN(p_shcf) + STRLEN(cmd) + 4, TRUE); |
| 4302 | if (newcmd == NULL) |
| 4303 | x = 0; |
| 4304 | else |
| 4305 | { |
| 4306 | sprintf((char *)newcmd, "%s %s %s %s", p_sh, |
| 4307 | extra_shell_arg == NULL ? "" : (char *)extra_shell_arg, |
| 4308 | (char *)p_shcf, |
| 4309 | (char *)cmd); |
| 4310 | x = system((char *)newcmd); |
| 4311 | vim_free(newcmd); |
| 4312 | } |
Bram Moolenaar | a06ecab | 2016-07-16 14:47:36 +0200 | [diff] [blame] | 4313 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4314 | } |
| 4315 | # ifdef VMS |
| 4316 | x = vms_sys_status(x); |
| 4317 | # endif |
| 4318 | if (emsg_silent) |
| 4319 | ; |
| 4320 | else if (x == 127) |
| 4321 | MSG_PUTS(_("\nCannot execute shell sh\n")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4322 | else if (x && !(options & SHELL_SILENT)) |
| 4323 | { |
| 4324 | MSG_PUTS(_("\nshell returned ")); |
| 4325 | msg_outnum((long)x); |
| 4326 | msg_putchar('\n'); |
| 4327 | } |
| 4328 | |
| 4329 | if (tmode == TMODE_RAW) |
| 4330 | settmode(TMODE_RAW); /* set to raw mode */ |
| 4331 | # ifdef FEAT_TITLE |
| 4332 | resettitle(); |
| 4333 | # endif |
Bram Moolenaar | 1a0316c | 2013-03-13 17:50:25 +0100 | [diff] [blame] | 4334 | # if defined(FEAT_CLIPBOARD) && defined(FEAT_X11) |
| 4335 | restore_clipboard(); |
| 4336 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4337 | return x; |
| 4338 | |
| 4339 | #else /* USE_SYSTEM */ /* don't use system(), use fork()/exec() */ |
| 4340 | |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4341 | # define EXEC_FAILED 122 /* Exit code when shell didn't execute. Don't use |
| 4342 | 127, some shells use that already */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4343 | |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 4344 | char_u *newcmd; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4345 | pid_t pid; |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4346 | pid_t wpid = 0; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4347 | pid_t wait_pid = 0; |
| 4348 | # ifdef HAVE_UNION_WAIT |
| 4349 | union wait status; |
| 4350 | # else |
| 4351 | int status = -1; |
| 4352 | # endif |
| 4353 | int retval = -1; |
| 4354 | char **argv = NULL; |
| 4355 | int argc; |
Bram Moolenaar | ea35ef6 | 2011-08-04 22:59:28 +0200 | [diff] [blame] | 4356 | char_u *p_shcf_copy = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4357 | int i; |
| 4358 | char_u *p; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4359 | int pty_master_fd = -1; /* for pty's */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4360 | # ifdef FEAT_GUI |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4361 | int pty_slave_fd = -1; |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4362 | # endif |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4363 | int fd_toshell[2]; /* for pipes */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4364 | int fd_fromshell[2]; |
| 4365 | int pipe_error = FALSE; |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4366 | int did_settmode = FALSE; /* settmode(TMODE_RAW) called */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4367 | |
Bram Moolenaar | 62b4218 | 2010-09-21 22:09:37 +0200 | [diff] [blame] | 4368 | newcmd = vim_strsave(p_sh); |
| 4369 | if (newcmd == NULL) /* out of memory */ |
| 4370 | goto error; |
| 4371 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4372 | out_flush(); |
| 4373 | if (options & SHELL_COOKED) |
| 4374 | settmode(TMODE_COOK); /* set to normal mode */ |
| 4375 | |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 4376 | if (mch_parse_cmd(newcmd, TRUE, &argv, &argc) == FAIL) |
| 4377 | goto error; |
Bram Moolenaar | ea35ef6 | 2011-08-04 22:59:28 +0200 | [diff] [blame] | 4378 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4379 | if (cmd != NULL) |
| 4380 | { |
Bram Moolenaar | 70b2a56 | 2012-01-10 22:26:17 +0100 | [diff] [blame] | 4381 | char_u *s; |
| 4382 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4383 | if (extra_shell_arg != NULL) |
| 4384 | argv[argc++] = (char *)extra_shell_arg; |
Bram Moolenaar | ea35ef6 | 2011-08-04 22:59:28 +0200 | [diff] [blame] | 4385 | |
| 4386 | /* Break 'shellcmdflag' into white separated parts. This doesn't |
| 4387 | * handle quoted strings, they are very unlikely to appear. */ |
| 4388 | p_shcf_copy = alloc((unsigned)STRLEN(p_shcf) + 1); |
| 4389 | if (p_shcf_copy == NULL) /* out of memory */ |
| 4390 | goto error; |
| 4391 | s = p_shcf_copy; |
| 4392 | p = p_shcf; |
| 4393 | while (*p != NUL) |
| 4394 | { |
| 4395 | argv[argc++] = (char *)s; |
| 4396 | while (*p && *p != ' ' && *p != TAB) |
| 4397 | *s++ = *p++; |
| 4398 | *s++ = NUL; |
| 4399 | p = skipwhite(p); |
| 4400 | } |
| 4401 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4402 | argv[argc++] = (char *)cmd; |
| 4403 | } |
| 4404 | argv[argc] = NULL; |
| 4405 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4406 | /* |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4407 | * For the GUI, when writing the output into the buffer and when reading |
| 4408 | * input from the buffer: Try using a pseudo-tty to get the stdin/stdout |
| 4409 | * of the executed command into the Vim window. Or use a pipe. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4410 | */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4411 | if ((options & (SHELL_READ|SHELL_WRITE)) |
| 4412 | # ifdef FEAT_GUI |
| 4413 | || (gui.in_use && show_shell_mess) |
| 4414 | # endif |
| 4415 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4416 | { |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4417 | # ifdef FEAT_GUI |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4418 | /* |
| 4419 | * Try to open a master pty. |
| 4420 | * If this works, open the slave pty. |
| 4421 | * If the slave can't be opened, close the master pty. |
| 4422 | */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4423 | if (p_guipty && !(options & (SHELL_READ|SHELL_WRITE))) |
Bram Moolenaar | 7c9aec4 | 2017-08-03 13:51:25 +0200 | [diff] [blame] | 4424 | open_pty(&pty_master_fd, &pty_slave_fd, NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4425 | /* |
| 4426 | * If not opening a pty or it didn't work, try using pipes. |
| 4427 | */ |
| 4428 | if (pty_master_fd < 0) |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4429 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4430 | { |
| 4431 | pipe_error = (pipe(fd_toshell) < 0); |
| 4432 | if (!pipe_error) /* pipe create OK */ |
| 4433 | { |
| 4434 | pipe_error = (pipe(fd_fromshell) < 0); |
| 4435 | if (pipe_error) /* pipe create failed */ |
| 4436 | { |
| 4437 | close(fd_toshell[0]); |
| 4438 | close(fd_toshell[1]); |
| 4439 | } |
| 4440 | } |
| 4441 | if (pipe_error) |
| 4442 | { |
| 4443 | MSG_PUTS(_("\nCannot create pipes\n")); |
| 4444 | out_flush(); |
| 4445 | } |
| 4446 | } |
| 4447 | } |
| 4448 | |
| 4449 | if (!pipe_error) /* pty or pipe opened or not used */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4450 | { |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 4451 | SIGSET_DECL(curset) |
| 4452 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4453 | # ifdef __BEOS__ |
| 4454 | beos_cleanup_read_thread(); |
| 4455 | # endif |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4456 | |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 4457 | BLOCK_SIGNALS(&curset); |
| 4458 | pid = fork(); /* maybe we should use vfork() */ |
| 4459 | if (pid == -1) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4460 | { |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 4461 | UNBLOCK_SIGNALS(&curset); |
| 4462 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4463 | MSG_PUTS(_("\nCannot fork\n")); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4464 | if ((options & (SHELL_READ|SHELL_WRITE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4465 | # ifdef FEAT_GUI |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4466 | || (gui.in_use && show_shell_mess) |
| 4467 | # endif |
| 4468 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4469 | { |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4470 | # ifdef FEAT_GUI |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4471 | if (pty_master_fd >= 0) /* close the pseudo tty */ |
| 4472 | { |
| 4473 | close(pty_master_fd); |
| 4474 | close(pty_slave_fd); |
| 4475 | } |
| 4476 | else /* close the pipes */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4477 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4478 | { |
| 4479 | close(fd_toshell[0]); |
| 4480 | close(fd_toshell[1]); |
| 4481 | close(fd_fromshell[0]); |
| 4482 | close(fd_fromshell[1]); |
| 4483 | } |
| 4484 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4485 | } |
| 4486 | else if (pid == 0) /* child */ |
| 4487 | { |
| 4488 | reset_signals(); /* handle signals normally */ |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 4489 | UNBLOCK_SIGNALS(&curset); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4490 | |
| 4491 | if (!show_shell_mess || (options & SHELL_EXPAND)) |
| 4492 | { |
| 4493 | int fd; |
| 4494 | |
| 4495 | /* |
| 4496 | * Don't want to show any message from the shell. Can't just |
| 4497 | * close stdout and stderr though, because some systems will |
| 4498 | * break if you try to write to them after that, so we must |
| 4499 | * use dup() to replace them with something else -- webb |
| 4500 | * Connect stdin to /dev/null too, so ":n `cat`" doesn't hang, |
| 4501 | * waiting for input. |
| 4502 | */ |
| 4503 | fd = open("/dev/null", O_RDWR | O_EXTRA, 0); |
| 4504 | fclose(stdin); |
| 4505 | fclose(stdout); |
| 4506 | fclose(stderr); |
| 4507 | |
| 4508 | /* |
| 4509 | * If any of these open()'s and dup()'s fail, we just continue |
| 4510 | * anyway. It's not fatal, and on most systems it will make |
| 4511 | * no difference at all. On a few it will cause the execvp() |
| 4512 | * to exit with a non-zero status even when the completion |
| 4513 | * could be done, which is nothing too serious. If the open() |
| 4514 | * or dup() failed we'd just do the same thing ourselves |
| 4515 | * anyway -- webb |
| 4516 | */ |
| 4517 | if (fd >= 0) |
| 4518 | { |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4519 | ignored = dup(fd); /* To replace stdin (fd 0) */ |
| 4520 | ignored = dup(fd); /* To replace stdout (fd 1) */ |
| 4521 | ignored = dup(fd); /* To replace stderr (fd 2) */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4522 | |
| 4523 | /* Don't need this now that we've duplicated it */ |
| 4524 | close(fd); |
| 4525 | } |
| 4526 | } |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4527 | else if ((options & (SHELL_READ|SHELL_WRITE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4528 | # ifdef FEAT_GUI |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4529 | || gui.in_use |
| 4530 | # endif |
| 4531 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4532 | { |
| 4533 | |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4534 | # ifdef HAVE_SETSID |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4535 | /* Create our own process group, so that the child and all its |
| 4536 | * children can be kill()ed. Don't do this when using pipes, |
Bram Moolenaar | e37d50a | 2008-08-06 17:06:04 +0000 | [diff] [blame] | 4537 | * because stdin is not a tty, we would lose /dev/tty. */ |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4538 | if (p_stmp) |
Bram Moolenaar | 0725608 | 2009-02-04 13:19:42 +0000 | [diff] [blame] | 4539 | { |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4540 | (void)setsid(); |
Bram Moolenaar | 0725608 | 2009-02-04 13:19:42 +0000 | [diff] [blame] | 4541 | # if defined(SIGHUP) |
| 4542 | /* When doing "!xterm&" and 'shell' is bash: the shell |
| 4543 | * will exit and send SIGHUP to all processes in its |
| 4544 | * group, killing the just started process. Ignore SIGHUP |
| 4545 | * to avoid that. (suggested by Simon Schubert) |
| 4546 | */ |
| 4547 | signal(SIGHUP, SIG_IGN); |
| 4548 | # endif |
| 4549 | } |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4550 | # endif |
| 4551 | # ifdef FEAT_GUI |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4552 | if (pty_slave_fd >= 0) |
| 4553 | { |
| 4554 | /* push stream discipline modules */ |
| 4555 | if (options & SHELL_COOKED) |
| 4556 | SetupSlavePTY(pty_slave_fd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4557 | # ifdef TIOCSCTTY |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4558 | /* Try to become controlling tty (probably doesn't work, |
| 4559 | * unless run by root) */ |
| 4560 | ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4561 | # endif |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4562 | } |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4563 | # endif |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 4564 | set_default_child_environment(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4565 | |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 4566 | /* |
| 4567 | * stderr is only redirected when using the GUI, so that a |
| 4568 | * program like gpg can still access the terminal to get a |
| 4569 | * passphrase using stderr. |
| 4570 | */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4571 | # ifdef FEAT_GUI |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4572 | if (pty_master_fd >= 0) |
| 4573 | { |
| 4574 | close(pty_master_fd); /* close master side of pty */ |
| 4575 | |
| 4576 | /* set up stdin/stdout/stderr for the child */ |
| 4577 | close(0); |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4578 | ignored = dup(pty_slave_fd); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4579 | close(1); |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4580 | ignored = dup(pty_slave_fd); |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 4581 | if (gui.in_use) |
| 4582 | { |
| 4583 | close(2); |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4584 | ignored = dup(pty_slave_fd); |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 4585 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4586 | |
| 4587 | close(pty_slave_fd); /* has been dupped, close it now */ |
| 4588 | } |
| 4589 | else |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4590 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4591 | { |
| 4592 | /* set up stdin for the child */ |
| 4593 | close(fd_toshell[1]); |
| 4594 | close(0); |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4595 | ignored = dup(fd_toshell[0]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4596 | close(fd_toshell[0]); |
| 4597 | |
| 4598 | /* set up stdout for the child */ |
| 4599 | close(fd_fromshell[0]); |
| 4600 | close(1); |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4601 | ignored = dup(fd_fromshell[1]); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4602 | close(fd_fromshell[1]); |
| 4603 | |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 4604 | # ifdef FEAT_GUI |
| 4605 | if (gui.in_use) |
| 4606 | { |
| 4607 | /* set up stderr for the child */ |
| 4608 | close(2); |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4609 | ignored = dup(1); |
Bram Moolenaar | a5792f5 | 2005-11-23 21:25:05 +0000 | [diff] [blame] | 4610 | } |
| 4611 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4612 | } |
| 4613 | } |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4614 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4615 | /* |
| 4616 | * There is no type cast for the argv, because the type may be |
| 4617 | * different on different machines. This may cause a warning |
| 4618 | * message with strict compilers, don't worry about it. |
| 4619 | * Call _exit() instead of exit() to avoid closing the connection |
| 4620 | * to the X server (esp. with GTK, which uses atexit()). |
| 4621 | */ |
| 4622 | execvp(argv[0], argv); |
| 4623 | _exit(EXEC_FAILED); /* exec failed, return failure code */ |
| 4624 | } |
| 4625 | else /* parent */ |
| 4626 | { |
| 4627 | /* |
| 4628 | * While child is running, ignore terminating signals. |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4629 | * Do catch CTRL-C, so that "got_int" is set. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4630 | */ |
| 4631 | catch_signals(SIG_IGN, SIG_ERR); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4632 | catch_int_signal(); |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 4633 | UNBLOCK_SIGNALS(&curset); |
Bram Moolenaar | c4d4ac2 | 2016-11-07 22:42:57 +0100 | [diff] [blame] | 4634 | # ifdef FEAT_JOB_CHANNEL |
| 4635 | ++dont_check_job_ended; |
| 4636 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4637 | /* |
| 4638 | * For the GUI we redirect stdin, stdout and stderr to our window. |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4639 | * This is also used to pipe stdin/stdout to/from the external |
| 4640 | * command. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4641 | */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4642 | if ((options & (SHELL_READ|SHELL_WRITE)) |
| 4643 | # ifdef FEAT_GUI |
| 4644 | || (gui.in_use && show_shell_mess) |
| 4645 | # endif |
| 4646 | ) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4647 | { |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4648 | # define BUFLEN 100 /* length for buffer, pseudo tty limit is 128 */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4649 | char_u buffer[BUFLEN + 1]; |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4650 | # ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4651 | int buffer_off = 0; /* valid bytes in buffer[] */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4652 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4653 | char_u ta_buf[BUFLEN + 1]; /* TypeAHead */ |
| 4654 | int ta_len = 0; /* valid bytes in ta_buf[] */ |
| 4655 | int len; |
| 4656 | int p_more_save; |
| 4657 | int old_State; |
| 4658 | int c; |
| 4659 | int toshell_fd; |
| 4660 | int fromshell_fd; |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4661 | garray_T ga; |
| 4662 | int noread_cnt; |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 4663 | # if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H) |
| 4664 | struct timeval start_tv; |
| 4665 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4666 | |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4667 | # ifdef FEAT_GUI |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4668 | if (pty_master_fd >= 0) |
| 4669 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4670 | fromshell_fd = pty_master_fd; |
| 4671 | toshell_fd = dup(pty_master_fd); |
| 4672 | } |
| 4673 | else |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4674 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4675 | { |
| 4676 | close(fd_toshell[0]); |
| 4677 | close(fd_fromshell[1]); |
| 4678 | toshell_fd = fd_toshell[1]; |
| 4679 | fromshell_fd = fd_fromshell[0]; |
| 4680 | } |
| 4681 | |
| 4682 | /* |
| 4683 | * Write to the child if there are typed characters. |
| 4684 | * Read from the child if there are characters available. |
| 4685 | * Repeat the reading a few times if more characters are |
| 4686 | * available. Need to check for typed keys now and then, but |
| 4687 | * not too often (delays when no chars are available). |
| 4688 | * This loop is quit if no characters can be read from the pty |
| 4689 | * (WaitForChar detected special condition), or there are no |
| 4690 | * characters available and the child has exited. |
| 4691 | * Only check if the child has exited when there is no more |
| 4692 | * output. The child may exit before all the output has |
| 4693 | * been printed. |
| 4694 | * |
| 4695 | * Currently this busy loops! |
| 4696 | * This can probably dead-lock when the write blocks! |
| 4697 | */ |
| 4698 | p_more_save = p_more; |
| 4699 | p_more = FALSE; |
| 4700 | old_State = State; |
| 4701 | State = EXTERNCMD; /* don't redraw at window resize */ |
| 4702 | |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4703 | if ((options & SHELL_WRITE) && toshell_fd >= 0) |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4704 | { |
| 4705 | /* Fork a process that will write the lines to the |
| 4706 | * external program. */ |
| 4707 | if ((wpid = fork()) == -1) |
| 4708 | { |
| 4709 | MSG_PUTS(_("\nCannot fork\n")); |
| 4710 | } |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 4711 | else if (wpid == 0) /* child */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4712 | { |
| 4713 | linenr_T lnum = curbuf->b_op_start.lnum; |
| 4714 | int written = 0; |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 4715 | char_u *lp = ml_get(lnum); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4716 | size_t l; |
| 4717 | |
Bram Moolenaar | 8cd06ca | 2005-02-28 22:44:58 +0000 | [diff] [blame] | 4718 | close(fromshell_fd); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4719 | for (;;) |
| 4720 | { |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 4721 | l = STRLEN(lp + written); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4722 | if (l == 0) |
| 4723 | len = 0; |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 4724 | else if (lp[written] == NL) |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4725 | /* NL -> NUL translation */ |
| 4726 | len = write(toshell_fd, "", (size_t)1); |
| 4727 | else |
| 4728 | { |
Bram Moolenaar | 70b2a56 | 2012-01-10 22:26:17 +0100 | [diff] [blame] | 4729 | char_u *s = vim_strchr(lp + written, NL); |
| 4730 | |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 4731 | len = write(toshell_fd, (char *)lp + written, |
Bram Moolenaar | 78a1531 | 2009-05-15 19:33:18 +0000 | [diff] [blame] | 4732 | s == NULL ? l |
| 4733 | : (size_t)(s - (lp + written))); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4734 | } |
Bram Moolenaar | 78a1531 | 2009-05-15 19:33:18 +0000 | [diff] [blame] | 4735 | if (len == (int)l) |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4736 | { |
| 4737 | /* Finished a line, add a NL, unless this line |
| 4738 | * should not have one. */ |
| 4739 | if (lnum != curbuf->b_op_end.lnum |
Bram Moolenaar | 34d72d4 | 2015-07-17 14:18:08 +0200 | [diff] [blame] | 4740 | || (!curbuf->b_p_bin |
| 4741 | && curbuf->b_p_fixeol) |
Bram Moolenaar | cab35ad | 2011-02-15 17:39:22 +0100 | [diff] [blame] | 4742 | || (lnum != curbuf->b_no_eol_lnum |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4743 | && (lnum != |
| 4744 | curbuf->b_ml.ml_line_count |
| 4745 | || curbuf->b_p_eol))) |
Bram Moolenaar | fe86f2d | 2008-11-28 20:29:07 +0000 | [diff] [blame] | 4746 | ignored = write(toshell_fd, "\n", |
| 4747 | (size_t)1); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4748 | ++lnum; |
| 4749 | if (lnum > curbuf->b_op_end.lnum) |
| 4750 | { |
| 4751 | /* finished all the lines, close pipe */ |
| 4752 | close(toshell_fd); |
| 4753 | toshell_fd = -1; |
| 4754 | break; |
| 4755 | } |
Bram Moolenaar | 89d4032 | 2006-08-29 15:30:07 +0000 | [diff] [blame] | 4756 | lp = ml_get(lnum); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4757 | written = 0; |
| 4758 | } |
| 4759 | else if (len > 0) |
| 4760 | written += len; |
| 4761 | } |
| 4762 | _exit(0); |
| 4763 | } |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 4764 | else /* parent */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4765 | { |
| 4766 | close(toshell_fd); |
| 4767 | toshell_fd = -1; |
| 4768 | } |
| 4769 | } |
| 4770 | |
| 4771 | if (options & SHELL_READ) |
| 4772 | ga_init2(&ga, 1, BUFLEN); |
| 4773 | |
| 4774 | noread_cnt = 0; |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 4775 | # ifdef ELAPSED_FUNC |
| 4776 | ELAPSED_INIT(start_tv); |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 4777 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4778 | for (;;) |
| 4779 | { |
| 4780 | /* |
| 4781 | * Check if keys have been typed, write them to the child |
Bram Moolenaar | 5b962cf | 2005-12-12 21:58:40 +0000 | [diff] [blame] | 4782 | * if there are any. |
| 4783 | * Don't do this if we are expanding wild cards (would eat |
| 4784 | * typeahead). |
| 4785 | * Don't do this when filtering and terminal is in cooked |
| 4786 | * mode, the shell command will handle the I/O. Avoids |
| 4787 | * that a typed password is echoed for ssh or gpg command. |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4788 | * Don't get characters when the child has already |
| 4789 | * finished (wait_pid == 0). |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4790 | * Don't read characters unless we didn't get output for a |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 4791 | * while (noread_cnt > 4), avoids that ":r !ls" eats |
| 4792 | * typeahead. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4793 | */ |
| 4794 | len = 0; |
| 4795 | if (!(options & SHELL_EXPAND) |
Bram Moolenaar | 5b962cf | 2005-12-12 21:58:40 +0000 | [diff] [blame] | 4796 | && ((options & |
| 4797 | (SHELL_READ|SHELL_WRITE|SHELL_COOKED)) |
| 4798 | != (SHELL_READ|SHELL_WRITE|SHELL_COOKED) |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 4799 | # ifdef FEAT_GUI |
Bram Moolenaar | 5b962cf | 2005-12-12 21:58:40 +0000 | [diff] [blame] | 4800 | || gui.in_use |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 4801 | # endif |
Bram Moolenaar | 5b962cf | 2005-12-12 21:58:40 +0000 | [diff] [blame] | 4802 | ) |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 4803 | && wait_pid == 0 |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 4804 | && (ta_len > 0 || noread_cnt > 4)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4805 | { |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 4806 | if (ta_len == 0) |
| 4807 | { |
| 4808 | /* Get extra characters when we don't have any. |
| 4809 | * Reset the counter and timer. */ |
| 4810 | noread_cnt = 0; |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 4811 | # ifdef ELAPSED_FUNC |
| 4812 | ELAPSED_INIT(start_tv); |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 4813 | # endif |
| 4814 | len = ui_inchar(ta_buf, BUFLEN, 10L, 0); |
| 4815 | } |
| 4816 | if (ta_len > 0 || len > 0) |
| 4817 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4818 | /* |
| 4819 | * For pipes: |
| 4820 | * Check for CTRL-C: send interrupt signal to child. |
| 4821 | * Check for CTRL-D: EOF, close pipe to child. |
| 4822 | */ |
| 4823 | if (len == 1 && (pty_master_fd < 0 || cmd != NULL)) |
| 4824 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4825 | /* |
| 4826 | * Send SIGINT to the child's group or all |
| 4827 | * processes in our group. |
| 4828 | */ |
Bram Moolenaar | fae4283 | 2017-08-01 22:24:26 +0200 | [diff] [blame] | 4829 | may_send_sigint(ta_buf[ta_len], pid, wpid); |
| 4830 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4831 | if (pty_master_fd < 0 && toshell_fd >= 0 |
| 4832 | && ta_buf[ta_len] == Ctrl_D) |
| 4833 | { |
| 4834 | close(toshell_fd); |
| 4835 | toshell_fd = -1; |
| 4836 | } |
| 4837 | } |
| 4838 | |
| 4839 | /* replace K_BS by <BS> and K_DEL by <DEL> */ |
| 4840 | for (i = ta_len; i < ta_len + len; ++i) |
| 4841 | { |
| 4842 | if (ta_buf[i] == CSI && len - i > 2) |
| 4843 | { |
| 4844 | c = TERMCAP2KEY(ta_buf[i + 1], ta_buf[i + 2]); |
| 4845 | if (c == K_DEL || c == K_KDEL || c == K_BS) |
| 4846 | { |
| 4847 | mch_memmove(ta_buf + i + 1, ta_buf + i + 3, |
| 4848 | (size_t)(len - i - 2)); |
| 4849 | if (c == K_DEL || c == K_KDEL) |
| 4850 | ta_buf[i] = DEL; |
| 4851 | else |
| 4852 | ta_buf[i] = Ctrl_H; |
| 4853 | len -= 2; |
| 4854 | } |
| 4855 | } |
| 4856 | else if (ta_buf[i] == '\r') |
| 4857 | ta_buf[i] = '\n'; |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4858 | # ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4859 | if (has_mbyte) |
Bram Moolenaar | feba08b | 2009-06-16 13:12:07 +0000 | [diff] [blame] | 4860 | i += (*mb_ptr2len_len)(ta_buf + i, |
| 4861 | ta_len + len - i) - 1; |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4862 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4863 | } |
| 4864 | |
| 4865 | /* |
| 4866 | * For pipes: echo the typed characters. |
| 4867 | * For a pty this does not seem to work. |
| 4868 | */ |
| 4869 | if (pty_master_fd < 0) |
| 4870 | { |
| 4871 | for (i = ta_len; i < ta_len + len; ++i) |
| 4872 | { |
| 4873 | if (ta_buf[i] == '\n' || ta_buf[i] == '\b') |
| 4874 | msg_putchar(ta_buf[i]); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4875 | # ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4876 | else if (has_mbyte) |
| 4877 | { |
Bram Moolenaar | 0fa313a | 2005-08-10 21:07:57 +0000 | [diff] [blame] | 4878 | int l = (*mb_ptr2len)(ta_buf + i); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4879 | |
| 4880 | msg_outtrans_len(ta_buf + i, l); |
| 4881 | i += l - 1; |
| 4882 | } |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4883 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4884 | else |
| 4885 | msg_outtrans_len(ta_buf + i, 1); |
| 4886 | } |
| 4887 | windgoto(msg_row, msg_col); |
| 4888 | out_flush(); |
| 4889 | } |
| 4890 | |
| 4891 | ta_len += len; |
| 4892 | |
| 4893 | /* |
| 4894 | * Write the characters to the child, unless EOF has |
| 4895 | * been typed for pipes. Write one character at a |
Bram Moolenaar | e37d50a | 2008-08-06 17:06:04 +0000 | [diff] [blame] | 4896 | * time, to avoid losing too much typeahead. |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4897 | * When writing buffer lines, drop the typed |
| 4898 | * characters (only check for CTRL-C). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4899 | */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4900 | if (options & SHELL_WRITE) |
| 4901 | ta_len = 0; |
| 4902 | else if (toshell_fd >= 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4903 | { |
| 4904 | len = write(toshell_fd, (char *)ta_buf, (size_t)1); |
| 4905 | if (len > 0) |
| 4906 | { |
| 4907 | ta_len -= len; |
| 4908 | mch_memmove(ta_buf, ta_buf + len, ta_len); |
| 4909 | } |
| 4910 | } |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 4911 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4912 | } |
| 4913 | |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4914 | if (got_int) |
| 4915 | { |
| 4916 | /* CTRL-C sends a signal to the child, we ignore it |
| 4917 | * ourselves */ |
| 4918 | # ifdef HAVE_SETSID |
| 4919 | kill(-pid, SIGINT); |
| 4920 | # else |
| 4921 | kill(0, SIGINT); |
| 4922 | # endif |
| 4923 | if (wpid > 0) |
| 4924 | kill(wpid, SIGINT); |
| 4925 | got_int = FALSE; |
| 4926 | } |
| 4927 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4928 | /* |
| 4929 | * Check if the child has any characters to be printed. |
| 4930 | * Read them and write them to our window. Repeat this as |
| 4931 | * long as there is something to do, avoid the 10ms wait |
| 4932 | * for mch_inchar(), or sending typeahead characters to |
| 4933 | * the external process. |
| 4934 | * TODO: This should handle escape sequences, compatible |
| 4935 | * to some terminal (vt52?). |
| 4936 | */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4937 | ++noread_cnt; |
Bram Moolenaar | 8fdd721 | 2016-03-26 19:41:48 +0100 | [diff] [blame] | 4938 | while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4939 | { |
Bram Moolenaar | 540fc6f | 2010-12-17 16:27:16 +0100 | [diff] [blame] | 4940 | len = read_eintr(fromshell_fd, buffer |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4941 | # ifdef FEAT_MBYTE |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4942 | + buffer_off, (size_t)(BUFLEN - buffer_off) |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4943 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4944 | , (size_t)BUFLEN |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4945 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4946 | ); |
| 4947 | if (len <= 0) /* end of file or error */ |
| 4948 | goto finished; |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4949 | |
| 4950 | noread_cnt = 0; |
| 4951 | if (options & SHELL_READ) |
| 4952 | { |
| 4953 | /* Do NUL -> NL translation, append NL separated |
| 4954 | * lines to the current buffer. */ |
| 4955 | for (i = 0; i < len; ++i) |
| 4956 | { |
| 4957 | if (buffer[i] == NL) |
| 4958 | append_ga_line(&ga); |
| 4959 | else if (buffer[i] == NUL) |
| 4960 | ga_append(&ga, NL); |
| 4961 | else |
| 4962 | ga_append(&ga, buffer[i]); |
| 4963 | } |
| 4964 | } |
| 4965 | # ifdef FEAT_MBYTE |
| 4966 | else if (has_mbyte) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4967 | { |
| 4968 | int l; |
| 4969 | |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 4970 | len += buffer_off; |
| 4971 | buffer[len] = NUL; |
| 4972 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4973 | /* Check if the last character in buffer[] is |
| 4974 | * incomplete, keep these bytes for the next |
| 4975 | * round. */ |
| 4976 | for (p = buffer; p < buffer + len; p += l) |
| 4977 | { |
Bram Moolenaar | d3c907b | 2016-08-17 21:32:09 +0200 | [diff] [blame] | 4978 | l = MB_CPTR2LEN(p); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 4979 | if (l == 0) |
| 4980 | l = 1; /* NUL byte? */ |
| 4981 | else if (MB_BYTE2LEN(*p) != l) |
| 4982 | break; |
| 4983 | } |
| 4984 | if (p == buffer) /* no complete character */ |
| 4985 | { |
| 4986 | /* avoid getting stuck at an illegal byte */ |
| 4987 | if (len >= 12) |
| 4988 | ++p; |
| 4989 | else |
| 4990 | { |
| 4991 | buffer_off = len; |
| 4992 | continue; |
| 4993 | } |
| 4994 | } |
| 4995 | c = *p; |
| 4996 | *p = NUL; |
| 4997 | msg_puts(buffer); |
| 4998 | if (p < buffer + len) |
| 4999 | { |
| 5000 | *p = c; |
| 5001 | buffer_off = (buffer + len) - p; |
| 5002 | mch_memmove(buffer, p, buffer_off); |
| 5003 | continue; |
| 5004 | } |
| 5005 | buffer_off = 0; |
| 5006 | } |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 5007 | # endif /* FEAT_MBYTE */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5008 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5009 | { |
| 5010 | buffer[len] = NUL; |
| 5011 | msg_puts(buffer); |
| 5012 | } |
| 5013 | |
| 5014 | windgoto(msg_row, msg_col); |
| 5015 | cursor_on(); |
| 5016 | out_flush(); |
| 5017 | if (got_int) |
| 5018 | break; |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 5019 | |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 5020 | # ifdef ELAPSED_FUNC |
Bram Moolenaar | 17fe5e1 | 2016-04-04 22:03:08 +0200 | [diff] [blame] | 5021 | if (wait_pid == 0) |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 5022 | { |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 5023 | long msec = ELAPSED_FUNC(start_tv); |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 5024 | |
| 5025 | /* Avoid that we keep looping here without |
| 5026 | * checking for a CTRL-C for a long time. Don't |
| 5027 | * break out too often to avoid losing typeahead. */ |
Bram Moolenaar | b3dc8fd | 2009-02-22 01:52:59 +0000 | [diff] [blame] | 5028 | if (msec > 2000) |
| 5029 | { |
| 5030 | noread_cnt = 5; |
| 5031 | break; |
| 5032 | } |
| 5033 | } |
| 5034 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5035 | } |
| 5036 | |
Bram Moolenaar | 17fe5e1 | 2016-04-04 22:03:08 +0200 | [diff] [blame] | 5037 | /* If we already detected the child has finished, continue |
| 5038 | * reading output for a short while. Some text may be |
| 5039 | * buffered. */ |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 5040 | if (wait_pid == pid) |
Bram Moolenaar | 17fe5e1 | 2016-04-04 22:03:08 +0200 | [diff] [blame] | 5041 | { |
| 5042 | if (noread_cnt < 5) |
| 5043 | continue; |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 5044 | break; |
Bram Moolenaar | 17fe5e1 | 2016-04-04 22:03:08 +0200 | [diff] [blame] | 5045 | } |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 5046 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5047 | /* |
| 5048 | * Check if the child still exists, before checking for |
Bram Moolenaar | e37d50a | 2008-08-06 17:06:04 +0000 | [diff] [blame] | 5049 | * typed characters (otherwise we would lose typeahead). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5050 | */ |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 5051 | # ifdef __NeXT__ |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 5052 | wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 5053 | # else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5054 | wait_pid = waitpid(pid, &status, WNOHANG); |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 5055 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5056 | if ((wait_pid == (pid_t)-1 && errno == ECHILD) |
| 5057 | || (wait_pid == pid && WIFEXITED(status))) |
| 5058 | { |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 5059 | /* Don't break the loop yet, try reading more |
| 5060 | * characters from "fromshell_fd" first. When using |
| 5061 | * pipes there might still be something to read and |
| 5062 | * then we'll break the loop at the "break" above. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5063 | wait_pid = pid; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5064 | } |
Bram Moolenaar | 12033fb | 2005-12-16 21:49:31 +0000 | [diff] [blame] | 5065 | else |
| 5066 | wait_pid = 0; |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 5067 | |
Bram Moolenaar | 95a5135 | 2013-03-21 22:53:50 +0100 | [diff] [blame] | 5068 | # if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11) |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 5069 | /* Handle any X events, e.g. serving the clipboard. */ |
| 5070 | clip_update(); |
| 5071 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5072 | } |
| 5073 | finished: |
| 5074 | p_more = p_more_save; |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 5075 | if (options & SHELL_READ) |
| 5076 | { |
| 5077 | if (ga.ga_len > 0) |
| 5078 | { |
| 5079 | append_ga_line(&ga); |
| 5080 | /* remember that the NL was missing */ |
Bram Moolenaar | cab35ad | 2011-02-15 17:39:22 +0100 | [diff] [blame] | 5081 | curbuf->b_no_eol_lnum = curwin->w_cursor.lnum; |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 5082 | } |
| 5083 | else |
Bram Moolenaar | cab35ad | 2011-02-15 17:39:22 +0100 | [diff] [blame] | 5084 | curbuf->b_no_eol_lnum = 0; |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 5085 | ga_clear(&ga); |
| 5086 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5087 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5088 | /* |
| 5089 | * Give all typeahead that wasn't used back to ui_inchar(). |
| 5090 | */ |
| 5091 | if (ta_len) |
| 5092 | ui_inchar_undo(ta_buf, ta_len); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5093 | State = old_State; |
| 5094 | if (toshell_fd >= 0) |
| 5095 | close(toshell_fd); |
| 5096 | close(fromshell_fd); |
| 5097 | } |
Bram Moolenaar | 95a5135 | 2013-03-21 22:53:50 +0100 | [diff] [blame] | 5098 | # if defined(FEAT_XCLIPBOARD) && defined(FEAT_X11) |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 5099 | else |
| 5100 | { |
Bram Moolenaar | 0abe052 | 2016-08-28 16:53:12 +0200 | [diff] [blame] | 5101 | long delay_msec = 1; |
| 5102 | |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 5103 | /* |
| 5104 | * Similar to the loop above, but only handle X events, no |
| 5105 | * I/O. |
| 5106 | */ |
| 5107 | for (;;) |
| 5108 | { |
| 5109 | if (got_int) |
| 5110 | { |
| 5111 | /* CTRL-C sends a signal to the child, we ignore it |
| 5112 | * ourselves */ |
| 5113 | # ifdef HAVE_SETSID |
| 5114 | kill(-pid, SIGINT); |
| 5115 | # else |
| 5116 | kill(0, SIGINT); |
| 5117 | # endif |
| 5118 | got_int = FALSE; |
| 5119 | } |
| 5120 | # ifdef __NeXT__ |
| 5121 | wait_pid = wait4(pid, &status, WNOHANG, (struct rusage *)0); |
| 5122 | # else |
| 5123 | wait_pid = waitpid(pid, &status, WNOHANG); |
| 5124 | # endif |
| 5125 | if ((wait_pid == (pid_t)-1 && errno == ECHILD) |
| 5126 | || (wait_pid == pid && WIFEXITED(status))) |
| 5127 | { |
| 5128 | wait_pid = pid; |
| 5129 | break; |
| 5130 | } |
| 5131 | |
| 5132 | /* Handle any X events, e.g. serving the clipboard. */ |
| 5133 | clip_update(); |
| 5134 | |
Bram Moolenaar | 0abe052 | 2016-08-28 16:53:12 +0200 | [diff] [blame] | 5135 | /* Wait for 1 to 10 msec. 1 is faster but gives the child |
| 5136 | * less time. */ |
| 5137 | mch_delay(delay_msec, TRUE); |
| 5138 | if (++delay_msec > 10) |
| 5139 | delay_msec = 10; |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 5140 | } |
| 5141 | } |
| 5142 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5143 | |
| 5144 | /* |
| 5145 | * Wait until our child has exited. |
| 5146 | * Ignore wait() returning pids of other children and returning |
| 5147 | * because of some signal like SIGWINCH. |
| 5148 | * Don't wait if wait_pid was already set above, indicating the |
| 5149 | * child already exited. |
| 5150 | */ |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 5151 | if (wait_pid != pid) |
| 5152 | wait_pid = wait4pid(pid, &status); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5153 | |
Bram Moolenaar | 624891f | 2010-10-13 16:22:09 +0200 | [diff] [blame] | 5154 | # ifdef FEAT_GUI |
| 5155 | /* Close slave side of pty. Only do this after the child has |
| 5156 | * exited, otherwise the child may hang when it tries to write on |
| 5157 | * the pty. */ |
| 5158 | if (pty_master_fd >= 0) |
| 5159 | close(pty_slave_fd); |
| 5160 | # endif |
| 5161 | |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 5162 | /* Make sure the child that writes to the external program is |
| 5163 | * dead. */ |
| 5164 | if (wpid > 0) |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 5165 | { |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 5166 | kill(wpid, SIGKILL); |
Bram Moolenaar | 205b886 | 2011-09-07 15:04:31 +0200 | [diff] [blame] | 5167 | wait4pid(wpid, NULL); |
| 5168 | } |
Bram Moolenaar | df177f6 | 2005-02-22 08:39:57 +0000 | [diff] [blame] | 5169 | |
Bram Moolenaar | c4d4ac2 | 2016-11-07 22:42:57 +0100 | [diff] [blame] | 5170 | # ifdef FEAT_JOB_CHANNEL |
| 5171 | --dont_check_job_ended; |
| 5172 | # endif |
| 5173 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5174 | /* |
| 5175 | * Set to raw mode right now, otherwise a CTRL-C after |
| 5176 | * catch_signals() will kill Vim. |
| 5177 | */ |
| 5178 | if (tmode == TMODE_RAW) |
| 5179 | settmode(TMODE_RAW); |
| 5180 | did_settmode = TRUE; |
| 5181 | set_signals(); |
| 5182 | |
| 5183 | if (WIFEXITED(status)) |
| 5184 | { |
Bram Moolenaar | 9d75c83 | 2005-01-25 21:57:23 +0000 | [diff] [blame] | 5185 | /* LINTED avoid "bitwise operation on signed value" */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5186 | retval = WEXITSTATUS(status); |
Bram Moolenaar | 7567646 | 2013-01-30 14:55:42 +0100 | [diff] [blame] | 5187 | if (retval != 0 && !emsg_silent) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5188 | { |
| 5189 | if (retval == EXEC_FAILED) |
| 5190 | { |
| 5191 | MSG_PUTS(_("\nCannot execute shell ")); |
| 5192 | msg_outtrans(p_sh); |
| 5193 | msg_putchar('\n'); |
| 5194 | } |
| 5195 | else if (!(options & SHELL_SILENT)) |
| 5196 | { |
| 5197 | MSG_PUTS(_("\nshell returned ")); |
| 5198 | msg_outnum((long)retval); |
| 5199 | msg_putchar('\n'); |
| 5200 | } |
| 5201 | } |
| 5202 | } |
| 5203 | else |
| 5204 | MSG_PUTS(_("\nCommand terminated\n")); |
| 5205 | } |
| 5206 | } |
| 5207 | vim_free(argv); |
Bram Moolenaar | ea35ef6 | 2011-08-04 22:59:28 +0200 | [diff] [blame] | 5208 | vim_free(p_shcf_copy); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5209 | |
| 5210 | error: |
| 5211 | if (!did_settmode) |
| 5212 | if (tmode == TMODE_RAW) |
| 5213 | settmode(TMODE_RAW); /* set to raw mode */ |
| 5214 | # ifdef FEAT_TITLE |
| 5215 | resettitle(); |
| 5216 | # endif |
| 5217 | vim_free(newcmd); |
| 5218 | |
| 5219 | return retval; |
| 5220 | |
| 5221 | #endif /* USE_SYSTEM */ |
| 5222 | } |
| 5223 | |
Bram Moolenaar | 509ce2a | 2016-03-11 22:52:15 +0100 | [diff] [blame] | 5224 | #if defined(FEAT_JOB_CHANNEL) || defined(PROTO) |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5225 | void |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5226 | mch_job_start(char **argv, job_T *job, jobopt_T *options) |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5227 | { |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5228 | pid_t pid; |
Bram Moolenaar | 7c9aec4 | 2017-08-03 13:51:25 +0200 | [diff] [blame] | 5229 | int fd_in[2] = {-1, -1}; /* for stdin */ |
| 5230 | int fd_out[2] = {-1, -1}; /* for stdout */ |
| 5231 | int fd_err[2] = {-1, -1}; /* for stderr */ |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5232 | int pty_master_fd = -1; |
| 5233 | int pty_slave_fd = -1; |
Bram Moolenaar | 16eb4f8 | 2016-02-14 23:02:34 +0100 | [diff] [blame] | 5234 | channel_T *channel = NULL; |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5235 | int use_null_for_in = options->jo_io[PART_IN] == JIO_NULL; |
| 5236 | int use_null_for_out = options->jo_io[PART_OUT] == JIO_NULL; |
| 5237 | int use_null_for_err = options->jo_io[PART_ERR] == JIO_NULL; |
Bram Moolenaar | b69fccf | 2016-03-06 23:06:25 +0100 | [diff] [blame] | 5238 | int use_file_for_in = options->jo_io[PART_IN] == JIO_FILE; |
Bram Moolenaar | e98d121 | 2016-03-08 15:37:41 +0100 | [diff] [blame] | 5239 | int use_file_for_out = options->jo_io[PART_OUT] == JIO_FILE; |
| 5240 | int use_file_for_err = options->jo_io[PART_ERR] == JIO_FILE; |
Bram Moolenaar | b241208 | 2017-08-20 18:09:14 +0200 | [diff] [blame] | 5241 | int use_buffer_for_in = options->jo_io[PART_IN] == JIO_BUFFER; |
Bram Moolenaar | c25558b | 2016-03-03 21:02:23 +0100 | [diff] [blame] | 5242 | int use_out_for_err = options->jo_io[PART_ERR] == JIO_OUT; |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 5243 | SIGSET_DECL(curset) |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5244 | |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5245 | if (use_out_for_err && use_null_for_out) |
| 5246 | use_null_for_err = TRUE; |
| 5247 | |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5248 | /* default is to fail */ |
| 5249 | job->jv_status = JOB_FAILED; |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5250 | |
Bram Moolenaar | b241208 | 2017-08-20 18:09:14 +0200 | [diff] [blame] | 5251 | if (options->jo_pty |
| 5252 | && (!(use_file_for_in || use_null_for_in) |
| 5253 | || !(use_file_for_in || use_null_for_out) |
| 5254 | || !(use_out_for_err || use_file_for_err || use_null_for_err))) |
Bram Moolenaar | 7c9aec4 | 2017-08-03 13:51:25 +0200 | [diff] [blame] | 5255 | open_pty(&pty_master_fd, &pty_slave_fd, &job->jv_tty_name); |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5256 | |
Bram Moolenaar | 12dcf02 | 2016-02-15 23:09:04 +0100 | [diff] [blame] | 5257 | /* TODO: without the channel feature connect the child to /dev/null? */ |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5258 | /* Open pipes for stdin, stdout, stderr. */ |
Bram Moolenaar | b69fccf | 2016-03-06 23:06:25 +0100 | [diff] [blame] | 5259 | if (use_file_for_in) |
| 5260 | { |
| 5261 | char_u *fname = options->jo_io_name[PART_IN]; |
| 5262 | |
| 5263 | fd_in[0] = mch_open((char *)fname, O_RDONLY, 0); |
| 5264 | if (fd_in[0] < 0) |
| 5265 | { |
| 5266 | EMSG2(_(e_notopen), fname); |
| 5267 | goto failed; |
| 5268 | } |
| 5269 | } |
Bram Moolenaar | b241208 | 2017-08-20 18:09:14 +0200 | [diff] [blame] | 5270 | else |
| 5271 | /* When writing buffer lines to the input don't use the pty, so that |
| 5272 | * the pipe can be closed when all lines were written. */ |
| 5273 | if (!use_null_for_in && (pty_master_fd < 0 || use_buffer_for_in) |
| 5274 | && pipe(fd_in) < 0) |
| 5275 | goto failed; |
Bram Moolenaar | e98d121 | 2016-03-08 15:37:41 +0100 | [diff] [blame] | 5276 | |
| 5277 | if (use_file_for_out) |
| 5278 | { |
| 5279 | char_u *fname = options->jo_io_name[PART_OUT]; |
| 5280 | |
| 5281 | fd_out[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0644); |
| 5282 | if (fd_out[1] < 0) |
| 5283 | { |
| 5284 | EMSG2(_(e_notopen), fname); |
| 5285 | goto failed; |
| 5286 | } |
| 5287 | } |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5288 | else if (!use_null_for_out && pty_master_fd < 0 && pipe(fd_out) < 0) |
Bram Moolenaar | b69fccf | 2016-03-06 23:06:25 +0100 | [diff] [blame] | 5289 | goto failed; |
Bram Moolenaar | e98d121 | 2016-03-08 15:37:41 +0100 | [diff] [blame] | 5290 | |
| 5291 | if (use_file_for_err) |
| 5292 | { |
| 5293 | char_u *fname = options->jo_io_name[PART_ERR]; |
| 5294 | |
| 5295 | fd_err[1] = mch_open((char *)fname, O_WRONLY | O_CREAT | O_TRUNC, 0600); |
| 5296 | if (fd_err[1] < 0) |
| 5297 | { |
| 5298 | EMSG2(_(e_notopen), fname); |
| 5299 | goto failed; |
| 5300 | } |
| 5301 | } |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5302 | else if (!use_out_for_err && !use_null_for_err |
| 5303 | && pty_master_fd < 0 && pipe(fd_err) < 0) |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5304 | goto failed; |
| 5305 | |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5306 | if (!use_null_for_in || !use_null_for_out || !use_null_for_err) |
| 5307 | { |
Bram Moolenaar | de27989 | 2016-03-11 22:19:44 +0100 | [diff] [blame] | 5308 | if (options->jo_set & JO_CHANNEL) |
| 5309 | { |
| 5310 | channel = options->jo_channel; |
| 5311 | if (channel != NULL) |
| 5312 | ++channel->ch_refcount; |
| 5313 | } |
| 5314 | else |
| 5315 | channel = add_channel(); |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5316 | if (channel == NULL) |
| 5317 | goto failed; |
| 5318 | } |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5319 | |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 5320 | BLOCK_SIGNALS(&curset); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5321 | pid = fork(); /* maybe we should use vfork() */ |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 5322 | if (pid == -1) |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5323 | { |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5324 | /* failed to fork */ |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 5325 | UNBLOCK_SIGNALS(&curset); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5326 | goto failed; |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5327 | } |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5328 | if (pid == 0) |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5329 | { |
Bram Moolenaar | 4694a17 | 2016-04-21 14:05:23 +0200 | [diff] [blame] | 5330 | int null_fd = -1; |
| 5331 | int stderr_works = TRUE; |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5332 | |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5333 | /* child */ |
| 5334 | reset_signals(); /* handle signals normally */ |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 5335 | UNBLOCK_SIGNALS(&curset); |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5336 | |
| 5337 | # ifdef HAVE_SETSID |
| 5338 | /* Create our own process group, so that the child and all its |
| 5339 | * children can be kill()ed. Don't do this when using pipes, |
| 5340 | * because stdin is not a tty, we would lose /dev/tty. */ |
| 5341 | (void)setsid(); |
| 5342 | # endif |
| 5343 | |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 5344 | # ifdef FEAT_TERMINAL |
| 5345 | if (options->jo_term_rows > 0) |
| 5346 | set_child_environment( |
| 5347 | (long)options->jo_term_rows, |
| 5348 | (long)options->jo_term_cols, |
Bram Moolenaar | 93723a4 | 2017-07-28 15:55:32 +0200 | [diff] [blame] | 5349 | STRNCMP(T_NAME, "xterm", 5) == 0 |
| 5350 | ? (char *)T_NAME : "xterm"); |
Bram Moolenaar | 58556cd | 2017-07-20 23:04:46 +0200 | [diff] [blame] | 5351 | else |
| 5352 | # endif |
| 5353 | set_default_child_environment(); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5354 | |
Bram Moolenaar | 05aafed | 2017-08-11 19:12:11 +0200 | [diff] [blame] | 5355 | if (options->jo_env != NULL) |
| 5356 | { |
| 5357 | dict_T *dict = options->jo_env; |
| 5358 | hashitem_T *hi; |
| 5359 | int todo = (int)dict->dv_hashtab.ht_used; |
| 5360 | |
| 5361 | for (hi = dict->dv_hashtab.ht_array; todo > 0; ++hi) |
| 5362 | if (!HASHITEM_EMPTY(hi)) |
| 5363 | { |
| 5364 | typval_T *item = &dict_lookup(hi)->di_tv; |
| 5365 | |
| 5366 | vim_setenv((char_u*)hi->hi_key, get_tv_string(item)); |
| 5367 | --todo; |
| 5368 | } |
| 5369 | } |
| 5370 | |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5371 | if (use_null_for_in || use_null_for_out || use_null_for_err) |
| 5372 | null_fd = open("/dev/null", O_RDWR | O_EXTRA, 0); |
| 5373 | |
Bram Moolenaar | 223896d | 2017-08-02 22:33:28 +0200 | [diff] [blame] | 5374 | if (pty_slave_fd >= 0) |
| 5375 | { |
| 5376 | /* push stream discipline modules */ |
| 5377 | SetupSlavePTY(pty_slave_fd); |
| 5378 | # ifdef TIOCSCTTY |
| 5379 | /* Try to become controlling tty (probably doesn't work, |
| 5380 | * unless run by root) */ |
| 5381 | ioctl(pty_slave_fd, TIOCSCTTY, (char *)NULL); |
| 5382 | # endif |
| 5383 | } |
| 5384 | |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5385 | /* set up stdin for the child */ |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5386 | close(0); |
Bram Moolenaar | c0a1d7f | 2016-03-19 14:12:50 +0100 | [diff] [blame] | 5387 | if (use_null_for_in && null_fd >= 0) |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5388 | ignored = dup(null_fd); |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5389 | else if (fd_in[0] < 0) |
| 5390 | ignored = dup(pty_slave_fd); |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5391 | else |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5392 | ignored = dup(fd_in[0]); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5393 | |
Bram Moolenaar | c25558b | 2016-03-03 21:02:23 +0100 | [diff] [blame] | 5394 | /* set up stderr for the child */ |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5395 | close(2); |
Bram Moolenaar | c0a1d7f | 2016-03-19 14:12:50 +0100 | [diff] [blame] | 5396 | if (use_null_for_err && null_fd >= 0) |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5397 | { |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5398 | ignored = dup(null_fd); |
Bram Moolenaar | 4694a17 | 2016-04-21 14:05:23 +0200 | [diff] [blame] | 5399 | stderr_works = FALSE; |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5400 | } |
| 5401 | else if (use_out_for_err) |
Bram Moolenaar | c25558b | 2016-03-03 21:02:23 +0100 | [diff] [blame] | 5402 | ignored = dup(fd_out[1]); |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5403 | else if (fd_err[1] < 0) |
| 5404 | ignored = dup(pty_slave_fd); |
Bram Moolenaar | c25558b | 2016-03-03 21:02:23 +0100 | [diff] [blame] | 5405 | else |
Bram Moolenaar | c25558b | 2016-03-03 21:02:23 +0100 | [diff] [blame] | 5406 | ignored = dup(fd_err[1]); |
Bram Moolenaar | c25558b | 2016-03-03 21:02:23 +0100 | [diff] [blame] | 5407 | |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5408 | /* set up stdout for the child */ |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5409 | close(1); |
Bram Moolenaar | c0a1d7f | 2016-03-19 14:12:50 +0100 | [diff] [blame] | 5410 | if (use_null_for_out && null_fd >= 0) |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5411 | ignored = dup(null_fd); |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5412 | else if (fd_out[1] < 0) |
| 5413 | ignored = dup(pty_slave_fd); |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5414 | else |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5415 | ignored = dup(fd_out[1]); |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5416 | |
| 5417 | if (fd_in[0] >= 0) |
| 5418 | close(fd_in[0]); |
| 5419 | if (fd_in[1] >= 0) |
| 5420 | close(fd_in[1]); |
| 5421 | if (fd_out[0] >= 0) |
| 5422 | close(fd_out[0]); |
| 5423 | if (fd_out[1] >= 0) |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5424 | close(fd_out[1]); |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5425 | if (fd_err[0] >= 0) |
| 5426 | close(fd_err[0]); |
| 5427 | if (fd_err[1] >= 0) |
| 5428 | close(fd_err[1]); |
| 5429 | if (pty_master_fd >= 0) |
| 5430 | { |
Bram Moolenaar | 223896d | 2017-08-02 22:33:28 +0200 | [diff] [blame] | 5431 | close(pty_master_fd); /* not used in the child */ |
| 5432 | close(pty_slave_fd); /* was duped above */ |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5433 | } |
Bram Moolenaar | ea83bf0 | 2016-05-08 09:40:51 +0200 | [diff] [blame] | 5434 | |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5435 | if (null_fd >= 0) |
| 5436 | close(null_fd); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5437 | |
Bram Moolenaar | 05aafed | 2017-08-11 19:12:11 +0200 | [diff] [blame] | 5438 | if (options->jo_cwd != NULL && mch_chdir((char *)options->jo_cwd) != 0) |
| 5439 | _exit(EXEC_FAILED); |
| 5440 | |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5441 | /* See above for type of argv. */ |
| 5442 | execvp(argv[0], argv); |
| 5443 | |
Bram Moolenaar | 4694a17 | 2016-04-21 14:05:23 +0200 | [diff] [blame] | 5444 | if (stderr_works) |
| 5445 | perror("executing job failed"); |
Bram Moolenaar | fae4283 | 2017-08-01 22:24:26 +0200 | [diff] [blame] | 5446 | # ifdef EXITFREE |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5447 | /* calling free_all_mem() here causes problems. Ignore valgrind |
| 5448 | * reporting possibly leaked memory. */ |
Bram Moolenaar | fae4283 | 2017-08-01 22:24:26 +0200 | [diff] [blame] | 5449 | # endif |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5450 | _exit(EXEC_FAILED); /* exec failed, return failure code */ |
| 5451 | } |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5452 | |
| 5453 | /* parent */ |
Bram Moolenaar | bb09ceb | 2016-10-18 16:27:23 +0200 | [diff] [blame] | 5454 | UNBLOCK_SIGNALS(&curset); |
| 5455 | |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5456 | job->jv_pid = pid; |
| 5457 | job->jv_status = JOB_STARTED; |
Bram Moolenaar | de27989 | 2016-03-11 22:19:44 +0100 | [diff] [blame] | 5458 | job->jv_channel = channel; /* ch_refcount was set above */ |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5459 | |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5460 | if (pty_master_fd >= 0) |
| 5461 | close(pty_slave_fd); /* duped above */ |
| 5462 | /* close child stdin, stdout and stderr */ |
Bram Moolenaar | be6aa46 | 2016-03-20 21:02:00 +0100 | [diff] [blame] | 5463 | if (!use_file_for_in && fd_in[0] >= 0) |
Bram Moolenaar | b69fccf | 2016-03-06 23:06:25 +0100 | [diff] [blame] | 5464 | close(fd_in[0]); |
Bram Moolenaar | be6aa46 | 2016-03-20 21:02:00 +0100 | [diff] [blame] | 5465 | if (!use_file_for_out && fd_out[1] >= 0) |
Bram Moolenaar | e98d121 | 2016-03-08 15:37:41 +0100 | [diff] [blame] | 5466 | close(fd_out[1]); |
Bram Moolenaar | be6aa46 | 2016-03-20 21:02:00 +0100 | [diff] [blame] | 5467 | if (!use_out_for_err && !use_file_for_err && fd_err[1] >= 0) |
Bram Moolenaar | c25558b | 2016-03-03 21:02:23 +0100 | [diff] [blame] | 5468 | close(fd_err[1]); |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5469 | if (channel != NULL) |
| 5470 | { |
| 5471 | channel_set_pipes(channel, |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5472 | use_file_for_in || use_null_for_in |
| 5473 | ? INVALID_FD : fd_in[1] < 0 ? pty_master_fd : fd_in[1], |
| 5474 | use_file_for_out || use_null_for_out |
| 5475 | ? INVALID_FD : fd_out[0] < 0 ? pty_master_fd : fd_out[0], |
| 5476 | use_out_for_err || use_file_for_err || use_null_for_err |
| 5477 | ? INVALID_FD : fd_err[0] < 0 ? pty_master_fd : fd_err[0]); |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5478 | channel_set_job(channel, job, options); |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5479 | } |
Bram Moolenaar | 979e8c5 | 2017-08-01 15:08:07 +0200 | [diff] [blame] | 5480 | else |
| 5481 | { |
| 5482 | if (fd_in[1] >= 0) |
| 5483 | close(fd_in[1]); |
| 5484 | if (fd_out[0] >= 0) |
| 5485 | close(fd_out[0]); |
| 5486 | if (fd_err[0] >= 0) |
| 5487 | close(fd_err[0]); |
| 5488 | if (pty_master_fd >= 0) |
| 5489 | close(pty_master_fd); |
| 5490 | } |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5491 | |
Bram Moolenaar | f65333c | 2016-03-08 18:27:21 +0100 | [diff] [blame] | 5492 | /* success! */ |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5493 | return; |
| 5494 | |
Bram Moolenaar | 509ce2a | 2016-03-11 22:52:15 +0100 | [diff] [blame] | 5495 | failed: |
Bram Moolenaar | de27989 | 2016-03-11 22:19:44 +0100 | [diff] [blame] | 5496 | channel_unref(channel); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5497 | if (fd_in[0] >= 0) |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5498 | close(fd_in[0]); |
Bram Moolenaar | e98d121 | 2016-03-08 15:37:41 +0100 | [diff] [blame] | 5499 | if (fd_in[1] >= 0) |
| 5500 | close(fd_in[1]); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5501 | if (fd_out[0] >= 0) |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5502 | close(fd_out[0]); |
Bram Moolenaar | e98d121 | 2016-03-08 15:37:41 +0100 | [diff] [blame] | 5503 | if (fd_out[1] >= 0) |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5504 | close(fd_out[1]); |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5505 | if (fd_err[0] >= 0) |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5506 | close(fd_err[0]); |
Bram Moolenaar | e98d121 | 2016-03-08 15:37:41 +0100 | [diff] [blame] | 5507 | if (fd_err[1] >= 0) |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5508 | close(fd_err[1]); |
Bram Moolenaar | 5a1feb8 | 2017-07-22 18:04:08 +0200 | [diff] [blame] | 5509 | if (pty_master_fd >= 0) |
| 5510 | close(pty_master_fd); |
| 5511 | if (pty_slave_fd >= 0) |
| 5512 | close(pty_slave_fd); |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5513 | } |
| 5514 | |
| 5515 | char * |
| 5516 | mch_job_status(job_T *job) |
| 5517 | { |
| 5518 | # ifdef HAVE_UNION_WAIT |
| 5519 | union wait status; |
| 5520 | # else |
| 5521 | int status = -1; |
| 5522 | # endif |
| 5523 | pid_t wait_pid = 0; |
| 5524 | |
| 5525 | # ifdef __NeXT__ |
| 5526 | wait_pid = wait4(job->jv_pid, &status, WNOHANG, (struct rusage *)0); |
| 5527 | # else |
| 5528 | wait_pid = waitpid(job->jv_pid, &status, WNOHANG); |
| 5529 | # endif |
| 5530 | if (wait_pid == -1) |
| 5531 | { |
| 5532 | /* process must have exited */ |
Bram Moolenaar | 97792de | 2016-10-15 18:36:49 +0200 | [diff] [blame] | 5533 | goto return_dead; |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5534 | } |
| 5535 | if (wait_pid == 0) |
| 5536 | return "run"; |
| 5537 | if (WIFEXITED(status)) |
| 5538 | { |
| 5539 | /* LINTED avoid "bitwise operation on signed value" */ |
| 5540 | job->jv_exitval = WEXITSTATUS(status); |
Bram Moolenaar | 97792de | 2016-10-15 18:36:49 +0200 | [diff] [blame] | 5541 | goto return_dead; |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5542 | } |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5543 | if (WIFSIGNALED(status)) |
| 5544 | { |
| 5545 | job->jv_exitval = -1; |
Bram Moolenaar | 97792de | 2016-10-15 18:36:49 +0200 | [diff] [blame] | 5546 | goto return_dead; |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5547 | } |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5548 | return "run"; |
Bram Moolenaar | 97792de | 2016-10-15 18:36:49 +0200 | [diff] [blame] | 5549 | |
| 5550 | return_dead: |
Bram Moolenaar | 7df915d | 2016-11-17 17:25:32 +0100 | [diff] [blame] | 5551 | if (job->jv_status < JOB_ENDED) |
Bram Moolenaar | 97792de | 2016-10-15 18:36:49 +0200 | [diff] [blame] | 5552 | { |
| 5553 | ch_log(job->jv_channel, "Job ended"); |
| 5554 | job->jv_status = JOB_ENDED; |
| 5555 | } |
| 5556 | return "dead"; |
| 5557 | } |
| 5558 | |
| 5559 | job_T * |
| 5560 | mch_detect_ended_job(job_T *job_list) |
| 5561 | { |
| 5562 | # ifdef HAVE_UNION_WAIT |
| 5563 | union wait status; |
| 5564 | # else |
| 5565 | int status = -1; |
| 5566 | # endif |
| 5567 | pid_t wait_pid = 0; |
| 5568 | job_T *job; |
| 5569 | |
Bram Moolenaar | c4d4ac2 | 2016-11-07 22:42:57 +0100 | [diff] [blame] | 5570 | # ifndef USE_SYSTEM |
| 5571 | /* Do not do this when waiting for a shell command to finish, we would get |
| 5572 | * the exit value here (and discard it), the exit value obtained there |
| 5573 | * would then be wrong. */ |
| 5574 | if (dont_check_job_ended > 0) |
| 5575 | return NULL; |
| 5576 | # endif |
| 5577 | |
Bram Moolenaar | 97792de | 2016-10-15 18:36:49 +0200 | [diff] [blame] | 5578 | # ifdef __NeXT__ |
| 5579 | wait_pid = wait4(-1, &status, WNOHANG, (struct rusage *)0); |
| 5580 | # else |
| 5581 | wait_pid = waitpid(-1, &status, WNOHANG); |
| 5582 | # endif |
| 5583 | if (wait_pid <= 0) |
| 5584 | /* no process ended */ |
| 5585 | return NULL; |
| 5586 | for (job = job_list; job != NULL; job = job->jv_next) |
| 5587 | { |
| 5588 | if (job->jv_pid == wait_pid) |
| 5589 | { |
| 5590 | if (WIFEXITED(status)) |
| 5591 | /* LINTED avoid "bitwise operation on signed value" */ |
| 5592 | job->jv_exitval = WEXITSTATUS(status); |
| 5593 | else if (WIFSIGNALED(status)) |
| 5594 | job->jv_exitval = -1; |
Bram Moolenaar | 7df915d | 2016-11-17 17:25:32 +0100 | [diff] [blame] | 5595 | if (job->jv_status < JOB_ENDED) |
Bram Moolenaar | 97792de | 2016-10-15 18:36:49 +0200 | [diff] [blame] | 5596 | { |
| 5597 | ch_log(job->jv_channel, "Job ended"); |
| 5598 | job->jv_status = JOB_ENDED; |
| 5599 | } |
| 5600 | return job; |
| 5601 | } |
| 5602 | } |
| 5603 | return NULL; |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5604 | } |
| 5605 | |
Bram Moolenaar | 3a117e1 | 2016-10-30 21:57:52 +0100 | [diff] [blame] | 5606 | /* |
| 5607 | * Send a (deadly) signal to "job". |
| 5608 | * Return FAIL if "how" is not a valid name. |
| 5609 | */ |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5610 | int |
Bram Moolenaar | 2d33e90 | 2017-08-11 16:31:54 +0200 | [diff] [blame] | 5611 | mch_signal_job(job_T *job, char_u *how) |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5612 | { |
Bram Moolenaar | 6463ca2 | 2016-02-13 17:04:46 +0100 | [diff] [blame] | 5613 | int sig = -1; |
| 5614 | pid_t job_pid; |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5615 | |
Bram Moolenaar | 923d926 | 2016-02-25 20:56:01 +0100 | [diff] [blame] | 5616 | if (*how == NUL || STRCMP(how, "term") == 0) |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5617 | sig = SIGTERM; |
Bram Moolenaar | 923d926 | 2016-02-25 20:56:01 +0100 | [diff] [blame] | 5618 | else if (STRCMP(how, "hup") == 0) |
| 5619 | sig = SIGHUP; |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5620 | else if (STRCMP(how, "quit") == 0) |
| 5621 | sig = SIGQUIT; |
Bram Moolenaar | 923d926 | 2016-02-25 20:56:01 +0100 | [diff] [blame] | 5622 | else if (STRCMP(how, "int") == 0) |
| 5623 | sig = SIGINT; |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5624 | else if (STRCMP(how, "kill") == 0) |
| 5625 | sig = SIGKILL; |
Bram Moolenaar | b13501f | 2017-07-22 22:32:56 +0200 | [diff] [blame] | 5626 | #ifdef SIGWINCH |
| 5627 | else if (STRCMP(how, "winch") == 0) |
| 5628 | sig = SIGWINCH; |
| 5629 | #endif |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5630 | else if (isdigit(*how)) |
| 5631 | sig = atoi((char *)how); |
| 5632 | else |
| 5633 | return FAIL; |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5634 | |
Bram Moolenaar | 7280140 | 2016-02-09 11:37:50 +0100 | [diff] [blame] | 5635 | /* TODO: have an option to only kill the process, not the group? */ |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5636 | job_pid = job->jv_pid; |
Bram Moolenaar | 2fcf668 | 2017-03-11 20:03:42 +0100 | [diff] [blame] | 5637 | #ifdef HAVE_GETPGID |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5638 | if (job_pid == getpgid(job_pid)) |
| 5639 | job_pid = -job_pid; |
Bram Moolenaar | 2fcf668 | 2017-03-11 20:03:42 +0100 | [diff] [blame] | 5640 | #endif |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5641 | |
Bram Moolenaar | 61a6605 | 2017-07-22 18:39:00 +0200 | [diff] [blame] | 5642 | /* Never kill ourselves! */ |
| 5643 | if (job_pid != 0) |
| 5644 | kill(job_pid, sig); |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5645 | |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5646 | return OK; |
| 5647 | } |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5648 | |
| 5649 | /* |
| 5650 | * Clear the data related to "job". |
| 5651 | */ |
| 5652 | void |
| 5653 | mch_clear_job(job_T *job) |
| 5654 | { |
| 5655 | /* call waitpid because child process may become zombie */ |
| 5656 | # ifdef __NeXT__ |
Bram Moolenaar | 4ca812b | 2016-03-02 21:51:16 +0100 | [diff] [blame] | 5657 | (void)wait4(job->jv_pid, NULL, WNOHANG, (struct rusage *)0); |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5658 | # else |
Bram Moolenaar | 4ca812b | 2016-03-02 21:51:16 +0100 | [diff] [blame] | 5659 | (void)waitpid(job->jv_pid, NULL, WNOHANG); |
Bram Moolenaar | 76467df | 2016-02-12 19:30:26 +0100 | [diff] [blame] | 5660 | # endif |
| 5661 | } |
Bram Moolenaar | 835dc63 | 2016-02-07 14:27:38 +0100 | [diff] [blame] | 5662 | #endif |
| 5663 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5664 | /* |
| 5665 | * Check for CTRL-C typed by reading all available characters. |
| 5666 | * In cooked mode we should get SIGINT, no need to check. |
| 5667 | */ |
| 5668 | void |
Bram Moolenaar | b9c31e7 | 2016-09-29 15:18:57 +0200 | [diff] [blame] | 5669 | mch_breakcheck(int force) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5670 | { |
Bram Moolenaar | b9c31e7 | 2016-09-29 15:18:57 +0200 | [diff] [blame] | 5671 | if ((curr_tmode == TMODE_RAW || force) |
| 5672 | && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5673 | fill_input_buf(FALSE); |
| 5674 | } |
| 5675 | |
| 5676 | /* |
Bram Moolenaar | 943bb2b | 2016-03-19 14:11:18 +0100 | [diff] [blame] | 5677 | * Wait "msec" msec until a character is available from the mouse, keyboard, |
| 5678 | * from inbuf[]. |
| 5679 | * "msec" == -1 will block forever. |
| 5680 | * Invokes timer callbacks when needed. |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5681 | * When "ignore_input" is TRUE even check for pending input when input is |
| 5682 | * already available. |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5683 | * "interrupted" (if not NULL) is set to TRUE when no character is available |
| 5684 | * but something else needs to be done. |
Bram Moolenaar | 40b1b54 | 2016-04-20 20:18:23 +0200 | [diff] [blame] | 5685 | * Returns TRUE when a character is available. |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5686 | * When a GUI is being used, this will never get called -- webb |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5687 | */ |
| 5688 | static int |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5689 | WaitForChar(long msec, int *interrupted, int ignore_input) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5690 | { |
Bram Moolenaar | 943bb2b | 2016-03-19 14:11:18 +0100 | [diff] [blame] | 5691 | #ifdef FEAT_TIMERS |
| 5692 | long due_time; |
| 5693 | long remaining = msec; |
Bram Moolenaar | 40b1b54 | 2016-04-20 20:18:23 +0200 | [diff] [blame] | 5694 | int tb_change_cnt = typebuf.tb_change_cnt; |
Bram Moolenaar | 943bb2b | 2016-03-19 14:11:18 +0100 | [diff] [blame] | 5695 | |
| 5696 | /* When waiting very briefly don't trigger timers. */ |
| 5697 | if (msec >= 0 && msec < 10L) |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5698 | return WaitForCharOrMouse(msec, NULL, ignore_input); |
Bram Moolenaar | 943bb2b | 2016-03-19 14:11:18 +0100 | [diff] [blame] | 5699 | |
| 5700 | while (msec < 0 || remaining > 0) |
| 5701 | { |
| 5702 | /* Trigger timers and then get the time in msec until the next one is |
| 5703 | * due. Wait up to that time. */ |
| 5704 | due_time = check_due_timer(); |
Bram Moolenaar | 40b1b54 | 2016-04-20 20:18:23 +0200 | [diff] [blame] | 5705 | if (typebuf.tb_change_cnt != tb_change_cnt) |
| 5706 | { |
| 5707 | /* timer may have used feedkeys() */ |
| 5708 | return FALSE; |
| 5709 | } |
Bram Moolenaar | 943bb2b | 2016-03-19 14:11:18 +0100 | [diff] [blame] | 5710 | if (due_time <= 0 || (msec > 0 && due_time > remaining)) |
| 5711 | due_time = remaining; |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5712 | if (WaitForCharOrMouse(due_time, interrupted, ignore_input)) |
Bram Moolenaar | 943bb2b | 2016-03-19 14:11:18 +0100 | [diff] [blame] | 5713 | return TRUE; |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5714 | if (interrupted != NULL && *interrupted) |
Bram Moolenaar | 8fdd721 | 2016-03-26 19:41:48 +0100 | [diff] [blame] | 5715 | /* Nothing available, but need to return so that side effects get |
| 5716 | * handled, such as handling a message on a channel. */ |
| 5717 | return FALSE; |
Bram Moolenaar | 943bb2b | 2016-03-19 14:11:18 +0100 | [diff] [blame] | 5718 | if (msec > 0) |
| 5719 | remaining -= due_time; |
| 5720 | } |
| 5721 | return FALSE; |
| 5722 | #else |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5723 | return WaitForCharOrMouse(msec, interrupted, ignore_input); |
Bram Moolenaar | 943bb2b | 2016-03-19 14:11:18 +0100 | [diff] [blame] | 5724 | #endif |
| 5725 | } |
| 5726 | |
| 5727 | /* |
| 5728 | * Wait "msec" msec until a character is available from the mouse or keyboard |
| 5729 | * or from inbuf[]. |
| 5730 | * "msec" == -1 will block forever. |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5731 | * for "ignore_input" see WaitForCharOr(). |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5732 | * "interrupted" (if not NULL) is set to TRUE when no character is available |
| 5733 | * but something else needs to be done. |
Bram Moolenaar | 943bb2b | 2016-03-19 14:11:18 +0100 | [diff] [blame] | 5734 | * When a GUI is being used, this will never get called -- webb |
| 5735 | */ |
| 5736 | static int |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5737 | WaitForCharOrMouse(long msec, int *interrupted, int ignore_input) |
Bram Moolenaar | 943bb2b | 2016-03-19 14:11:18 +0100 | [diff] [blame] | 5738 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5739 | #ifdef FEAT_MOUSE_GPM |
| 5740 | int gpm_process_wanted; |
| 5741 | #endif |
| 5742 | #ifdef FEAT_XCLIPBOARD |
| 5743 | int rest; |
| 5744 | #endif |
| 5745 | int avail; |
| 5746 | |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5747 | if (!ignore_input && input_available()) /* something in inbuf[] */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5748 | return 1; |
| 5749 | |
| 5750 | #if defined(FEAT_MOUSE_DEC) |
| 5751 | /* May need to query the mouse position. */ |
| 5752 | if (WantQueryMouse) |
| 5753 | { |
Bram Moolenaar | 6bb6836 | 2005-03-22 23:03:44 +0000 | [diff] [blame] | 5754 | WantQueryMouse = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5755 | mch_write((char_u *)IF_EB("\033[1'|", ESC_STR "[1'|"), 5); |
| 5756 | } |
| 5757 | #endif |
| 5758 | |
| 5759 | /* |
| 5760 | * For FEAT_MOUSE_GPM and FEAT_XCLIPBOARD we loop here to process mouse |
| 5761 | * events. This is a bit complicated, because they might both be defined. |
| 5762 | */ |
| 5763 | #if defined(FEAT_MOUSE_GPM) || defined(FEAT_XCLIPBOARD) |
| 5764 | # ifdef FEAT_XCLIPBOARD |
| 5765 | rest = 0; |
| 5766 | if (do_xterm_trace()) |
| 5767 | rest = msec; |
| 5768 | # endif |
| 5769 | do |
| 5770 | { |
| 5771 | # ifdef FEAT_XCLIPBOARD |
| 5772 | if (rest != 0) |
| 5773 | { |
| 5774 | msec = XT_TRACE_DELAY; |
| 5775 | if (rest >= 0 && rest < XT_TRACE_DELAY) |
| 5776 | msec = rest; |
| 5777 | if (rest >= 0) |
| 5778 | rest -= msec; |
| 5779 | } |
| 5780 | # endif |
| 5781 | # ifdef FEAT_MOUSE_GPM |
| 5782 | gpm_process_wanted = 0; |
Bram Moolenaar | 8fdd721 | 2016-03-26 19:41:48 +0100 | [diff] [blame] | 5783 | avail = RealWaitForChar(read_cmd_fd, msec, |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5784 | &gpm_process_wanted, interrupted); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5785 | # else |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5786 | avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5787 | # endif |
| 5788 | if (!avail) |
| 5789 | { |
Bram Moolenaar | e9c21ae | 2017-08-03 20:44:48 +0200 | [diff] [blame] | 5790 | if (!ignore_input && input_available()) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5791 | return 1; |
| 5792 | # ifdef FEAT_XCLIPBOARD |
| 5793 | if (rest == 0 || !do_xterm_trace()) |
| 5794 | # endif |
| 5795 | break; |
| 5796 | } |
| 5797 | } |
| 5798 | while (FALSE |
| 5799 | # ifdef FEAT_MOUSE_GPM |
| 5800 | || (gpm_process_wanted && mch_gpm_process() == 0) |
| 5801 | # endif |
| 5802 | # ifdef FEAT_XCLIPBOARD |
| 5803 | || (!avail && rest != 0) |
| 5804 | # endif |
Bram Moolenaar | 8fdd721 | 2016-03-26 19:41:48 +0100 | [diff] [blame] | 5805 | ) |
| 5806 | ; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5807 | |
| 5808 | #else |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5809 | avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5810 | #endif |
| 5811 | return avail; |
| 5812 | } |
| 5813 | |
Bram Moolenaar | 4ffa070 | 2013-12-11 17:12:37 +0100 | [diff] [blame] | 5814 | #ifndef VMS |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5815 | /* |
| 5816 | * Wait "msec" msec until a character is available from file descriptor "fd". |
Bram Moolenaar | 493c7a8 | 2011-09-07 14:06:47 +0200 | [diff] [blame] | 5817 | * "msec" == 0 will check for characters once. |
| 5818 | * "msec" == -1 will block until a character is available. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5819 | * When a GUI is being used, this will not be used for input -- webb |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5820 | * Or when a Linux GPM mouse event is waiting. |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 5821 | * Or when a clientserver message is on the queue. |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5822 | * "interrupted" (if not NULL) is set to TRUE when no character is available |
| 5823 | * but something else needs to be done. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5824 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5825 | #if defined(__BEOS__) |
| 5826 | int |
| 5827 | #else |
Bram Moolenaar | ec70bdd | 2016-02-18 22:17:42 +0100 | [diff] [blame] | 5828 | static int |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5829 | #endif |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5830 | RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5831 | { |
| 5832 | int ret; |
Bram Moolenaar | ec70bdd | 2016-02-18 22:17:42 +0100 | [diff] [blame] | 5833 | int result; |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5834 | #if defined(FEAT_XCLIPBOARD) || defined(USE_XSMP) || defined(FEAT_MZSCHEME) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5835 | static int busy = FALSE; |
| 5836 | |
| 5837 | /* May retry getting characters after an event was handled. */ |
| 5838 | # define MAY_LOOP |
| 5839 | |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 5840 | # ifdef ELAPSED_FUNC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5841 | /* Remember at what time we started, so that we know how much longer we |
| 5842 | * should wait after being interrupted. */ |
Bram Moolenaar | 76b6dfe | 2016-06-04 14:37:22 +0200 | [diff] [blame] | 5843 | long start_msec = msec; |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 5844 | ELAPSED_TYPE start_tv; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5845 | |
Bram Moolenaar | 76b6dfe | 2016-06-04 14:37:22 +0200 | [diff] [blame] | 5846 | if (msec > 0) |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 5847 | ELAPSED_INIT(start_tv); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5848 | # endif |
| 5849 | |
| 5850 | /* Handle being called recursively. This may happen for the session |
| 5851 | * manager stuff, it may save the file, which does a breakcheck. */ |
| 5852 | if (busy) |
| 5853 | return 0; |
| 5854 | #endif |
| 5855 | |
| 5856 | #ifdef MAY_LOOP |
Bram Moolenaar | 35fdbb5 | 2005-07-09 21:08:57 +0000 | [diff] [blame] | 5857 | for (;;) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5858 | #endif |
| 5859 | { |
| 5860 | #ifdef MAY_LOOP |
| 5861 | int finished = TRUE; /* default is to 'loop' just once */ |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5862 | # ifdef FEAT_MZSCHEME |
| 5863 | int mzquantum_used = FALSE; |
| 5864 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5865 | #endif |
| 5866 | #ifndef HAVE_SELECT |
Bram Moolenaar | 8b877ac | 2016-03-28 19:16:20 +0200 | [diff] [blame] | 5867 | /* each channel may use in, out and err */ |
| 5868 | struct pollfd fds[6 + 3 * MAX_OPEN_CHANNELS]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5869 | int nfd; |
| 5870 | # ifdef FEAT_XCLIPBOARD |
| 5871 | int xterm_idx = -1; |
| 5872 | # endif |
| 5873 | # ifdef FEAT_MOUSE_GPM |
| 5874 | int gpm_idx = -1; |
| 5875 | # endif |
| 5876 | # ifdef USE_XSMP |
| 5877 | int xsmp_idx = -1; |
| 5878 | # endif |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5879 | int towait = (int)msec; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5880 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5881 | # ifdef FEAT_MZSCHEME |
| 5882 | mzvim_check_threads(); |
| 5883 | if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq)) |
| 5884 | { |
| 5885 | towait = (int)p_mzq; /* don't wait longer than 'mzquantum' */ |
| 5886 | mzquantum_used = TRUE; |
| 5887 | } |
| 5888 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5889 | fds[0].fd = fd; |
| 5890 | fds[0].events = POLLIN; |
| 5891 | nfd = 1; |
| 5892 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5893 | # ifdef FEAT_XCLIPBOARD |
Bram Moolenaar | b1e2650 | 2014-11-19 18:48:46 +0100 | [diff] [blame] | 5894 | may_restore_clipboard(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5895 | if (xterm_Shell != (Widget)0) |
| 5896 | { |
| 5897 | xterm_idx = nfd; |
| 5898 | fds[nfd].fd = ConnectionNumber(xterm_dpy); |
| 5899 | fds[nfd].events = POLLIN; |
| 5900 | nfd++; |
| 5901 | } |
| 5902 | # endif |
| 5903 | # ifdef FEAT_MOUSE_GPM |
| 5904 | if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0) |
| 5905 | { |
| 5906 | gpm_idx = nfd; |
| 5907 | fds[nfd].fd = gpm_fd; |
| 5908 | fds[nfd].events = POLLIN; |
| 5909 | nfd++; |
| 5910 | } |
| 5911 | # endif |
| 5912 | # ifdef USE_XSMP |
| 5913 | if (xsmp_icefd != -1) |
| 5914 | { |
| 5915 | xsmp_idx = nfd; |
| 5916 | fds[nfd].fd = xsmp_icefd; |
| 5917 | fds[nfd].events = POLLIN; |
| 5918 | nfd++; |
| 5919 | } |
| 5920 | # endif |
Bram Moolenaar | 509ce2a | 2016-03-11 22:52:15 +0100 | [diff] [blame] | 5921 | #ifdef FEAT_JOB_CHANNEL |
Bram Moolenaar | e0874f8 | 2016-01-24 20:36:41 +0100 | [diff] [blame] | 5922 | nfd = channel_poll_setup(nfd, &fds); |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 5923 | #endif |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5924 | if (interrupted != NULL) |
| 5925 | *interrupted = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5926 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5927 | ret = poll(fds, nfd, towait); |
Bram Moolenaar | ec70bdd | 2016-02-18 22:17:42 +0100 | [diff] [blame] | 5928 | |
| 5929 | result = ret > 0 && (fds[0].revents & POLLIN); |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 5930 | if (result == 0 && interrupted != NULL && ret > 0) |
| 5931 | *interrupted = TRUE; |
Bram Moolenaar | ec70bdd | 2016-02-18 22:17:42 +0100 | [diff] [blame] | 5932 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5933 | # ifdef FEAT_MZSCHEME |
| 5934 | if (ret == 0 && mzquantum_used) |
Bram Moolenaar | c2a27c3 | 2007-12-01 16:19:33 +0000 | [diff] [blame] | 5935 | /* MzThreads scheduling is required and timeout occurred */ |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5936 | finished = FALSE; |
| 5937 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5938 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5939 | # ifdef FEAT_XCLIPBOARD |
| 5940 | if (xterm_Shell != (Widget)0 && (fds[xterm_idx].revents & POLLIN)) |
| 5941 | { |
| 5942 | xterm_update(); /* Maybe we should hand out clipboard */ |
| 5943 | if (--ret == 0 && !input_available()) |
| 5944 | /* Try again */ |
| 5945 | finished = FALSE; |
| 5946 | } |
| 5947 | # endif |
| 5948 | # ifdef FEAT_MOUSE_GPM |
| 5949 | if (gpm_idx >= 0 && (fds[gpm_idx].revents & POLLIN)) |
| 5950 | { |
| 5951 | *check_for_gpm = 1; |
| 5952 | } |
| 5953 | # endif |
| 5954 | # ifdef USE_XSMP |
| 5955 | if (xsmp_idx >= 0 && (fds[xsmp_idx].revents & (POLLIN | POLLHUP))) |
| 5956 | { |
| 5957 | if (fds[xsmp_idx].revents & POLLIN) |
| 5958 | { |
| 5959 | busy = TRUE; |
| 5960 | xsmp_handle_requests(); |
| 5961 | busy = FALSE; |
| 5962 | } |
| 5963 | else if (fds[xsmp_idx].revents & POLLHUP) |
| 5964 | { |
| 5965 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 5966 | verb_msg((char_u *)_("XSMP lost ICE connection")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5967 | xsmp_close(); |
| 5968 | } |
| 5969 | if (--ret == 0) |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5970 | finished = FALSE; /* Try again */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5971 | } |
| 5972 | # endif |
Bram Moolenaar | 509ce2a | 2016-03-11 22:52:15 +0100 | [diff] [blame] | 5973 | #ifdef FEAT_JOB_CHANNEL |
Bram Moolenaar | e0874f8 | 2016-01-24 20:36:41 +0100 | [diff] [blame] | 5974 | if (ret > 0) |
| 5975 | ret = channel_poll_check(ret, &fds); |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 5976 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5977 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5978 | #else /* HAVE_SELECT */ |
| 5979 | |
| 5980 | struct timeval tv; |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5981 | struct timeval *tvp; |
Bram Moolenaar | 8b877ac | 2016-03-28 19:16:20 +0200 | [diff] [blame] | 5982 | fd_set rfds, wfds, efds; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5983 | int maxfd; |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5984 | long towait = msec; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5985 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5986 | # ifdef FEAT_MZSCHEME |
| 5987 | mzvim_check_threads(); |
| 5988 | if (mzthreads_allowed() && p_mzq > 0 && (msec < 0 || msec > p_mzq)) |
| 5989 | { |
| 5990 | towait = p_mzq; /* don't wait longer than 'mzquantum' */ |
| 5991 | mzquantum_used = TRUE; |
| 5992 | } |
| 5993 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5994 | |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5995 | if (towait >= 0) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 5996 | { |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 5997 | tv.tv_sec = towait / 1000; |
| 5998 | tv.tv_usec = (towait % 1000) * (1000000/1000); |
| 5999 | tvp = &tv; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6000 | } |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 6001 | else |
| 6002 | tvp = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6003 | |
| 6004 | /* |
| 6005 | * Select on ready for reading and exceptional condition (end of file). |
| 6006 | */ |
Bram Moolenaar | 493c7a8 | 2011-09-07 14:06:47 +0200 | [diff] [blame] | 6007 | select_eintr: |
| 6008 | FD_ZERO(&rfds); |
Bram Moolenaar | 8b877ac | 2016-03-28 19:16:20 +0200 | [diff] [blame] | 6009 | FD_ZERO(&wfds); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6010 | FD_ZERO(&efds); |
| 6011 | FD_SET(fd, &rfds); |
| 6012 | # if !defined(__QNX__) && !defined(__CYGWIN32__) |
| 6013 | /* For QNX select() always returns 1 if this is set. Why? */ |
| 6014 | FD_SET(fd, &efds); |
| 6015 | # endif |
| 6016 | maxfd = fd; |
| 6017 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6018 | # ifdef FEAT_XCLIPBOARD |
Bram Moolenaar | b1e2650 | 2014-11-19 18:48:46 +0100 | [diff] [blame] | 6019 | may_restore_clipboard(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6020 | if (xterm_Shell != (Widget)0) |
| 6021 | { |
| 6022 | FD_SET(ConnectionNumber(xterm_dpy), &rfds); |
| 6023 | if (maxfd < ConnectionNumber(xterm_dpy)) |
| 6024 | maxfd = ConnectionNumber(xterm_dpy); |
Bram Moolenaar | dd82d69 | 2012-08-15 17:26:57 +0200 | [diff] [blame] | 6025 | |
| 6026 | /* An event may have already been read but not handled. In |
| 6027 | * particulary, XFlush may cause this. */ |
| 6028 | xterm_update(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6029 | } |
| 6030 | # endif |
| 6031 | # ifdef FEAT_MOUSE_GPM |
| 6032 | if (check_for_gpm != NULL && gpm_flag && gpm_fd >= 0) |
| 6033 | { |
| 6034 | FD_SET(gpm_fd, &rfds); |
| 6035 | FD_SET(gpm_fd, &efds); |
| 6036 | if (maxfd < gpm_fd) |
| 6037 | maxfd = gpm_fd; |
| 6038 | } |
| 6039 | # endif |
| 6040 | # ifdef USE_XSMP |
| 6041 | if (xsmp_icefd != -1) |
| 6042 | { |
| 6043 | FD_SET(xsmp_icefd, &rfds); |
| 6044 | FD_SET(xsmp_icefd, &efds); |
| 6045 | if (maxfd < xsmp_icefd) |
| 6046 | maxfd = xsmp_icefd; |
| 6047 | } |
| 6048 | # endif |
Bram Moolenaar | 509ce2a | 2016-03-11 22:52:15 +0100 | [diff] [blame] | 6049 | # ifdef FEAT_JOB_CHANNEL |
Bram Moolenaar | 8b877ac | 2016-03-28 19:16:20 +0200 | [diff] [blame] | 6050 | maxfd = channel_select_setup(maxfd, &rfds, &wfds); |
Bram Moolenaar | dd82d69 | 2012-08-15 17:26:57 +0200 | [diff] [blame] | 6051 | # endif |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 6052 | if (interrupted != NULL) |
| 6053 | *interrupted = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6054 | |
Bram Moolenaar | 8b877ac | 2016-03-28 19:16:20 +0200 | [diff] [blame] | 6055 | ret = select(maxfd + 1, &rfds, &wfds, &efds, tvp); |
Bram Moolenaar | ec70bdd | 2016-02-18 22:17:42 +0100 | [diff] [blame] | 6056 | result = ret > 0 && FD_ISSET(fd, &rfds); |
| 6057 | if (result) |
| 6058 | --ret; |
Bram Moolenaar | cda7764 | 2016-06-04 13:32:35 +0200 | [diff] [blame] | 6059 | else if (interrupted != NULL && ret > 0) |
| 6060 | *interrupted = TRUE; |
Bram Moolenaar | ec70bdd | 2016-02-18 22:17:42 +0100 | [diff] [blame] | 6061 | |
Bram Moolenaar | 493c7a8 | 2011-09-07 14:06:47 +0200 | [diff] [blame] | 6062 | # ifdef EINTR |
| 6063 | if (ret == -1 && errno == EINTR) |
Bram Moolenaar | 2e7b1df | 2011-10-12 21:04:20 +0200 | [diff] [blame] | 6064 | { |
| 6065 | /* Check whether window has been resized, EINTR may be caused by |
| 6066 | * SIGWINCH. */ |
| 6067 | if (do_resize) |
| 6068 | handle_resize(); |
| 6069 | |
Bram Moolenaar | 493c7a8 | 2011-09-07 14:06:47 +0200 | [diff] [blame] | 6070 | /* Interrupted by a signal, need to try again. We ignore msec |
| 6071 | * here, because we do want to check even after a timeout if |
| 6072 | * characters are available. Needed for reading output of an |
| 6073 | * external command after the process has finished. */ |
| 6074 | goto select_eintr; |
Bram Moolenaar | 2e7b1df | 2011-10-12 21:04:20 +0200 | [diff] [blame] | 6075 | } |
Bram Moolenaar | 493c7a8 | 2011-09-07 14:06:47 +0200 | [diff] [blame] | 6076 | # endif |
Bram Moolenaar | 311d982 | 2007-02-27 15:48:28 +0000 | [diff] [blame] | 6077 | # ifdef __TANDEM |
| 6078 | if (ret == -1 && errno == ENOTSUP) |
| 6079 | { |
| 6080 | FD_ZERO(&rfds); |
| 6081 | FD_ZERO(&efds); |
| 6082 | ret = 0; |
| 6083 | } |
Bram Moolenaar | 493c7a8 | 2011-09-07 14:06:47 +0200 | [diff] [blame] | 6084 | # endif |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 6085 | # ifdef FEAT_MZSCHEME |
| 6086 | if (ret == 0 && mzquantum_used) |
Bram Moolenaar | c2a27c3 | 2007-12-01 16:19:33 +0000 | [diff] [blame] | 6087 | /* loop if MzThreads must be scheduled and timeout occurred */ |
Bram Moolenaar | 325b7a2 | 2004-07-05 15:58:32 +0000 | [diff] [blame] | 6088 | finished = FALSE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6089 | # endif |
| 6090 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6091 | # ifdef FEAT_XCLIPBOARD |
| 6092 | if (ret > 0 && xterm_Shell != (Widget)0 |
| 6093 | && FD_ISSET(ConnectionNumber(xterm_dpy), &rfds)) |
| 6094 | { |
| 6095 | xterm_update(); /* Maybe we should hand out clipboard */ |
| 6096 | /* continue looping when we only got the X event and the input |
| 6097 | * buffer is empty */ |
| 6098 | if (--ret == 0 && !input_available()) |
| 6099 | { |
| 6100 | /* Try again */ |
| 6101 | finished = FALSE; |
| 6102 | } |
| 6103 | } |
| 6104 | # endif |
| 6105 | # ifdef FEAT_MOUSE_GPM |
| 6106 | if (ret > 0 && gpm_flag && check_for_gpm != NULL && gpm_fd >= 0) |
| 6107 | { |
| 6108 | if (FD_ISSET(gpm_fd, &efds)) |
| 6109 | gpm_close(); |
| 6110 | else if (FD_ISSET(gpm_fd, &rfds)) |
| 6111 | *check_for_gpm = 1; |
| 6112 | } |
| 6113 | # endif |
| 6114 | # ifdef USE_XSMP |
| 6115 | if (ret > 0 && xsmp_icefd != -1) |
| 6116 | { |
| 6117 | if (FD_ISSET(xsmp_icefd, &efds)) |
| 6118 | { |
| 6119 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 6120 | verb_msg((char_u *)_("XSMP lost ICE connection")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6121 | xsmp_close(); |
| 6122 | if (--ret == 0) |
| 6123 | finished = FALSE; /* keep going if event was only one */ |
| 6124 | } |
| 6125 | else if (FD_ISSET(xsmp_icefd, &rfds)) |
| 6126 | { |
| 6127 | busy = TRUE; |
| 6128 | xsmp_handle_requests(); |
| 6129 | busy = FALSE; |
| 6130 | if (--ret == 0) |
| 6131 | finished = FALSE; /* keep going if event was only one */ |
| 6132 | } |
| 6133 | } |
| 6134 | # endif |
Bram Moolenaar | 509ce2a | 2016-03-11 22:52:15 +0100 | [diff] [blame] | 6135 | #ifdef FEAT_JOB_CHANNEL |
Bram Moolenaar | e0874f8 | 2016-01-24 20:36:41 +0100 | [diff] [blame] | 6136 | if (ret > 0) |
Bram Moolenaar | 8b877ac | 2016-03-28 19:16:20 +0200 | [diff] [blame] | 6137 | ret = channel_select_check(ret, &rfds, &wfds); |
Bram Moolenaar | 67c5384 | 2010-05-22 18:28:27 +0200 | [diff] [blame] | 6138 | #endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6139 | |
| 6140 | #endif /* HAVE_SELECT */ |
| 6141 | |
| 6142 | #ifdef MAY_LOOP |
| 6143 | if (finished || msec == 0) |
| 6144 | break; |
| 6145 | |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 6146 | # ifdef FEAT_CLIENTSERVER |
| 6147 | if (server_waiting()) |
| 6148 | break; |
| 6149 | # endif |
| 6150 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6151 | /* We're going to loop around again, find out for how long */ |
| 6152 | if (msec > 0) |
| 6153 | { |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 6154 | # ifdef ELAPSED_FUNC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6155 | /* Compute remaining wait time. */ |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 6156 | msec = start_msec - ELAPSED_FUNC(start_tv); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6157 | # else |
| 6158 | /* Guess we got interrupted halfway. */ |
| 6159 | msec = msec / 2; |
| 6160 | # endif |
| 6161 | if (msec <= 0) |
| 6162 | break; /* waited long enough */ |
| 6163 | } |
| 6164 | #endif |
| 6165 | } |
| 6166 | |
Bram Moolenaar | ec70bdd | 2016-02-18 22:17:42 +0100 | [diff] [blame] | 6167 | return result; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6168 | } |
| 6169 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6170 | #ifndef NO_EXPANDPATH |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6171 | /* |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 6172 | * Expand a path into all matching files and/or directories. Handles "*", |
| 6173 | * "?", "[a-z]", "**", etc. |
| 6174 | * "path" has backslashes before chars that are not to be expanded. |
| 6175 | * Returns the number of matches found. |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6176 | */ |
| 6177 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6178 | mch_expandpath( |
| 6179 | garray_T *gap, |
| 6180 | char_u *path, |
| 6181 | int flags) /* EW_* flags */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6182 | { |
Bram Moolenaar | 0274363 | 2005-07-25 20:42:36 +0000 | [diff] [blame] | 6183 | return unix_expandpath(gap, path, 0, flags, FALSE); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6184 | } |
| 6185 | #endif |
| 6186 | |
| 6187 | /* |
| 6188 | * mch_expand_wildcards() - this code does wild-card pattern matching using |
| 6189 | * the shell |
| 6190 | * |
| 6191 | * return OK for success, FAIL for error (you may lose some memory) and put |
| 6192 | * an error message in *file. |
| 6193 | * |
| 6194 | * num_pat is number of input patterns |
| 6195 | * pat is array of pointers to input patterns |
| 6196 | * num_file is pointer to number of matched file names |
| 6197 | * file is pointer to array of pointers to matched file names |
| 6198 | */ |
| 6199 | |
| 6200 | #ifndef SEEK_SET |
| 6201 | # define SEEK_SET 0 |
| 6202 | #endif |
| 6203 | #ifndef SEEK_END |
| 6204 | # define SEEK_END 2 |
| 6205 | #endif |
| 6206 | |
Bram Moolenaar | 5555acc | 2006-04-07 21:33:12 +0000 | [diff] [blame] | 6207 | #define SHELL_SPECIAL (char_u *)"\t \"&'$;<>()\\|" |
Bram Moolenaar | 316059c | 2006-01-14 21:18:42 +0000 | [diff] [blame] | 6208 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6209 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6210 | mch_expand_wildcards( |
| 6211 | int num_pat, |
| 6212 | char_u **pat, |
| 6213 | int *num_file, |
| 6214 | char_u ***file, |
| 6215 | int flags) /* EW_* flags */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6216 | { |
| 6217 | int i; |
| 6218 | size_t len; |
Bram Moolenaar | 85325f8 | 2017-03-30 21:18:45 +0200 | [diff] [blame] | 6219 | long llen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6220 | char_u *p; |
| 6221 | int dir; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6222 | |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6223 | /* |
| 6224 | * This is the non-OS/2 implementation (really Unix). |
| 6225 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6226 | int j; |
| 6227 | char_u *tempname; |
| 6228 | char_u *command; |
| 6229 | FILE *fd; |
| 6230 | char_u *buffer; |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6231 | #define STYLE_ECHO 0 /* use "echo", the default */ |
| 6232 | #define STYLE_GLOB 1 /* use "glob", for csh */ |
| 6233 | #define STYLE_VIMGLOB 2 /* use "vimglob", for Posix sh */ |
| 6234 | #define STYLE_PRINT 3 /* use "print -N", for zsh */ |
| 6235 | #define STYLE_BT 4 /* `cmd` expansion, execute the pattern |
| 6236 | * directly */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6237 | int shell_style = STYLE_ECHO; |
| 6238 | int check_spaces; |
| 6239 | static int did_find_nul = FALSE; |
| 6240 | int ampersent = FALSE; |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6241 | /* vimglob() function to define for Posix shell */ |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 6242 | static char *sh_vimglob_func = "vimglob() { while [ $# -ge 1 ]; do echo \"$1\"; shift; done }; vimglob >"; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6243 | |
| 6244 | *num_file = 0; /* default: no files found */ |
| 6245 | *file = NULL; |
| 6246 | |
| 6247 | /* |
| 6248 | * If there are no wildcards, just copy the names to allocated memory. |
| 6249 | * Saves a lot of time, because we don't have to start a new shell. |
| 6250 | */ |
| 6251 | if (!have_wildcard(num_pat, pat)) |
| 6252 | return save_patterns(num_pat, pat, num_file, file); |
| 6253 | |
Bram Moolenaar | 0e634da | 2005-07-20 21:57:28 +0000 | [diff] [blame] | 6254 | # ifdef HAVE_SANDBOX |
| 6255 | /* Don't allow any shell command in the sandbox. */ |
| 6256 | if (sandbox != 0 && check_secure()) |
| 6257 | return FAIL; |
| 6258 | # endif |
| 6259 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6260 | /* |
| 6261 | * Don't allow the use of backticks in secure and restricted mode. |
| 6262 | */ |
Bram Moolenaar | 0e634da | 2005-07-20 21:57:28 +0000 | [diff] [blame] | 6263 | if (secure || restricted) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6264 | for (i = 0; i < num_pat; ++i) |
| 6265 | if (vim_strchr(pat[i], '`') != NULL |
| 6266 | && (check_restricted() || check_secure())) |
| 6267 | return FAIL; |
| 6268 | |
| 6269 | /* |
| 6270 | * get a name for the temp file |
| 6271 | */ |
Bram Moolenaar | e5c421c | 2015-03-31 13:33:08 +0200 | [diff] [blame] | 6272 | if ((tempname = vim_tempname('o', FALSE)) == NULL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6273 | { |
| 6274 | EMSG(_(e_notmp)); |
| 6275 | return FAIL; |
| 6276 | } |
| 6277 | |
| 6278 | /* |
| 6279 | * Let the shell expand the patterns and write the result into the temp |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6280 | * file. |
| 6281 | * STYLE_BT: NL separated |
| 6282 | * If expanding `cmd` execute it directly. |
| 6283 | * STYLE_GLOB: NUL separated |
| 6284 | * If we use *csh, "glob" will work better than "echo". |
| 6285 | * STYLE_PRINT: NL or NUL separated |
| 6286 | * If we use *zsh, "print -N" will work better than "glob". |
| 6287 | * STYLE_VIMGLOB: NL separated |
| 6288 | * If we use *sh*, we define "vimglob()". |
| 6289 | * STYLE_ECHO: space separated. |
| 6290 | * A shell we don't know, stay safe and use "echo". |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6291 | */ |
| 6292 | if (num_pat == 1 && *pat[0] == '`' |
| 6293 | && (len = STRLEN(pat[0])) > 2 |
| 6294 | && *(pat[0] + len - 1) == '`') |
| 6295 | shell_style = STYLE_BT; |
| 6296 | else if ((len = STRLEN(p_sh)) >= 3) |
| 6297 | { |
| 6298 | if (STRCMP(p_sh + len - 3, "csh") == 0) |
| 6299 | shell_style = STYLE_GLOB; |
| 6300 | else if (STRCMP(p_sh + len - 3, "zsh") == 0) |
| 6301 | shell_style = STYLE_PRINT; |
| 6302 | } |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6303 | if (shell_style == STYLE_ECHO && strstr((char *)gettail(p_sh), |
| 6304 | "sh") != NULL) |
| 6305 | shell_style = STYLE_VIMGLOB; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6306 | |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6307 | /* Compute the length of the command. We need 2 extra bytes: for the |
| 6308 | * optional '&' and for the NUL. |
| 6309 | * Worst case: "unset nonomatch; print -N >" plus two is 29 */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6310 | len = STRLEN(tempname) + 29; |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6311 | if (shell_style == STYLE_VIMGLOB) |
| 6312 | len += STRLEN(sh_vimglob_func); |
| 6313 | |
Bram Moolenaar | b23c338 | 2005-01-31 19:09:12 +0000 | [diff] [blame] | 6314 | for (i = 0; i < num_pat; ++i) |
| 6315 | { |
| 6316 | /* Count the length of the patterns in the same way as they are put in |
| 6317 | * "command" below. */ |
| 6318 | #ifdef USE_SYSTEM |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6319 | len += STRLEN(pat[i]) + 3; /* add space and two quotes */ |
Bram Moolenaar | b23c338 | 2005-01-31 19:09:12 +0000 | [diff] [blame] | 6320 | #else |
| 6321 | ++len; /* add space */ |
Bram Moolenaar | 316059c | 2006-01-14 21:18:42 +0000 | [diff] [blame] | 6322 | for (j = 0; pat[i][j] != NUL; ++j) |
| 6323 | { |
| 6324 | if (vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL) |
| 6325 | ++len; /* may add a backslash */ |
| 6326 | ++len; |
| 6327 | } |
Bram Moolenaar | b23c338 | 2005-01-31 19:09:12 +0000 | [diff] [blame] | 6328 | #endif |
| 6329 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6330 | command = alloc(len); |
| 6331 | if (command == NULL) |
| 6332 | { |
| 6333 | /* out of memory */ |
| 6334 | vim_free(tempname); |
| 6335 | return FAIL; |
| 6336 | } |
| 6337 | |
| 6338 | /* |
| 6339 | * Build the shell command: |
| 6340 | * - Set $nonomatch depending on EW_NOTFOUND (hopefully the shell |
| 6341 | * recognizes this). |
| 6342 | * - Add the shell command to print the expanded names. |
| 6343 | * - Add the temp file name. |
| 6344 | * - Add the file name patterns. |
| 6345 | */ |
| 6346 | if (shell_style == STYLE_BT) |
| 6347 | { |
Bram Moolenaar | 316059c | 2006-01-14 21:18:42 +0000 | [diff] [blame] | 6348 | /* change `command; command& ` to (command; command ) */ |
| 6349 | STRCPY(command, "("); |
| 6350 | STRCAT(command, pat[0] + 1); /* exclude first backtick */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6351 | p = command + STRLEN(command) - 1; |
Bram Moolenaar | 316059c | 2006-01-14 21:18:42 +0000 | [diff] [blame] | 6352 | *p-- = ')'; /* remove last backtick */ |
Bram Moolenaar | 1c46544 | 2017-03-12 20:10:05 +0100 | [diff] [blame] | 6353 | while (p > command && VIM_ISWHITE(*p)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6354 | --p; |
| 6355 | if (*p == '&') /* remove trailing '&' */ |
| 6356 | { |
| 6357 | ampersent = TRUE; |
| 6358 | *p = ' '; |
| 6359 | } |
| 6360 | STRCAT(command, ">"); |
| 6361 | } |
| 6362 | else |
| 6363 | { |
| 6364 | if (flags & EW_NOTFOUND) |
| 6365 | STRCPY(command, "set nonomatch; "); |
| 6366 | else |
| 6367 | STRCPY(command, "unset nonomatch; "); |
| 6368 | if (shell_style == STYLE_GLOB) |
| 6369 | STRCAT(command, "glob >"); |
| 6370 | else if (shell_style == STYLE_PRINT) |
| 6371 | STRCAT(command, "print -N >"); |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6372 | else if (shell_style == STYLE_VIMGLOB) |
| 6373 | STRCAT(command, sh_vimglob_func); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6374 | else |
| 6375 | STRCAT(command, "echo >"); |
| 6376 | } |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6377 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6378 | STRCAT(command, tempname); |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6379 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6380 | if (shell_style != STYLE_BT) |
| 6381 | for (i = 0; i < num_pat; ++i) |
| 6382 | { |
| 6383 | /* When using system() always add extra quotes, because the shell |
Bram Moolenaar | 316059c | 2006-01-14 21:18:42 +0000 | [diff] [blame] | 6384 | * is started twice. Otherwise put a backslash before special |
Bram Moolenaar | c2a27c3 | 2007-12-01 16:19:33 +0000 | [diff] [blame] | 6385 | * characters, except inside ``. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6386 | #ifdef USE_SYSTEM |
| 6387 | STRCAT(command, " \""); |
| 6388 | STRCAT(command, pat[i]); |
| 6389 | STRCAT(command, "\""); |
| 6390 | #else |
Bram Moolenaar | 582fd85 | 2005-03-28 20:58:01 +0000 | [diff] [blame] | 6391 | int intick = FALSE; |
| 6392 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6393 | p = command + STRLEN(command); |
| 6394 | *p++ = ' '; |
Bram Moolenaar | 316059c | 2006-01-14 21:18:42 +0000 | [diff] [blame] | 6395 | for (j = 0; pat[i][j] != NUL; ++j) |
Bram Moolenaar | 582fd85 | 2005-03-28 20:58:01 +0000 | [diff] [blame] | 6396 | { |
| 6397 | if (pat[i][j] == '`') |
Bram Moolenaar | 582fd85 | 2005-03-28 20:58:01 +0000 | [diff] [blame] | 6398 | intick = !intick; |
Bram Moolenaar | 316059c | 2006-01-14 21:18:42 +0000 | [diff] [blame] | 6399 | else if (pat[i][j] == '\\' && pat[i][j + 1] != NUL) |
| 6400 | { |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 6401 | /* Remove a backslash, take char literally. But keep |
Bram Moolenaar | 49315f6 | 2006-02-04 00:54:59 +0000 | [diff] [blame] | 6402 | * backslash inside backticks, before a special character |
| 6403 | * and before a backtick. */ |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 6404 | if (intick |
Bram Moolenaar | 49315f6 | 2006-02-04 00:54:59 +0000 | [diff] [blame] | 6405 | || vim_strchr(SHELL_SPECIAL, pat[i][j + 1]) != NULL |
| 6406 | || pat[i][j + 1] == '`') |
Bram Moolenaar | d12f5c1 | 2006-01-25 22:10:52 +0000 | [diff] [blame] | 6407 | *p++ = '\\'; |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 6408 | ++j; |
Bram Moolenaar | 316059c | 2006-01-14 21:18:42 +0000 | [diff] [blame] | 6409 | } |
Bram Moolenaar | e4df164 | 2014-08-29 12:58:44 +0200 | [diff] [blame] | 6410 | else if (!intick |
| 6411 | && ((flags & EW_KEEPDOLLAR) == 0 || pat[i][j] != '$') |
| 6412 | && vim_strchr(SHELL_SPECIAL, pat[i][j]) != NULL) |
Bram Moolenaar | 316059c | 2006-01-14 21:18:42 +0000 | [diff] [blame] | 6413 | /* Put a backslash before a special character, but not |
Bram Moolenaar | e4df164 | 2014-08-29 12:58:44 +0200 | [diff] [blame] | 6414 | * when inside ``. And not for $var when EW_KEEPDOLLAR is |
| 6415 | * set. */ |
Bram Moolenaar | 316059c | 2006-01-14 21:18:42 +0000 | [diff] [blame] | 6416 | *p++ = '\\'; |
Bram Moolenaar | 280f126 | 2006-01-30 00:14:18 +0000 | [diff] [blame] | 6417 | |
| 6418 | /* Copy one character. */ |
| 6419 | *p++ = pat[i][j]; |
Bram Moolenaar | 582fd85 | 2005-03-28 20:58:01 +0000 | [diff] [blame] | 6420 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6421 | *p = NUL; |
| 6422 | #endif |
| 6423 | } |
| 6424 | if (flags & EW_SILENT) |
| 6425 | show_shell_mess = FALSE; |
| 6426 | if (ampersent) |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6427 | STRCAT(command, "&"); /* put the '&' after the redirection */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6428 | |
| 6429 | /* |
| 6430 | * Using zsh -G: If a pattern has no matches, it is just deleted from |
| 6431 | * the argument list, otherwise zsh gives an error message and doesn't |
| 6432 | * expand any other pattern. |
| 6433 | */ |
| 6434 | if (shell_style == STYLE_PRINT) |
| 6435 | extra_shell_arg = (char_u *)"-G"; /* Use zsh NULL_GLOB option */ |
| 6436 | |
| 6437 | /* |
| 6438 | * If we use -f then shell variables set in .cshrc won't get expanded. |
| 6439 | * vi can do it, so we will too, but it is only necessary if there is a "$" |
| 6440 | * in one of the patterns, otherwise we can still use the fast option. |
| 6441 | */ |
| 6442 | else if (shell_style == STYLE_GLOB && !have_dollars(num_pat, pat)) |
| 6443 | extra_shell_arg = (char_u *)"-f"; /* Use csh fast option */ |
| 6444 | |
| 6445 | /* |
| 6446 | * execute the shell command |
| 6447 | */ |
| 6448 | i = call_shell(command, SHELL_EXPAND | SHELL_SILENT); |
| 6449 | |
| 6450 | /* When running in the background, give it some time to create the temp |
| 6451 | * file, but don't wait for it to finish. */ |
| 6452 | if (ampersent) |
| 6453 | mch_delay(10L, TRUE); |
| 6454 | |
| 6455 | extra_shell_arg = NULL; /* cleanup */ |
| 6456 | show_shell_mess = TRUE; |
| 6457 | vim_free(command); |
| 6458 | |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6459 | if (i != 0) /* mch_call_shell() failed */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6460 | { |
| 6461 | mch_remove(tempname); |
| 6462 | vim_free(tempname); |
| 6463 | /* |
| 6464 | * With interactive completion, the error message is not printed. |
| 6465 | * However with USE_SYSTEM, I don't know how to turn off error messages |
| 6466 | * from the shell, so screen may still get messed up -- webb. |
| 6467 | */ |
| 6468 | #ifndef USE_SYSTEM |
| 6469 | if (!(flags & EW_SILENT)) |
| 6470 | #endif |
| 6471 | { |
| 6472 | redraw_later_clear(); /* probably messed up screen */ |
| 6473 | msg_putchar('\n'); /* clear bottom line quickly */ |
| 6474 | cmdline_row = Rows - 1; /* continue on last line */ |
| 6475 | #ifdef USE_SYSTEM |
| 6476 | if (!(flags & EW_SILENT)) |
| 6477 | #endif |
| 6478 | { |
| 6479 | MSG(_(e_wildexpand)); |
| 6480 | msg_start(); /* don't overwrite this message */ |
| 6481 | } |
| 6482 | } |
| 6483 | /* If a `cmd` expansion failed, don't list `cmd` as a match, even when |
| 6484 | * EW_NOTFOUND is given */ |
| 6485 | if (shell_style == STYLE_BT) |
| 6486 | return FAIL; |
| 6487 | goto notfound; |
| 6488 | } |
| 6489 | |
| 6490 | /* |
| 6491 | * read the names from the file into memory |
| 6492 | */ |
| 6493 | fd = fopen((char *)tempname, READBIN); |
| 6494 | if (fd == NULL) |
| 6495 | { |
| 6496 | /* Something went wrong, perhaps a file name with a special char. */ |
| 6497 | if (!(flags & EW_SILENT)) |
| 6498 | { |
| 6499 | MSG(_(e_wildexpand)); |
| 6500 | msg_start(); /* don't overwrite this message */ |
| 6501 | } |
| 6502 | vim_free(tempname); |
| 6503 | goto notfound; |
| 6504 | } |
| 6505 | fseek(fd, 0L, SEEK_END); |
Bram Moolenaar | 85325f8 | 2017-03-30 21:18:45 +0200 | [diff] [blame] | 6506 | llen = ftell(fd); /* get size of temp file */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6507 | fseek(fd, 0L, SEEK_SET); |
Bram Moolenaar | 85325f8 | 2017-03-30 21:18:45 +0200 | [diff] [blame] | 6508 | if (llen < 0) |
| 6509 | /* just in case ftell() would fail */ |
| 6510 | buffer = NULL; |
| 6511 | else |
| 6512 | buffer = alloc(llen + 1); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6513 | if (buffer == NULL) |
| 6514 | { |
| 6515 | /* out of memory */ |
| 6516 | mch_remove(tempname); |
| 6517 | vim_free(tempname); |
| 6518 | fclose(fd); |
| 6519 | return FAIL; |
| 6520 | } |
Bram Moolenaar | 85325f8 | 2017-03-30 21:18:45 +0200 | [diff] [blame] | 6521 | len = llen; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6522 | i = fread((char *)buffer, 1, len, fd); |
| 6523 | fclose(fd); |
| 6524 | mch_remove(tempname); |
Bram Moolenaar | 78a1531 | 2009-05-15 19:33:18 +0000 | [diff] [blame] | 6525 | if (i != (int)len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6526 | { |
| 6527 | /* unexpected read error */ |
| 6528 | EMSG2(_(e_notread), tempname); |
| 6529 | vim_free(tempname); |
| 6530 | vim_free(buffer); |
| 6531 | return FAIL; |
| 6532 | } |
| 6533 | vim_free(tempname); |
| 6534 | |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6535 | # if defined(__CYGWIN__) || defined(__CYGWIN32__) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6536 | /* Translate <CR><NL> into <NL>. Caution, buffer may contain NUL. */ |
| 6537 | p = buffer; |
Bram Moolenaar | fe17e76 | 2013-06-29 14:17:02 +0200 | [diff] [blame] | 6538 | for (i = 0; i < (int)len; ++i) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6539 | if (!(buffer[i] == CAR && buffer[i + 1] == NL)) |
| 6540 | *p++ = buffer[i]; |
| 6541 | len = p - buffer; |
| 6542 | # endif |
| 6543 | |
| 6544 | |
| 6545 | /* file names are separated with Space */ |
| 6546 | if (shell_style == STYLE_ECHO) |
| 6547 | { |
| 6548 | buffer[len] = '\n'; /* make sure the buffer ends in NL */ |
| 6549 | p = buffer; |
| 6550 | for (i = 0; *p != '\n'; ++i) /* count number of entries */ |
| 6551 | { |
| 6552 | while (*p != ' ' && *p != '\n') |
| 6553 | ++p; |
| 6554 | p = skipwhite(p); /* skip to next entry */ |
| 6555 | } |
| 6556 | } |
| 6557 | /* file names are separated with NL */ |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6558 | else if (shell_style == STYLE_BT || shell_style == STYLE_VIMGLOB) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6559 | { |
| 6560 | buffer[len] = NUL; /* make sure the buffer ends in NUL */ |
| 6561 | p = buffer; |
| 6562 | for (i = 0; *p != NUL; ++i) /* count number of entries */ |
| 6563 | { |
| 6564 | while (*p != '\n' && *p != NUL) |
| 6565 | ++p; |
| 6566 | if (*p != NUL) |
| 6567 | ++p; |
| 6568 | p = skipwhite(p); /* skip leading white space */ |
| 6569 | } |
| 6570 | } |
| 6571 | /* file names are separated with NUL */ |
| 6572 | else |
| 6573 | { |
| 6574 | /* |
| 6575 | * Some versions of zsh use spaces instead of NULs to separate |
| 6576 | * results. Only do this when there is no NUL before the end of the |
| 6577 | * buffer, otherwise we would never be able to use file names with |
| 6578 | * embedded spaces when zsh does use NULs. |
| 6579 | * When we found a NUL once, we know zsh is OK, set did_find_nul and |
| 6580 | * don't check for spaces again. |
| 6581 | */ |
| 6582 | check_spaces = FALSE; |
| 6583 | if (shell_style == STYLE_PRINT && !did_find_nul) |
| 6584 | { |
| 6585 | /* If there is a NUL, set did_find_nul, else set check_spaces */ |
Bram Moolenaar | ef9d6aa | 2011-04-11 16:56:35 +0200 | [diff] [blame] | 6586 | buffer[len] = NUL; |
Bram Moolenaar | b011af9 | 2013-12-11 13:21:51 +0100 | [diff] [blame] | 6587 | if (len && (int)STRLEN(buffer) < (int)len) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6588 | did_find_nul = TRUE; |
| 6589 | else |
| 6590 | check_spaces = TRUE; |
| 6591 | } |
| 6592 | |
| 6593 | /* |
| 6594 | * Make sure the buffer ends with a NUL. For STYLE_PRINT there |
| 6595 | * already is one, for STYLE_GLOB it needs to be added. |
| 6596 | */ |
| 6597 | if (len && buffer[len - 1] == NUL) |
| 6598 | --len; |
| 6599 | else |
| 6600 | buffer[len] = NUL; |
| 6601 | i = 0; |
| 6602 | for (p = buffer; p < buffer + len; ++p) |
| 6603 | if (*p == NUL || (*p == ' ' && check_spaces)) /* count entry */ |
| 6604 | { |
| 6605 | ++i; |
| 6606 | *p = NUL; |
| 6607 | } |
| 6608 | if (len) |
| 6609 | ++i; /* count last entry */ |
| 6610 | } |
| 6611 | if (i == 0) |
| 6612 | { |
| 6613 | /* |
| 6614 | * Can happen when using /bin/sh and typing ":e $NO_SUCH_VAR^I". |
| 6615 | * /bin/sh will happily expand it to nothing rather than returning an |
| 6616 | * error; and hey, it's good to check anyway -- webb. |
| 6617 | */ |
| 6618 | vim_free(buffer); |
| 6619 | goto notfound; |
| 6620 | } |
| 6621 | *num_file = i; |
| 6622 | *file = (char_u **)alloc(sizeof(char_u *) * i); |
| 6623 | if (*file == NULL) |
| 6624 | { |
| 6625 | /* out of memory */ |
| 6626 | vim_free(buffer); |
| 6627 | return FAIL; |
| 6628 | } |
| 6629 | |
| 6630 | /* |
| 6631 | * Isolate the individual file names. |
| 6632 | */ |
| 6633 | p = buffer; |
| 6634 | for (i = 0; i < *num_file; ++i) |
| 6635 | { |
| 6636 | (*file)[i] = p; |
| 6637 | /* Space or NL separates */ |
Bram Moolenaar | c724791 | 2008-01-13 12:54:11 +0000 | [diff] [blame] | 6638 | if (shell_style == STYLE_ECHO || shell_style == STYLE_BT |
| 6639 | || shell_style == STYLE_VIMGLOB) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6640 | { |
Bram Moolenaar | 49315f6 | 2006-02-04 00:54:59 +0000 | [diff] [blame] | 6641 | while (!(shell_style == STYLE_ECHO && *p == ' ') |
| 6642 | && *p != '\n' && *p != NUL) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6643 | ++p; |
| 6644 | if (p == buffer + len) /* last entry */ |
| 6645 | *p = NUL; |
| 6646 | else |
| 6647 | { |
| 6648 | *p++ = NUL; |
| 6649 | p = skipwhite(p); /* skip to next entry */ |
| 6650 | } |
| 6651 | } |
| 6652 | else /* NUL separates */ |
| 6653 | { |
| 6654 | while (*p && p < buffer + len) /* skip entry */ |
| 6655 | ++p; |
| 6656 | ++p; /* skip NUL */ |
| 6657 | } |
| 6658 | } |
| 6659 | |
| 6660 | /* |
| 6661 | * Move the file names to allocated memory. |
| 6662 | */ |
| 6663 | for (j = 0, i = 0; i < *num_file; ++i) |
| 6664 | { |
| 6665 | /* Require the files to exist. Helps when using /bin/sh */ |
| 6666 | if (!(flags & EW_NOTFOUND) && mch_getperm((*file)[i]) < 0) |
| 6667 | continue; |
| 6668 | |
| 6669 | /* check if this entry should be included */ |
| 6670 | dir = (mch_isdir((*file)[i])); |
| 6671 | if ((dir && !(flags & EW_DIR)) || (!dir && !(flags & EW_FILE))) |
| 6672 | continue; |
| 6673 | |
Bram Moolenaar | a203182 | 2006-03-07 22:29:51 +0000 | [diff] [blame] | 6674 | /* Skip files that are not executable if we check for that. */ |
Bram Moolenaar | b597114 | 2015-03-21 17:32:19 +0100 | [diff] [blame] | 6675 | if (!dir && (flags & EW_EXEC) |
| 6676 | && !mch_can_exe((*file)[i], NULL, !(flags & EW_SHELLCMD))) |
Bram Moolenaar | a203182 | 2006-03-07 22:29:51 +0000 | [diff] [blame] | 6677 | continue; |
| 6678 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6679 | p = alloc((unsigned)(STRLEN((*file)[i]) + 1 + dir)); |
| 6680 | if (p) |
| 6681 | { |
| 6682 | STRCPY(p, (*file)[i]); |
| 6683 | if (dir) |
Bram Moolenaar | b238909 | 2008-01-03 17:56:04 +0000 | [diff] [blame] | 6684 | add_pathsep(p); /* add '/' to a directory name */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6685 | (*file)[j++] = p; |
| 6686 | } |
| 6687 | } |
| 6688 | vim_free(buffer); |
| 6689 | *num_file = j; |
| 6690 | |
| 6691 | if (*num_file == 0) /* rejected all entries */ |
| 6692 | { |
| 6693 | vim_free(*file); |
| 6694 | *file = NULL; |
| 6695 | goto notfound; |
| 6696 | } |
| 6697 | |
| 6698 | return OK; |
| 6699 | |
| 6700 | notfound: |
| 6701 | if (flags & EW_NOTFOUND) |
| 6702 | return save_patterns(num_pat, pat, num_file, file); |
| 6703 | return FAIL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6704 | } |
| 6705 | |
| 6706 | #endif /* VMS */ |
| 6707 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6708 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6709 | save_patterns( |
| 6710 | int num_pat, |
| 6711 | char_u **pat, |
| 6712 | int *num_file, |
| 6713 | char_u ***file) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6714 | { |
| 6715 | int i; |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 6716 | char_u *s; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6717 | |
| 6718 | *file = (char_u **)alloc(num_pat * sizeof(char_u *)); |
| 6719 | if (*file == NULL) |
| 6720 | return FAIL; |
| 6721 | for (i = 0; i < num_pat; i++) |
Bram Moolenaar | d8b0273 | 2005-01-14 21:48:43 +0000 | [diff] [blame] | 6722 | { |
| 6723 | s = vim_strsave(pat[i]); |
| 6724 | if (s != NULL) |
| 6725 | /* Be compatible with expand_filename(): halve the number of |
| 6726 | * backslashes. */ |
| 6727 | backslash_halve(s); |
| 6728 | (*file)[i] = s; |
| 6729 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6730 | *num_file = num_pat; |
| 6731 | return OK; |
| 6732 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6733 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6734 | /* |
| 6735 | * Return TRUE if the string "p" contains a wildcard that mch_expandpath() can |
| 6736 | * expand. |
| 6737 | */ |
| 6738 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6739 | mch_has_exp_wildcard(char_u *p) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6740 | { |
Bram Moolenaar | 91acfff | 2017-03-12 19:22:36 +0100 | [diff] [blame] | 6741 | for ( ; *p; MB_PTR_ADV(p)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6742 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6743 | if (*p == '\\' && p[1] != NUL) |
| 6744 | ++p; |
| 6745 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6746 | if (vim_strchr((char_u *) |
| 6747 | #ifdef VMS |
| 6748 | "*?%" |
| 6749 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6750 | "*?[{'" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6751 | #endif |
| 6752 | , *p) != NULL) |
| 6753 | return TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6754 | } |
| 6755 | return FALSE; |
| 6756 | } |
| 6757 | |
| 6758 | /* |
| 6759 | * Return TRUE if the string "p" contains a wildcard. |
| 6760 | * Don't recognize '~' at the end as a wildcard. |
| 6761 | */ |
| 6762 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6763 | mch_has_wildcard(char_u *p) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6764 | { |
Bram Moolenaar | 91acfff | 2017-03-12 19:22:36 +0100 | [diff] [blame] | 6765 | for ( ; *p; MB_PTR_ADV(p)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6766 | { |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6767 | if (*p == '\\' && p[1] != NUL) |
| 6768 | ++p; |
| 6769 | else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6770 | if (vim_strchr((char_u *) |
| 6771 | #ifdef VMS |
| 6772 | "*?%$" |
| 6773 | #else |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6774 | "*?[{`'$" |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6775 | #endif |
| 6776 | , *p) != NULL |
| 6777 | || (*p == '~' && p[1] != NUL)) |
| 6778 | return TRUE; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6779 | } |
| 6780 | return FALSE; |
| 6781 | } |
| 6782 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6783 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6784 | have_wildcard(int num, char_u **file) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6785 | { |
| 6786 | int i; |
| 6787 | |
| 6788 | for (i = 0; i < num; i++) |
| 6789 | if (mch_has_wildcard(file[i])) |
| 6790 | return 1; |
| 6791 | return 0; |
| 6792 | } |
| 6793 | |
| 6794 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6795 | have_dollars(int num, char_u **file) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6796 | { |
| 6797 | int i; |
| 6798 | |
| 6799 | for (i = 0; i < num; i++) |
| 6800 | if (vim_strchr(file[i], '$') != NULL) |
| 6801 | return TRUE; |
| 6802 | return FALSE; |
| 6803 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6804 | |
Bram Moolenaar | fdcc9af | 2016-02-29 12:52:39 +0100 | [diff] [blame] | 6805 | #if !defined(HAVE_RENAME) || defined(PROTO) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6806 | /* |
| 6807 | * Scaled-down version of rename(), which is missing in Xenix. |
| 6808 | * This version can only move regular files and will fail if the |
| 6809 | * destination exists. |
| 6810 | */ |
| 6811 | int |
Bram Moolenaar | fdcc9af | 2016-02-29 12:52:39 +0100 | [diff] [blame] | 6812 | mch_rename(const char *src, const char *dest) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6813 | { |
| 6814 | struct stat st; |
| 6815 | |
| 6816 | if (stat(dest, &st) >= 0) /* fail if destination exists */ |
| 6817 | return -1; |
| 6818 | if (link(src, dest) != 0) /* link file to new name */ |
| 6819 | return -1; |
| 6820 | if (mch_remove(src) == 0) /* delete link to old name */ |
| 6821 | return 0; |
| 6822 | return -1; |
| 6823 | } |
| 6824 | #endif /* !HAVE_RENAME */ |
| 6825 | |
| 6826 | #ifdef FEAT_MOUSE_GPM |
| 6827 | /* |
| 6828 | * Initializes connection with gpm (if it isn't already opened) |
| 6829 | * Return 1 if succeeded (or connection already opened), 0 if failed |
| 6830 | */ |
| 6831 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6832 | gpm_open(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6833 | { |
| 6834 | static Gpm_Connect gpm_connect; /* Must it be kept till closing ? */ |
| 6835 | |
| 6836 | if (!gpm_flag) |
| 6837 | { |
| 6838 | gpm_connect.eventMask = (GPM_UP | GPM_DRAG | GPM_DOWN); |
| 6839 | gpm_connect.defaultMask = ~GPM_HARD; |
| 6840 | /* Default handling for mouse move*/ |
| 6841 | gpm_connect.minMod = 0; /* Handle any modifier keys */ |
| 6842 | gpm_connect.maxMod = 0xffff; |
| 6843 | if (Gpm_Open(&gpm_connect, 0) > 0) |
| 6844 | { |
| 6845 | /* gpm library tries to handling TSTP causes |
| 6846 | * problems. Anyways, we close connection to Gpm whenever |
| 6847 | * we are going to suspend or starting an external process |
Bram Moolenaar | c2a27c3 | 2007-12-01 16:19:33 +0000 | [diff] [blame] | 6848 | * so we shouldn't have problem with this |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6849 | */ |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 6850 | # ifdef SIGTSTP |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6851 | signal(SIGTSTP, restricted ? SIG_IGN : SIG_DFL); |
Bram Moolenaar | 76243bd | 2009-03-02 01:47:02 +0000 | [diff] [blame] | 6852 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6853 | return 1; /* succeed */ |
| 6854 | } |
| 6855 | if (gpm_fd == -2) |
| 6856 | Gpm_Close(); /* We don't want to talk to xterm via gpm */ |
| 6857 | return 0; |
| 6858 | } |
| 6859 | return 1; /* already open */ |
| 6860 | } |
| 6861 | |
| 6862 | /* |
| 6863 | * Closes connection to gpm |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6864 | */ |
| 6865 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6866 | gpm_close(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6867 | { |
| 6868 | if (gpm_flag && gpm_fd >= 0) /* if Open */ |
| 6869 | Gpm_Close(); |
| 6870 | } |
| 6871 | |
| 6872 | /* Reads gpm event and adds special keys to input buf. Returns length of |
| 6873 | * generated key sequence. |
Bram Moolenaar | c7f0255 | 2014-04-01 21:00:59 +0200 | [diff] [blame] | 6874 | * This function is styled after gui_send_mouse_event(). |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6875 | */ |
| 6876 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6877 | mch_gpm_process(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 6878 | { |
| 6879 | int button; |
| 6880 | static Gpm_Event gpm_event; |
| 6881 | char_u string[6]; |
| 6882 | int_u vim_modifiers; |
| 6883 | int row,col; |
| 6884 | unsigned char buttons_mask; |
| 6885 | unsigned char gpm_modifiers; |
| 6886 | static unsigned char old_buttons = 0; |
| 6887 | |
| 6888 | Gpm_GetEvent(&gpm_event); |
| 6889 | |
| 6890 | #ifdef FEAT_GUI |
| 6891 | /* Don't put events in the input queue now. */ |
| 6892 | if (hold_gui_events) |
| 6893 | return 0; |
| 6894 | #endif |
| 6895 | |
| 6896 | row = gpm_event.y - 1; |
| 6897 | col = gpm_event.x - 1; |
| 6898 | |
| 6899 | string[0] = ESC; /* Our termcode */ |
| 6900 | string[1] = 'M'; |
| 6901 | string[2] = 'G'; |
| 6902 | switch (GPM_BARE_EVENTS(gpm_event.type)) |
| 6903 | { |
| 6904 | case GPM_DRAG: |
| 6905 | string[3] = MOUSE_DRAG; |
| 6906 | break; |
| 6907 | case GPM_DOWN: |
| 6908 | buttons_mask = gpm_event.buttons & ~old_buttons; |
| 6909 | old_buttons = gpm_event.buttons; |
| 6910 | switch (buttons_mask) |
| 6911 | { |
| 6912 | case GPM_B_LEFT: |
| 6913 | button = MOUSE_LEFT; |
| 6914 | break; |
| 6915 | case GPM_B_MIDDLE: |
| 6916 | button = MOUSE_MIDDLE; |
| 6917 | break; |
| 6918 | case GPM_B_RIGHT: |
| 6919 | button = MOUSE_RIGHT; |
| 6920 | break; |
| 6921 | default: |
| 6922 | return 0; |
| 6923 | /*Don't know what to do. Can more than one button be |
| 6924 | * reported in one event? */ |
| 6925 | } |
| 6926 | string[3] = (char_u)(button | 0x20); |
| 6927 | SET_NUM_MOUSE_CLICKS(string[3], gpm_event.clicks + 1); |
| 6928 | break; |
| 6929 | case GPM_UP: |
| 6930 | string[3] = MOUSE_RELEASE; |
| 6931 | old_buttons &= ~gpm_event.buttons; |
| 6932 | break; |
| 6933 | default: |
| 6934 | return 0; |
| 6935 | } |
| 6936 | /*This code is based on gui_x11_mouse_cb in gui_x11.c */ |
| 6937 | gpm_modifiers = gpm_event.modifiers; |
| 6938 | vim_modifiers = 0x0; |
| 6939 | /* I ignore capslock stats. Aren't we all just hate capslock mixing with |
| 6940 | * Vim commands ? Besides, gpm_event.modifiers is unsigned char, and |
| 6941 | * K_CAPSSHIFT is defined 8, so it probably isn't even reported |
| 6942 | */ |
| 6943 | if (gpm_modifiers & ((1 << KG_SHIFT) | (1 << KG_SHIFTR) | (1 << KG_SHIFTL))) |
| 6944 | vim_modifiers |= MOUSE_SHIFT; |
| 6945 | |
| 6946 | if (gpm_modifiers & ((1 << KG_CTRL) | (1 << KG_CTRLR) | (1 << KG_CTRLL))) |
| 6947 | vim_modifiers |= MOUSE_CTRL; |
| 6948 | if (gpm_modifiers & ((1 << KG_ALT) | (1 << KG_ALTGR))) |
| 6949 | vim_modifiers |= MOUSE_ALT; |
| 6950 | string[3] |= vim_modifiers; |
| 6951 | string[4] = (char_u)(col + ' ' + 1); |
| 6952 | string[5] = (char_u)(row + ' ' + 1); |
| 6953 | add_to_input_buf(string, 6); |
| 6954 | return 6; |
| 6955 | } |
| 6956 | #endif /* FEAT_MOUSE_GPM */ |
| 6957 | |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 6958 | #ifdef FEAT_SYSMOUSE |
| 6959 | /* |
| 6960 | * Initialize connection with sysmouse. |
| 6961 | * Let virtual console inform us with SIGUSR2 for pending sysmouse |
| 6962 | * output, any sysmouse output than will be processed via sig_sysmouse(). |
| 6963 | * Return OK if succeeded, FAIL if failed. |
| 6964 | */ |
| 6965 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6966 | sysmouse_open(void) |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 6967 | { |
| 6968 | struct mouse_info mouse; |
| 6969 | |
| 6970 | mouse.operation = MOUSE_MODE; |
| 6971 | mouse.u.mode.mode = 0; |
| 6972 | mouse.u.mode.signal = SIGUSR2; |
| 6973 | if (ioctl(1, CONS_MOUSECTL, &mouse) != -1) |
| 6974 | { |
| 6975 | signal(SIGUSR2, (RETSIGTYPE (*)())sig_sysmouse); |
| 6976 | mouse.operation = MOUSE_SHOW; |
| 6977 | ioctl(1, CONS_MOUSECTL, &mouse); |
| 6978 | return OK; |
| 6979 | } |
| 6980 | return FAIL; |
| 6981 | } |
| 6982 | |
| 6983 | /* |
| 6984 | * Stop processing SIGUSR2 signals, and also make sure that |
| 6985 | * virtual console do not send us any sysmouse related signal. |
| 6986 | */ |
| 6987 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 6988 | sysmouse_close(void) |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 6989 | { |
| 6990 | struct mouse_info mouse; |
| 6991 | |
| 6992 | signal(SIGUSR2, restricted ? SIG_IGN : SIG_DFL); |
| 6993 | mouse.operation = MOUSE_MODE; |
| 6994 | mouse.u.mode.mode = 0; |
| 6995 | mouse.u.mode.signal = 0; |
| 6996 | ioctl(1, CONS_MOUSECTL, &mouse); |
| 6997 | } |
| 6998 | |
| 6999 | /* |
| 7000 | * Gets info from sysmouse and adds special keys to input buf. |
| 7001 | */ |
Bram Moolenaar | 3577c6f | 2008-06-24 21:16:56 +0000 | [diff] [blame] | 7002 | static RETSIGTYPE |
| 7003 | sig_sysmouse SIGDEFARG(sigarg) |
| 7004 | { |
| 7005 | struct mouse_info mouse; |
| 7006 | struct video_info video; |
| 7007 | char_u string[6]; |
| 7008 | int row, col; |
| 7009 | int button; |
| 7010 | int buttons; |
| 7011 | static int oldbuttons = 0; |
| 7012 | |
| 7013 | #ifdef FEAT_GUI |
| 7014 | /* Don't put events in the input queue now. */ |
| 7015 | if (hold_gui_events) |
| 7016 | return; |
| 7017 | #endif |
| 7018 | |
| 7019 | mouse.operation = MOUSE_GETINFO; |
| 7020 | if (ioctl(1, FBIO_GETMODE, &video.vi_mode) != -1 |
| 7021 | && ioctl(1, FBIO_MODEINFO, &video) != -1 |
| 7022 | && ioctl(1, CONS_MOUSECTL, &mouse) != -1 |
| 7023 | && video.vi_cheight > 0 && video.vi_cwidth > 0) |
| 7024 | { |
| 7025 | row = mouse.u.data.y / video.vi_cheight; |
| 7026 | col = mouse.u.data.x / video.vi_cwidth; |
| 7027 | buttons = mouse.u.data.buttons; |
| 7028 | string[0] = ESC; /* Our termcode */ |
| 7029 | string[1] = 'M'; |
| 7030 | string[2] = 'S'; |
| 7031 | if (oldbuttons == buttons && buttons != 0) |
| 7032 | { |
| 7033 | button = MOUSE_DRAG; |
| 7034 | } |
| 7035 | else |
| 7036 | { |
| 7037 | switch (buttons) |
| 7038 | { |
| 7039 | case 0: |
| 7040 | button = MOUSE_RELEASE; |
| 7041 | break; |
| 7042 | case 1: |
| 7043 | button = MOUSE_LEFT; |
| 7044 | break; |
| 7045 | case 2: |
| 7046 | button = MOUSE_MIDDLE; |
| 7047 | break; |
| 7048 | case 4: |
| 7049 | button = MOUSE_RIGHT; |
| 7050 | break; |
| 7051 | default: |
| 7052 | return; |
| 7053 | } |
| 7054 | oldbuttons = buttons; |
| 7055 | } |
| 7056 | string[3] = (char_u)(button); |
| 7057 | string[4] = (char_u)(col + ' ' + 1); |
| 7058 | string[5] = (char_u)(row + ' ' + 1); |
| 7059 | add_to_input_buf(string, 6); |
| 7060 | } |
| 7061 | return; |
| 7062 | } |
| 7063 | #endif /* FEAT_SYSMOUSE */ |
| 7064 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7065 | #if defined(FEAT_LIBCALL) || defined(PROTO) |
Bram Moolenaar | d99df42 | 2016-01-29 23:20:40 +0100 | [diff] [blame] | 7066 | typedef char_u * (*STRPROCSTR)(char_u *); |
| 7067 | typedef char_u * (*INTPROCSTR)(int); |
| 7068 | typedef int (*STRPROCINT)(char_u *); |
| 7069 | typedef int (*INTPROCINT)(int); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7070 | |
| 7071 | /* |
| 7072 | * Call a DLL routine which takes either a string or int param |
| 7073 | * and returns an allocated string. |
| 7074 | */ |
| 7075 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7076 | mch_libcall( |
| 7077 | char_u *libname, |
| 7078 | char_u *funcname, |
| 7079 | char_u *argstring, /* NULL when using a argint */ |
| 7080 | int argint, |
| 7081 | char_u **string_result,/* NULL when using number_result */ |
| 7082 | int *number_result) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7083 | { |
| 7084 | # if defined(USE_DLOPEN) |
| 7085 | void *hinstLib; |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 7086 | char *dlerr = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7087 | # else |
| 7088 | shl_t hinstLib; |
| 7089 | # endif |
| 7090 | STRPROCSTR ProcAdd; |
| 7091 | INTPROCSTR ProcAddI; |
| 7092 | char_u *retval_str = NULL; |
| 7093 | int retval_int = 0; |
| 7094 | int success = FALSE; |
| 7095 | |
Bram Moolenaar | b39ef12 | 2006-06-22 16:19:31 +0000 | [diff] [blame] | 7096 | /* |
| 7097 | * Get a handle to the DLL module. |
| 7098 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7099 | # if defined(USE_DLOPEN) |
Bram Moolenaar | b39ef12 | 2006-06-22 16:19:31 +0000 | [diff] [blame] | 7100 | /* First clear any error, it's not cleared by the dlopen() call. */ |
| 7101 | (void)dlerror(); |
| 7102 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7103 | hinstLib = dlopen((char *)libname, RTLD_LAZY |
| 7104 | # ifdef RTLD_LOCAL |
| 7105 | | RTLD_LOCAL |
| 7106 | # endif |
| 7107 | ); |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 7108 | if (hinstLib == NULL) |
| 7109 | { |
| 7110 | /* "dlerr" must be used before dlclose() */ |
| 7111 | dlerr = (char *)dlerror(); |
| 7112 | if (dlerr != NULL) |
| 7113 | EMSG2(_("dlerror = \"%s\""), dlerr); |
| 7114 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7115 | # else |
| 7116 | hinstLib = shl_load((const char*)libname, BIND_IMMEDIATE|BIND_VERBOSE, 0L); |
| 7117 | # endif |
| 7118 | |
| 7119 | /* If the handle is valid, try to get the function address. */ |
| 7120 | if (hinstLib != NULL) |
| 7121 | { |
| 7122 | # ifdef HAVE_SETJMP_H |
| 7123 | /* |
| 7124 | * Catch a crash when calling the library function. For example when |
| 7125 | * using a number where a string pointer is expected. |
| 7126 | */ |
| 7127 | mch_startjmp(); |
| 7128 | if (SETJMP(lc_jump_env) != 0) |
| 7129 | { |
| 7130 | success = FALSE; |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 7131 | # if defined(USE_DLOPEN) |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 7132 | dlerr = NULL; |
Bram Moolenaar | d68071d | 2006-05-02 22:08:30 +0000 | [diff] [blame] | 7133 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7134 | mch_didjmp(); |
| 7135 | } |
| 7136 | else |
| 7137 | # endif |
| 7138 | { |
| 7139 | retval_str = NULL; |
| 7140 | retval_int = 0; |
| 7141 | |
| 7142 | if (argstring != NULL) |
| 7143 | { |
| 7144 | # if defined(USE_DLOPEN) |
Bram Moolenaar | 6d721c7 | 2017-01-17 16:56:28 +0100 | [diff] [blame] | 7145 | *(void **)(&ProcAdd) = dlsym(hinstLib, (const char *)funcname); |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 7146 | dlerr = (char *)dlerror(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7147 | # else |
| 7148 | if (shl_findsym(&hinstLib, (const char *)funcname, |
| 7149 | TYPE_PROCEDURE, (void *)&ProcAdd) < 0) |
| 7150 | ProcAdd = NULL; |
| 7151 | # endif |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 7152 | if ((success = (ProcAdd != NULL |
| 7153 | # if defined(USE_DLOPEN) |
| 7154 | && dlerr == NULL |
| 7155 | # endif |
| 7156 | ))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7157 | { |
| 7158 | if (string_result == NULL) |
| 7159 | retval_int = ((STRPROCINT)ProcAdd)(argstring); |
| 7160 | else |
| 7161 | retval_str = (ProcAdd)(argstring); |
| 7162 | } |
| 7163 | } |
| 7164 | else |
| 7165 | { |
| 7166 | # if defined(USE_DLOPEN) |
Bram Moolenaar | 6d721c7 | 2017-01-17 16:56:28 +0100 | [diff] [blame] | 7167 | *(void **)(&ProcAddI) = dlsym(hinstLib, (const char *)funcname); |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 7168 | dlerr = (char *)dlerror(); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7169 | # else |
| 7170 | if (shl_findsym(&hinstLib, (const char *)funcname, |
| 7171 | TYPE_PROCEDURE, (void *)&ProcAddI) < 0) |
| 7172 | ProcAddI = NULL; |
| 7173 | # endif |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 7174 | if ((success = (ProcAddI != NULL |
| 7175 | # if defined(USE_DLOPEN) |
| 7176 | && dlerr == NULL |
| 7177 | # endif |
| 7178 | ))) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7179 | { |
| 7180 | if (string_result == NULL) |
| 7181 | retval_int = ((INTPROCINT)ProcAddI)(argint); |
| 7182 | else |
| 7183 | retval_str = (ProcAddI)(argint); |
| 7184 | } |
| 7185 | } |
| 7186 | |
| 7187 | /* Save the string before we free the library. */ |
| 7188 | /* Assume that a "1" or "-1" result is an illegal pointer. */ |
| 7189 | if (string_result == NULL) |
| 7190 | *number_result = retval_int; |
| 7191 | else if (retval_str != NULL |
| 7192 | && retval_str != (char_u *)1 |
| 7193 | && retval_str != (char_u *)-1) |
| 7194 | *string_result = vim_strsave(retval_str); |
| 7195 | } |
| 7196 | |
| 7197 | # ifdef HAVE_SETJMP_H |
| 7198 | mch_endjmp(); |
| 7199 | # ifdef SIGHASARG |
| 7200 | if (lc_signal != 0) |
| 7201 | { |
| 7202 | int i; |
| 7203 | |
| 7204 | /* try to find the name of this signal */ |
| 7205 | for (i = 0; signal_info[i].sig != -1; i++) |
| 7206 | if (lc_signal == signal_info[i].sig) |
| 7207 | break; |
| 7208 | EMSG2("E368: got SIG%s in libcall()", signal_info[i].name); |
| 7209 | } |
| 7210 | # endif |
| 7211 | # endif |
| 7212 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7213 | # if defined(USE_DLOPEN) |
Bram Moolenaar | cfbc5ee | 2004-07-02 15:38:35 +0000 | [diff] [blame] | 7214 | /* "dlerr" must be used before dlclose() */ |
| 7215 | if (dlerr != NULL) |
| 7216 | EMSG2(_("dlerror = \"%s\""), dlerr); |
| 7217 | |
| 7218 | /* Free the DLL module. */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7219 | (void)dlclose(hinstLib); |
| 7220 | # else |
| 7221 | (void)shl_unload(hinstLib); |
| 7222 | # endif |
| 7223 | } |
| 7224 | |
| 7225 | if (!success) |
| 7226 | { |
| 7227 | EMSG2(_(e_libcall), funcname); |
| 7228 | return FAIL; |
| 7229 | } |
| 7230 | |
| 7231 | return OK; |
| 7232 | } |
| 7233 | #endif |
| 7234 | |
| 7235 | #if (defined(FEAT_X11) && defined(FEAT_XCLIPBOARD)) || defined(PROTO) |
| 7236 | static int xterm_trace = -1; /* default: disabled */ |
| 7237 | static int xterm_button; |
| 7238 | |
| 7239 | /* |
| 7240 | * Setup a dummy window for X selections in a terminal. |
| 7241 | */ |
| 7242 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7243 | setup_term_clip(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7244 | { |
| 7245 | int z = 0; |
| 7246 | char *strp = ""; |
| 7247 | Widget AppShell; |
| 7248 | |
| 7249 | if (!x_connect_to_server()) |
| 7250 | return; |
| 7251 | |
| 7252 | open_app_context(); |
| 7253 | if (app_context != NULL && xterm_Shell == (Widget)0) |
| 7254 | { |
| 7255 | int (*oldhandler)(); |
| 7256 | #if defined(HAVE_SETJMP_H) |
| 7257 | int (*oldIOhandler)(); |
| 7258 | #endif |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 7259 | # ifdef ELAPSED_FUNC |
| 7260 | ELAPSED_TYPE start_tv; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7261 | |
| 7262 | if (p_verbose > 0) |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 7263 | ELAPSED_INIT(start_tv); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7264 | # endif |
| 7265 | |
| 7266 | /* Ignore X errors while opening the display */ |
| 7267 | oldhandler = XSetErrorHandler(x_error_check); |
| 7268 | |
| 7269 | #if defined(HAVE_SETJMP_H) |
| 7270 | /* Ignore X IO errors while opening the display */ |
| 7271 | oldIOhandler = XSetIOErrorHandler(x_IOerror_check); |
| 7272 | mch_startjmp(); |
| 7273 | if (SETJMP(lc_jump_env) != 0) |
| 7274 | { |
| 7275 | mch_didjmp(); |
| 7276 | xterm_dpy = NULL; |
| 7277 | } |
| 7278 | else |
| 7279 | #endif |
| 7280 | { |
| 7281 | xterm_dpy = XtOpenDisplay(app_context, xterm_display, |
| 7282 | "vim_xterm", "Vim_xterm", NULL, 0, &z, &strp); |
| 7283 | #if defined(HAVE_SETJMP_H) |
| 7284 | mch_endjmp(); |
| 7285 | #endif |
| 7286 | } |
| 7287 | |
| 7288 | #if defined(HAVE_SETJMP_H) |
| 7289 | /* Now handle X IO errors normally. */ |
| 7290 | (void)XSetIOErrorHandler(oldIOhandler); |
| 7291 | #endif |
| 7292 | /* Now handle X errors normally. */ |
| 7293 | (void)XSetErrorHandler(oldhandler); |
| 7294 | |
| 7295 | if (xterm_dpy == NULL) |
| 7296 | { |
| 7297 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 7298 | verb_msg((char_u *)_("Opening the X display failed")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7299 | return; |
| 7300 | } |
| 7301 | |
| 7302 | /* Catch terminating error of the X server connection. */ |
| 7303 | (void)XSetIOErrorHandler(x_IOerror_handler); |
| 7304 | |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 7305 | # ifdef ELAPSED_FUNC |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7306 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 7307 | { |
| 7308 | verbose_enter(); |
Bram Moolenaar | 833eb1d | 2016-11-24 17:22:50 +0100 | [diff] [blame] | 7309 | xopen_message(ELAPSED_FUNC(start_tv)); |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 7310 | verbose_leave(); |
| 7311 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7312 | # endif |
| 7313 | |
| 7314 | /* Create a Shell to make converters work. */ |
| 7315 | AppShell = XtVaAppCreateShell("vim_xterm", "Vim_xterm", |
| 7316 | applicationShellWidgetClass, xterm_dpy, |
| 7317 | NULL); |
| 7318 | if (AppShell == (Widget)0) |
| 7319 | return; |
| 7320 | xterm_Shell = XtVaCreatePopupShell("VIM", |
| 7321 | topLevelShellWidgetClass, AppShell, |
| 7322 | XtNmappedWhenManaged, 0, |
| 7323 | XtNwidth, 1, |
| 7324 | XtNheight, 1, |
| 7325 | NULL); |
| 7326 | if (xterm_Shell == (Widget)0) |
| 7327 | return; |
| 7328 | |
| 7329 | x11_setup_atoms(xterm_dpy); |
Bram Moolenaar | 7cfea75 | 2010-06-22 06:07:12 +0200 | [diff] [blame] | 7330 | x11_setup_selection(xterm_Shell); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7331 | if (x11_display == NULL) |
| 7332 | x11_display = xterm_dpy; |
| 7333 | |
| 7334 | XtRealizeWidget(xterm_Shell); |
| 7335 | XSync(xterm_dpy, False); |
| 7336 | xterm_update(); |
| 7337 | } |
| 7338 | if (xterm_Shell != (Widget)0) |
| 7339 | { |
| 7340 | clip_init(TRUE); |
| 7341 | if (x11_window == 0 && (strp = getenv("WINDOWID")) != NULL) |
| 7342 | x11_window = (Window)atol(strp); |
| 7343 | /* Check if $WINDOWID is valid. */ |
| 7344 | if (test_x11_window(xterm_dpy) == FAIL) |
| 7345 | x11_window = 0; |
| 7346 | if (x11_window != 0) |
| 7347 | xterm_trace = 0; |
| 7348 | } |
| 7349 | } |
| 7350 | |
| 7351 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7352 | start_xterm_trace(int button) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7353 | { |
| 7354 | if (x11_window == 0 || xterm_trace < 0 || xterm_Shell == (Widget)0) |
| 7355 | return; |
| 7356 | xterm_trace = 1; |
| 7357 | xterm_button = button; |
| 7358 | do_xterm_trace(); |
| 7359 | } |
| 7360 | |
| 7361 | |
| 7362 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7363 | stop_xterm_trace(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7364 | { |
| 7365 | if (xterm_trace < 0) |
| 7366 | return; |
| 7367 | xterm_trace = 0; |
| 7368 | } |
| 7369 | |
| 7370 | /* |
| 7371 | * Query the xterm pointer and generate mouse termcodes if necessary |
| 7372 | * return TRUE if dragging is active, else FALSE |
| 7373 | */ |
| 7374 | static int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7375 | do_xterm_trace(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7376 | { |
| 7377 | Window root, child; |
| 7378 | int root_x, root_y; |
| 7379 | int win_x, win_y; |
| 7380 | int row, col; |
| 7381 | int_u mask_return; |
| 7382 | char_u buf[50]; |
| 7383 | char_u *strp; |
| 7384 | long got_hints; |
| 7385 | static char_u *mouse_code; |
| 7386 | static char_u mouse_name[2] = {KS_MOUSE, KE_FILLER}; |
| 7387 | static int prev_row = 0, prev_col = 0; |
| 7388 | static XSizeHints xterm_hints; |
| 7389 | |
| 7390 | if (xterm_trace <= 0) |
| 7391 | return FALSE; |
| 7392 | |
| 7393 | if (xterm_trace == 1) |
| 7394 | { |
| 7395 | /* Get the hints just before tracking starts. The font size might |
Bram Moolenaar | a6c2c91 | 2008-01-13 15:31:00 +0000 | [diff] [blame] | 7396 | * have changed recently. */ |
| 7397 | if (!XGetWMNormalHints(xterm_dpy, x11_window, &xterm_hints, &got_hints) |
| 7398 | || !(got_hints & PResizeInc) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7399 | || xterm_hints.width_inc <= 1 |
| 7400 | || xterm_hints.height_inc <= 1) |
| 7401 | { |
| 7402 | xterm_trace = -1; /* Not enough data -- disable tracing */ |
| 7403 | return FALSE; |
| 7404 | } |
| 7405 | |
| 7406 | /* Rely on the same mouse code for the duration of this */ |
| 7407 | mouse_code = find_termcode(mouse_name); |
| 7408 | prev_row = mouse_row; |
Bram Moolenaar | cde8854 | 2015-08-11 19:14:00 +0200 | [diff] [blame] | 7409 | prev_col = mouse_col; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7410 | xterm_trace = 2; |
| 7411 | |
| 7412 | /* Find the offset of the chars, there might be a scrollbar on the |
| 7413 | * left of the window and/or a menu on the top (eterm etc.) */ |
| 7414 | XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y, |
| 7415 | &win_x, &win_y, &mask_return); |
| 7416 | xterm_hints.y = win_y - (xterm_hints.height_inc * mouse_row) |
| 7417 | - (xterm_hints.height_inc / 2); |
| 7418 | if (xterm_hints.y <= xterm_hints.height_inc / 2) |
| 7419 | xterm_hints.y = 2; |
| 7420 | xterm_hints.x = win_x - (xterm_hints.width_inc * mouse_col) |
| 7421 | - (xterm_hints.width_inc / 2); |
| 7422 | if (xterm_hints.x <= xterm_hints.width_inc / 2) |
| 7423 | xterm_hints.x = 2; |
| 7424 | return TRUE; |
| 7425 | } |
Bram Moolenaar | ef9d6aa | 2011-04-11 16:56:35 +0200 | [diff] [blame] | 7426 | if (mouse_code == NULL || STRLEN(mouse_code) > 45) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7427 | { |
| 7428 | xterm_trace = 0; |
| 7429 | return FALSE; |
| 7430 | } |
| 7431 | |
| 7432 | XQueryPointer(xterm_dpy, x11_window, &root, &child, &root_x, &root_y, |
| 7433 | &win_x, &win_y, &mask_return); |
| 7434 | |
| 7435 | row = check_row((win_y - xterm_hints.y) / xterm_hints.height_inc); |
| 7436 | col = check_col((win_x - xterm_hints.x) / xterm_hints.width_inc); |
| 7437 | if (row == prev_row && col == prev_col) |
| 7438 | return TRUE; |
| 7439 | |
| 7440 | STRCPY(buf, mouse_code); |
| 7441 | strp = buf + STRLEN(buf); |
| 7442 | *strp++ = (xterm_button | MOUSE_DRAG) & ~0x20; |
| 7443 | *strp++ = (char_u)(col + ' ' + 1); |
| 7444 | *strp++ = (char_u)(row + ' ' + 1); |
| 7445 | *strp = 0; |
| 7446 | add_to_input_buf(buf, STRLEN(buf)); |
| 7447 | |
| 7448 | prev_row = row; |
| 7449 | prev_col = col; |
| 7450 | return TRUE; |
| 7451 | } |
| 7452 | |
| 7453 | # if defined(FEAT_GUI) || defined(PROTO) |
| 7454 | /* |
| 7455 | * Destroy the display, window and app_context. Required for GTK. |
| 7456 | */ |
| 7457 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7458 | clear_xterm_clip(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7459 | { |
| 7460 | if (xterm_Shell != (Widget)0) |
| 7461 | { |
| 7462 | XtDestroyWidget(xterm_Shell); |
| 7463 | xterm_Shell = (Widget)0; |
| 7464 | } |
| 7465 | if (xterm_dpy != NULL) |
| 7466 | { |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 7467 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7468 | /* Lesstif and Solaris crash here, lose some memory */ |
| 7469 | XtCloseDisplay(xterm_dpy); |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 7470 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7471 | if (x11_display == xterm_dpy) |
| 7472 | x11_display = NULL; |
| 7473 | xterm_dpy = NULL; |
| 7474 | } |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 7475 | # if 0 |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7476 | if (app_context != (XtAppContext)NULL) |
| 7477 | { |
| 7478 | /* Lesstif and Solaris crash here, lose some memory */ |
| 7479 | XtDestroyApplicationContext(app_context); |
| 7480 | app_context = (XtAppContext)NULL; |
| 7481 | } |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 7482 | # endif |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7483 | } |
| 7484 | # endif |
| 7485 | |
| 7486 | /* |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 7487 | * Catch up with GUI or X events. |
| 7488 | */ |
| 7489 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7490 | clip_update(void) |
Bram Moolenaar | 090cfc1 | 2013-03-19 12:35:42 +0100 | [diff] [blame] | 7491 | { |
| 7492 | # ifdef FEAT_GUI |
| 7493 | if (gui.in_use) |
| 7494 | gui_mch_update(); |
| 7495 | else |
| 7496 | # endif |
| 7497 | if (xterm_Shell != (Widget)0) |
| 7498 | xterm_update(); |
| 7499 | } |
| 7500 | |
| 7501 | /* |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7502 | * Catch up with any queued X events. This may put keyboard input into the |
| 7503 | * input buffer, call resize call-backs, trigger timers etc. If there is |
| 7504 | * nothing in the X event queue (& no timers pending), then we return |
| 7505 | * immediately. |
| 7506 | */ |
| 7507 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7508 | xterm_update(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7509 | { |
| 7510 | XEvent event; |
| 7511 | |
Bram Moolenaar | b1fc2bf | 2015-03-20 16:26:54 +0100 | [diff] [blame] | 7512 | for (;;) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7513 | { |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 7514 | XtInputMask mask = XtAppPending(app_context); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7515 | |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 7516 | if (mask == 0 || vim_is_input_buf_full()) |
Bram Moolenaar | b1fc2bf | 2015-03-20 16:26:54 +0100 | [diff] [blame] | 7517 | break; |
| 7518 | |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 7519 | if (mask & XtIMXEvent) |
Bram Moolenaar | b1fc2bf | 2015-03-20 16:26:54 +0100 | [diff] [blame] | 7520 | { |
| 7521 | /* There is an event to process. */ |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 7522 | XtAppNextEvent(app_context, &event); |
Bram Moolenaar | b1fc2bf | 2015-03-20 16:26:54 +0100 | [diff] [blame] | 7523 | #ifdef FEAT_CLIENTSERVER |
| 7524 | { |
| 7525 | XPropertyEvent *e = (XPropertyEvent *)&event; |
| 7526 | |
| 7527 | if (e->type == PropertyNotify && e->window == commWindow |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7528 | && e->atom == commProperty && e->state == PropertyNewValue) |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 7529 | serverEventProc(xterm_dpy, &event, 0); |
Bram Moolenaar | b1fc2bf | 2015-03-20 16:26:54 +0100 | [diff] [blame] | 7530 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7531 | #endif |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 7532 | XtDispatchEvent(&event); |
| 7533 | } |
Bram Moolenaar | b1fc2bf | 2015-03-20 16:26:54 +0100 | [diff] [blame] | 7534 | else |
| 7535 | { |
| 7536 | /* There is something else than an event to process. */ |
Bram Moolenaar | 93c88e0 | 2015-09-15 14:12:05 +0200 | [diff] [blame] | 7537 | XtAppProcessEvent(app_context, mask); |
| 7538 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7539 | } |
| 7540 | } |
| 7541 | |
| 7542 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7543 | clip_xterm_own_selection(VimClipboard *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7544 | { |
| 7545 | if (xterm_Shell != (Widget)0) |
| 7546 | return clip_x11_own_selection(xterm_Shell, cbd); |
| 7547 | return FAIL; |
| 7548 | } |
| 7549 | |
| 7550 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7551 | clip_xterm_lose_selection(VimClipboard *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7552 | { |
| 7553 | if (xterm_Shell != (Widget)0) |
| 7554 | clip_x11_lose_selection(xterm_Shell, cbd); |
| 7555 | } |
| 7556 | |
| 7557 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7558 | clip_xterm_request_selection(VimClipboard *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7559 | { |
| 7560 | if (xterm_Shell != (Widget)0) |
| 7561 | clip_x11_request_selection(xterm_Shell, xterm_dpy, cbd); |
| 7562 | } |
| 7563 | |
| 7564 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7565 | clip_xterm_set_selection(VimClipboard *cbd) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7566 | { |
| 7567 | clip_x11_set_selection(cbd); |
| 7568 | } |
| 7569 | #endif |
| 7570 | |
| 7571 | |
| 7572 | #if defined(USE_XSMP) || defined(PROTO) |
| 7573 | /* |
| 7574 | * Code for X Session Management Protocol. |
| 7575 | */ |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 7576 | static void xsmp_handle_save_yourself(SmcConn smc_conn, SmPointer client_data, int save_type, Bool shutdown, int interact_style, Bool fast); |
| 7577 | static void xsmp_die(SmcConn smc_conn, SmPointer client_data); |
| 7578 | static void xsmp_save_complete(SmcConn smc_conn, SmPointer client_data); |
| 7579 | static void xsmp_shutdown_cancelled(SmcConn smc_conn, SmPointer client_data); |
| 7580 | static void xsmp_ice_connection(IceConn iceConn, IcePointer clientData, Bool opening, IcePointer *watchData); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7581 | |
| 7582 | |
| 7583 | # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT) |
Bram Moolenaar | baaa7e9 | 2016-01-29 22:47:03 +0100 | [diff] [blame] | 7584 | static void xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7585 | |
| 7586 | /* |
| 7587 | * This is our chance to ask the user if they want to save, |
| 7588 | * or abort the logout |
| 7589 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7590 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7591 | xsmp_handle_interaction(SmcConn smc_conn, SmPointer client_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7592 | { |
| 7593 | cmdmod_T save_cmdmod; |
| 7594 | int cancel_shutdown = False; |
| 7595 | |
| 7596 | save_cmdmod = cmdmod; |
| 7597 | cmdmod.confirm = TRUE; |
Bram Moolenaar | 027387f | 2016-01-02 22:25:52 +0100 | [diff] [blame] | 7598 | if (check_changed_any(FALSE, FALSE)) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7599 | /* Mustn't logout */ |
| 7600 | cancel_shutdown = True; |
| 7601 | cmdmod = save_cmdmod; |
| 7602 | setcursor(); /* position cursor */ |
| 7603 | out_flush(); |
| 7604 | |
| 7605 | /* Done interaction */ |
| 7606 | SmcInteractDone(smc_conn, cancel_shutdown); |
| 7607 | |
| 7608 | /* Finish off |
| 7609 | * Only end save-yourself here if we're not cancelling shutdown; |
| 7610 | * we'll get a cancelled callback later in which we'll end it. |
| 7611 | * Hopefully get around glitchy SMs (like GNOME-1) |
| 7612 | */ |
| 7613 | if (!cancel_shutdown) |
| 7614 | { |
| 7615 | xsmp.save_yourself = False; |
| 7616 | SmcSaveYourselfDone(smc_conn, True); |
| 7617 | } |
| 7618 | } |
| 7619 | # endif |
| 7620 | |
| 7621 | /* |
| 7622 | * Callback that starts save-yourself. |
| 7623 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7624 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7625 | xsmp_handle_save_yourself( |
| 7626 | SmcConn smc_conn, |
| 7627 | SmPointer client_data UNUSED, |
| 7628 | int save_type UNUSED, |
| 7629 | Bool shutdown, |
| 7630 | int interact_style UNUSED, |
| 7631 | Bool fast UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7632 | { |
| 7633 | /* Handle already being in saveyourself */ |
| 7634 | if (xsmp.save_yourself) |
| 7635 | SmcSaveYourselfDone(smc_conn, True); |
| 7636 | xsmp.save_yourself = True; |
| 7637 | xsmp.shutdown = shutdown; |
| 7638 | |
| 7639 | /* First up, preserve all files */ |
| 7640 | out_flush(); |
| 7641 | ml_sync_all(FALSE, FALSE); /* preserve all swap files */ |
| 7642 | |
| 7643 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 7644 | verb_msg((char_u *)_("XSMP handling save-yourself request")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7645 | |
| 7646 | # if defined(FEAT_GUI) && defined(USE_XSMP_INTERACT) |
| 7647 | /* Now see if we can ask about unsaved files */ |
| 7648 | if (shutdown && !fast && gui.in_use) |
| 7649 | /* Need to interact with user, but need SM's permission */ |
| 7650 | SmcInteractRequest(smc_conn, SmDialogError, |
| 7651 | xsmp_handle_interaction, client_data); |
| 7652 | else |
| 7653 | # endif |
| 7654 | { |
| 7655 | /* Can stop the cycle here */ |
| 7656 | SmcSaveYourselfDone(smc_conn, True); |
| 7657 | xsmp.save_yourself = False; |
| 7658 | } |
| 7659 | } |
| 7660 | |
| 7661 | |
| 7662 | /* |
| 7663 | * Callback to warn us of imminent death. |
| 7664 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7665 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7666 | xsmp_die(SmcConn smc_conn UNUSED, SmPointer client_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7667 | { |
| 7668 | xsmp_close(); |
| 7669 | |
| 7670 | /* quit quickly leaving swapfiles for modified buffers behind */ |
| 7671 | getout_preserve_modified(0); |
| 7672 | } |
| 7673 | |
| 7674 | |
| 7675 | /* |
| 7676 | * Callback to tell us that save-yourself has completed. |
| 7677 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7678 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7679 | xsmp_save_complete( |
| 7680 | SmcConn smc_conn UNUSED, |
| 7681 | SmPointer client_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7682 | { |
| 7683 | xsmp.save_yourself = False; |
| 7684 | } |
| 7685 | |
| 7686 | |
| 7687 | /* |
| 7688 | * Callback to tell us that an instigated shutdown was cancelled |
| 7689 | * (maybe even by us) |
| 7690 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7691 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7692 | xsmp_shutdown_cancelled( |
| 7693 | SmcConn smc_conn, |
| 7694 | SmPointer client_data UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7695 | { |
| 7696 | if (xsmp.save_yourself) |
| 7697 | SmcSaveYourselfDone(smc_conn, True); |
| 7698 | xsmp.save_yourself = False; |
| 7699 | xsmp.shutdown = False; |
| 7700 | } |
| 7701 | |
| 7702 | |
| 7703 | /* |
| 7704 | * Callback to tell us that a new ICE connection has been established. |
| 7705 | */ |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7706 | static void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7707 | xsmp_ice_connection( |
| 7708 | IceConn iceConn, |
| 7709 | IcePointer clientData UNUSED, |
| 7710 | Bool opening, |
| 7711 | IcePointer *watchData UNUSED) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7712 | { |
| 7713 | /* Intercept creation of ICE connection fd */ |
| 7714 | if (opening) |
| 7715 | { |
| 7716 | xsmp_icefd = IceConnectionNumber(iceConn); |
| 7717 | IceRemoveConnectionWatch(xsmp_ice_connection, NULL); |
| 7718 | } |
| 7719 | } |
| 7720 | |
| 7721 | |
| 7722 | /* Handle any ICE processing that's required; return FAIL if SM lost */ |
| 7723 | int |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7724 | xsmp_handle_requests(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7725 | { |
| 7726 | Bool rep; |
| 7727 | |
| 7728 | if (IceProcessMessages(xsmp.iceconn, NULL, &rep) |
| 7729 | == IceProcessMessagesIOError) |
| 7730 | { |
| 7731 | /* Lost ICE */ |
| 7732 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 7733 | verb_msg((char_u *)_("XSMP lost ICE connection")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7734 | xsmp_close(); |
| 7735 | return FAIL; |
| 7736 | } |
| 7737 | else |
| 7738 | return OK; |
| 7739 | } |
| 7740 | |
| 7741 | static int dummy; |
| 7742 | |
| 7743 | /* Set up X Session Management Protocol */ |
| 7744 | void |
| 7745 | xsmp_init(void) |
| 7746 | { |
| 7747 | char errorstring[80]; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7748 | SmcCallbacks smcallbacks; |
| 7749 | #if 0 |
| 7750 | SmPropValue smname; |
| 7751 | SmProp smnameprop; |
| 7752 | SmProp *smprops[1]; |
| 7753 | #endif |
| 7754 | |
| 7755 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 7756 | verb_msg((char_u *)_("XSMP opening connection")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7757 | |
| 7758 | xsmp.save_yourself = xsmp.shutdown = False; |
| 7759 | |
| 7760 | /* Set up SM callbacks - must have all, even if they're not used */ |
| 7761 | smcallbacks.save_yourself.callback = xsmp_handle_save_yourself; |
| 7762 | smcallbacks.save_yourself.client_data = NULL; |
| 7763 | smcallbacks.die.callback = xsmp_die; |
| 7764 | smcallbacks.die.client_data = NULL; |
| 7765 | smcallbacks.save_complete.callback = xsmp_save_complete; |
| 7766 | smcallbacks.save_complete.client_data = NULL; |
| 7767 | smcallbacks.shutdown_cancelled.callback = xsmp_shutdown_cancelled; |
| 7768 | smcallbacks.shutdown_cancelled.client_data = NULL; |
| 7769 | |
| 7770 | /* Set up a watch on ICE connection creations. The "dummy" argument is |
| 7771 | * apparently required for FreeBSD (we get a BUS error when using NULL). */ |
| 7772 | if (IceAddConnectionWatch(xsmp_ice_connection, &dummy) == 0) |
| 7773 | { |
| 7774 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 7775 | verb_msg((char_u *)_("XSMP ICE connection watch failed")); |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7776 | return; |
| 7777 | } |
| 7778 | |
| 7779 | /* Create an SM connection */ |
| 7780 | xsmp.smcconn = SmcOpenConnection( |
| 7781 | NULL, |
| 7782 | NULL, |
| 7783 | SmProtoMajor, |
| 7784 | SmProtoMinor, |
| 7785 | SmcSaveYourselfProcMask | SmcDieProcMask |
| 7786 | | SmcSaveCompleteProcMask | SmcShutdownCancelledProcMask, |
| 7787 | &smcallbacks, |
| 7788 | NULL, |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 7789 | &xsmp.clientid, |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7790 | sizeof(errorstring), |
| 7791 | errorstring); |
| 7792 | if (xsmp.smcconn == NULL) |
| 7793 | { |
| 7794 | char errorreport[132]; |
Bram Moolenaar | 051b782 | 2005-05-19 21:00:46 +0000 | [diff] [blame] | 7795 | |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7796 | if (p_verbose > 0) |
Bram Moolenaar | a04f10b | 2005-05-31 22:09:46 +0000 | [diff] [blame] | 7797 | { |
| 7798 | vim_snprintf(errorreport, sizeof(errorreport), |
| 7799 | _("XSMP SmcOpenConnection failed: %s"), errorstring); |
| 7800 | verb_msg((char_u *)errorreport); |
| 7801 | } |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7802 | return; |
| 7803 | } |
| 7804 | xsmp.iceconn = SmcGetIceConnection(xsmp.smcconn); |
| 7805 | |
| 7806 | #if 0 |
| 7807 | /* ID ourselves */ |
| 7808 | smname.value = "vim"; |
| 7809 | smname.length = 3; |
| 7810 | smnameprop.name = "SmProgram"; |
| 7811 | smnameprop.type = "SmARRAY8"; |
| 7812 | smnameprop.num_vals = 1; |
| 7813 | smnameprop.vals = &smname; |
| 7814 | |
| 7815 | smprops[0] = &smnameprop; |
| 7816 | SmcSetProperties(xsmp.smcconn, 1, smprops); |
| 7817 | #endif |
| 7818 | } |
| 7819 | |
| 7820 | |
| 7821 | /* Shut down XSMP comms. */ |
| 7822 | void |
Bram Moolenaar | 0554097 | 2016-01-30 20:31:25 +0100 | [diff] [blame] | 7823 | xsmp_close(void) |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7824 | { |
| 7825 | if (xsmp_icefd != -1) |
| 7826 | { |
| 7827 | SmcCloseConnection(xsmp.smcconn, 0, NULL); |
Bram Moolenaar | 5a22181 | 2008-11-12 12:08:45 +0000 | [diff] [blame] | 7828 | if (xsmp.clientid != NULL) |
| 7829 | free(xsmp.clientid); |
Bram Moolenaar | e820801 | 2008-06-20 09:59:25 +0000 | [diff] [blame] | 7830 | xsmp.clientid = NULL; |
Bram Moolenaar | 071d427 | 2004-06-13 20:20:40 +0000 | [diff] [blame] | 7831 | xsmp_icefd = -1; |
| 7832 | } |
| 7833 | } |
| 7834 | #endif /* USE_XSMP */ |
| 7835 | |
| 7836 | |
| 7837 | #ifdef EBCDIC |
| 7838 | /* Translate character to its CTRL- value */ |
| 7839 | char CtrlTable[] = |
| 7840 | { |
| 7841 | /* 00 - 5E */ |
| 7842 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 7843 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 7844 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 7845 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 7846 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 7847 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 7848 | /* ^ */ 0x1E, |
| 7849 | /* - */ 0x1F, |
| 7850 | /* 61 - 6C */ |
| 7851 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 7852 | /* _ */ 0x1F, |
| 7853 | /* 6E - 80 */ |
| 7854 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 7855 | /* a */ 0x01, |
| 7856 | /* b */ 0x02, |
| 7857 | /* c */ 0x03, |
| 7858 | /* d */ 0x37, |
| 7859 | /* e */ 0x2D, |
| 7860 | /* f */ 0x2E, |
| 7861 | /* g */ 0x2F, |
| 7862 | /* h */ 0x16, |
| 7863 | /* i */ 0x05, |
| 7864 | /* 8A - 90 */ |
| 7865 | 0, 0, 0, 0, 0, 0, 0, |
| 7866 | /* j */ 0x15, |
| 7867 | /* k */ 0x0B, |
| 7868 | /* l */ 0x0C, |
| 7869 | /* m */ 0x0D, |
| 7870 | /* n */ 0x0E, |
| 7871 | /* o */ 0x0F, |
| 7872 | /* p */ 0x10, |
| 7873 | /* q */ 0x11, |
| 7874 | /* r */ 0x12, |
| 7875 | /* 9A - A1 */ |
| 7876 | 0, 0, 0, 0, 0, 0, 0, 0, |
| 7877 | /* s */ 0x13, |
| 7878 | /* t */ 0x3C, |
| 7879 | /* u */ 0x3D, |
| 7880 | /* v */ 0x32, |
| 7881 | /* w */ 0x26, |
| 7882 | /* x */ 0x18, |
| 7883 | /* y */ 0x19, |
| 7884 | /* z */ 0x3F, |
| 7885 | /* AA - AC */ |
| 7886 | 0, 0, 0, |
| 7887 | /* [ */ 0x27, |
| 7888 | /* AE - BC */ |
| 7889 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 7890 | /* ] */ 0x1D, |
| 7891 | /* BE - C0 */ 0, 0, 0, |
| 7892 | /* A */ 0x01, |
| 7893 | /* B */ 0x02, |
| 7894 | /* C */ 0x03, |
| 7895 | /* D */ 0x37, |
| 7896 | /* E */ 0x2D, |
| 7897 | /* F */ 0x2E, |
| 7898 | /* G */ 0x2F, |
| 7899 | /* H */ 0x16, |
| 7900 | /* I */ 0x05, |
| 7901 | /* CA - D0 */ 0, 0, 0, 0, 0, 0, 0, |
| 7902 | /* J */ 0x15, |
| 7903 | /* K */ 0x0B, |
| 7904 | /* L */ 0x0C, |
| 7905 | /* M */ 0x0D, |
| 7906 | /* N */ 0x0E, |
| 7907 | /* O */ 0x0F, |
| 7908 | /* P */ 0x10, |
| 7909 | /* Q */ 0x11, |
| 7910 | /* R */ 0x12, |
| 7911 | /* DA - DF */ 0, 0, 0, 0, 0, 0, |
| 7912 | /* \ */ 0x1C, |
| 7913 | /* E1 */ 0, |
| 7914 | /* S */ 0x13, |
| 7915 | /* T */ 0x3C, |
| 7916 | /* U */ 0x3D, |
| 7917 | /* V */ 0x32, |
| 7918 | /* W */ 0x26, |
| 7919 | /* X */ 0x18, |
| 7920 | /* Y */ 0x19, |
| 7921 | /* Z */ 0x3F, |
| 7922 | /* EA - FF*/ 0, 0, 0, 0, 0, 0, |
| 7923 | 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, |
| 7924 | }; |
| 7925 | |
| 7926 | char MetaCharTable[]= |
| 7927 | {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ |
| 7928 | 0, 0, 0, 0,'\\', 0,'F', 0,'W','M','N', 0, 0, 0, 0, 0, |
| 7929 | 0, 0, 0, 0,']', 0, 0,'G', 0, 0,'R','O', 0, 0, 0, 0, |
| 7930 | '@','A','B','C','D','E', 0, 0,'H','I','J','K','L', 0, 0, 0, |
| 7931 | 'P','Q', 0,'S','T','U','V', 0,'X','Y','Z','[', 0, 0,'^', 0 |
| 7932 | }; |
| 7933 | |
| 7934 | |
| 7935 | /* TODO: Use characters NOT numbers!!! */ |
| 7936 | char CtrlCharTable[]= |
| 7937 | {/* 0 1 2 3 4 5 6 7 8 9 A B C D E F */ |
| 7938 | 124,193,194,195, 0,201, 0, 0, 0, 0, 0,210,211,212,213,214, |
| 7939 | 215,216,217,226, 0,209,200, 0,231,232, 0, 0,224,189, 95,109, |
| 7940 | 0, 0, 0, 0, 0, 0,230,173, 0, 0, 0, 0, 0,197,198,199, |
| 7941 | 0, 0,229, 0, 0, 0, 0,196, 0, 0, 0, 0,227,228, 0,233, |
| 7942 | }; |
| 7943 | |
| 7944 | |
| 7945 | #endif |