blob: 42f388a11ff63fe7e200fdcee4ac6fbec16237fd [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
10/*
11 * fileio.c: read from and write to a file
12 */
13
Bram Moolenaar071d4272004-06-13 20:20:40 +000014#include "vim.h"
15
Bram Moolenaarf4888d02009-12-02 12:31:27 +000016#if defined(__TANDEM) || defined(__MINT__)
Bram Moolenaar071d4272004-06-13 20:20:40 +000017# include <limits.h> /* for SSIZE_MAX */
18#endif
19
20#if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
21# include <utime.h> /* for struct utimbuf */
22#endif
23
24#define BUFSIZE 8192 /* size of normal write buffer */
25#define SMBUFSIZE 256 /* size of emergency write buffer */
26
Bram Moolenaar071d4272004-06-13 20:20:40 +000027/* Is there any system that doesn't have access()? */
Bram Moolenaar9372a112005-12-06 19:59:18 +000028#define USE_MCH_ACCESS
Bram Moolenaar071d4272004-06-13 20:20:40 +000029
30#ifdef FEAT_MBYTE
Bram Moolenaard25c16e2016-01-29 22:13:30 +010031static char_u *next_fenc(char_u **pp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000032# ifdef FEAT_EVAL
Bram Moolenaard25c16e2016-01-29 22:13:30 +010033static char_u *readfile_charconvert(char_u *fname, char_u *fenc, int *fdp);
Bram Moolenaar071d4272004-06-13 20:20:40 +000034# endif
35#endif
36#ifdef FEAT_VIMINFO
Bram Moolenaard25c16e2016-01-29 22:13:30 +010037static void check_marks_read(void);
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#endif
39#ifdef FEAT_CRYPT
Bram Moolenaar8767f522016-07-01 17:17:39 +020040static char_u *check_for_cryptkey(char_u *cryptkey, char_u *ptr, long *sizep, off_T *filesizep, int newfile, char_u *fname, int *did_ask);
Bram Moolenaar071d4272004-06-13 20:20:40 +000041#endif
42#ifdef UNIX
Bram Moolenaard25c16e2016-01-29 22:13:30 +010043static void set_file_time(char_u *fname, time_t atime, time_t mtime);
Bram Moolenaar071d4272004-06-13 20:20:40 +000044#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +010045static int set_rw_fname(char_u *fname, char_u *sfname);
46static int msg_add_fileformat(int eol_type);
47static void msg_add_eol(void);
Bram Moolenaar8767f522016-07-01 17:17:39 +020048static int check_mtime(buf_T *buf, stat_T *s);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010049static int time_differs(long t1, long t2);
Bram Moolenaard25c16e2016-01-29 22:13:30 +010050static int apply_autocmds_exarg(event_T event, char_u *fname, char_u *fname_io, int force, buf_T *buf, exarg_T *eap);
51static int au_find_group(char_u *name);
Bram Moolenaar70836c82006-02-20 21:28:49 +000052
53# define AUGROUP_DEFAULT -1 /* default autocmd group */
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +000054# define AUGROUP_ERROR -2 /* erroneous autocmd group */
Bram Moolenaar70836c82006-02-20 21:28:49 +000055# define AUGROUP_ALL -3 /* all autocmd groups */
Bram Moolenaar071d4272004-06-13 20:20:40 +000056
57#if defined(FEAT_CRYPT) || defined(FEAT_MBYTE)
58# define HAS_BW_FLAGS
59# define FIO_LATIN1 0x01 /* convert Latin1 */
60# define FIO_UTF8 0x02 /* convert UTF-8 */
61# define FIO_UCS2 0x04 /* convert UCS-2 */
62# define FIO_UCS4 0x08 /* convert UCS-4 */
63# define FIO_UTF16 0x10 /* convert UTF-16 */
64# ifdef WIN3264
65# define FIO_CODEPAGE 0x20 /* convert MS-Windows codepage */
66# define FIO_PUT_CP(x) (((x) & 0xffff) << 16) /* put codepage in top word */
67# define FIO_GET_CP(x) (((x)>>16) & 0xffff) /* get codepage from top word */
68# endif
Bram Moolenaard0573012017-10-28 21:11:06 +020069# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +000070# define FIO_MACROMAN 0x20 /* convert MacRoman */
71# endif
72# define FIO_ENDIAN_L 0x80 /* little endian */
73# define FIO_ENCRYPTED 0x1000 /* encrypt written bytes */
74# define FIO_NOCONVERT 0x2000 /* skip encoding conversion */
75# define FIO_UCSBOM 0x4000 /* check for BOM at start of file */
76# define FIO_ALL -1 /* allow all formats */
77#endif
78
79/* When converting, a read() or write() may leave some bytes to be converted
80 * for the next call. The value is guessed... */
81#define CONV_RESTLEN 30
82
83/* We have to guess how much a sequence of bytes may expand when converting
84 * with iconv() to be able to allocate a buffer. */
85#define ICONV_MULT 8
86
87/*
88 * Structure to pass arguments from buf_write() to buf_write_bytes().
89 */
90struct bw_info
91{
92 int bw_fd; /* file descriptor */
93 char_u *bw_buf; /* buffer with data to be written */
Bram Moolenaard089d9b2007-09-30 12:02:55 +000094 int bw_len; /* length of data */
Bram Moolenaar071d4272004-06-13 20:20:40 +000095#ifdef HAS_BW_FLAGS
96 int bw_flags; /* FIO_ flags */
97#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020098#ifdef FEAT_CRYPT
99 buf_T *bw_buffer; /* buffer being written */
100#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000101#ifdef FEAT_MBYTE
102 char_u bw_rest[CONV_RESTLEN]; /* not converted bytes */
103 int bw_restlen; /* nr of bytes in bw_rest[] */
104 int bw_first; /* first write call */
105 char_u *bw_conv_buf; /* buffer for writing converted chars */
106 int bw_conv_buflen; /* size of bw_conv_buf */
107 int bw_conv_error; /* set for conversion error */
Bram Moolenaar32b485f2009-07-29 16:06:27 +0000108 linenr_T bw_conv_error_lnum; /* first line with error or zero */
109 linenr_T bw_start_lnum; /* line number at start of buffer */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000110# ifdef USE_ICONV
111 iconv_t bw_iconv_fd; /* descriptor for iconv() or -1 */
112# endif
113#endif
114};
115
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100116static int buf_write_bytes(struct bw_info *ip);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117
118#ifdef FEAT_MBYTE
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100119static linenr_T readfile_linenr(linenr_T linecnt, char_u *p, char_u *endp);
120static int ucs2bytes(unsigned c, char_u **pp, int flags);
121static int need_conversion(char_u *fenc);
122static int get_fio_flags(char_u *ptr);
123static char_u *check_for_bom(char_u *p, long size, int *lenp, int flags);
124static int make_bom(char_u *buf, char_u *name);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000125# ifdef WIN3264
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100126static int get_win_fio_flags(char_u *ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127# endif
Bram Moolenaard0573012017-10-28 21:11:06 +0200128# ifdef MACOS_CONVERT
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100129static int get_mac_fio_flags(char_u *ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000130# endif
131#endif
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100132static int move_lines(buf_T *frombuf, buf_T *tobuf);
Bram Moolenaar4592dee2009-11-18 19:11:58 +0000133#ifdef TEMPDIRNAMES
Bram Moolenaard25c16e2016-01-29 22:13:30 +0100134static void vim_settempdir(char_u *tempdir);
Bram Moolenaar4592dee2009-11-18 19:11:58 +0000135#endif
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000136static char *e_auchangedbuf = N_("E812: Autocommands changed buffer or buffer name");
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000137
Bram Moolenaarc3691332016-04-20 12:49:49 +0200138/*
139 * Set by the apply_autocmds_group function if the given event is equal to
140 * EVENT_FILETYPE. Used by the readfile function in order to determine if
141 * EVENT_BUFREADPOST triggered the EVENT_FILETYPE.
142 *
143 * Relying on this value requires one to reset it prior calling
144 * apply_autocmds_group.
145 */
146static int au_did_filetype INIT(= FALSE);
Bram Moolenaarc3691332016-04-20 12:49:49 +0200147
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100149filemess(
150 buf_T *buf,
151 char_u *name,
152 char_u *s,
153 int attr)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000154{
155 int msg_scroll_save;
156
157 if (msg_silent != 0)
158 return;
159 msg_add_fname(buf, name); /* put file name in IObuff with quotes */
160 /* If it's extremely long, truncate it. */
161 if (STRLEN(IObuff) > IOSIZE - 80)
162 IObuff[IOSIZE - 80] = NUL;
163 STRCAT(IObuff, s);
164 /*
165 * For the first message may have to start a new line.
166 * For further ones overwrite the previous one, reset msg_scroll before
167 * calling filemess().
168 */
169 msg_scroll_save = msg_scroll;
170 if (shortmess(SHM_OVERALL) && !exiting && p_verbose == 0)
171 msg_scroll = FALSE;
172 if (!msg_scroll) /* wait a bit when overwriting an error msg */
173 check_for_delay(FALSE);
174 msg_start();
175 msg_scroll = msg_scroll_save;
176 msg_scrolled_ign = TRUE;
177 /* may truncate the message to avoid a hit-return prompt */
178 msg_outtrans_attr(msg_may_trunc(FALSE, IObuff), attr);
179 msg_clr_eos();
180 out_flush();
181 msg_scrolled_ign = FALSE;
182}
183
184/*
185 * Read lines from file "fname" into the buffer after line "from".
186 *
187 * 1. We allocate blocks with lalloc, as big as possible.
188 * 2. Each block is filled with characters from the file with a single read().
189 * 3. The lines are inserted in the buffer with ml_append().
190 *
191 * (caller must check that fname != NULL, unless READ_STDIN is used)
192 *
193 * "lines_to_skip" is the number of lines that must be skipped
194 * "lines_to_read" is the number of lines that are appended
195 * When not recovering lines_to_skip is 0 and lines_to_read MAXLNUM.
196 *
197 * flags:
198 * READ_NEW starting to edit a new buffer
199 * READ_FILTER reading filter output
200 * READ_STDIN read from stdin instead of a file
201 * READ_BUFFER read from curbuf instead of a file (converting after reading
202 * stdin)
203 * READ_DUMMY read into a dummy buffer (to check if file contents changed)
Bram Moolenaar59f931e2010-07-24 20:27:03 +0200204 * READ_KEEP_UNDO don't clear undo info or read it from a file
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200205 * READ_FIFO read from fifo/socket instead of a file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000206 *
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100207 * return FAIL for failure, NOTDONE for directory (failure), or OK
Bram Moolenaar071d4272004-06-13 20:20:40 +0000208 */
209 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +0100210readfile(
211 char_u *fname,
212 char_u *sfname,
213 linenr_T from,
214 linenr_T lines_to_skip,
215 linenr_T lines_to_read,
216 exarg_T *eap, /* can be NULL! */
217 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000218{
219 int fd = 0;
220 int newfile = (flags & READ_NEW);
221 int check_readonly;
222 int filtering = (flags & READ_FILTER);
223 int read_stdin = (flags & READ_STDIN);
224 int read_buffer = (flags & READ_BUFFER);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200225 int read_fifo = (flags & READ_FIFO);
Bram Moolenaar690ffc02008-01-04 15:31:21 +0000226 int set_options = newfile || read_buffer
227 || (eap != NULL && eap->read_edit);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228 linenr_T read_buf_lnum = 1; /* next line to read from curbuf */
229 colnr_T read_buf_col = 0; /* next char to read from this line */
230 char_u c;
231 linenr_T lnum = from;
232 char_u *ptr = NULL; /* pointer into read buffer */
233 char_u *buffer = NULL; /* read buffer */
234 char_u *new_buffer = NULL; /* init to shut up gcc */
235 char_u *line_start = NULL; /* init to shut up gcc */
236 int wasempty; /* buffer was empty before reading */
237 colnr_T len;
238 long size = 0;
239 char_u *p;
Bram Moolenaar8767f522016-07-01 17:17:39 +0200240 off_T filesize = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000241 int skip_read = FALSE;
242#ifdef FEAT_CRYPT
243 char_u *cryptkey = NULL;
Bram Moolenaarf50a2532010-05-21 15:36:08 +0200244 int did_ask_for_key = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000245#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +0200246#ifdef FEAT_PERSISTENT_UNDO
247 context_sha256_T sha_ctx;
248 int read_undo_file = FALSE;
249#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000250 int split = 0; /* number of split lines */
251#define UNKNOWN 0x0fffffff /* file size is unknown */
252 linenr_T linecnt;
253 int error = FALSE; /* errors encountered */
254 int ff_error = EOL_UNKNOWN; /* file format with errors */
255 long linerest = 0; /* remaining chars in line */
256#ifdef UNIX
257 int perm = 0;
258 int swap_mode = -1; /* protection bits for swap file */
259#else
260 int perm;
261#endif
262 int fileformat = 0; /* end-of-line format */
263 int keep_fileformat = FALSE;
Bram Moolenaar8767f522016-07-01 17:17:39 +0200264 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265 int file_readonly;
266 linenr_T skip_count = 0;
267 linenr_T read_count = 0;
268 int msg_save = msg_scroll;
269 linenr_T read_no_eol_lnum = 0; /* non-zero lnum when last line of
270 * last read was missing the eol */
Bram Moolenaar7a2699e2017-01-23 21:31:09 +0100271 int try_mac;
272 int try_dos;
273 int try_unix;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274 int file_rewind = FALSE;
275#ifdef FEAT_MBYTE
276 int can_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000277 linenr_T conv_error = 0; /* line nr with conversion error */
278 linenr_T illegal_byte = 0; /* line nr with illegal byte */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000279 int keep_dest_enc = FALSE; /* don't retry when char doesn't fit
280 in destination encoding */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000281 int bad_char_behavior = BAD_REPLACE;
282 /* BAD_KEEP, BAD_DROP or character to
283 * replace with */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000284 char_u *tmpname = NULL; /* name of 'charconvert' output file */
285 int fio_flags = 0;
286 char_u *fenc; /* fileencoding to use */
287 int fenc_alloced; /* fenc_next is in allocated memory */
288 char_u *fenc_next = NULL; /* next item in 'fencs' or NULL */
289 int advance_fenc = FALSE;
290 long real_size = 0;
291# ifdef USE_ICONV
292 iconv_t iconv_fd = (iconv_t)-1; /* descriptor for iconv() or -1 */
293# ifdef FEAT_EVAL
294 int did_iconv = FALSE; /* TRUE when iconv() failed and trying
295 'charconvert' next */
296# endif
297# endif
298 int converted = FALSE; /* TRUE if conversion done */
299 int notconverted = FALSE; /* TRUE if conversion wanted but it
300 wasn't possible */
301 char_u conv_rest[CONV_RESTLEN];
302 int conv_restlen = 0; /* nr of bytes in conv_rest[] */
303#endif
Bram Moolenaarbb3d5dc2010-08-14 14:32:54 +0200304 buf_T *old_curbuf;
305 char_u *old_b_ffname;
306 char_u *old_b_fname;
307 int using_b_ffname;
308 int using_b_fname;
Bram Moolenaarbb3d5dc2010-08-14 14:32:54 +0200309
Bram Moolenaarc3691332016-04-20 12:49:49 +0200310 au_did_filetype = FALSE; /* reset before triggering any autocommands */
Bram Moolenaarc3691332016-04-20 12:49:49 +0200311
Bram Moolenaarcab35ad2011-02-15 17:39:22 +0100312 curbuf->b_no_eol_lnum = 0; /* in case it was set by the previous read */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313
314 /*
315 * If there is no file name yet, use the one for the read file.
316 * BF_NOTEDITED is set to reflect this.
317 * Don't do this for a read from a filter.
318 * Only do this when 'cpoptions' contains the 'f' flag.
319 */
320 if (curbuf->b_ffname == NULL
321 && !filtering
322 && fname != NULL
323 && vim_strchr(p_cpo, CPO_FNAMER) != NULL
324 && !(flags & READ_DUMMY))
325 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +0000326 if (set_rw_fname(fname, sfname) == FAIL)
327 return FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328 }
329
Bram Moolenaarbb3d5dc2010-08-14 14:32:54 +0200330 /* Remember the initial values of curbuf, curbuf->b_ffname and
331 * curbuf->b_fname to detect whether they are altered as a result of
332 * executing nasty autocommands. Also check if "fname" and "sfname"
333 * point to one of these values. */
334 old_curbuf = curbuf;
335 old_b_ffname = curbuf->b_ffname;
336 old_b_fname = curbuf->b_fname;
337 using_b_ffname = (fname == curbuf->b_ffname)
338 || (sfname == curbuf->b_ffname);
339 using_b_fname = (fname == curbuf->b_fname) || (sfname == curbuf->b_fname);
Bram Moolenaarbb3d5dc2010-08-14 14:32:54 +0200340
Bram Moolenaardf177f62005-02-22 08:39:57 +0000341 /* After reading a file the cursor line changes but we don't want to
342 * display the line. */
343 ex_no_reprint = TRUE;
344
Bram Moolenaar55b7cf82006-09-09 12:52:42 +0000345 /* don't display the file info for another buffer now */
346 need_fileinfo = FALSE;
347
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 /*
349 * For Unix: Use the short file name whenever possible.
350 * Avoids problems with networks and when directory names are changed.
351 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
352 * another directory, which we don't detect.
353 */
354 if (sfname == NULL)
355 sfname = fname;
Bram Moolenaara06ecab2016-07-16 14:47:36 +0200356#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000357 fname = sfname;
358#endif
359
Bram Moolenaar071d4272004-06-13 20:20:40 +0000360 /*
361 * The BufReadCmd and FileReadCmd events intercept the reading process by
362 * executing the associated commands instead.
363 */
364 if (!filtering && !read_stdin && !read_buffer)
365 {
366 pos_T pos;
367
368 pos = curbuf->b_op_start;
369
370 /* Set '[ mark to the line above where the lines go (line 1 if zero). */
371 curbuf->b_op_start.lnum = ((from == 0) ? 1 : from);
372 curbuf->b_op_start.col = 0;
373
374 if (newfile)
375 {
376 if (apply_autocmds_exarg(EVENT_BUFREADCMD, NULL, sfname,
377 FALSE, curbuf, eap))
378#ifdef FEAT_EVAL
379 return aborting() ? FAIL : OK;
380#else
381 return OK;
382#endif
383 }
384 else if (apply_autocmds_exarg(EVENT_FILEREADCMD, sfname, sfname,
385 FALSE, NULL, eap))
386#ifdef FEAT_EVAL
387 return aborting() ? FAIL : OK;
388#else
389 return OK;
390#endif
391
392 curbuf->b_op_start = pos;
393 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394
395 if ((shortmess(SHM_OVER) || curbuf->b_help) && p_verbose == 0)
396 msg_scroll = FALSE; /* overwrite previous file message */
397 else
398 msg_scroll = TRUE; /* don't overwrite previous file message */
399
400 /*
401 * If the name ends in a path separator, we can't open it. Check here,
402 * because reading the file may actually work, but then creating the swap
403 * file may destroy it! Reported on MS-DOS and Win 95.
404 * If the name is too long we might crash further on, quit here.
405 */
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000406 if (fname != NULL && *fname != NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000408 p = fname + STRLEN(fname);
409 if (after_pathsep(fname, p) || STRLEN(fname) >= MAXPATHL)
Bram Moolenaar15d0a8c2004-09-06 17:44:46 +0000410 {
411 filemess(curbuf, fname, (char_u *)_("Illegal file name"), 0);
412 msg_end();
413 msg_scroll = msg_save;
414 return FAIL;
415 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 }
417
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200418 if (!read_stdin && !read_buffer && !read_fifo)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419 {
Bram Moolenaar4e4f5292013-08-30 17:07:01 +0200420#ifdef UNIX
421 /*
422 * On Unix it is possible to read a directory, so we have to
423 * check for it before the mch_open().
424 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000425 perm = mch_getperm(fname);
426 if (perm >= 0 && !S_ISREG(perm) /* not a regular file ... */
427# ifdef S_ISFIFO
428 && !S_ISFIFO(perm) /* ... or fifo */
429# endif
430# ifdef S_ISSOCK
431 && !S_ISSOCK(perm) /* ... or socket */
432# endif
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +0000433# ifdef OPEN_CHR_FILES
434 && !(S_ISCHR(perm) && is_dev_fd_file(fname))
435 /* ... or a character special file named /dev/fd/<n> */
436# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000437 )
438 {
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100439 int retval = FAIL;
440
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441 if (S_ISDIR(perm))
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100442 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443 filemess(curbuf, fname, (char_u *)_("is a directory"), 0);
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100444 retval = NOTDONE;
445 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000446 else
447 filemess(curbuf, fname, (char_u *)_("is not a file"), 0);
448 msg_end();
449 msg_scroll = msg_save;
Bram Moolenaare13b9af2017-01-13 22:01:02 +0100450 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000451 }
Bram Moolenaar4e4f5292013-08-30 17:07:01 +0200452#endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100453#if defined(MSWIN)
Bram Moolenaarc67764a2006-10-12 19:14:26 +0000454 /*
455 * MS-Windows allows opening a device, but we will probably get stuck
456 * trying to read it.
457 */
458 if (!p_odev && mch_nodetype(fname) == NODE_WRITABLE)
459 {
Bram Moolenaar5386a122007-06-28 20:02:32 +0000460 filemess(curbuf, fname, (char_u *)_("is a device (disabled with 'opendevice' option)"), 0);
Bram Moolenaarc67764a2006-10-12 19:14:26 +0000461 msg_end();
462 msg_scroll = msg_save;
463 return FAIL;
464 }
Bram Moolenaar043545e2006-10-10 16:44:07 +0000465#endif
Bram Moolenaar4e4f5292013-08-30 17:07:01 +0200466 }
Bram Moolenaar043545e2006-10-10 16:44:07 +0000467
Bram Moolenaarad875fb2013-07-24 15:02:03 +0200468 /* Set default or forced 'fileformat' and 'binary'. */
469 set_file_options(set_options, eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000470
471 /*
472 * When opening a new file we take the readonly flag from the file.
473 * Default is r/w, can be set to r/o below.
474 * Don't reset it when in readonly mode
475 * Only set/reset b_p_ro when BF_CHECK_RO is set.
476 */
477 check_readonly = (newfile && (curbuf->b_flags & BF_CHECK_RO));
Bram Moolenaar4399ef42005-02-12 14:29:27 +0000478 if (check_readonly && !readonlymode)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000479 curbuf->b_p_ro = FALSE;
480
Bram Moolenaarf71d7b92016-08-09 22:14:05 +0200481 if (newfile && !read_stdin && !read_buffer && !read_fifo)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000482 {
Bram Moolenaare60acc12011-05-10 16:41:25 +0200483 /* Remember time of file. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000484 if (mch_stat((char *)fname, &st) >= 0)
485 {
486 buf_store_time(curbuf, &st, fname);
487 curbuf->b_mtime_read = curbuf->b_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000488#ifdef UNIX
489 /*
490 * Use the protection bits of the original file for the swap file.
491 * This makes it possible for others to read the name of the
492 * edited file from the swapfile, but only if they can read the
493 * edited file.
494 * Remove the "write" and "execute" bits for group and others
495 * (they must not write the swapfile).
496 * Add the "read" and "write" bits for the user, otherwise we may
497 * not be able to write to the file ourselves.
498 * Setting the bits is done below, after creating the swap file.
499 */
500 swap_mode = (st.st_mode & 0644) | 0600;
501#endif
502#ifdef FEAT_CW_EDITOR
503 /* Get the FSSpec on MacOS
504 * TODO: Update it properly when the buffer name changes
505 */
506 (void)GetFSSpecFromPath(curbuf->b_ffname, &curbuf->b_FSSpec);
507#endif
508#ifdef VMS
509 curbuf->b_fab_rfm = st.st_fab_rfm;
Bram Moolenaard4755bb2004-09-02 19:12:26 +0000510 curbuf->b_fab_rat = st.st_fab_rat;
511 curbuf->b_fab_mrs = st.st_fab_mrs;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000512#endif
513 }
514 else
515 {
516 curbuf->b_mtime = 0;
517 curbuf->b_mtime_read = 0;
518 curbuf->b_orig_size = 0;
519 curbuf->b_orig_mode = 0;
520 }
521
522 /* Reset the "new file" flag. It will be set again below when the
523 * file doesn't exist. */
524 curbuf->b_flags &= ~(BF_NEW | BF_NEW_W);
525 }
526
527/*
528 * for UNIX: check readonly with perm and mch_access()
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100529 * for Amiga: check readonly by trying to open the file for writing
Bram Moolenaar071d4272004-06-13 20:20:40 +0000530 */
531 file_readonly = FALSE;
532 if (read_stdin)
533 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100534#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 /* Force binary I/O on stdin to avoid CR-LF -> LF conversion. */
536 setmode(0, O_BINARY);
537#endif
538 }
539 else if (!read_buffer)
540 {
541#ifdef USE_MCH_ACCESS
542 if (
543# ifdef UNIX
544 !(perm & 0222) ||
545# endif
546 mch_access((char *)fname, W_OK))
547 file_readonly = TRUE;
548 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
549#else
550 if (!newfile
551 || readonlymode
552 || (fd = mch_open((char *)fname, O_RDWR | O_EXTRA, 0)) < 0)
553 {
554 file_readonly = TRUE;
555 /* try to open ro */
556 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
557 }
558#endif
559 }
560
561 if (fd < 0) /* cannot open at all */
562 {
563#ifndef UNIX
564 int isdir_f;
565#endif
566 msg_scroll = msg_save;
567#ifndef UNIX
568 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100569 * On Amiga we can't open a directory, check here.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000570 */
571 isdir_f = (mch_isdir(fname));
572 perm = mch_getperm(fname); /* check if the file exists */
573 if (isdir_f)
574 {
575 filemess(curbuf, sfname, (char_u *)_("is a directory"), 0);
576 curbuf->b_p_ro = TRUE; /* must use "w!" now */
577 }
578 else
579#endif
580 if (newfile)
581 {
Bram Moolenaar2efbc662010-05-14 18:56:38 +0200582 if (perm < 0
583#ifdef ENOENT
584 && errno == ENOENT
585#endif
586 )
Bram Moolenaar071d4272004-06-13 20:20:40 +0000587 {
588 /*
589 * Set the 'new-file' flag, so that when the file has
590 * been created by someone else, a ":w" will complain.
591 */
592 curbuf->b_flags |= BF_NEW;
593
594 /* Create a swap file now, so that other Vims are warned
595 * that we are editing this file. Don't do this for a
596 * "nofile" or "nowrite" buffer type. */
597#ifdef FEAT_QUICKFIX
598 if (!bt_dontwrite(curbuf))
599#endif
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000600 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000601 check_need_swap(newfile);
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000602 /* SwapExists autocommand may mess things up */
603 if (curbuf != old_curbuf
604 || (using_b_ffname
605 && (old_b_ffname != curbuf->b_ffname))
606 || (using_b_fname
607 && (old_b_fname != curbuf->b_fname)))
608 {
609 EMSG(_(e_auchangedbuf));
610 return FAIL;
611 }
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000612 }
Bram Moolenaar5b962cf2005-12-12 21:58:40 +0000613 if (dir_of_file_exists(fname))
614 filemess(curbuf, sfname, (char_u *)_("[New File]"), 0);
615 else
616 filemess(curbuf, sfname,
617 (char_u *)_("[New DIRECTORY]"), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000618#ifdef FEAT_VIMINFO
619 /* Even though this is a new file, it might have been
620 * edited before and deleted. Get the old marks. */
621 check_marks_read();
622#endif
623#ifdef FEAT_MBYTE
Bram Moolenaarad875fb2013-07-24 15:02:03 +0200624 /* Set forced 'fileencoding'. */
625 if (eap != NULL)
626 set_forced_fenc(eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000627#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 apply_autocmds_exarg(EVENT_BUFNEWFILE, sfname, sfname,
629 FALSE, curbuf, eap);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000630 /* remember the current fileformat */
631 save_file_ff(curbuf);
632
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +0100633#if defined(FEAT_EVAL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634 if (aborting()) /* autocmds may abort script processing */
635 return FAIL;
636#endif
637 return OK; /* a new file is not an error */
638 }
639 else
640 {
Bram Moolenaar202795b2005-10-11 20:29:39 +0000641 filemess(curbuf, sfname, (char_u *)(
642# ifdef EFBIG
643 (errno == EFBIG) ? _("[File too big]") :
644# endif
Bram Moolenaar2efbc662010-05-14 18:56:38 +0200645# ifdef EOVERFLOW
646 (errno == EOVERFLOW) ? _("[File too big]") :
647# endif
Bram Moolenaar202795b2005-10-11 20:29:39 +0000648 _("[Permission Denied]")), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 curbuf->b_p_ro = TRUE; /* must use "w!" now */
650 }
651 }
652
653 return FAIL;
654 }
655
656 /*
657 * Only set the 'ro' flag for readonly files the first time they are
658 * loaded. Help files always get readonly mode
659 */
660 if ((check_readonly && file_readonly) || curbuf->b_help)
661 curbuf->b_p_ro = TRUE;
662
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000663 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000664 {
Bram Moolenaar690ffc02008-01-04 15:31:21 +0000665 /* Don't change 'eol' if reading from buffer as it will already be
666 * correctly set when reading stdin. */
667 if (!read_buffer)
668 {
669 curbuf->b_p_eol = TRUE;
670 curbuf->b_start_eol = TRUE;
671 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672#ifdef FEAT_MBYTE
673 curbuf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000674 curbuf->b_start_bomb = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675#endif
676 }
677
678 /* Create a swap file now, so that other Vims are warned that we are
679 * editing this file.
680 * Don't do this for a "nofile" or "nowrite" buffer type. */
681#ifdef FEAT_QUICKFIX
682 if (!bt_dontwrite(curbuf))
683#endif
684 {
685 check_need_swap(newfile);
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000686 if (!read_stdin && (curbuf != old_curbuf
687 || (using_b_ffname && (old_b_ffname != curbuf->b_ffname))
688 || (using_b_fname && (old_b_fname != curbuf->b_fname))))
689 {
690 EMSG(_(e_auchangedbuf));
691 if (!read_buffer)
692 close(fd);
693 return FAIL;
694 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695#ifdef UNIX
696 /* Set swap file protection bits after creating it. */
Bram Moolenaarf061e0b2009-06-24 15:32:01 +0000697 if (swap_mode > 0 && curbuf->b_ml.ml_mfp != NULL
698 && curbuf->b_ml.ml_mfp->mf_fname != NULL)
Bram Moolenaar5a73e0c2017-11-04 21:35:01 +0100699 {
700 char_u *swap_fname = curbuf->b_ml.ml_mfp->mf_fname;
701
702 /*
703 * If the group-read bit is set but not the world-read bit, then
704 * the group must be equal to the group of the original file. If
705 * we can't make that happen then reset the group-read bit. This
706 * avoids making the swap file readable to more users when the
707 * primary group of the user is too permissive.
708 */
709 if ((swap_mode & 044) == 040)
710 {
711 stat_T swap_st;
712
713 if (mch_stat((char *)swap_fname, &swap_st) >= 0
714 && st.st_gid != swap_st.st_gid
Bram Moolenaar02e802b2018-04-19 21:15:27 +0200715# ifdef HAVE_FCHOWN
Bram Moolenaar5a73e0c2017-11-04 21:35:01 +0100716 && fchown(curbuf->b_ml.ml_mfp->mf_fd, -1, st.st_gid)
Bram Moolenaar02e802b2018-04-19 21:15:27 +0200717 == -1
Bram Moolenaar1f131ae2018-05-21 13:39:40 +0200718# endif
Bram Moolenaar02e802b2018-04-19 21:15:27 +0200719 )
Bram Moolenaar5a73e0c2017-11-04 21:35:01 +0100720 swap_mode &= 0600;
721 }
722
723 (void)mch_setperm(swap_fname, (long)swap_mode);
724 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725#endif
726 }
727
Bram Moolenaarb815dac2005-12-07 20:59:24 +0000728#if defined(HAS_SWAP_EXISTS_ACTION)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729 /* If "Quit" selected at ATTENTION dialog, don't load the file */
730 if (swap_exists_action == SEA_QUIT)
731 {
732 if (!read_buffer && !read_stdin)
733 close(fd);
734 return FAIL;
735 }
736#endif
737
738 ++no_wait_return; /* don't wait for return yet */
739
740 /*
741 * Set '[ mark to the line above where the lines go (line 1 if zero).
742 */
743 curbuf->b_op_start.lnum = ((from == 0) ? 1 : from);
744 curbuf->b_op_start.col = 0;
745
Bram Moolenaar7a2699e2017-01-23 21:31:09 +0100746 try_mac = (vim_strchr(p_ffs, 'm') != NULL);
747 try_dos = (vim_strchr(p_ffs, 'd') != NULL);
748 try_unix = (vim_strchr(p_ffs, 'x') != NULL);
749
Bram Moolenaar071d4272004-06-13 20:20:40 +0000750 if (!read_buffer)
751 {
752 int m = msg_scroll;
753 int n = msg_scrolled;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000754
755 /*
756 * The file must be closed again, the autocommands may want to change
757 * the file before reading it.
758 */
759 if (!read_stdin)
760 close(fd); /* ignore errors */
761
762 /*
763 * The output from the autocommands should not overwrite anything and
764 * should not be overwritten: Set msg_scroll, restore its value if no
765 * output was done.
766 */
767 msg_scroll = TRUE;
768 if (filtering)
769 apply_autocmds_exarg(EVENT_FILTERREADPRE, NULL, sfname,
770 FALSE, curbuf, eap);
771 else if (read_stdin)
772 apply_autocmds_exarg(EVENT_STDINREADPRE, NULL, sfname,
773 FALSE, curbuf, eap);
774 else if (newfile)
775 apply_autocmds_exarg(EVENT_BUFREADPRE, NULL, sfname,
776 FALSE, curbuf, eap);
777 else
778 apply_autocmds_exarg(EVENT_FILEREADPRE, sfname, sfname,
779 FALSE, NULL, eap);
Bram Moolenaar7a2699e2017-01-23 21:31:09 +0100780 /* autocommands may have changed it */
781 try_mac = (vim_strchr(p_ffs, 'm') != NULL);
782 try_dos = (vim_strchr(p_ffs, 'd') != NULL);
783 try_unix = (vim_strchr(p_ffs, 'x') != NULL);
784
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 if (msg_scrolled == n)
786 msg_scroll = m;
787
788#ifdef FEAT_EVAL
789 if (aborting()) /* autocmds may abort script processing */
790 {
791 --no_wait_return;
792 msg_scroll = msg_save;
793 curbuf->b_p_ro = TRUE; /* must use "w!" now */
794 return FAIL;
795 }
796#endif
797 /*
798 * Don't allow the autocommands to change the current buffer.
799 * Try to re-open the file.
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000800 *
801 * Don't allow the autocommands to change the buffer name either
802 * (cd for example) if it invalidates fname or sfname.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 */
804 if (!read_stdin && (curbuf != old_curbuf
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +0000805 || (using_b_ffname && (old_b_ffname != curbuf->b_ffname))
806 || (using_b_fname && (old_b_fname != curbuf->b_fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000807 || (fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) < 0))
808 {
809 --no_wait_return;
810 msg_scroll = msg_save;
811 if (fd < 0)
812 EMSG(_("E200: *ReadPre autocommands made the file unreadable"));
813 else
814 EMSG(_("E201: *ReadPre autocommands must not change current buffer"));
815 curbuf->b_p_ro = TRUE; /* must use "w!" now */
816 return FAIL;
817 }
818 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819
820 /* Autocommands may add lines to the file, need to check if it is empty */
821 wasempty = (curbuf->b_ml.ml_flags & ML_EMPTY);
822
823 if (!recoverymode && !filtering && !(flags & READ_DUMMY))
824 {
825 /*
826 * Show the user that we are busy reading the input. Sometimes this
827 * may take a while. When reading from stdin another program may
828 * still be running, don't move the cursor to the last line, unless
829 * always using the GUI.
830 */
831 if (read_stdin)
832 {
Bram Moolenaar234d1622017-11-18 14:55:23 +0100833 if (!is_not_a_term())
834 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835#ifndef ALWAYS_USE_GUI
Bram Moolenaar234d1622017-11-18 14:55:23 +0100836 mch_msg(_("Vim: Reading from stdin...\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000837#endif
838#ifdef FEAT_GUI
Bram Moolenaar234d1622017-11-18 14:55:23 +0100839 /* Also write a message in the GUI window, if there is one. */
840 if (gui.in_use && !gui.dying && !gui.starting)
841 {
842 p = (char_u *)_("Reading from stdin...");
843 gui_write(p, (int)STRLEN(p));
844 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845#endif
Bram Moolenaar234d1622017-11-18 14:55:23 +0100846 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000847 }
848 else if (!read_buffer)
849 filemess(curbuf, sfname, (char_u *)"", 0);
850 }
851
852 msg_scroll = FALSE; /* overwrite the file message */
853
854 /*
855 * Set linecnt now, before the "retry" caused by a wrong guess for
856 * fileformat, and after the autocommands, which may change them.
857 */
858 linecnt = curbuf->b_ml.ml_line_count;
859
860#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000861 /* "++bad=" argument. */
862 if (eap != NULL && eap->bad_char != 0)
Bram Moolenaar195d6352005-12-19 22:08:24 +0000863 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000864 bad_char_behavior = eap->bad_char;
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000865 if (set_options)
Bram Moolenaar195d6352005-12-19 22:08:24 +0000866 curbuf->b_bad_char = eap->bad_char;
867 }
868 else
869 curbuf->b_bad_char = 0;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000870
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 /*
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000872 * Decide which 'encoding' to use or use first.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 */
874 if (eap != NULL && eap->force_enc != 0)
875 {
876 fenc = enc_canonize(eap->cmd + eap->force_enc);
877 fenc_alloced = TRUE;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000878 keep_dest_enc = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 }
880 else if (curbuf->b_p_bin)
881 {
882 fenc = (char_u *)""; /* binary: don't convert */
883 fenc_alloced = FALSE;
884 }
885 else if (curbuf->b_help)
886 {
887 char_u firstline[80];
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000888 int fc;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000889
890 /* Help files are either utf-8 or latin1. Try utf-8 first, if this
891 * fails it must be latin1.
892 * Always do this when 'encoding' is "utf-8". Otherwise only do
893 * this when needed to avoid [converted] remarks all the time.
894 * It is needed when the first line contains non-ASCII characters.
895 * That is only in *.??x files. */
896 fenc = (char_u *)"latin1";
897 c = enc_utf8;
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000898 if (!c && !read_stdin)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000899 {
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000900 fc = fname[STRLEN(fname) - 1];
901 if (TOLOWER_ASC(fc) == 'x')
902 {
903 /* Read the first line (and a bit more). Immediately rewind to
904 * the start of the file. If the read() fails "len" is -1. */
Bram Moolenaar540fc6f2010-12-17 16:27:16 +0100905 len = read_eintr(fd, firstline, 80);
Bram Moolenaar8767f522016-07-01 17:17:39 +0200906 vim_lseek(fd, (off_T)0L, SEEK_SET);
Bram Moolenaar75c50c42005-06-04 22:06:24 +0000907 for (p = firstline; p < firstline + len; ++p)
908 if (*p >= 0x80)
909 {
910 c = TRUE;
911 break;
912 }
913 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000914 }
915
916 if (c)
917 {
918 fenc_next = fenc;
919 fenc = (char_u *)"utf-8";
920
921 /* When the file is utf-8 but a character doesn't fit in
922 * 'encoding' don't retry. In help text editing utf-8 bytes
923 * doesn't make sense. */
Bram Moolenaarf193fff2006-04-27 00:02:13 +0000924 if (!enc_utf8)
925 keep_dest_enc = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 }
927 fenc_alloced = FALSE;
928 }
929 else if (*p_fencs == NUL)
930 {
931 fenc = curbuf->b_p_fenc; /* use format from buffer */
932 fenc_alloced = FALSE;
933 }
934 else
935 {
936 fenc_next = p_fencs; /* try items in 'fileencodings' */
937 fenc = next_fenc(&fenc_next);
938 fenc_alloced = TRUE;
939 }
940#endif
941
942 /*
943 * Jump back here to retry reading the file in different ways.
944 * Reasons to retry:
945 * - encoding conversion failed: try another one from "fenc_next"
946 * - BOM detected and fenc was set, need to setup conversion
947 * - "fileformat" check failed: try another
948 *
949 * Variables set for special retry actions:
950 * "file_rewind" Rewind the file to start reading it again.
951 * "advance_fenc" Advance "fenc" using "fenc_next".
952 * "skip_read" Re-use already read bytes (BOM detected).
953 * "did_iconv" iconv() conversion failed, try 'charconvert'.
954 * "keep_fileformat" Don't reset "fileformat".
955 *
956 * Other status indicators:
957 * "tmpname" When != NULL did conversion with 'charconvert'.
958 * Output file has to be deleted afterwards.
959 * "iconv_fd" When != -1 did conversion with iconv().
960 */
961retry:
962
963 if (file_rewind)
964 {
965 if (read_buffer)
966 {
967 read_buf_lnum = 1;
968 read_buf_col = 0;
969 }
Bram Moolenaar8767f522016-07-01 17:17:39 +0200970 else if (read_stdin || vim_lseek(fd, (off_T)0L, SEEK_SET) != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000971 {
972 /* Can't rewind the file, give up. */
973 error = TRUE;
974 goto failed;
975 }
976 /* Delete the previously read lines. */
977 while (lnum > from)
978 ml_delete(lnum--, FALSE);
979 file_rewind = FALSE;
980#ifdef FEAT_MBYTE
Bram Moolenaar910f66f2006-04-05 20:41:53 +0000981 if (set_options)
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000982 {
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 curbuf->b_p_bomb = FALSE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +0000984 curbuf->b_start_bomb = FALSE;
985 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +0000986 conv_error = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987#endif
988 }
989
990 /*
991 * When retrying with another "fenc" and the first time "fileformat"
992 * will be reset.
993 */
994 if (keep_fileformat)
995 keep_fileformat = FALSE;
996 else
997 {
998 if (eap != NULL && eap->force_ff != 0)
Bram Moolenaar1c860362008-11-12 15:05:21 +0000999 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 fileformat = get_fileformat_force(curbuf, eap);
Bram Moolenaar1c860362008-11-12 15:05:21 +00001001 try_unix = try_dos = try_mac = FALSE;
1002 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001003 else if (curbuf->b_p_bin)
1004 fileformat = EOL_UNIX; /* binary: use Unix format */
1005 else if (*p_ffs == NUL)
1006 fileformat = get_fileformat(curbuf);/* use format from buffer */
1007 else
1008 fileformat = EOL_UNKNOWN; /* detect from file */
1009 }
1010
1011#ifdef FEAT_MBYTE
1012# ifdef USE_ICONV
1013 if (iconv_fd != (iconv_t)-1)
1014 {
1015 /* aborted conversion with iconv(), close the descriptor */
1016 iconv_close(iconv_fd);
1017 iconv_fd = (iconv_t)-1;
1018 }
1019# endif
1020
1021 if (advance_fenc)
1022 {
1023 /*
1024 * Try the next entry in 'fileencodings'.
1025 */
1026 advance_fenc = FALSE;
1027
1028 if (eap != NULL && eap->force_enc != 0)
1029 {
1030 /* Conversion given with "++cc=" wasn't possible, read
1031 * without conversion. */
1032 notconverted = TRUE;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001033 conv_error = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001034 if (fenc_alloced)
1035 vim_free(fenc);
1036 fenc = (char_u *)"";
1037 fenc_alloced = FALSE;
1038 }
1039 else
1040 {
1041 if (fenc_alloced)
1042 vim_free(fenc);
1043 if (fenc_next != NULL)
1044 {
1045 fenc = next_fenc(&fenc_next);
1046 fenc_alloced = (fenc_next != NULL);
1047 }
1048 else
1049 {
1050 fenc = (char_u *)"";
1051 fenc_alloced = FALSE;
1052 }
1053 }
1054 if (tmpname != NULL)
1055 {
1056 mch_remove(tmpname); /* delete converted file */
Bram Moolenaard23a8232018-02-10 18:45:26 +01001057 VIM_CLEAR(tmpname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001058 }
1059 }
1060
1061 /*
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00001062 * Conversion may be required when the encoding of the file is different
1063 * from 'encoding' or 'encoding' is UTF-16, UCS-2 or UCS-4.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 */
1065 fio_flags = 0;
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00001066 converted = need_conversion(fenc);
1067 if (converted)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001068 {
1069
1070 /* "ucs-bom" means we need to check the first bytes of the file
1071 * for a BOM. */
1072 if (STRCMP(fenc, ENC_UCSBOM) == 0)
1073 fio_flags = FIO_UCSBOM;
1074
1075 /*
1076 * Check if UCS-2/4 or Latin1 to UTF-8 conversion needs to be
1077 * done. This is handled below after read(). Prepare the
1078 * fio_flags to avoid having to parse the string each time.
1079 * Also check for Unicode to Latin1 conversion, because iconv()
1080 * appears not to handle this correctly. This works just like
1081 * conversion to UTF-8 except how the resulting character is put in
1082 * the buffer.
1083 */
1084 else if (enc_utf8 || STRCMP(p_enc, "latin1") == 0)
1085 fio_flags = get_fio_flags(fenc);
1086
1087# ifdef WIN3264
1088 /*
1089 * Conversion from an MS-Windows codepage to UTF-8 or another codepage
1090 * is handled with MultiByteToWideChar().
1091 */
1092 if (fio_flags == 0)
1093 fio_flags = get_win_fio_flags(fenc);
1094# endif
1095
Bram Moolenaard0573012017-10-28 21:11:06 +02001096# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001097 /* Conversion from Apple MacRoman to latin1 or UTF-8 */
1098 if (fio_flags == 0)
1099 fio_flags = get_mac_fio_flags(fenc);
1100# endif
1101
1102# ifdef USE_ICONV
1103 /*
1104 * Try using iconv() if we can't convert internally.
1105 */
1106 if (fio_flags == 0
1107# ifdef FEAT_EVAL
1108 && !did_iconv
1109# endif
1110 )
1111 iconv_fd = (iconv_t)my_iconv_open(
1112 enc_utf8 ? (char_u *)"utf-8" : p_enc, fenc);
1113# endif
1114
1115# ifdef FEAT_EVAL
1116 /*
1117 * Use the 'charconvert' expression when conversion is required
1118 * and we can't do it internally or with iconv().
1119 */
1120 if (fio_flags == 0 && !read_stdin && !read_buffer && *p_ccv != NUL
Bram Moolenaarf71d7b92016-08-09 22:14:05 +02001121 && !read_fifo
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122# ifdef USE_ICONV
1123 && iconv_fd == (iconv_t)-1
1124# endif
1125 )
1126 {
1127# ifdef USE_ICONV
1128 did_iconv = FALSE;
1129# endif
1130 /* Skip conversion when it's already done (retry for wrong
1131 * "fileformat"). */
1132 if (tmpname == NULL)
1133 {
1134 tmpname = readfile_charconvert(fname, fenc, &fd);
1135 if (tmpname == NULL)
1136 {
1137 /* Conversion failed. Try another one. */
1138 advance_fenc = TRUE;
1139 if (fd < 0)
1140 {
1141 /* Re-opening the original file failed! */
1142 EMSG(_("E202: Conversion made file unreadable!"));
1143 error = TRUE;
1144 goto failed;
1145 }
1146 goto retry;
1147 }
1148 }
1149 }
1150 else
1151# endif
1152 {
1153 if (fio_flags == 0
1154# ifdef USE_ICONV
1155 && iconv_fd == (iconv_t)-1
1156# endif
1157 )
1158 {
1159 /* Conversion wanted but we can't.
1160 * Try the next conversion in 'fileencodings' */
1161 advance_fenc = TRUE;
1162 goto retry;
1163 }
1164 }
1165 }
1166
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001167 /* Set "can_retry" when it's possible to rewind the file and try with
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 * another "fenc" value. It's FALSE when no other "fenc" to try, reading
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001169 * stdin or fixed at a specific encoding. */
Bram Moolenaarf71d7b92016-08-09 22:14:05 +02001170 can_retry = (*fenc != NUL && !read_stdin && !read_fifo && !keep_dest_enc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171#endif
1172
1173 if (!skip_read)
1174 {
1175 linerest = 0;
1176 filesize = 0;
1177 skip_count = lines_to_skip;
1178 read_count = lines_to_read;
1179#ifdef FEAT_MBYTE
1180 conv_restlen = 0;
1181#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001182#ifdef FEAT_PERSISTENT_UNDO
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001183 read_undo_file = (newfile && (flags & READ_KEEP_UNDO) == 0
1184 && curbuf->b_ffname != NULL
1185 && curbuf->b_p_udf
1186 && !filtering
Bram Moolenaarf71d7b92016-08-09 22:14:05 +02001187 && !read_fifo
Bram Moolenaar59f931e2010-07-24 20:27:03 +02001188 && !read_stdin
1189 && !read_buffer);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02001190 if (read_undo_file)
1191 sha256_start(&sha_ctx);
1192#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001193#ifdef FEAT_CRYPT
1194 if (curbuf->b_cryptstate != NULL)
1195 {
1196 /* Need to free the state, but keep the key, don't want to ask for
1197 * it again. */
1198 crypt_free_state(curbuf->b_cryptstate);
1199 curbuf->b_cryptstate = NULL;
1200 }
1201#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 }
1203
1204 while (!error && !got_int)
1205 {
1206 /*
1207 * We allocate as much space for the file as we can get, plus
1208 * space for the old line plus room for one terminating NUL.
1209 * The amount is limited by the fact that read() only can read
1210 * upto max_unsigned characters (and other things).
1211 */
Bram Moolenaar13d3b052018-04-29 13:34:47 +02001212 if (!skip_read)
1213 {
1214#if VIM_SIZEOF_INT > 2
1215# if defined(SSIZE_MAX) && (SSIZE_MAX < 0x10000L)
1216 size = SSIZE_MAX; /* use max I/O size, 52K */
1217# else
1218 /* Use buffer >= 64K. Add linerest to double the size if the
1219 * line gets very long, to avoid a lot of copying. But don't
1220 * read more than 1 Mbyte at a time, so we can be interrupted.
1221 */
1222 size = 0x10000L + linerest;
1223 if (size > 0x100000L)
1224 size = 0x100000L;
1225# endif
1226#else
1227 size = 0x7ff0L - linerest; /* limit buffer to 32K */
1228#endif
1229 }
1230
1231 /* Protect against the argument of lalloc() going negative. */
1232 if (
Bram Moolenaara2aa31a2014-02-23 22:52:40 +01001233#if VIM_SIZEOF_INT <= 2
Bram Moolenaar13d3b052018-04-29 13:34:47 +02001234 linerest >= 0x7ff0
1235#else
1236 size < 0 || size + linerest + 1 < 0 || linerest >= MAXCOL
1237#endif
1238 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 {
1240 ++split;
1241 *ptr = NL; /* split line by inserting a NL */
1242 size = 1;
1243 }
1244 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 {
1246 if (!skip_read)
1247 {
Bram Moolenaarc1e37902006-04-18 21:55:01 +00001248 for ( ; size >= 10; size = (long)((long_u)size >> 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 {
1250 if ((new_buffer = lalloc((long_u)(size + linerest + 1),
1251 FALSE)) != NULL)
1252 break;
1253 }
1254 if (new_buffer == NULL)
1255 {
1256 do_outofmem_msg((long_u)(size * 2 + linerest + 1));
1257 error = TRUE;
1258 break;
1259 }
1260 if (linerest) /* copy characters from the previous buffer */
1261 mch_memmove(new_buffer, ptr - linerest, (size_t)linerest);
1262 vim_free(buffer);
1263 buffer = new_buffer;
1264 ptr = buffer + linerest;
1265 line_start = buffer;
1266
1267#ifdef FEAT_MBYTE
1268 /* May need room to translate into.
1269 * For iconv() we don't really know the required space, use a
1270 * factor ICONV_MULT.
1271 * latin1 to utf-8: 1 byte becomes up to 2 bytes
1272 * utf-16 to utf-8: 2 bytes become up to 3 bytes, 4 bytes
1273 * become up to 4 bytes, size must be multiple of 2
1274 * ucs-2 to utf-8: 2 bytes become up to 3 bytes, size must be
1275 * multiple of 2
1276 * ucs-4 to utf-8: 4 bytes become up to 6 bytes, size must be
1277 * multiple of 4 */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001278 real_size = (int)size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001279# ifdef USE_ICONV
1280 if (iconv_fd != (iconv_t)-1)
1281 size = size / ICONV_MULT;
1282 else
1283# endif
1284 if (fio_flags & FIO_LATIN1)
1285 size = size / 2;
1286 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1287 size = (size * 2 / 3) & ~1;
1288 else if (fio_flags & FIO_UCS4)
1289 size = (size * 2 / 3) & ~3;
1290 else if (fio_flags == FIO_UCSBOM)
1291 size = size / ICONV_MULT; /* worst case */
1292# ifdef WIN3264
1293 else if (fio_flags & FIO_CODEPAGE)
1294 size = size / ICONV_MULT; /* also worst case */
1295# endif
Bram Moolenaard0573012017-10-28 21:11:06 +02001296# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001297 else if (fio_flags & FIO_MACROMAN)
1298 size = size / ICONV_MULT; /* also worst case */
1299# endif
1300#endif
1301
1302#ifdef FEAT_MBYTE
1303 if (conv_restlen > 0)
1304 {
1305 /* Insert unconverted bytes from previous line. */
1306 mch_memmove(ptr, conv_rest, conv_restlen);
1307 ptr += conv_restlen;
1308 size -= conv_restlen;
1309 }
1310#endif
1311
1312 if (read_buffer)
1313 {
1314 /*
1315 * Read bytes from curbuf. Used for converting text read
1316 * from stdin.
1317 */
1318 if (read_buf_lnum > from)
1319 size = 0;
1320 else
1321 {
1322 int n, ni;
1323 long tlen;
1324
1325 tlen = 0;
1326 for (;;)
1327 {
1328 p = ml_get(read_buf_lnum) + read_buf_col;
1329 n = (int)STRLEN(p);
1330 if ((int)tlen + n + 1 > size)
1331 {
1332 /* Filled up to "size", append partial line.
1333 * Change NL to NUL to reverse the effect done
1334 * below. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001335 n = (int)(size - tlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 for (ni = 0; ni < n; ++ni)
1337 {
1338 if (p[ni] == NL)
1339 ptr[tlen++] = NUL;
1340 else
1341 ptr[tlen++] = p[ni];
1342 }
1343 read_buf_col += n;
1344 break;
1345 }
1346 else
1347 {
1348 /* Append whole line and new-line. Change NL
1349 * to NUL to reverse the effect done below. */
1350 for (ni = 0; ni < n; ++ni)
1351 {
1352 if (p[ni] == NL)
1353 ptr[tlen++] = NUL;
1354 else
1355 ptr[tlen++] = p[ni];
1356 }
1357 ptr[tlen++] = NL;
1358 read_buf_col = 0;
1359 if (++read_buf_lnum > from)
1360 {
1361 /* When the last line didn't have an
1362 * end-of-line don't add it now either. */
1363 if (!curbuf->b_p_eol)
1364 --tlen;
1365 size = tlen;
1366 break;
1367 }
1368 }
1369 }
1370 }
1371 }
1372 else
1373 {
1374 /*
1375 * Read bytes from the file.
1376 */
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01001377 size = read_eintr(fd, ptr, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 }
1379
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001380#ifdef FEAT_CRYPT
1381 /*
1382 * At start of file: Check for magic number of encryption.
1383 */
1384 if (filesize == 0 && size > 0)
1385 cryptkey = check_for_cryptkey(cryptkey, ptr, &size,
1386 &filesize, newfile, sfname,
1387 &did_ask_for_key);
1388 /*
1389 * Decrypt the read bytes. This is done before checking for
1390 * EOF because the crypt layer may be buffering.
1391 */
Bram Moolenaar829aa642017-08-23 22:32:35 +02001392 if (cryptkey != NULL && curbuf->b_cryptstate != NULL
1393 && size > 0)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001394 {
1395 if (crypt_works_inplace(curbuf->b_cryptstate))
1396 {
1397 crypt_decode_inplace(curbuf->b_cryptstate, ptr, size);
1398 }
1399 else
1400 {
1401 char_u *newptr = NULL;
1402 int decrypted_size;
1403
1404 decrypted_size = crypt_decode_alloc(
1405 curbuf->b_cryptstate, ptr, size, &newptr);
1406
1407 /* If the crypt layer is buffering, not producing
1408 * anything yet, need to read more. */
Bram Moolenaar1c17ffa2018-04-24 15:19:04 +02001409 if (decrypted_size == 0)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001410 continue;
1411
1412 if (linerest == 0)
1413 {
1414 /* Simple case: reuse returned buffer (may be
1415 * NULL, checked later). */
1416 new_buffer = newptr;
1417 }
1418 else
1419 {
1420 long_u new_size;
1421
1422 /* Need new buffer to add bytes carried over. */
1423 new_size = (long_u)(decrypted_size + linerest + 1);
1424 new_buffer = lalloc(new_size, FALSE);
1425 if (new_buffer == NULL)
1426 {
1427 do_outofmem_msg(new_size);
1428 error = TRUE;
1429 break;
1430 }
1431
1432 mch_memmove(new_buffer, buffer, linerest);
1433 if (newptr != NULL)
1434 mch_memmove(new_buffer + linerest, newptr,
1435 decrypted_size);
1436 }
1437
1438 if (new_buffer != NULL)
1439 {
1440 vim_free(buffer);
1441 buffer = new_buffer;
1442 new_buffer = NULL;
1443 line_start = buffer;
1444 ptr = buffer + linerest;
1445 }
1446 size = decrypted_size;
1447 }
1448 }
1449#endif
1450
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 if (size <= 0)
1452 {
1453 if (size < 0) /* read error */
1454 error = TRUE;
1455#ifdef FEAT_MBYTE
1456 else if (conv_restlen > 0)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001457 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00001458 /*
1459 * Reached end-of-file but some trailing bytes could
1460 * not be converted. Truncated file?
1461 */
1462
1463 /* When we did a conversion report an error. */
1464 if (fio_flags != 0
1465# ifdef USE_ICONV
1466 || iconv_fd != (iconv_t)-1
1467# endif
1468 )
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001469 {
Bram Moolenaare8d95302013-04-24 16:34:02 +02001470 if (can_retry)
1471 goto rewind_retry;
Bram Moolenaarf453d352008-06-04 17:37:34 +00001472 if (conv_error == 0)
1473 conv_error = curbuf->b_ml.ml_line_count
1474 - linecnt + 1;
1475 }
1476 /* Remember the first linenr with an illegal byte */
1477 else if (illegal_byte == 0)
1478 illegal_byte = curbuf->b_ml.ml_line_count
1479 - linecnt + 1;
1480 if (bad_char_behavior == BAD_DROP)
1481 {
1482 *(ptr - conv_restlen) = NUL;
1483 conv_restlen = 0;
1484 }
1485 else
1486 {
1487 /* Replace the trailing bytes with the replacement
1488 * character if we were converting; if we weren't,
1489 * leave the UTF8 checking code to do it, as it
1490 * works slightly differently. */
1491 if (bad_char_behavior != BAD_KEEP && (fio_flags != 0
1492# ifdef USE_ICONV
1493 || iconv_fd != (iconv_t)-1
1494# endif
1495 ))
1496 {
1497 while (conv_restlen > 0)
1498 {
1499 *(--ptr) = bad_char_behavior;
1500 --conv_restlen;
1501 }
1502 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001503 fio_flags = 0; /* don't convert this */
Bram Moolenaarb21e5842006-04-16 18:30:08 +00001504# ifdef USE_ICONV
1505 if (iconv_fd != (iconv_t)-1)
1506 {
1507 iconv_close(iconv_fd);
1508 iconv_fd = (iconv_t)-1;
1509 }
1510# endif
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001511 }
1512 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513#endif
1514 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 }
1516 skip_read = FALSE;
1517
1518#ifdef FEAT_MBYTE
1519 /*
1520 * At start of file (or after crypt magic number): Check for BOM.
1521 * Also check for a BOM for other Unicode encodings, but not after
1522 * converting with 'charconvert' or when a BOM has already been
1523 * found.
1524 */
1525 if ((filesize == 0
1526# ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001527 || (cryptkey != NULL
1528 && filesize == crypt_get_header_len(
1529 crypt_get_method_nr(curbuf)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530# endif
1531 )
1532 && (fio_flags == FIO_UCSBOM
1533 || (!curbuf->b_p_bomb
1534 && tmpname == NULL
1535 && (*fenc == 'u' || (*fenc == NUL && enc_utf8)))))
1536 {
1537 char_u *ccname;
1538 int blen;
1539
1540 /* no BOM detection in a short file or in binary mode */
1541 if (size < 2 || curbuf->b_p_bin)
1542 ccname = NULL;
1543 else
1544 ccname = check_for_bom(ptr, size, &blen,
1545 fio_flags == FIO_UCSBOM ? FIO_ALL : get_fio_flags(fenc));
1546 if (ccname != NULL)
1547 {
1548 /* Remove BOM from the text */
1549 filesize += blen;
1550 size -= blen;
1551 mch_memmove(ptr, ptr + blen, (size_t)size);
Bram Moolenaar910f66f2006-04-05 20:41:53 +00001552 if (set_options)
Bram Moolenaar83eb8852007-08-12 13:51:26 +00001553 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 curbuf->b_p_bomb = TRUE;
Bram Moolenaar83eb8852007-08-12 13:51:26 +00001555 curbuf->b_start_bomb = TRUE;
1556 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001557 }
1558
1559 if (fio_flags == FIO_UCSBOM)
1560 {
1561 if (ccname == NULL)
1562 {
1563 /* No BOM detected: retry with next encoding. */
1564 advance_fenc = TRUE;
1565 }
1566 else
1567 {
1568 /* BOM detected: set "fenc" and jump back */
1569 if (fenc_alloced)
1570 vim_free(fenc);
1571 fenc = ccname;
1572 fenc_alloced = FALSE;
1573 }
1574 /* retry reading without getting new bytes or rewinding */
1575 skip_read = TRUE;
1576 goto retry;
1577 }
1578 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00001579
1580 /* Include not converted bytes. */
1581 ptr -= conv_restlen;
1582 size += conv_restlen;
1583 conv_restlen = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584#endif
1585 /*
1586 * Break here for a read error or end-of-file.
1587 */
1588 if (size <= 0)
1589 break;
1590
1591#ifdef FEAT_MBYTE
1592
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593# ifdef USE_ICONV
1594 if (iconv_fd != (iconv_t)-1)
1595 {
1596 /*
1597 * Attempt conversion of the read bytes to 'encoding' using
1598 * iconv().
1599 */
1600 const char *fromp;
1601 char *top;
1602 size_t from_size;
1603 size_t to_size;
1604
1605 fromp = (char *)ptr;
1606 from_size = size;
1607 ptr += size;
1608 top = (char *)ptr;
1609 to_size = real_size - size;
1610
1611 /*
1612 * If there is conversion error or not enough room try using
Bram Moolenaar19a09a12005-03-04 23:39:37 +00001613 * another conversion. Except for when there is no
1614 * alternative (help files).
Bram Moolenaar071d4272004-06-13 20:20:40 +00001615 */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001616 while ((iconv(iconv_fd, (void *)&fromp, &from_size,
1617 &top, &to_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001618 == (size_t)-1 && ICONV_ERRNO != ICONV_EINVAL)
1619 || from_size > CONV_RESTLEN)
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001620 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001621 if (can_retry)
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001622 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001623 if (conv_error == 0)
1624 conv_error = readfile_linenr(linecnt,
1625 ptr, (char_u *)top);
Bram Moolenaar42eeac32005-06-29 22:40:58 +00001626
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001627 /* Deal with a bad byte and continue with the next. */
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001628 ++fromp;
1629 --from_size;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001630 if (bad_char_behavior == BAD_KEEP)
1631 {
1632 *top++ = *(fromp - 1);
1633 --to_size;
1634 }
1635 else if (bad_char_behavior != BAD_DROP)
1636 {
1637 *top++ = bad_char_behavior;
1638 --to_size;
1639 }
Bram Moolenaar8cd06ca2005-02-28 22:44:58 +00001640 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641
1642 if (from_size > 0)
1643 {
1644 /* Some remaining characters, keep them for the next
1645 * round. */
1646 mch_memmove(conv_rest, (char_u *)fromp, from_size);
1647 conv_restlen = (int)from_size;
1648 }
1649
1650 /* move the linerest to before the converted characters */
1651 line_start = ptr - linerest;
1652 mch_memmove(line_start, buffer, (size_t)linerest);
1653 size = (long)((char_u *)top - ptr);
1654 }
1655# endif
1656
1657# ifdef WIN3264
1658 if (fio_flags & FIO_CODEPAGE)
1659 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001660 char_u *src, *dst;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001661 WCHAR ucs2buf[3];
1662 int ucs2len;
1663 int codepage = FIO_GET_CP(fio_flags);
1664 int bytelen;
1665 int found_bad;
1666 char replstr[2];
1667
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 /*
1669 * Conversion from an MS-Windows codepage or UTF-8 to UTF-8 or
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001670 * a codepage, using standard MS-Windows functions. This
1671 * requires two steps:
1672 * 1. convert from 'fileencoding' to ucs-2
1673 * 2. convert from ucs-2 to 'encoding'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 *
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001675 * Because there may be illegal bytes AND an incomplete byte
1676 * sequence at the end, we may have to do the conversion one
1677 * character at a time to get it right.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001680 /* Replacement string for WideCharToMultiByte(). */
1681 if (bad_char_behavior > 0)
1682 replstr[0] = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 else
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001684 replstr[0] = '?';
1685 replstr[1] = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001686
1687 /*
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001688 * Move the bytes to the end of the buffer, so that we have
1689 * room to put the result at the start.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001690 */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001691 src = ptr + real_size - size;
1692 mch_memmove(src, ptr, size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001693
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001694 /*
1695 * Do the conversion.
1696 */
1697 dst = ptr;
1698 size = size;
1699 while (size > 0)
1700 {
1701 found_bad = FALSE;
1702
1703# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
1704 if (codepage == CP_UTF8)
1705 {
1706 /* Handle CP_UTF8 input ourselves to be able to handle
1707 * trailing bytes properly.
1708 * Get one UTF-8 character from src. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001709 bytelen = (int)utf_ptr2len_len(src, size);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001710 if (bytelen > size)
1711 {
1712 /* Only got some bytes of a character. Normally
1713 * it's put in "conv_rest", but if it's too long
1714 * deal with it as if they were illegal bytes. */
1715 if (bytelen <= CONV_RESTLEN)
1716 break;
1717
1718 /* weird overlong byte sequence */
1719 bytelen = size;
1720 found_bad = TRUE;
1721 }
1722 else
1723 {
Bram Moolenaarc01140a2006-03-24 22:21:52 +00001724 int u8c = utf_ptr2char(src);
1725
Bram Moolenaar86e01082005-12-29 22:45:34 +00001726 if (u8c > 0xffff || (*src >= 0x80 && bytelen == 1))
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001727 found_bad = TRUE;
1728 ucs2buf[0] = u8c;
1729 ucs2len = 1;
1730 }
1731 }
1732 else
1733# endif
1734 {
1735 /* We don't know how long the byte sequence is, try
1736 * from one to three bytes. */
1737 for (bytelen = 1; bytelen <= size && bytelen <= 3;
1738 ++bytelen)
1739 {
1740 ucs2len = MultiByteToWideChar(codepage,
1741 MB_ERR_INVALID_CHARS,
1742 (LPCSTR)src, bytelen,
1743 ucs2buf, 3);
1744 if (ucs2len > 0)
1745 break;
1746 }
1747 if (ucs2len == 0)
1748 {
1749 /* If we have only one byte then it's probably an
1750 * incomplete byte sequence. Otherwise discard
1751 * one byte as a bad character. */
1752 if (size == 1)
1753 break;
1754 found_bad = TRUE;
1755 bytelen = 1;
1756 }
1757 }
1758
1759 if (!found_bad)
1760 {
1761 int i;
1762
1763 /* Convert "ucs2buf[ucs2len]" to 'enc' in "dst". */
1764 if (enc_utf8)
1765 {
1766 /* From UCS-2 to UTF-8. Cannot fail. */
1767 for (i = 0; i < ucs2len; ++i)
1768 dst += utf_char2bytes(ucs2buf[i], dst);
1769 }
1770 else
1771 {
1772 BOOL bad = FALSE;
1773 int dstlen;
1774
1775 /* From UCS-2 to "enc_codepage". If the
1776 * conversion uses the default character "?",
1777 * the data doesn't fit in this encoding. */
1778 dstlen = WideCharToMultiByte(enc_codepage, 0,
1779 (LPCWSTR)ucs2buf, ucs2len,
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001780 (LPSTR)dst, (int)(src - dst),
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001781 replstr, &bad);
1782 if (bad)
1783 found_bad = TRUE;
1784 else
1785 dst += dstlen;
1786 }
1787 }
1788
1789 if (found_bad)
1790 {
1791 /* Deal with bytes we can't convert. */
1792 if (can_retry)
1793 goto rewind_retry;
1794 if (conv_error == 0)
1795 conv_error = readfile_linenr(linecnt, ptr, dst);
1796 if (bad_char_behavior != BAD_DROP)
1797 {
1798 if (bad_char_behavior == BAD_KEEP)
1799 {
1800 mch_memmove(dst, src, bytelen);
1801 dst += bytelen;
1802 }
1803 else
1804 *dst++ = bad_char_behavior;
1805 }
1806 }
1807
1808 src += bytelen;
1809 size -= bytelen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001811
1812 if (size > 0)
1813 {
1814 /* An incomplete byte sequence remaining. */
1815 mch_memmove(conv_rest, src, size);
1816 conv_restlen = size;
1817 }
1818
1819 /* The new size is equal to how much "dst" was advanced. */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001820 size = (long)(dst - ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 }
1822 else
1823# endif
Bram Moolenaar56718732006-03-15 22:53:57 +00001824# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00001825 if (fio_flags & FIO_MACROMAN)
1826 {
1827 /*
1828 * Conversion from Apple MacRoman char encoding to UTF-8 or
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001829 * latin1. This is in os_mac_conv.c.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 */
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00001831 if (macroman2enc(ptr, &size, real_size) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001832 goto rewind_retry;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 }
1834 else
1835# endif
1836 if (fio_flags != 0)
1837 {
1838 int u8c;
1839 char_u *dest;
1840 char_u *tail = NULL;
1841
1842 /*
1843 * "enc_utf8" set: Convert Unicode or Latin1 to UTF-8.
1844 * "enc_utf8" not set: Convert Unicode to Latin1.
1845 * Go from end to start through the buffer, because the number
1846 * of bytes may increase.
1847 * "dest" points to after where the UTF-8 bytes go, "p" points
1848 * to after the next character to convert.
1849 */
1850 dest = ptr + real_size;
1851 if (fio_flags == FIO_LATIN1 || fio_flags == FIO_UTF8)
1852 {
1853 p = ptr + size;
1854 if (fio_flags == FIO_UTF8)
1855 {
1856 /* Check for a trailing incomplete UTF-8 sequence */
1857 tail = ptr + size - 1;
1858 while (tail > ptr && (*tail & 0xc0) == 0x80)
1859 --tail;
1860 if (tail + utf_byte2len(*tail) <= ptr + size)
1861 tail = NULL;
1862 else
1863 p = tail;
1864 }
1865 }
1866 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1867 {
1868 /* Check for a trailing byte */
1869 p = ptr + (size & ~1);
1870 if (size & 1)
1871 tail = p;
1872 if ((fio_flags & FIO_UTF16) && p > ptr)
1873 {
1874 /* Check for a trailing leading word */
1875 if (fio_flags & FIO_ENDIAN_L)
1876 {
1877 u8c = (*--p << 8);
1878 u8c += *--p;
1879 }
1880 else
1881 {
1882 u8c = *--p;
1883 u8c += (*--p << 8);
1884 }
1885 if (u8c >= 0xd800 && u8c <= 0xdbff)
1886 tail = p;
1887 else
1888 p += 2;
1889 }
1890 }
1891 else /* FIO_UCS4 */
1892 {
1893 /* Check for trailing 1, 2 or 3 bytes */
1894 p = ptr + (size & ~3);
1895 if (size & 3)
1896 tail = p;
1897 }
1898
1899 /* If there is a trailing incomplete sequence move it to
1900 * conv_rest[]. */
1901 if (tail != NULL)
1902 {
1903 conv_restlen = (int)((ptr + size) - tail);
1904 mch_memmove(conv_rest, (char_u *)tail, conv_restlen);
1905 size -= conv_restlen;
1906 }
1907
1908
1909 while (p > ptr)
1910 {
1911 if (fio_flags & FIO_LATIN1)
1912 u8c = *--p;
1913 else if (fio_flags & (FIO_UCS2 | FIO_UTF16))
1914 {
1915 if (fio_flags & FIO_ENDIAN_L)
1916 {
1917 u8c = (*--p << 8);
1918 u8c += *--p;
1919 }
1920 else
1921 {
1922 u8c = *--p;
1923 u8c += (*--p << 8);
1924 }
1925 if ((fio_flags & FIO_UTF16)
1926 && u8c >= 0xdc00 && u8c <= 0xdfff)
1927 {
1928 int u16c;
1929
1930 if (p == ptr)
1931 {
1932 /* Missing leading word. */
1933 if (can_retry)
1934 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001935 if (conv_error == 0)
1936 conv_error = readfile_linenr(linecnt,
1937 ptr, p);
1938 if (bad_char_behavior == BAD_DROP)
1939 continue;
1940 if (bad_char_behavior != BAD_KEEP)
1941 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942 }
1943
1944 /* found second word of double-word, get the first
1945 * word and compute the resulting character */
1946 if (fio_flags & FIO_ENDIAN_L)
1947 {
1948 u16c = (*--p << 8);
1949 u16c += *--p;
1950 }
1951 else
1952 {
1953 u16c = *--p;
1954 u16c += (*--p << 8);
1955 }
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001956 u8c = 0x10000 + ((u16c & 0x3ff) << 10)
1957 + (u8c & 0x3ff);
1958
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 /* Check if the word is indeed a leading word. */
1960 if (u16c < 0xd800 || u16c > 0xdbff)
1961 {
1962 if (can_retry)
1963 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001964 if (conv_error == 0)
1965 conv_error = readfile_linenr(linecnt,
1966 ptr, p);
1967 if (bad_char_behavior == BAD_DROP)
1968 continue;
1969 if (bad_char_behavior != BAD_KEEP)
1970 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 }
1973 }
1974 else if (fio_flags & FIO_UCS4)
1975 {
1976 if (fio_flags & FIO_ENDIAN_L)
1977 {
Bram Moolenaardc1c9812017-10-27 22:15:24 +02001978 u8c = (unsigned)*--p << 24;
1979 u8c += (unsigned)*--p << 16;
1980 u8c += (unsigned)*--p << 8;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001981 u8c += *--p;
1982 }
1983 else /* big endian */
1984 {
1985 u8c = *--p;
Bram Moolenaardc1c9812017-10-27 22:15:24 +02001986 u8c += (unsigned)*--p << 8;
1987 u8c += (unsigned)*--p << 16;
1988 u8c += (unsigned)*--p << 24;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 }
1990 }
1991 else /* UTF-8 */
1992 {
1993 if (*--p < 0x80)
1994 u8c = *p;
1995 else
1996 {
1997 len = utf_head_off(ptr, p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00001998 p -= len;
1999 u8c = utf_ptr2char(p);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 if (len == 0)
2001 {
2002 /* Not a valid UTF-8 character, retry with
2003 * another fenc when possible, otherwise just
2004 * report the error. */
2005 if (can_retry)
2006 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002007 if (conv_error == 0)
2008 conv_error = readfile_linenr(linecnt,
2009 ptr, p);
2010 if (bad_char_behavior == BAD_DROP)
2011 continue;
2012 if (bad_char_behavior != BAD_KEEP)
2013 u8c = bad_char_behavior;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 }
2016 }
2017 if (enc_utf8) /* produce UTF-8 */
2018 {
2019 dest -= utf_char2len(u8c);
2020 (void)utf_char2bytes(u8c, dest);
2021 }
2022 else /* produce Latin1 */
2023 {
2024 --dest;
2025 if (u8c >= 0x100)
2026 {
2027 /* character doesn't fit in latin1, retry with
2028 * another fenc when possible, otherwise just
2029 * report the error. */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002030 if (can_retry)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 goto rewind_retry;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002032 if (conv_error == 0)
2033 conv_error = readfile_linenr(linecnt, ptr, p);
2034 if (bad_char_behavior == BAD_DROP)
2035 ++dest;
2036 else if (bad_char_behavior == BAD_KEEP)
2037 *dest = u8c;
2038 else if (eap != NULL && eap->bad_char != 0)
2039 *dest = bad_char_behavior;
2040 else
2041 *dest = 0xBF;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 }
2043 else
2044 *dest = u8c;
2045 }
2046 }
2047
2048 /* move the linerest to before the converted characters */
2049 line_start = dest - linerest;
2050 mch_memmove(line_start, buffer, (size_t)linerest);
2051 size = (long)((ptr + real_size) - dest);
2052 ptr = dest;
2053 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00002054 else if (enc_utf8 && !curbuf->b_p_bin)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002055 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00002056 int incomplete_tail = FALSE;
2057
2058 /* Reading UTF-8: Check if the bytes are valid UTF-8. */
2059 for (p = ptr; ; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002060 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00002061 int todo = (int)((ptr + size) - p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002062 int l;
2063
2064 if (todo <= 0)
2065 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 if (*p >= 0x80)
2067 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 /* A length of 1 means it's an illegal byte. Accept
2069 * an incomplete character at the end though, the next
2070 * read() will get the next bytes, we'll check it
2071 * then. */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002072 l = utf_ptr2len_len(p, todo);
Bram Moolenaarf453d352008-06-04 17:37:34 +00002073 if (l > todo && !incomplete_tail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00002075 /* Avoid retrying with a different encoding when
2076 * a truncated file is more likely, or attempting
2077 * to read the rest of an incomplete sequence when
2078 * we have already done so. */
2079 if (p > ptr || filesize > 0)
2080 incomplete_tail = TRUE;
2081 /* Incomplete byte sequence, move it to conv_rest[]
2082 * and try to read the rest of it, unless we've
2083 * already done so. */
2084 if (p > ptr)
2085 {
2086 conv_restlen = todo;
2087 mch_memmove(conv_rest, p, conv_restlen);
2088 size -= conv_restlen;
2089 break;
2090 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00002092 if (l == 1 || l > todo)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002093 {
2094 /* Illegal byte. If we can try another encoding
Bram Moolenaarf453d352008-06-04 17:37:34 +00002095 * do that, unless at EOF where a truncated
2096 * file is more likely than a conversion error. */
2097 if (can_retry && !incomplete_tail)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002098 break;
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002099# ifdef USE_ICONV
2100 /* When we did a conversion report an error. */
2101 if (iconv_fd != (iconv_t)-1 && conv_error == 0)
2102 conv_error = readfile_linenr(linecnt, ptr, p);
2103# endif
Bram Moolenaarf453d352008-06-04 17:37:34 +00002104 /* Remember the first linenr with an illegal byte */
2105 if (conv_error == 0 && illegal_byte == 0)
2106 illegal_byte = readfile_linenr(linecnt, ptr, p);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002107
2108 /* Drop, keep or replace the bad byte. */
2109 if (bad_char_behavior == BAD_DROP)
2110 {
Bram Moolenaarf453d352008-06-04 17:37:34 +00002111 mch_memmove(p, p + 1, todo - 1);
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002112 --p;
2113 --size;
2114 }
2115 else if (bad_char_behavior != BAD_KEEP)
2116 *p = bad_char_behavior;
2117 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00002118 else
2119 p += l - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002120 }
2121 }
Bram Moolenaarf453d352008-06-04 17:37:34 +00002122 if (p < ptr + size && !incomplete_tail)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002123 {
2124 /* Detected a UTF-8 error. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002125rewind_retry:
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002126 /* Retry reading with another conversion. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127# if defined(FEAT_EVAL) && defined(USE_ICONV)
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002128 if (*p_ccv != NUL && iconv_fd != (iconv_t)-1)
2129 /* iconv() failed, try 'charconvert' */
2130 did_iconv = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002131 else
2132# endif
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002133 /* use next item from 'fileencodings' */
2134 advance_fenc = TRUE;
2135 file_rewind = TRUE;
2136 goto retry;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 }
2138 }
2139#endif
2140
2141 /* count the number of characters (after conversion!) */
2142 filesize += size;
2143
2144 /*
2145 * when reading the first part of a file: guess EOL type
2146 */
2147 if (fileformat == EOL_UNKNOWN)
2148 {
2149 /* First try finding a NL, for Dos and Unix */
2150 if (try_dos || try_unix)
2151 {
Bram Moolenaarc6b72172015-02-27 17:48:09 +01002152 /* Reset the carriage return counter. */
2153 if (try_mac)
2154 try_mac = 1;
2155
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 for (p = ptr; p < ptr + size; ++p)
2157 {
2158 if (*p == NL)
2159 {
2160 if (!try_unix
2161 || (try_dos && p > ptr && p[-1] == CAR))
2162 fileformat = EOL_DOS;
2163 else
2164 fileformat = EOL_UNIX;
2165 break;
2166 }
Bram Moolenaar05eb6122015-02-17 14:15:19 +01002167 else if (*p == CAR && try_mac)
2168 try_mac++;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002169 }
2170
2171 /* Don't give in to EOL_UNIX if EOL_MAC is more likely */
2172 if (fileformat == EOL_UNIX && try_mac)
2173 {
2174 /* Need to reset the counters when retrying fenc. */
2175 try_mac = 1;
2176 try_unix = 1;
2177 for (; p >= ptr && *p != CAR; p--)
2178 ;
2179 if (p >= ptr)
2180 {
2181 for (p = ptr; p < ptr + size; ++p)
2182 {
2183 if (*p == NL)
2184 try_unix++;
2185 else if (*p == CAR)
2186 try_mac++;
2187 }
2188 if (try_mac > try_unix)
2189 fileformat = EOL_MAC;
2190 }
2191 }
Bram Moolenaar05eb6122015-02-17 14:15:19 +01002192 else if (fileformat == EOL_UNKNOWN && try_mac == 1)
2193 /* Looking for CR but found no end-of-line markers at
2194 * all: use the default format. */
2195 fileformat = default_fileformat();
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 }
2197
2198 /* No NL found: may use Mac format */
2199 if (fileformat == EOL_UNKNOWN && try_mac)
2200 fileformat = EOL_MAC;
2201
2202 /* Still nothing found? Use first format in 'ffs' */
2203 if (fileformat == EOL_UNKNOWN)
2204 fileformat = default_fileformat();
2205
2206 /* if editing a new file: may set p_tx and p_ff */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002207 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002208 set_fileformat(fileformat, OPT_LOCAL);
2209 }
2210 }
2211
2212 /*
2213 * This loop is executed once for every character read.
2214 * Keep it fast!
2215 */
2216 if (fileformat == EOL_MAC)
2217 {
2218 --ptr;
2219 while (++ptr, --size >= 0)
2220 {
2221 /* catch most common case first */
2222 if ((c = *ptr) != NUL && c != CAR && c != NL)
2223 continue;
2224 if (c == NUL)
2225 *ptr = NL; /* NULs are replaced by newlines! */
2226 else if (c == NL)
2227 *ptr = CAR; /* NLs are replaced by CRs! */
2228 else
2229 {
2230 if (skip_count == 0)
2231 {
2232 *ptr = NUL; /* end of line */
2233 len = (colnr_T) (ptr - line_start + 1);
2234 if (ml_append(lnum, line_start, len, newfile) == FAIL)
2235 {
2236 error = TRUE;
2237 break;
2238 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002239#ifdef FEAT_PERSISTENT_UNDO
2240 if (read_undo_file)
2241 sha256_update(&sha_ctx, line_start, len);
2242#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 ++lnum;
2244 if (--read_count == 0)
2245 {
2246 error = TRUE; /* break loop */
2247 line_start = ptr; /* nothing left to write */
2248 break;
2249 }
2250 }
2251 else
2252 --skip_count;
2253 line_start = ptr + 1;
2254 }
2255 }
2256 }
2257 else
2258 {
2259 --ptr;
2260 while (++ptr, --size >= 0)
2261 {
2262 if ((c = *ptr) != NUL && c != NL) /* catch most common case */
2263 continue;
2264 if (c == NUL)
2265 *ptr = NL; /* NULs are replaced by newlines! */
2266 else
2267 {
2268 if (skip_count == 0)
2269 {
2270 *ptr = NUL; /* end of line */
2271 len = (colnr_T)(ptr - line_start + 1);
2272 if (fileformat == EOL_DOS)
2273 {
Bram Moolenaar2aa5f692017-01-24 15:46:48 +01002274 if (ptr > line_start && ptr[-1] == CAR)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 {
Bram Moolenaar2aa5f692017-01-24 15:46:48 +01002276 /* remove CR before NL */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002277 ptr[-1] = NUL;
2278 --len;
2279 }
2280 /*
2281 * Reading in Dos format, but no CR-LF found!
2282 * When 'fileformats' includes "unix", delete all
2283 * the lines read so far and start all over again.
2284 * Otherwise give an error message later.
2285 */
2286 else if (ff_error != EOL_DOS)
2287 {
2288 if ( try_unix
2289 && !read_stdin
2290 && (read_buffer
Bram Moolenaar8767f522016-07-01 17:17:39 +02002291 || vim_lseek(fd, (off_T)0L, SEEK_SET)
2292 == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002293 {
2294 fileformat = EOL_UNIX;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002295 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002296 set_fileformat(EOL_UNIX, OPT_LOCAL);
2297 file_rewind = TRUE;
2298 keep_fileformat = TRUE;
2299 goto retry;
2300 }
2301 ff_error = EOL_DOS;
2302 }
2303 }
2304 if (ml_append(lnum, line_start, len, newfile) == FAIL)
2305 {
2306 error = TRUE;
2307 break;
2308 }
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002309#ifdef FEAT_PERSISTENT_UNDO
2310 if (read_undo_file)
2311 sha256_update(&sha_ctx, line_start, len);
2312#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 ++lnum;
2314 if (--read_count == 0)
2315 {
2316 error = TRUE; /* break loop */
2317 line_start = ptr; /* nothing left to write */
2318 break;
2319 }
2320 }
2321 else
2322 --skip_count;
2323 line_start = ptr + 1;
2324 }
2325 }
2326 }
2327 linerest = (long)(ptr - line_start);
2328 ui_breakcheck();
2329 }
2330
2331failed:
2332 /* not an error, max. number of lines reached */
2333 if (error && read_count == 0)
2334 error = FALSE;
2335
2336 /*
2337 * If we get EOF in the middle of a line, note the fact and
2338 * complete the line ourselves.
2339 * In Dos format ignore a trailing CTRL-Z, unless 'binary' set.
2340 */
2341 if (!error
2342 && !got_int
2343 && linerest != 0
2344 && !(!curbuf->b_p_bin
2345 && fileformat == EOL_DOS
2346 && *line_start == Ctrl_Z
2347 && ptr == line_start + 1))
2348 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002349 /* remember for when writing */
2350 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002351 curbuf->b_p_eol = FALSE;
2352 *ptr = NUL;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002353 len = (colnr_T)(ptr - line_start + 1);
2354 if (ml_append(lnum, line_start, len, newfile) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002355 error = TRUE;
2356 else
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002357 {
2358#ifdef FEAT_PERSISTENT_UNDO
2359 if (read_undo_file)
2360 sha256_update(&sha_ctx, line_start, len);
2361#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 read_no_eol_lnum = ++lnum;
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002363 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364 }
2365
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002366 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 save_file_ff(curbuf); /* remember the current file format */
2368
2369#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002370 if (curbuf->b_cryptstate != NULL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002371 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002372 crypt_free_state(curbuf->b_cryptstate);
2373 curbuf->b_cryptstate = NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002374 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002375 if (cryptkey != NULL && cryptkey != curbuf->b_p_key)
2376 crypt_free_key(cryptkey);
2377 /* Don't set cryptkey to NULL, it's used below as a flag that
2378 * encryption was used. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002379#endif
2380
2381#ifdef FEAT_MBYTE
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002382 /* If editing a new file: set 'fenc' for the current buffer.
2383 * Also for ":read ++edit file". */
2384 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385 set_string_option_direct((char_u *)"fenc", -1, fenc,
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00002386 OPT_FREE|OPT_LOCAL, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002387 if (fenc_alloced)
2388 vim_free(fenc);
2389# ifdef USE_ICONV
2390 if (iconv_fd != (iconv_t)-1)
2391 {
2392 iconv_close(iconv_fd);
2393 iconv_fd = (iconv_t)-1;
2394 }
2395# endif
2396#endif
2397
2398 if (!read_buffer && !read_stdin)
2399 close(fd); /* errors are ignored */
Bram Moolenaarf05da212009-11-17 16:13:15 +00002400#ifdef HAVE_FD_CLOEXEC
2401 else
2402 {
2403 int fdflags = fcntl(fd, F_GETFD);
2404 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +01002405 (void)fcntl(fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +00002406 }
2407#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002408 vim_free(buffer);
2409
2410#ifdef HAVE_DUP
2411 if (read_stdin)
2412 {
2413 /* Use stderr for stdin, makes shell commands work. */
2414 close(0);
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00002415 ignored = dup(2);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002416 }
2417#endif
2418
2419#ifdef FEAT_MBYTE
2420 if (tmpname != NULL)
2421 {
2422 mch_remove(tmpname); /* delete converted file */
2423 vim_free(tmpname);
2424 }
2425#endif
2426 --no_wait_return; /* may wait for return now */
2427
2428 /*
2429 * In recovery mode everything but autocommands is skipped.
2430 */
2431 if (!recoverymode)
2432 {
2433 /* need to delete the last line, which comes from the empty buffer */
2434 if (newfile && wasempty && !(curbuf->b_ml.ml_flags & ML_EMPTY))
2435 {
2436#ifdef FEAT_NETBEANS_INTG
2437 netbeansFireChanges = 0;
2438#endif
2439 ml_delete(curbuf->b_ml.ml_line_count, FALSE);
2440#ifdef FEAT_NETBEANS_INTG
2441 netbeansFireChanges = 1;
2442#endif
2443 --linecnt;
2444 }
2445 linecnt = curbuf->b_ml.ml_line_count - linecnt;
2446 if (filesize == 0)
2447 linecnt = 0;
2448 if (newfile || read_buffer)
Bram Moolenaar7263a772007-05-10 17:35:54 +00002449 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 redraw_curbuf_later(NOT_VALID);
Bram Moolenaar7263a772007-05-10 17:35:54 +00002451#ifdef FEAT_DIFF
2452 /* After reading the text into the buffer the diff info needs to
2453 * be updated. */
2454 diff_invalidate(curbuf);
2455#endif
2456#ifdef FEAT_FOLDING
2457 /* All folds in the window are invalid now. Mark them for update
2458 * before triggering autocommands. */
2459 foldUpdateAll(curwin);
2460#endif
2461 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 else if (linecnt) /* appended at least one line */
2463 appended_lines_mark(from, linecnt);
2464
Bram Moolenaar071d4272004-06-13 20:20:40 +00002465#ifndef ALWAYS_USE_GUI
2466 /*
2467 * If we were reading from the same terminal as where messages go,
2468 * the screen will have been messed up.
2469 * Switch on raw mode now and clear the screen.
2470 */
2471 if (read_stdin)
2472 {
2473 settmode(TMODE_RAW); /* set to raw mode */
2474 starttermcap();
2475 screenclear();
2476 }
2477#endif
2478
2479 if (got_int)
2480 {
2481 if (!(flags & READ_DUMMY))
2482 {
2483 filemess(curbuf, sfname, (char_u *)_(e_interr), 0);
2484 if (newfile)
2485 curbuf->b_p_ro = TRUE; /* must use "w!" now */
2486 }
2487 msg_scroll = msg_save;
2488#ifdef FEAT_VIMINFO
2489 check_marks_read();
2490#endif
2491 return OK; /* an interrupt isn't really an error */
2492 }
2493
2494 if (!filtering && !(flags & READ_DUMMY))
2495 {
2496 msg_add_fname(curbuf, sfname); /* fname in IObuff with quotes */
2497 c = FALSE;
2498
2499#ifdef UNIX
2500# ifdef S_ISFIFO
2501 if (S_ISFIFO(perm)) /* fifo or socket */
2502 {
2503 STRCAT(IObuff, _("[fifo/socket]"));
2504 c = TRUE;
2505 }
2506# else
2507# ifdef S_IFIFO
2508 if ((perm & S_IFMT) == S_IFIFO) /* fifo */
2509 {
2510 STRCAT(IObuff, _("[fifo]"));
2511 c = TRUE;
2512 }
2513# endif
2514# ifdef S_IFSOCK
2515 if ((perm & S_IFMT) == S_IFSOCK) /* or socket */
2516 {
2517 STRCAT(IObuff, _("[socket]"));
2518 c = TRUE;
2519 }
2520# endif
2521# endif
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +00002522# ifdef OPEN_CHR_FILES
2523 if (S_ISCHR(perm)) /* or character special */
2524 {
2525 STRCAT(IObuff, _("[character special]"));
2526 c = TRUE;
2527 }
2528# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002529#endif
2530 if (curbuf->b_p_ro)
2531 {
2532 STRCAT(IObuff, shortmess(SHM_RO) ? _("[RO]") : _("[readonly]"));
2533 c = TRUE;
2534 }
2535 if (read_no_eol_lnum)
2536 {
2537 msg_add_eol();
2538 c = TRUE;
2539 }
2540 if (ff_error == EOL_DOS)
2541 {
2542 STRCAT(IObuff, _("[CR missing]"));
2543 c = TRUE;
2544 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 if (split)
2546 {
2547 STRCAT(IObuff, _("[long lines split]"));
2548 c = TRUE;
2549 }
2550#ifdef FEAT_MBYTE
2551 if (notconverted)
2552 {
2553 STRCAT(IObuff, _("[NOT converted]"));
2554 c = TRUE;
2555 }
2556 else if (converted)
2557 {
2558 STRCAT(IObuff, _("[converted]"));
2559 c = TRUE;
2560 }
2561#endif
2562#ifdef FEAT_CRYPT
2563 if (cryptkey != NULL)
2564 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002565 crypt_append_msg(curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 c = TRUE;
2567 }
2568#endif
2569#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002570 if (conv_error != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002571 {
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002572 sprintf((char *)IObuff + STRLEN(IObuff),
2573 _("[CONVERSION ERROR in line %ld]"), (long)conv_error);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 c = TRUE;
2575 }
2576 else if (illegal_byte > 0)
2577 {
2578 sprintf((char *)IObuff + STRLEN(IObuff),
2579 _("[ILLEGAL BYTE in line %ld]"), (long)illegal_byte);
2580 c = TRUE;
2581 }
2582 else
2583#endif
2584 if (error)
2585 {
2586 STRCAT(IObuff, _("[READ ERRORS]"));
2587 c = TRUE;
2588 }
2589 if (msg_add_fileformat(fileformat))
2590 c = TRUE;
2591#ifdef FEAT_CRYPT
2592 if (cryptkey != NULL)
Bram Moolenaar40e6a712010-05-16 22:32:54 +02002593 msg_add_lines(c, (long)linecnt, filesize
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002594 - crypt_get_header_len(crypt_get_method_nr(curbuf)));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595 else
2596#endif
2597 msg_add_lines(c, (long)linecnt, filesize);
2598
Bram Moolenaard23a8232018-02-10 18:45:26 +01002599 VIM_CLEAR(keep_msg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002600 msg_scrolled_ign = TRUE;
2601#ifdef ALWAYS_USE_GUI
2602 /* Don't show the message when reading stdin, it would end up in a
2603 * message box (which might be shown when exiting!) */
2604 if (read_stdin || read_buffer)
2605 p = msg_may_trunc(FALSE, IObuff);
2606 else
2607#endif
2608 p = msg_trunc_attr(IObuff, FALSE, 0);
2609 if (read_stdin || read_buffer || restart_edit != 0
Bram Moolenaar1c7715d2005-10-03 22:02:18 +00002610 || (msg_scrolled != 0 && !need_wait_return))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 /* Need to repeat the message after redrawing when:
2612 * - When reading from stdin (the screen will be cleared next).
2613 * - When restart_edit is set (otherwise there will be a delay
2614 * before redrawing).
2615 * - When the screen was scrolled but there is no wait-return
2616 * prompt. */
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00002617 set_keep_msg(p, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 msg_scrolled_ign = FALSE;
2619 }
2620
2621 /* with errors writing the file requires ":w!" */
2622 if (newfile && (error
2623#ifdef FEAT_MBYTE
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002624 || conv_error != 0
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00002625 || (illegal_byte > 0 && bad_char_behavior != BAD_KEEP)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626#endif
2627 ))
2628 curbuf->b_p_ro = TRUE;
2629
2630 u_clearline(); /* cannot use "U" command after adding lines */
2631
2632 /*
2633 * In Ex mode: cursor at last new line.
2634 * Otherwise: cursor at first new line.
2635 */
2636 if (exmode_active)
2637 curwin->w_cursor.lnum = from + linecnt;
2638 else
2639 curwin->w_cursor.lnum = from + 1;
2640 check_cursor_lnum();
2641 beginline(BL_WHITE | BL_FIX); /* on first non-blank */
2642
2643 /*
2644 * Set '[ and '] marks to the newly read lines.
2645 */
2646 curbuf->b_op_start.lnum = from + 1;
2647 curbuf->b_op_start.col = 0;
2648 curbuf->b_op_end.lnum = from + linecnt;
2649 curbuf->b_op_end.col = 0;
Bram Moolenaar03f48552006-02-28 23:52:23 +00002650
2651#ifdef WIN32
2652 /*
2653 * Work around a weird problem: When a file has two links (only
2654 * possible on NTFS) and we write through one link, then stat() it
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00002655 * through the other link, the timestamp information may be wrong.
Bram Moolenaar03f48552006-02-28 23:52:23 +00002656 * It's correct again after reading the file, thus reset the timestamp
2657 * here.
2658 */
2659 if (newfile && !read_stdin && !read_buffer
2660 && mch_stat((char *)fname, &st) >= 0)
2661 {
2662 buf_store_time(curbuf, &st, fname);
2663 curbuf->b_mtime_read = curbuf->b_mtime;
2664 }
2665#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002666 }
2667 msg_scroll = msg_save;
2668
2669#ifdef FEAT_VIMINFO
2670 /*
2671 * Get the marks before executing autocommands, so they can be used there.
2672 */
2673 check_marks_read();
2674#endif
2675
Bram Moolenaar071d4272004-06-13 20:20:40 +00002676 /*
Bram Moolenaar34d72d42015-07-17 14:18:08 +02002677 * We remember if the last line of the read didn't have
2678 * an eol even when 'binary' is off, to support turning 'fixeol' off,
2679 * or writing the read again with 'binary' on. The latter is required
2680 * for ":autocmd FileReadPost *.gz set bin|'[,']!gunzip" to work.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002681 */
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01002682 curbuf->b_no_eol_lnum = read_no_eol_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002683
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02002684 /* When reloading a buffer put the cursor at the first line that is
2685 * different. */
2686 if (flags & READ_KEEP_UNDO)
2687 u_find_first_changed();
2688
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002689#ifdef FEAT_PERSISTENT_UNDO
2690 /*
2691 * When opening a new file locate undo info and read it.
2692 */
2693 if (read_undo_file)
2694 {
2695 char_u hash[UNDO_HASH_SIZE];
2696
2697 sha256_finish(&sha_ctx, hash);
Bram Moolenaar6ed8ed82010-05-30 20:40:11 +02002698 u_read_undo(NULL, hash, fname);
Bram Moolenaar55debbe2010-05-23 23:34:36 +02002699 }
2700#endif
2701
Bram Moolenaarf71d7b92016-08-09 22:14:05 +02002702 if (!read_stdin && !read_fifo && (!read_buffer || sfname != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703 {
2704 int m = msg_scroll;
2705 int n = msg_scrolled;
2706
2707 /* Save the fileformat now, otherwise the buffer will be considered
2708 * modified if the format/encoding was automatically detected. */
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002709 if (set_options)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002710 save_file_ff(curbuf);
2711
2712 /*
2713 * The output from the autocommands should not overwrite anything and
2714 * should not be overwritten: Set msg_scroll, restore its value if no
2715 * output was done.
2716 */
2717 msg_scroll = TRUE;
2718 if (filtering)
2719 apply_autocmds_exarg(EVENT_FILTERREADPOST, NULL, sfname,
2720 FALSE, curbuf, eap);
Bram Moolenaarf71d7b92016-08-09 22:14:05 +02002721 else if (newfile || (read_buffer && sfname != NULL))
Bram Moolenaarc3691332016-04-20 12:49:49 +02002722 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002723 apply_autocmds_exarg(EVENT_BUFREADPOST, NULL, sfname,
2724 FALSE, curbuf, eap);
Bram Moolenaarc3691332016-04-20 12:49:49 +02002725 if (!au_did_filetype && *curbuf->b_p_ft != NUL)
2726 /*
2727 * EVENT_FILETYPE was not triggered but the buffer already has a
2728 * filetype. Trigger EVENT_FILETYPE using the existing filetype.
2729 */
2730 apply_autocmds(EVENT_FILETYPE, curbuf->b_p_ft, curbuf->b_fname,
2731 TRUE, curbuf);
2732 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002733 else
2734 apply_autocmds_exarg(EVENT_FILEREADPOST, sfname, sfname,
2735 FALSE, NULL, eap);
2736 if (msg_scrolled == n)
2737 msg_scroll = m;
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01002738# ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00002739 if (aborting()) /* autocmds may abort script processing */
2740 return FAIL;
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01002741# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002742 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002743
2744 if (recoverymode && error)
2745 return FAIL;
2746 return OK;
2747}
2748
Bram Moolenaarf04507d2016-08-20 15:05:39 +02002749#if defined(OPEN_CHR_FILES) || defined(PROTO)
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +00002750/*
2751 * Returns TRUE if the file name argument is of the form "/dev/fd/\d\+",
2752 * which is the name of files used for process substitution output by
2753 * some shells on some operating systems, e.g., bash on SunOS.
2754 * Do not accept "/dev/fd/[012]", opening these may hang Vim.
2755 */
Bram Moolenaarf04507d2016-08-20 15:05:39 +02002756 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002757is_dev_fd_file(char_u *fname)
Bram Moolenaarfe1c56d2007-07-10 15:10:54 +00002758{
2759 return (STRNCMP(fname, "/dev/fd/", 8) == 0
2760 && VIM_ISDIGIT(fname[8])
2761 && *skipdigits(fname + 9) == NUL
2762 && (fname[9] != NUL
2763 || (fname[8] != '0' && fname[8] != '1' && fname[8] != '2')));
2764}
2765#endif
2766
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002767#ifdef FEAT_MBYTE
2768
2769/*
2770 * From the current line count and characters read after that, estimate the
2771 * line number where we are now.
2772 * Used for error messages that include a line number.
2773 */
2774 static linenr_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002775readfile_linenr(
2776 linenr_T linecnt, /* line count before reading more bytes */
2777 char_u *p, /* start of more bytes read */
2778 char_u *endp) /* end of more bytes read */
Bram Moolenaarb0bf8582005-12-13 20:02:15 +00002779{
2780 char_u *s;
2781 linenr_T lnum;
2782
2783 lnum = curbuf->b_ml.ml_line_count - linecnt + 1;
2784 for (s = p; s < endp; ++s)
2785 if (*s == '\n')
2786 ++lnum;
2787 return lnum;
2788}
2789#endif
2790
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791/*
Bram Moolenaar195d6352005-12-19 22:08:24 +00002792 * Fill "*eap" to force the 'fileencoding', 'fileformat' and 'binary to be
2793 * equal to the buffer "buf". Used for calling readfile().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002794 * Returns OK or FAIL.
2795 */
2796 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002797prep_exarg(exarg_T *eap, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798{
Bram Moolenaar333b80a2018-04-04 22:57:29 +02002799 eap->cmd = alloc(15
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800#ifdef FEAT_MBYTE
Bram Moolenaar333b80a2018-04-04 22:57:29 +02002801 + (unsigned)STRLEN(buf->b_p_fenc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802#endif
Bram Moolenaar333b80a2018-04-04 22:57:29 +02002803 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804 if (eap->cmd == NULL)
2805 return FAIL;
2806
2807#ifdef FEAT_MBYTE
Bram Moolenaar333b80a2018-04-04 22:57:29 +02002808 sprintf((char *)eap->cmd, "e ++enc=%s", buf->b_p_fenc);
2809 eap->force_enc = 8;
Bram Moolenaar195d6352005-12-19 22:08:24 +00002810 eap->bad_char = buf->b_bad_char;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002811#else
Bram Moolenaar333b80a2018-04-04 22:57:29 +02002812 sprintf((char *)eap->cmd, "e");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813#endif
Bram Moolenaar333b80a2018-04-04 22:57:29 +02002814 eap->force_ff = *buf->b_p_ff;
Bram Moolenaar195d6352005-12-19 22:08:24 +00002815
2816 eap->force_bin = buf->b_p_bin ? FORCE_BIN : FORCE_NOBIN;
Bram Moolenaar910f66f2006-04-05 20:41:53 +00002817 eap->read_edit = FALSE;
Bram Moolenaar195d6352005-12-19 22:08:24 +00002818 eap->forceit = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002819 return OK;
2820}
2821
Bram Moolenaarad875fb2013-07-24 15:02:03 +02002822/*
2823 * Set default or forced 'fileformat' and 'binary'.
2824 */
2825 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002826set_file_options(int set_options, exarg_T *eap)
Bram Moolenaarad875fb2013-07-24 15:02:03 +02002827{
2828 /* set default 'fileformat' */
2829 if (set_options)
2830 {
2831 if (eap != NULL && eap->force_ff != 0)
2832 set_fileformat(get_fileformat_force(curbuf, eap), OPT_LOCAL);
2833 else if (*p_ffs != NUL)
2834 set_fileformat(default_fileformat(), OPT_LOCAL);
2835 }
2836
2837 /* set or reset 'binary' */
2838 if (eap != NULL && eap->force_bin != 0)
2839 {
2840 int oldval = curbuf->b_p_bin;
2841
2842 curbuf->b_p_bin = (eap->force_bin == FORCE_BIN);
2843 set_options_bin(oldval, curbuf->b_p_bin, OPT_LOCAL);
2844 }
2845}
2846
2847#if defined(FEAT_MBYTE) || defined(PROTO)
2848/*
2849 * Set forced 'fileencoding'.
2850 */
2851 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002852set_forced_fenc(exarg_T *eap)
Bram Moolenaarad875fb2013-07-24 15:02:03 +02002853{
2854 if (eap->force_enc != 0)
2855 {
2856 char_u *fenc = enc_canonize(eap->cmd + eap->force_enc);
2857
2858 if (fenc != NULL)
2859 set_string_option_direct((char_u *)"fenc", -1,
2860 fenc, OPT_FREE|OPT_LOCAL, 0);
2861 vim_free(fenc);
2862 }
2863}
2864
Bram Moolenaar071d4272004-06-13 20:20:40 +00002865/*
2866 * Find next fileencoding to use from 'fileencodings'.
2867 * "pp" points to fenc_next. It's advanced to the next item.
2868 * When there are no more items, an empty string is returned and *pp is set to
2869 * NULL.
2870 * When *pp is not set to NULL, the result is in allocated memory.
2871 */
2872 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002873next_fenc(char_u **pp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002874{
2875 char_u *p;
2876 char_u *r;
2877
2878 if (**pp == NUL)
2879 {
2880 *pp = NULL;
2881 return (char_u *)"";
2882 }
2883 p = vim_strchr(*pp, ',');
2884 if (p == NULL)
2885 {
2886 r = enc_canonize(*pp);
2887 *pp += STRLEN(*pp);
2888 }
2889 else
2890 {
2891 r = vim_strnsave(*pp, (int)(p - *pp));
2892 *pp = p + 1;
2893 if (r != NULL)
2894 {
2895 p = enc_canonize(r);
2896 vim_free(r);
2897 r = p;
2898 }
2899 }
2900 if (r == NULL) /* out of memory */
2901 {
2902 r = (char_u *)"";
2903 *pp = NULL;
2904 }
2905 return r;
2906}
2907
2908# ifdef FEAT_EVAL
2909/*
2910 * Convert a file with the 'charconvert' expression.
2911 * This closes the file which is to be read, converts it and opens the
2912 * resulting file for reading.
2913 * Returns name of the resulting converted file (the caller should delete it
2914 * after reading it).
2915 * Returns NULL if the conversion failed ("*fdp" is not set) .
2916 */
2917 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002918readfile_charconvert(
2919 char_u *fname, /* name of input file */
2920 char_u *fenc, /* converted from */
2921 int *fdp) /* in/out: file descriptor of file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922{
2923 char_u *tmpname;
2924 char_u *errmsg = NULL;
2925
Bram Moolenaare5c421c2015-03-31 13:33:08 +02002926 tmpname = vim_tempname('r', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002927 if (tmpname == NULL)
2928 errmsg = (char_u *)_("Can't find temp file for conversion");
2929 else
2930 {
2931 close(*fdp); /* close the input file, ignore errors */
2932 *fdp = -1;
2933 if (eval_charconvert(fenc, enc_utf8 ? (char_u *)"utf-8" : p_enc,
2934 fname, tmpname) == FAIL)
2935 errmsg = (char_u *)_("Conversion with 'charconvert' failed");
2936 if (errmsg == NULL && (*fdp = mch_open((char *)tmpname,
2937 O_RDONLY | O_EXTRA, 0)) < 0)
2938 errmsg = (char_u *)_("can't read output of 'charconvert'");
2939 }
2940
2941 if (errmsg != NULL)
2942 {
2943 /* Don't use emsg(), it breaks mappings, the retry with
2944 * another type of conversion might still work. */
2945 MSG(errmsg);
2946 if (tmpname != NULL)
2947 {
2948 mch_remove(tmpname); /* delete converted file */
Bram Moolenaard23a8232018-02-10 18:45:26 +01002949 VIM_CLEAR(tmpname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 }
2951 }
2952
2953 /* If the input file is closed, open it (caller should check for error). */
2954 if (*fdp < 0)
2955 *fdp = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2956
2957 return tmpname;
2958}
2959# endif
2960
2961#endif
2962
2963#ifdef FEAT_VIMINFO
2964/*
2965 * Read marks for the current buffer from the viminfo file, when we support
2966 * buffer marks and the buffer has a name.
2967 */
2968 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002969check_marks_read(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002970{
2971 if (!curbuf->b_marks_read && get_viminfo_parameter('\'') > 0
2972 && curbuf->b_ffname != NULL)
Bram Moolenaard812df62008-11-09 12:46:09 +00002973 read_viminfo(NULL, VIF_WANT_MARKS);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002974
2975 /* Always set b_marks_read; needed when 'viminfo' is changed to include
2976 * the ' parameter after opening a buffer. */
2977 curbuf->b_marks_read = TRUE;
2978}
2979#endif
2980
Bram Moolenaara3ff49f2010-05-30 22:48:02 +02002981#if defined(FEAT_CRYPT) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982/*
Bram Moolenaar40e6a712010-05-16 22:32:54 +02002983 * Check for magic number used for encryption. Applies to the current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 * If found, the magic number is removed from ptr[*sizep] and *sizep and
2985 * *filesizep are updated.
2986 * Return the (new) encryption key, NULL for no encryption.
2987 */
2988 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002989check_for_cryptkey(
2990 char_u *cryptkey, /* previous encryption key or NULL */
2991 char_u *ptr, /* pointer to read bytes */
2992 long *sizep, /* length of read bytes */
Bram Moolenaar8767f522016-07-01 17:17:39 +02002993 off_T *filesizep, /* nr of bytes used from file */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01002994 int newfile, /* editing a new buffer */
2995 char_u *fname, /* file name to display */
2996 int *did_ask) /* flag: whether already asked for key */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002997{
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02002998 int method = crypt_method_nr_from_magic((char *)ptr, *sizep);
Bram Moolenaarcf81aef2013-08-25 17:46:08 +02002999 int b_p_ro = curbuf->b_p_ro;
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003000
3001 if (method >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 {
Bram Moolenaarcf81aef2013-08-25 17:46:08 +02003003 /* Mark the buffer as read-only until the decryption has taken place.
3004 * Avoids accidentally overwriting the file with garbage. */
3005 curbuf->b_p_ro = TRUE;
3006
Bram Moolenaar2be79502014-08-13 21:58:28 +02003007 /* Set the cryptmethod local to the buffer. */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02003008 crypt_set_cm_option(curbuf, method);
Bram Moolenaarf50a2532010-05-21 15:36:08 +02003009 if (cryptkey == NULL && !*did_ask)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003010 {
3011 if (*curbuf->b_p_key)
3012 cryptkey = curbuf->b_p_key;
3013 else
3014 {
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003015 /* When newfile is TRUE, store the typed key in the 'key'
3016 * option and don't free it. bf needs hash of the key saved.
Bram Moolenaarf50a2532010-05-21 15:36:08 +02003017 * Don't ask for the key again when first time Enter was hit.
3018 * Happens when retrying to detect encoding. */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02003019 smsg((char_u *)_(need_key_msg), fname);
3020 msg_scroll = TRUE;
Bram Moolenaar3a0c9082014-11-12 15:15:42 +01003021 crypt_check_method(method);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02003022 cryptkey = crypt_get_key(newfile, FALSE);
Bram Moolenaarf50a2532010-05-21 15:36:08 +02003023 *did_ask = TRUE;
3024
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 /* check if empty key entered */
3026 if (cryptkey != NULL && *cryptkey == NUL)
3027 {
3028 if (cryptkey != curbuf->b_p_key)
3029 vim_free(cryptkey);
3030 cryptkey = NULL;
3031 }
3032 }
3033 }
3034
3035 if (cryptkey != NULL)
3036 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02003037 int header_len;
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003038
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02003039 curbuf->b_cryptstate = crypt_create_from_header(
3040 method, cryptkey, ptr);
3041 crypt_set_cm_option(curbuf, method);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003042
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02003043 /* Remove cryptmethod specific header from the text. */
3044 header_len = crypt_get_header_len(method);
Bram Moolenaar680e0152016-09-25 20:54:11 +02003045 if (*sizep <= header_len)
3046 /* invalid header, buffer can't be encrypted */
3047 return NULL;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02003048 *filesizep += header_len;
3049 *sizep -= header_len;
3050 mch_memmove(ptr, ptr + header_len, (size_t)*sizep);
3051
Bram Moolenaarcf81aef2013-08-25 17:46:08 +02003052 /* Restore the read-only flag. */
3053 curbuf->b_p_ro = b_p_ro;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003054 }
3055 }
Bram Moolenaar40e6a712010-05-16 22:32:54 +02003056 /* When starting to edit a new file which does not have encryption, clear
3057 * the 'key' option, except when starting up (called with -x argument) */
Bram Moolenaarfa0ff9a2010-07-25 16:05:19 +02003058 else if (newfile && *curbuf->b_p_key != NUL && !starting)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 set_option_value((char_u *)"key", 0L, (char_u *)"", OPT_LOCAL);
3060
3061 return cryptkey;
3062}
Bram Moolenaar80794b12010-06-13 05:20:42 +02003063#endif /* FEAT_CRYPT */
3064
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065#ifdef UNIX
3066 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003067set_file_time(
3068 char_u *fname,
3069 time_t atime, /* access time */
3070 time_t mtime) /* modification time */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071{
3072# if defined(HAVE_UTIME) && defined(HAVE_UTIME_H)
3073 struct utimbuf buf;
3074
3075 buf.actime = atime;
3076 buf.modtime = mtime;
3077 (void)utime((char *)fname, &buf);
3078# else
3079# if defined(HAVE_UTIMES)
3080 struct timeval tvp[2];
3081
3082 tvp[0].tv_sec = atime;
3083 tvp[0].tv_usec = 0;
3084 tvp[1].tv_sec = mtime;
3085 tvp[1].tv_usec = 0;
3086# ifdef NeXT
3087 (void)utimes((char *)fname, tvp);
3088# else
3089 (void)utimes((char *)fname, (const struct timeval *)&tvp);
3090# endif
3091# endif
3092# endif
3093}
3094#endif /* UNIX */
3095
Bram Moolenaard4755bb2004-09-02 19:12:26 +00003096#if defined(VMS) && !defined(MIN)
3097/* Older DECC compiler for VAX doesn't define MIN() */
3098# define MIN(a, b) ((a) < (b) ? (a) : (b))
3099#endif
3100
Bram Moolenaar071d4272004-06-13 20:20:40 +00003101/*
Bram Moolenaar5386a122007-06-28 20:02:32 +00003102 * Return TRUE if a file appears to be read-only from the file permissions.
3103 */
3104 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003105check_file_readonly(
3106 char_u *fname, /* full path to file */
3107 int perm) /* known permissions on file */
Bram Moolenaar5386a122007-06-28 20:02:32 +00003108{
3109#ifndef USE_MCH_ACCESS
3110 int fd = 0;
3111#endif
3112
3113 return (
3114#ifdef USE_MCH_ACCESS
3115# ifdef UNIX
3116 (perm & 0222) == 0 ||
3117# endif
3118 mch_access((char *)fname, W_OK)
3119#else
3120 (fd = mch_open((char *)fname, O_RDWR | O_EXTRA, 0)) < 0
3121 ? TRUE : (close(fd), FALSE)
3122#endif
3123 );
3124}
3125
3126
3127/*
Bram Moolenaar292ad192005-12-11 21:29:51 +00003128 * buf_write() - write to file "fname" lines "start" through "end"
Bram Moolenaar071d4272004-06-13 20:20:40 +00003129 *
3130 * We do our own buffering here because fwrite() is so slow.
3131 *
Bram Moolenaar292ad192005-12-11 21:29:51 +00003132 * If "forceit" is true, we don't care for errors when attempting backups.
3133 * In case of an error everything possible is done to restore the original
Bram Moolenaare37d50a2008-08-06 17:06:04 +00003134 * file. But when "forceit" is TRUE, we risk losing it.
Bram Moolenaar292ad192005-12-11 21:29:51 +00003135 *
3136 * When "reset_changed" is TRUE and "append" == FALSE and "start" == 1 and
3137 * "end" == curbuf->b_ml.ml_line_count, reset curbuf->b_changed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 *
3139 * This function must NOT use NameBuff (because it's called by autowrite()).
3140 *
3141 * return FAIL for failure, OK otherwise
3142 */
3143 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003144buf_write(
3145 buf_T *buf,
3146 char_u *fname,
3147 char_u *sfname,
3148 linenr_T start,
3149 linenr_T end,
3150 exarg_T *eap, /* for forced 'ff' and 'fenc', can be
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 NULL! */
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01003152 int append, /* append to the file */
3153 int forceit,
3154 int reset_changed,
3155 int filtering)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156{
3157 int fd;
3158 char_u *backup = NULL;
3159 int backup_copy = FALSE; /* copy the original file? */
3160 int dobackup;
3161 char_u *ffname;
3162 char_u *wfname = NULL; /* name of file to write to */
3163 char_u *s;
3164 char_u *ptr;
3165 char_u c;
3166 int len;
3167 linenr_T lnum;
3168 long nchars;
3169 char_u *errmsg = NULL;
Bram Moolenaar32b485f2009-07-29 16:06:27 +00003170 int errmsg_allocated = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003171 char_u *errnum = NULL;
3172 char_u *buffer;
3173 char_u smallbuf[SMBUFSIZE];
3174 char_u *backup_ext;
3175 int bufsize;
3176 long perm; /* file permissions */
3177 int retval = OK;
3178 int newfile = FALSE; /* TRUE if file doesn't exist yet */
3179 int msg_save = msg_scroll;
3180 int overwriting; /* TRUE if writing over original */
3181 int no_eol = FALSE; /* no end-of-line written */
3182 int device = FALSE; /* writing to a device */
Bram Moolenaar8767f522016-07-01 17:17:39 +02003183 stat_T st_old;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003184 int prev_got_int = got_int;
Bram Moolenaare6bf6552017-06-27 22:11:51 +02003185 int checking_conversion;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003186 int file_readonly = FALSE; /* overwritten file is read-only */
3187 static char *err_readonly = "is read-only (cannot override: \"W\" in 'cpoptions')";
Bram Moolenaara06ecab2016-07-16 14:47:36 +02003188#if defined(UNIX) /*XXX fix me sometime? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003189 int made_writable = FALSE; /* 'w' bit has been set */
3190#endif
3191 /* writing everything */
3192 int whole = (start == 1 && end == buf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 linenr_T old_line_count = buf->b_ml.ml_line_count;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003194 int attr;
3195 int fileformat;
3196 int write_bin;
3197 struct bw_info write_info; /* info for buf_write_bytes() */
3198#ifdef FEAT_MBYTE
3199 int converted = FALSE;
3200 int notconverted = FALSE;
3201 char_u *fenc; /* effective 'fileencoding' */
3202 char_u *fenc_tofree = NULL; /* allocated "fenc" */
3203#endif
3204#ifdef HAS_BW_FLAGS
3205 int wb_flags = 0;
3206#endif
3207#ifdef HAVE_ACL
3208 vim_acl_T acl = NULL; /* ACL copied from original file to
3209 backup or new file */
3210#endif
Bram Moolenaar55debbe2010-05-23 23:34:36 +02003211#ifdef FEAT_PERSISTENT_UNDO
3212 int write_undo_file = FALSE;
3213 context_sha256_T sha_ctx;
3214#endif
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02003215 unsigned int bkc = get_bkc_value(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003216
3217 if (fname == NULL || *fname == NUL) /* safety check */
3218 return FAIL;
Bram Moolenaar70d60e92009-12-31 13:53:33 +00003219 if (buf->b_ml.ml_mfp == NULL)
3220 {
3221 /* This can happen during startup when there is a stray "w" in the
3222 * vimrc file. */
3223 EMSG(_(e_emptybuf));
3224 return FAIL;
3225 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003226
3227 /*
3228 * Disallow writing from .exrc and .vimrc in current directory for
3229 * security reasons.
3230 */
3231 if (check_secure())
3232 return FAIL;
3233
3234 /* Avoid a crash for a long name. */
3235 if (STRLEN(fname) >= MAXPATHL)
3236 {
3237 EMSG(_(e_longname));
3238 return FAIL;
3239 }
3240
3241#ifdef FEAT_MBYTE
3242 /* must init bw_conv_buf and bw_iconv_fd before jumping to "fail" */
3243 write_info.bw_conv_buf = NULL;
3244 write_info.bw_conv_error = FALSE;
Bram Moolenaar32b485f2009-07-29 16:06:27 +00003245 write_info.bw_conv_error_lnum = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003246 write_info.bw_restlen = 0;
3247# ifdef USE_ICONV
3248 write_info.bw_iconv_fd = (iconv_t)-1;
3249# endif
3250#endif
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02003251#ifdef FEAT_CRYPT
3252 write_info.bw_buffer = buf;
3253#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003254
Bram Moolenaardf177f62005-02-22 08:39:57 +00003255 /* After writing a file changedtick changes but we don't want to display
3256 * the line. */
3257 ex_no_reprint = TRUE;
3258
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 /*
3260 * If there is no file name yet, use the one for the written file.
3261 * BF_NOTEDITED is set to reflect this (in case the write fails).
3262 * Don't do this when the write is for a filter command.
Bram Moolenaar292ad192005-12-11 21:29:51 +00003263 * Don't do this when appending.
3264 * Only do this when 'cpoptions' contains the 'F' flag.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 */
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003266 if (buf->b_ffname == NULL
3267 && reset_changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00003268 && whole
3269 && buf == curbuf
Bram Moolenaar402d2fe2005-04-15 21:00:38 +00003270#ifdef FEAT_QUICKFIX
3271 && !bt_nofile(buf)
3272#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273 && !filtering
Bram Moolenaar292ad192005-12-11 21:29:51 +00003274 && (!append || vim_strchr(p_cpo, CPO_FNAMEAPP) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 && vim_strchr(p_cpo, CPO_FNAMEW) != NULL)
3276 {
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003277 if (set_rw_fname(fname, sfname) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278 return FAIL;
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00003279 buf = curbuf; /* just in case autocmds made "buf" invalid */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 }
3281
3282 if (sfname == NULL)
3283 sfname = fname;
3284 /*
3285 * For Unix: Use the short file name whenever possible.
3286 * Avoids problems with networks and when directory names are changed.
3287 * Don't do this for MS-DOS, a "cd" in a sub-shell may have moved us to
3288 * another directory, which we don't detect
3289 */
3290 ffname = fname; /* remember full fname */
3291#ifdef UNIX
3292 fname = sfname;
3293#endif
3294
3295 if (buf->b_ffname != NULL && fnamecmp(ffname, buf->b_ffname) == 0)
3296 overwriting = TRUE;
3297 else
3298 overwriting = FALSE;
3299
3300 if (exiting)
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003301 settmode(TMODE_COOK); /* when exiting allow typeahead now */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003302
3303 ++no_wait_return; /* don't wait for return yet */
3304
3305 /*
3306 * Set '[ and '] marks to the lines to be written.
3307 */
3308 buf->b_op_start.lnum = start;
3309 buf->b_op_start.col = 0;
3310 buf->b_op_end.lnum = end;
3311 buf->b_op_end.col = 0;
3312
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 {
3314 aco_save_T aco;
3315 int buf_ffname = FALSE;
3316 int buf_sfname = FALSE;
3317 int buf_fname_f = FALSE;
3318 int buf_fname_s = FALSE;
3319 int did_cmd = FALSE;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003320 int nofile_err = FALSE;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003321 int empty_memline = (buf->b_ml.ml_mfp == NULL);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003322 bufref_T bufref;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003323
3324 /*
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003325 * Apply PRE autocommands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 * Set curbuf to the buffer to be written.
3327 * Careful: The autocommands may call buf_write() recursively!
3328 */
3329 if (ffname == buf->b_ffname)
3330 buf_ffname = TRUE;
3331 if (sfname == buf->b_sfname)
3332 buf_sfname = TRUE;
3333 if (fname == buf->b_ffname)
3334 buf_fname_f = TRUE;
3335 if (fname == buf->b_sfname)
3336 buf_fname_s = TRUE;
3337
3338 /* set curwin/curbuf to buf and save a few things */
3339 aucmd_prepbuf(&aco, buf);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003340 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003341
3342 if (append)
3343 {
3344 if (!(did_cmd = apply_autocmds_exarg(EVENT_FILEAPPENDCMD,
3345 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003346 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003347#ifdef FEAT_QUICKFIX
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00003348 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003349 nofile_err = TRUE;
3350 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003351#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003352 apply_autocmds_exarg(EVENT_FILEAPPENDPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003353 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003354 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 }
3356 else if (filtering)
3357 {
3358 apply_autocmds_exarg(EVENT_FILTERWRITEPRE,
3359 NULL, sfname, FALSE, curbuf, eap);
3360 }
3361 else if (reset_changed && whole)
3362 {
Bram Moolenaar39fc42e2011-09-02 11:56:20 +02003363 int was_changed = curbufIsChanged();
3364
3365 did_cmd = apply_autocmds_exarg(EVENT_BUFWRITECMD,
3366 sfname, sfname, FALSE, curbuf, eap);
3367 if (did_cmd)
3368 {
3369 if (was_changed && !curbufIsChanged())
3370 {
3371 /* Written everything correctly and BufWriteCmd has reset
3372 * 'modified': Correct the undo information so that an
3373 * undo now sets 'modified'. */
3374 u_unchanged(curbuf);
3375 u_update_save_nr(curbuf);
3376 }
3377 }
3378 else
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003379 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003380#ifdef FEAT_QUICKFIX
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003381 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003382 nofile_err = TRUE;
3383 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003384#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003385 apply_autocmds_exarg(EVENT_BUFWRITEPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003387 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 }
3389 else
3390 {
3391 if (!(did_cmd = apply_autocmds_exarg(EVENT_FILEWRITECMD,
3392 sfname, sfname, FALSE, curbuf, eap)))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003393 {
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003394#ifdef FEAT_QUICKFIX
Bram Moolenaar19a09a12005-03-04 23:39:37 +00003395 if (overwriting && bt_nofile(curbuf))
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003396 nofile_err = TRUE;
3397 else
Bram Moolenaarb1b715d2006-01-21 22:09:43 +00003398#endif
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003399 apply_autocmds_exarg(EVENT_FILEWRITEPRE,
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 sfname, sfname, FALSE, curbuf, eap);
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003401 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003402 }
3403
3404 /* restore curwin/curbuf and a few other things */
3405 aucmd_restbuf(&aco);
3406
3407 /*
3408 * In three situations we return here and don't write the file:
3409 * 1. the autocommands deleted or unloaded the buffer.
3410 * 2. The autocommands abort script processing.
3411 * 3. If one of the "Cmd" autocommands was executed.
3412 */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02003413 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003414 buf = NULL;
Bram Moolenaar7c626922005-02-07 22:01:03 +00003415 if (buf == NULL || (buf->b_ml.ml_mfp == NULL && !empty_memline)
Bram Moolenaar1e015462005-09-25 22:16:38 +00003416 || did_cmd || nofile_err
3417#ifdef FEAT_EVAL
3418 || aborting()
3419#endif
3420 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003421 {
3422 --no_wait_return;
3423 msg_scroll = msg_save;
Bram Moolenaar21cf8232004-07-16 20:18:37 +00003424 if (nofile_err)
3425 EMSG(_("E676: No matching autocommands for acwrite buffer"));
3426
Bram Moolenaar1e015462005-09-25 22:16:38 +00003427 if (nofile_err
3428#ifdef FEAT_EVAL
3429 || aborting()
3430#endif
3431 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 /* An aborting error, interrupt or exception in the
3433 * autocommands. */
3434 return FAIL;
3435 if (did_cmd)
3436 {
3437 if (buf == NULL)
3438 /* The buffer was deleted. We assume it was written
3439 * (can't retry anyway). */
3440 return OK;
3441 if (overwriting)
3442 {
3443 /* Assume the buffer was written, update the timestamp. */
3444 ml_timestamp(buf);
Bram Moolenaar292ad192005-12-11 21:29:51 +00003445 if (append)
3446 buf->b_flags &= ~BF_NEW;
3447 else
3448 buf->b_flags &= ~BF_WRITE_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003449 }
Bram Moolenaar292ad192005-12-11 21:29:51 +00003450 if (reset_changed && buf->b_changed && !append
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00003451 && (overwriting || vim_strchr(p_cpo, CPO_PLUS) != NULL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 /* Buffer still changed, the autocommands didn't work
3453 * properly. */
3454 return FAIL;
3455 return OK;
3456 }
3457#ifdef FEAT_EVAL
3458 if (!aborting())
3459#endif
3460 EMSG(_("E203: Autocommands deleted or unloaded buffer to be written"));
3461 return FAIL;
3462 }
3463
3464 /*
3465 * The autocommands may have changed the number of lines in the file.
3466 * When writing the whole file, adjust the end.
3467 * When writing part of the file, assume that the autocommands only
3468 * changed the number of lines that are to be written (tricky!).
3469 */
3470 if (buf->b_ml.ml_line_count != old_line_count)
3471 {
3472 if (whole) /* write all */
3473 end = buf->b_ml.ml_line_count;
3474 else if (buf->b_ml.ml_line_count > old_line_count) /* more lines */
3475 end += buf->b_ml.ml_line_count - old_line_count;
3476 else /* less lines */
3477 {
3478 end -= old_line_count - buf->b_ml.ml_line_count;
3479 if (end < start)
3480 {
3481 --no_wait_return;
3482 msg_scroll = msg_save;
3483 EMSG(_("E204: Autocommand changed number of lines in unexpected way"));
3484 return FAIL;
3485 }
3486 }
3487 }
3488
3489 /*
3490 * The autocommands may have changed the name of the buffer, which may
3491 * be kept in fname, ffname and sfname.
3492 */
3493 if (buf_ffname)
3494 ffname = buf->b_ffname;
3495 if (buf_sfname)
3496 sfname = buf->b_sfname;
3497 if (buf_fname_f)
3498 fname = buf->b_ffname;
3499 if (buf_fname_s)
3500 fname = buf->b_sfname;
3501 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003502
3503#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003504 if (netbeans_active() && isNetbeansBuffer(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003505 {
3506 if (whole)
3507 {
3508 /*
3509 * b_changed can be 0 after an undo, but we still need to write
3510 * the buffer to NetBeans.
3511 */
3512 if (buf->b_changed || isNetbeansModified(buf))
3513 {
Bram Moolenaar009b2592004-10-24 19:18:58 +00003514 --no_wait_return; /* may wait for return now */
3515 msg_scroll = msg_save;
3516 netbeans_save_buffer(buf); /* no error checking... */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003517 return retval;
3518 }
3519 else
3520 {
3521 errnum = (char_u *)"E656: ";
Bram Moolenaared0e7452008-06-27 19:17:34 +00003522 errmsg = (char_u *)_("NetBeans disallows writes of unmodified buffers");
Bram Moolenaar071d4272004-06-13 20:20:40 +00003523 buffer = NULL;
3524 goto fail;
3525 }
3526 }
3527 else
3528 {
3529 errnum = (char_u *)"E657: ";
3530 errmsg = (char_u *)_("Partial writes disallowed for NetBeans buffers");
3531 buffer = NULL;
3532 goto fail;
3533 }
3534 }
3535#endif
3536
3537 if (shortmess(SHM_OVER) && !exiting)
3538 msg_scroll = FALSE; /* overwrite previous file message */
3539 else
3540 msg_scroll = TRUE; /* don't overwrite previous file message */
3541 if (!filtering)
3542 filemess(buf,
3543#ifndef UNIX
3544 sfname,
3545#else
3546 fname,
3547#endif
3548 (char_u *)"", 0); /* show that we are busy */
3549 msg_scroll = FALSE; /* always overwrite the file message now */
3550
3551 buffer = alloc(BUFSIZE);
3552 if (buffer == NULL) /* can't allocate big buffer, use small
3553 * one (to be able to write when out of
3554 * memory) */
3555 {
3556 buffer = smallbuf;
3557 bufsize = SMBUFSIZE;
3558 }
3559 else
3560 bufsize = BUFSIZE;
3561
3562 /*
3563 * Get information about original file (if there is one).
3564 */
Bram Moolenaar53076832015-12-31 19:53:21 +01003565#if defined(UNIX)
Bram Moolenaar6f192452007-11-08 19:49:02 +00003566 st_old.st_dev = 0;
3567 st_old.st_ino = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003568 perm = -1;
3569 if (mch_stat((char *)fname, &st_old) < 0)
3570 newfile = TRUE;
3571 else
3572 {
3573 perm = st_old.st_mode;
3574 if (!S_ISREG(st_old.st_mode)) /* not a file */
3575 {
3576 if (S_ISDIR(st_old.st_mode))
3577 {
3578 errnum = (char_u *)"E502: ";
3579 errmsg = (char_u *)_("is a directory");
3580 goto fail;
3581 }
3582 if (mch_nodetype(fname) != NODE_WRITABLE)
3583 {
3584 errnum = (char_u *)"E503: ";
3585 errmsg = (char_u *)_("is not a file or writable device");
3586 goto fail;
3587 }
3588 /* It's a device of some kind (or a fifo) which we can write to
3589 * but for which we can't make a backup. */
3590 device = TRUE;
3591 newfile = TRUE;
3592 perm = -1;
3593 }
3594 }
3595#else /* !UNIX */
3596 /*
3597 * Check for a writable device name.
3598 */
3599 c = mch_nodetype(fname);
3600 if (c == NODE_OTHER)
3601 {
3602 errnum = (char_u *)"E503: ";
3603 errmsg = (char_u *)_("is not a file or writable device");
3604 goto fail;
3605 }
3606 if (c == NODE_WRITABLE)
3607 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01003608# if defined(MSWIN)
Bram Moolenaar043545e2006-10-10 16:44:07 +00003609 /* MS-Windows allows opening a device, but we will probably get stuck
3610 * trying to write to it. */
3611 if (!p_odev)
3612 {
3613 errnum = (char_u *)"E796: ";
3614 errmsg = (char_u *)_("writing to device disabled with 'opendevice' option");
3615 goto fail;
3616 }
3617# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618 device = TRUE;
3619 newfile = TRUE;
3620 perm = -1;
3621 }
3622 else
3623 {
3624 perm = mch_getperm(fname);
3625 if (perm < 0)
3626 newfile = TRUE;
3627 else if (mch_isdir(fname))
3628 {
3629 errnum = (char_u *)"E502: ";
3630 errmsg = (char_u *)_("is a directory");
3631 goto fail;
3632 }
3633 if (overwriting)
3634 (void)mch_stat((char *)fname, &st_old);
3635 }
3636#endif /* !UNIX */
3637
3638 if (!device && !newfile)
3639 {
3640 /*
3641 * Check if the file is really writable (when renaming the file to
3642 * make a backup we won't discover it later).
3643 */
Bram Moolenaar5386a122007-06-28 20:02:32 +00003644 file_readonly = check_file_readonly(fname, (int)perm);
3645
Bram Moolenaar071d4272004-06-13 20:20:40 +00003646 if (!forceit && file_readonly)
3647 {
3648 if (vim_strchr(p_cpo, CPO_FWRITE) != NULL)
3649 {
3650 errnum = (char_u *)"E504: ";
3651 errmsg = (char_u *)_(err_readonly);
3652 }
3653 else
3654 {
3655 errnum = (char_u *)"E505: ";
3656 errmsg = (char_u *)_("is read-only (add ! to override)");
3657 }
3658 goto fail;
3659 }
3660
3661 /*
3662 * Check if the timestamp hasn't changed since reading the file.
3663 */
3664 if (overwriting)
3665 {
3666 retval = check_mtime(buf, &st_old);
3667 if (retval == FAIL)
3668 goto fail;
3669 }
3670 }
3671
3672#ifdef HAVE_ACL
3673 /*
3674 * For systems that support ACL: get the ACL from the original file.
3675 */
3676 if (!newfile)
3677 acl = mch_get_acl(fname);
3678#endif
3679
3680 /*
3681 * If 'backupskip' is not empty, don't make a backup for some files.
3682 */
3683 dobackup = (p_wb || p_bk || *p_pm != NUL);
3684#ifdef FEAT_WILDIGN
3685 if (dobackup && *p_bsk != NUL && match_file_list(p_bsk, sfname, ffname))
3686 dobackup = FALSE;
3687#endif
3688
3689 /*
3690 * Save the value of got_int and reset it. We don't want a previous
3691 * interruption cancel writing, only hitting CTRL-C while writing should
3692 * abort it.
3693 */
3694 prev_got_int = got_int;
3695 got_int = FALSE;
3696
3697 /* Mark the buffer as 'being saved' to prevent changed buffer warnings */
3698 buf->b_saving = TRUE;
3699
3700 /*
3701 * If we are not appending or filtering, the file exists, and the
3702 * 'writebackup', 'backup' or 'patchmode' option is set, need a backup.
3703 * When 'patchmode' is set also make a backup when appending.
3704 *
3705 * Do not make any backup, if 'writebackup' and 'backup' are both switched
3706 * off. This helps when editing large files on almost-full disks.
3707 */
3708 if (!(append && *p_pm == NUL) && !filtering && perm >= 0 && dobackup)
3709 {
3710#if defined(UNIX) || defined(WIN32)
Bram Moolenaar8767f522016-07-01 17:17:39 +02003711 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712#endif
3713
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02003714 if ((bkc & BKC_YES) || append) /* "yes" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 backup_copy = TRUE;
3716#if defined(UNIX) || defined(WIN32)
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02003717 else if ((bkc & BKC_AUTO)) /* "auto" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 {
3719 int i;
3720
3721# ifdef UNIX
3722 /*
3723 * Don't rename the file when:
3724 * - it's a hard link
3725 * - it's a symbolic link
3726 * - we don't have write permission in the directory
3727 * - we can't set the owner/group of the new file
3728 */
3729 if (st_old.st_nlink > 1
3730 || mch_lstat((char *)fname, &st) < 0
3731 || st.st_dev != st_old.st_dev
Bram Moolenaara5792f52005-11-23 21:25:05 +00003732 || st.st_ino != st_old.st_ino
3733# ifndef HAVE_FCHOWN
3734 || st.st_uid != st_old.st_uid
3735 || st.st_gid != st_old.st_gid
3736# endif
3737 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 backup_copy = TRUE;
3739 else
Bram Moolenaar03f48552006-02-28 23:52:23 +00003740# else
3741# ifdef WIN32
3742 /* On NTFS file systems hard links are possible. */
3743 if (mch_is_linked(fname))
3744 backup_copy = TRUE;
3745 else
3746# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003747# endif
3748 {
3749 /*
3750 * Check if we can create a file and set the owner/group to
3751 * the ones from the original file.
3752 * First find a file name that doesn't exist yet (use some
3753 * arbitrary numbers).
3754 */
3755 STRCPY(IObuff, fname);
3756 for (i = 4913; ; i += 123)
3757 {
3758 sprintf((char *)gettail(IObuff), "%d", i);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003759 if (mch_lstat((char *)IObuff, &st) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003760 break;
3761 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00003762 fd = mch_open((char *)IObuff,
3763 O_CREAT|O_WRONLY|O_EXCL|O_NOFOLLOW, perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003764 if (fd < 0) /* can't write in directory */
3765 backup_copy = TRUE;
3766 else
3767 {
3768# ifdef UNIX
Bram Moolenaara5792f52005-11-23 21:25:05 +00003769# ifdef HAVE_FCHOWN
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00003770 ignored = fchown(fd, st_old.st_uid, st_old.st_gid);
Bram Moolenaara5792f52005-11-23 21:25:05 +00003771# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772 if (mch_stat((char *)IObuff, &st) < 0
3773 || st.st_uid != st_old.st_uid
3774 || st.st_gid != st_old.st_gid
Bram Moolenaar78a15312009-05-15 19:33:18 +00003775 || (long)st.st_mode != perm)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 backup_copy = TRUE;
3777# endif
Bram Moolenaar98358622005-11-28 22:58:23 +00003778 /* Close the file before removing it, on MS-Windows we
3779 * can't delete an open file. */
Bram Moolenaara5792f52005-11-23 21:25:05 +00003780 close(fd);
Bram Moolenaar98358622005-11-28 22:58:23 +00003781 mch_remove(IObuff);
Bram Moolenaar3479c5d2010-08-08 18:46:06 +02003782# ifdef MSWIN
3783 /* MS-Windows may trigger a virus scanner to open the
3784 * file, we can't delete it then. Keep trying for half a
3785 * second. */
3786 {
3787 int try;
3788
3789 for (try = 0; try < 10; ++try)
3790 {
3791 if (mch_lstat((char *)IObuff, &st) < 0)
3792 break;
3793 ui_delay(50L, TRUE); /* wait 50 msec */
3794 mch_remove(IObuff);
3795 }
3796 }
3797# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798 }
3799 }
3800 }
3801
Bram Moolenaar071d4272004-06-13 20:20:40 +00003802 /*
3803 * Break symlinks and/or hardlinks if we've been asked to.
3804 */
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02003805 if ((bkc & BKC_BREAKSYMLINK) || (bkc & BKC_BREAKHARDLINK))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003806 {
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003807# ifdef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00003808 int lstat_res;
3809
3810 lstat_res = mch_lstat((char *)fname, &st);
3811
3812 /* Symlinks. */
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02003813 if ((bkc & BKC_BREAKSYMLINK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 && lstat_res == 0
3815 && st.st_ino != st_old.st_ino)
3816 backup_copy = FALSE;
3817
3818 /* Hardlinks. */
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02003819 if ((bkc & BKC_BREAKHARDLINK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 && st_old.st_nlink > 1
3821 && (lstat_res != 0 || st.st_ino == st_old.st_ino))
3822 backup_copy = FALSE;
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003823# else
3824# if defined(WIN32)
3825 /* Symlinks. */
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02003826 if ((bkc & BKC_BREAKSYMLINK) && mch_is_symbolic_link(fname))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003827 backup_copy = FALSE;
3828
3829 /* Hardlinks. */
Bram Moolenaarb8ee25a2014-09-23 15:45:08 +02003830 if ((bkc & BKC_BREAKHARDLINK) && mch_is_hard_link(fname))
Bram Moolenaar12b559e2013-06-12 22:41:37 +02003831 backup_copy = FALSE;
3832# endif
3833# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003834 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835
3836#endif
3837
3838 /* make sure we have a valid backup extension to use */
3839 if (*p_bex == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 backup_ext = (char_u *)".bak";
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 else
3842 backup_ext = p_bex;
3843
3844 if (backup_copy
3845 && (fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
3846 {
3847 int bfd;
3848 char_u *copybuf, *wp;
3849 int some_error = FALSE;
Bram Moolenaar8767f522016-07-01 17:17:39 +02003850 stat_T st_new;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003851 char_u *dirp;
3852 char_u *rootname;
Bram Moolenaarb782ba42018-08-07 21:39:28 +02003853#if defined(UNIX) || defined(WIN3264)
3854 char_u *p;
3855#endif
Bram Moolenaar48e330a2016-02-23 14:53:34 +01003856#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 int did_set_shortname;
Bram Moolenaarcd142e32017-11-16 17:03:45 +01003858 mode_t umask_save;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003859#endif
3860
3861 copybuf = alloc(BUFSIZE + 1);
3862 if (copybuf == NULL)
3863 {
3864 some_error = TRUE; /* out of memory */
3865 goto nobackup;
3866 }
3867
3868 /*
3869 * Try to make the backup in each directory in the 'bdir' option.
3870 *
3871 * Unix semantics has it, that we may have a writable file,
3872 * that cannot be recreated with a simple open(..., O_CREAT, ) e.g:
3873 * - the directory is not writable,
3874 * - the file may be a symbolic link,
3875 * - the file may belong to another user/group, etc.
3876 *
3877 * For these reasons, the existing writable file must be truncated
3878 * and reused. Creation of a backup COPY will be attempted.
3879 */
3880 dirp = p_bdir;
3881 while (*dirp)
3882 {
3883#ifdef UNIX
3884 st_new.st_ino = 0;
3885 st_new.st_dev = 0;
3886 st_new.st_gid = 0;
3887#endif
3888
3889 /*
3890 * Isolate one directory name, using an entry in 'bdir'.
3891 */
3892 (void)copy_option_part(&dirp, copybuf, BUFSIZE, ",");
Bram Moolenaarb782ba42018-08-07 21:39:28 +02003893
3894#if defined(UNIX) || defined(WIN3264)
3895 p = copybuf + STRLEN(copybuf);
3896 if (after_pathsep(copybuf, p) && p[-1] == p[-2])
3897 // Ends with '//', use full path
3898 if ((p = make_percent_swname(copybuf, fname)) != NULL)
3899 {
3900 backup = modname(p, backup_ext, FALSE);
3901 vim_free(p);
3902 }
3903#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904 rootname = get_file_in_dir(fname, copybuf);
3905 if (rootname == NULL)
3906 {
3907 some_error = TRUE; /* out of memory */
3908 goto nobackup;
3909 }
3910
Bram Moolenaar48e330a2016-02-23 14:53:34 +01003911#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003912 did_set_shortname = FALSE;
3913#endif
3914
3915 /*
3916 * May try twice if 'shortname' not set.
3917 */
3918 for (;;)
3919 {
3920 /*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02003921 * Make the backup file name.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003922 */
Bram Moolenaarb782ba42018-08-07 21:39:28 +02003923 if (backup == NULL)
3924 backup = buf_modname((buf->b_p_sn || buf->b_shortname),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925 rootname, backup_ext, FALSE);
3926 if (backup == NULL)
3927 {
3928 vim_free(rootname);
3929 some_error = TRUE; /* out of memory */
3930 goto nobackup;
3931 }
3932
3933 /*
3934 * Check if backup file already exists.
3935 */
3936 if (mch_stat((char *)backup, &st_new) >= 0)
3937 {
3938#ifdef UNIX
3939 /*
3940 * Check if backup file is same as original file.
3941 * May happen when modname() gave the same file back.
3942 * E.g. silly link, or file name-length reached.
3943 * If we don't check here, we either ruin the file
3944 * when copying or erase it after writing. jw.
3945 */
3946 if (st_new.st_dev == st_old.st_dev
3947 && st_new.st_ino == st_old.st_ino)
3948 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01003949 VIM_CLEAR(backup); /* no backup file to delete */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950 /*
3951 * may try again with 'shortname' set
3952 */
3953 if (!(buf->b_shortname || buf->b_p_sn))
3954 {
3955 buf->b_shortname = TRUE;
3956 did_set_shortname = TRUE;
3957 continue;
3958 }
3959 /* setting shortname didn't help */
3960 if (did_set_shortname)
3961 buf->b_shortname = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 break;
3963 }
3964#endif
3965
3966 /*
3967 * If we are not going to keep the backup file, don't
3968 * delete an existing one, try to use another name.
3969 * Change one character, just before the extension.
3970 */
3971 if (!p_bk)
3972 {
3973 wp = backup + STRLEN(backup) - 1
3974 - STRLEN(backup_ext);
3975 if (wp < backup) /* empty file name ??? */
3976 wp = backup;
3977 *wp = 'z';
3978 while (*wp > 'a'
3979 && mch_stat((char *)backup, &st_new) >= 0)
3980 --*wp;
3981 /* They all exist??? Must be something wrong. */
3982 if (*wp == 'a')
Bram Moolenaard23a8232018-02-10 18:45:26 +01003983 VIM_CLEAR(backup);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 }
3985 }
3986 break;
3987 }
3988 vim_free(rootname);
3989
3990 /*
3991 * Try to create the backup file
3992 */
3993 if (backup != NULL)
3994 {
3995 /* remove old backup, if present */
3996 mch_remove(backup);
3997 /* Open with O_EXCL to avoid the file being created while
Bram Moolenaarcd142e32017-11-16 17:03:45 +01003998 * we were sleeping (symlink hacker attack?). Reset umask
3999 * if possible to avoid mch_setperm() below. */
4000#ifdef UNIX
4001 umask_save = umask(0);
4002#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 bfd = mch_open((char *)backup,
Bram Moolenaara5792f52005-11-23 21:25:05 +00004004 O_WRONLY|O_CREAT|O_EXTRA|O_EXCL|O_NOFOLLOW,
4005 perm & 0777);
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004006#ifdef UNIX
4007 (void)umask(umask_save);
4008#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004009 if (bfd < 0)
Bram Moolenaard23a8232018-02-10 18:45:26 +01004010 VIM_CLEAR(backup);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011 else
4012 {
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004013 /* Set file protection same as original file, but
4014 * strip s-bit. Only needed if umask() wasn't used
4015 * above. */
4016#ifndef UNIX
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 (void)mch_setperm(backup, perm & 0777);
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004018#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004019 /*
4020 * Try to set the group of the backup same as the
4021 * original file. If this fails, set the protection
4022 * bits for the group same as the protection bits for
4023 * others.
4024 */
Bram Moolenaara5792f52005-11-23 21:25:05 +00004025 if (st_new.st_gid != st_old.st_gid
Bram Moolenaar071d4272004-06-13 20:20:40 +00004026# ifdef HAVE_FCHOWN /* sequent-ptx lacks fchown() */
Bram Moolenaara5792f52005-11-23 21:25:05 +00004027 && fchown(bfd, (uid_t)-1, st_old.st_gid) != 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00004028# endif
4029 )
4030 mch_setperm(backup,
4031 (perm & 0707) | ((perm & 07) << 3));
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02004032# if defined(HAVE_SELINUX) || defined(HAVE_SMACK)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00004033 mch_copy_sec(fname, backup);
4034# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035#endif
4036
4037 /*
4038 * copy the file.
4039 */
4040 write_info.bw_fd = bfd;
4041 write_info.bw_buf = copybuf;
4042#ifdef HAS_BW_FLAGS
4043 write_info.bw_flags = FIO_NOCONVERT;
4044#endif
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004045 while ((write_info.bw_len = read_eintr(fd, copybuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004046 BUFSIZE)) > 0)
4047 {
4048 if (buf_write_bytes(&write_info) == FAIL)
4049 {
4050 errmsg = (char_u *)_("E506: Can't write to backup file (add ! to override)");
4051 break;
4052 }
4053 ui_breakcheck();
4054 if (got_int)
4055 {
4056 errmsg = (char_u *)_(e_interr);
4057 break;
4058 }
4059 }
4060
4061 if (close(bfd) < 0 && errmsg == NULL)
4062 errmsg = (char_u *)_("E507: Close error for backup file (add ! to override)");
4063 if (write_info.bw_len < 0)
4064 errmsg = (char_u *)_("E508: Can't read file for backup (add ! to override)");
4065#ifdef UNIX
4066 set_file_time(backup, st_old.st_atime, st_old.st_mtime);
4067#endif
4068#ifdef HAVE_ACL
4069 mch_set_acl(backup, acl);
4070#endif
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02004071#if defined(HAVE_SELINUX) || defined(HAVE_SMACK)
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00004072 mch_copy_sec(fname, backup);
4073#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074 break;
4075 }
4076 }
4077 }
4078 nobackup:
4079 close(fd); /* ignore errors for closing read file */
4080 vim_free(copybuf);
4081
4082 if (backup == NULL && errmsg == NULL)
4083 errmsg = (char_u *)_("E509: Cannot create backup file (add ! to override)");
4084 /* ignore errors when forceit is TRUE */
4085 if ((some_error || errmsg != NULL) && !forceit)
4086 {
4087 retval = FAIL;
4088 goto fail;
4089 }
4090 errmsg = NULL;
4091 }
4092 else
4093 {
4094 char_u *dirp;
4095 char_u *p;
4096 char_u *rootname;
4097
4098 /*
4099 * Make a backup by renaming the original file.
4100 */
4101 /*
4102 * If 'cpoptions' includes the "W" flag, we don't want to
4103 * overwrite a read-only file. But rename may be possible
4104 * anyway, thus we need an extra check here.
4105 */
4106 if (file_readonly && vim_strchr(p_cpo, CPO_FWRITE) != NULL)
4107 {
4108 errnum = (char_u *)"E504: ";
4109 errmsg = (char_u *)_(err_readonly);
4110 goto fail;
4111 }
4112
4113 /*
4114 *
4115 * Form the backup file name - change path/fo.o.h to
4116 * path/fo.o.h.bak Try all directories in 'backupdir', first one
4117 * that works is used.
4118 */
4119 dirp = p_bdir;
4120 while (*dirp)
4121 {
4122 /*
4123 * Isolate one directory name and make the backup file name.
4124 */
4125 (void)copy_option_part(&dirp, IObuff, IOSIZE, ",");
Bram Moolenaarb782ba42018-08-07 21:39:28 +02004126
4127#if defined(UNIX) || defined(WIN3264)
4128 p = IObuff + STRLEN(IObuff);
4129 if (after_pathsep(IObuff, p) && p[-1] == p[-2])
4130 // path ends with '//', use full path
4131 if ((p = make_percent_swname(IObuff, fname)) != NULL)
4132 {
4133 backup = modname(p, backup_ext, FALSE);
4134 vim_free(p);
4135 }
4136#endif
4137 if (backup == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138 {
Bram Moolenaarb782ba42018-08-07 21:39:28 +02004139 rootname = get_file_in_dir(fname, IObuff);
4140 if (rootname == NULL)
4141 backup = NULL;
4142 else
4143 {
4144 backup = buf_modname(
4145 (buf->b_p_sn || buf->b_shortname),
4146 rootname, backup_ext, FALSE);
4147 vim_free(rootname);
4148 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149 }
4150
4151 if (backup != NULL)
4152 {
4153 /*
4154 * If we are not going to keep the backup file, don't
4155 * delete an existing one, try to use another name.
4156 * Change one character, just before the extension.
4157 */
4158 if (!p_bk && mch_getperm(backup) >= 0)
4159 {
4160 p = backup + STRLEN(backup) - 1 - STRLEN(backup_ext);
4161 if (p < backup) /* empty file name ??? */
4162 p = backup;
4163 *p = 'z';
4164 while (*p > 'a' && mch_getperm(backup) >= 0)
4165 --*p;
4166 /* They all exist??? Must be something wrong! */
4167 if (*p == 'a')
Bram Moolenaard23a8232018-02-10 18:45:26 +01004168 VIM_CLEAR(backup);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004169 }
4170 }
4171 if (backup != NULL)
4172 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 /*
Bram Moolenaarbfd8fc02005-09-20 23:22:24 +00004174 * Delete any existing backup and move the current version
4175 * to the backup. For safety, we don't remove the backup
4176 * until the write has finished successfully. And if the
4177 * 'backup' option is set, leave it around.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 */
4179 /*
4180 * If the renaming of the original file to the backup file
4181 * works, quit here.
4182 */
4183 if (vim_rename(fname, backup) == 0)
4184 break;
4185
Bram Moolenaard23a8232018-02-10 18:45:26 +01004186 VIM_CLEAR(backup); /* don't do the rename below */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 }
4188 }
4189 if (backup == NULL && !forceit)
4190 {
4191 errmsg = (char_u *)_("E510: Can't make backup file (add ! to override)");
4192 goto fail;
4193 }
4194 }
4195 }
4196
Bram Moolenaar53076832015-12-31 19:53:21 +01004197#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004198 /* When using ":w!" and the file was read-only: make it writable */
4199 if (forceit && perm >= 0 && !(perm & 0200) && st_old.st_uid == getuid()
4200 && vim_strchr(p_cpo, CPO_FWRITE) == NULL)
4201 {
4202 perm |= 0200;
4203 (void)mch_setperm(fname, perm);
4204 made_writable = TRUE;
4205 }
4206#endif
4207
Bram Moolenaar910f66f2006-04-05 20:41:53 +00004208 /* When using ":w!" and writing to the current file, 'readonly' makes no
Bram Moolenaar4399ef42005-02-12 14:29:27 +00004209 * sense, reset it, unless 'Z' appears in 'cpoptions'. */
4210 if (forceit && overwriting && vim_strchr(p_cpo, CPO_KEEPRO) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 {
4212 buf->b_p_ro = FALSE;
4213#ifdef FEAT_TITLE
4214 need_maketitle = TRUE; /* set window title later */
4215#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004216 status_redraw_all(); /* redraw status lines later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004217 }
4218
4219 if (end > buf->b_ml.ml_line_count)
4220 end = buf->b_ml.ml_line_count;
4221 if (buf->b_ml.ml_flags & ML_EMPTY)
4222 start = end + 1;
4223
4224 /*
4225 * If the original file is being overwritten, there is a small chance that
4226 * we crash in the middle of writing. Therefore the file is preserved now.
4227 * This makes all block numbers positive so that recovery does not need
4228 * the original file.
4229 * Don't do this if there is a backup file and we are exiting.
4230 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004231 if (reset_changed && !newfile && overwriting
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232 && !(exiting && backup != NULL))
4233 {
4234 ml_preserve(buf, FALSE);
4235 if (got_int)
4236 {
4237 errmsg = (char_u *)_(e_interr);
4238 goto restore_backup;
4239 }
4240 }
4241
Bram Moolenaar071d4272004-06-13 20:20:40 +00004242#ifdef VMS
4243 vms_remove_version(fname); /* remove version */
4244#endif
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00004245 /* Default: write the file directly. May write to a temp file for
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 * multi-byte conversion. */
4247 wfname = fname;
4248
4249#ifdef FEAT_MBYTE
4250 /* Check for forced 'fileencoding' from "++opt=val" argument. */
4251 if (eap != NULL && eap->force_enc != 0)
4252 {
4253 fenc = eap->cmd + eap->force_enc;
4254 fenc = enc_canonize(fenc);
4255 fenc_tofree = fenc;
4256 }
4257 else
4258 fenc = buf->b_p_fenc;
4259
4260 /*
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00004261 * Check if the file needs to be converted.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004262 */
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00004263 converted = need_conversion(fenc);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264
4265 /*
4266 * Check if UTF-8 to UCS-2/4 or Latin1 conversion needs to be done. Or
4267 * Latin1 to Unicode conversion. This is handled in buf_write_bytes().
4268 * Prepare the flags for it and allocate bw_conv_buf when needed.
4269 */
4270 if (converted && (enc_utf8 || STRCMP(p_enc, "latin1") == 0))
4271 {
4272 wb_flags = get_fio_flags(fenc);
4273 if (wb_flags & (FIO_UCS2 | FIO_UCS4 | FIO_UTF16 | FIO_UTF8))
4274 {
4275 /* Need to allocate a buffer to translate into. */
4276 if (wb_flags & (FIO_UCS2 | FIO_UTF16 | FIO_UTF8))
4277 write_info.bw_conv_buflen = bufsize * 2;
4278 else /* FIO_UCS4 */
4279 write_info.bw_conv_buflen = bufsize * 4;
4280 write_info.bw_conv_buf
4281 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
4282 if (write_info.bw_conv_buf == NULL)
4283 end = 0;
4284 }
4285 }
4286
4287# ifdef WIN3264
4288 if (converted && wb_flags == 0 && (wb_flags = get_win_fio_flags(fenc)) != 0)
4289 {
4290 /* Convert UTF-8 -> UCS-2 and UCS-2 -> DBCS. Worst-case * 4: */
4291 write_info.bw_conv_buflen = bufsize * 4;
4292 write_info.bw_conv_buf
4293 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
4294 if (write_info.bw_conv_buf == NULL)
4295 end = 0;
4296 }
4297# endif
4298
Bram Moolenaard0573012017-10-28 21:11:06 +02004299# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00004300 if (converted && wb_flags == 0 && (wb_flags = get_mac_fio_flags(fenc)) != 0)
4301 {
4302 write_info.bw_conv_buflen = bufsize * 3;
4303 write_info.bw_conv_buf
4304 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
4305 if (write_info.bw_conv_buf == NULL)
4306 end = 0;
4307 }
4308# endif
4309
4310# if defined(FEAT_EVAL) || defined(USE_ICONV)
4311 if (converted && wb_flags == 0)
4312 {
4313# ifdef USE_ICONV
4314 /*
4315 * Use iconv() conversion when conversion is needed and it's not done
4316 * internally.
4317 */
4318 write_info.bw_iconv_fd = (iconv_t)my_iconv_open(fenc,
4319 enc_utf8 ? (char_u *)"utf-8" : p_enc);
4320 if (write_info.bw_iconv_fd != (iconv_t)-1)
4321 {
4322 /* We're going to use iconv(), allocate a buffer to convert in. */
4323 write_info.bw_conv_buflen = bufsize * ICONV_MULT;
4324 write_info.bw_conv_buf
4325 = lalloc((long_u)write_info.bw_conv_buflen, TRUE);
4326 if (write_info.bw_conv_buf == NULL)
4327 end = 0;
4328 write_info.bw_first = TRUE;
4329 }
4330# ifdef FEAT_EVAL
4331 else
4332# endif
4333# endif
4334
4335# ifdef FEAT_EVAL
4336 /*
4337 * When the file needs to be converted with 'charconvert' after
4338 * writing, write to a temp file instead and let the conversion
4339 * overwrite the original file.
4340 */
4341 if (*p_ccv != NUL)
4342 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +02004343 wfname = vim_tempname('w', FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004344 if (wfname == NULL) /* Can't write without a tempfile! */
4345 {
4346 errmsg = (char_u *)_("E214: Can't find temp file for writing");
4347 goto restore_backup;
4348 }
4349 }
4350# endif
4351 }
4352# endif
4353 if (converted && wb_flags == 0
4354# ifdef USE_ICONV
4355 && write_info.bw_iconv_fd == (iconv_t)-1
4356# endif
4357# ifdef FEAT_EVAL
4358 && wfname == fname
4359# endif
4360 )
4361 {
4362 if (!forceit)
4363 {
4364 errmsg = (char_u *)_("E213: Cannot convert (add ! to write without conversion)");
4365 goto restore_backup;
4366 }
4367 notconverted = TRUE;
4368 }
4369#endif
4370
4371 /*
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004372 * If conversion is taking place, we may first pretend to write and check
4373 * for conversion errors. Then loop again to write for real.
4374 * When not doing conversion this writes for real right away.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 */
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004376 for (checking_conversion = TRUE; ; checking_conversion = FALSE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004377 {
4378 /*
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004379 * There is no need to check conversion when:
4380 * - there is no conversion
4381 * - we make a backup file, that can be restored in case of conversion
4382 * failure.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004383 */
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004384#ifdef FEAT_MBYTE
4385 if (!converted || dobackup)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004386#endif
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004387 checking_conversion = FALSE;
4388
4389 if (checking_conversion)
4390 {
4391 /* Make sure we don't write anything. */
4392 fd = -1;
4393 write_info.bw_fd = fd;
4394 }
4395 else
4396 {
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004397#ifdef HAVE_FTRUNCATE
4398# define TRUNC_ON_OPEN 0
4399#else
4400# define TRUNC_ON_OPEN O_TRUNC
4401#endif
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004402 /*
4403 * Open the file "wfname" for writing.
4404 * We may try to open the file twice: If we can't write to the file
4405 * and forceit is TRUE we delete the existing file and try to
4406 * create a new one. If this still fails we may have lost the
4407 * original file! (this may happen when the user reached his
4408 * quotum for number of files).
4409 * Appending will fail if the file does not exist and forceit is
4410 * FALSE.
4411 */
4412 while ((fd = mch_open((char *)wfname, O_WRONLY | O_EXTRA | (append
4413 ? (forceit ? (O_APPEND | O_CREAT) : O_APPEND)
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004414 : (O_CREAT | TRUNC_ON_OPEN))
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004415 , perm < 0 ? 0666 : (perm & 0777))) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004417 /*
4418 * A forced write will try to create a new file if the old one
4419 * is still readonly. This may also happen when the directory
4420 * is read-only. In that case the mch_remove() will fail.
4421 */
4422 if (errmsg == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 {
4424#ifdef UNIX
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004425 stat_T st;
4426
4427 /* Don't delete the file when it's a hard or symbolic link.
4428 */
4429 if ((!newfile && st_old.st_nlink > 1)
4430 || (mch_lstat((char *)fname, &st) == 0
4431 && (st.st_dev != st_old.st_dev
4432 || st.st_ino != st_old.st_ino)))
4433 errmsg = (char_u *)_("E166: Can't open linked file for writing");
4434 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004435#endif
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004436 {
4437 errmsg = (char_u *)_("E212: Can't open file for writing");
4438 if (forceit && vim_strchr(p_cpo, CPO_FWRITE) == NULL
4439 && perm >= 0)
4440 {
4441#ifdef UNIX
4442 /* we write to the file, thus it should be marked
4443 writable after all */
4444 if (!(perm & 0200))
4445 made_writable = TRUE;
4446 perm |= 0200;
4447 if (st_old.st_uid != getuid()
4448 || st_old.st_gid != getgid())
4449 perm &= 0777;
4450#endif
4451 if (!append) /* don't remove when appending */
4452 mch_remove(wfname);
4453 continue;
4454 }
4455 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457
4458restore_backup:
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004460 stat_T st;
4461
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 /*
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004463 * If we failed to open the file, we don't need a backup.
4464 * Throw it away. If we moved or removed the original file
4465 * try to put the backup in its place.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 */
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004467 if (backup != NULL && wfname == fname)
4468 {
4469 if (backup_copy)
4470 {
4471 /*
4472 * There is a small chance that we removed the
4473 * original, try to move the copy in its place.
4474 * This may not work if the vim_rename() fails.
4475 * In that case we leave the copy around.
4476 */
4477 /* If file does not exist, put the copy in its
4478 * place */
4479 if (mch_stat((char *)fname, &st) < 0)
4480 vim_rename(backup, fname);
4481 /* if original file does exist throw away the copy
4482 */
4483 if (mch_stat((char *)fname, &st) >= 0)
4484 mch_remove(backup);
4485 }
4486 else
4487 {
4488 /* try to put the original file back */
4489 vim_rename(backup, fname);
4490 }
4491 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004492
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004493 /* if original file no longer exists give an extra warning
4494 */
4495 if (!newfile && mch_stat((char *)fname, &st) < 0)
4496 end = 0;
4497 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004498
4499#ifdef FEAT_MBYTE
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004500 if (wfname != fname)
4501 vim_free(wfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502#endif
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004503 goto fail;
4504 }
4505 write_info.bw_fd = fd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004507#if defined(UNIX)
4508 {
4509 stat_T st;
4510
4511 /* Double check we are writing the intended file before making
4512 * any changes. */
4513 if (overwriting
4514 && (!dobackup || backup_copy)
4515 && fname == wfname
4516 && perm >= 0
4517 && mch_fstat(fd, &st) == 0
4518 && st.st_ino != st_old.st_ino)
4519 {
4520 close(fd);
4521 errmsg = (char_u *)_("E949: File changed while writing");
4522 goto fail;
4523 }
4524 }
4525#endif
4526#ifdef HAVE_FTRUNCATE
4527 if (!append)
Bram Moolenaarae1e1082017-11-17 21:35:24 +01004528 ignored = ftruncate(fd, (off_t)0);
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004529#endif
4530
Bram Moolenaard0573012017-10-28 21:11:06 +02004531#if defined(WIN3264)
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004532 if (backup != NULL && overwriting && !append)
4533 {
4534 if (backup_copy)
4535 (void)mch_copy_file_attribute(wfname, backup);
4536 else
4537 (void)mch_copy_file_attribute(backup, wfname);
4538 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004539
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004540 if (!overwriting && !append)
4541 {
4542 if (buf->b_ffname != NULL)
4543 (void)mch_copy_file_attribute(buf->b_ffname, wfname);
4544 /* Should copy resource fork */
4545 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004546#endif
4547
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548#ifdef FEAT_CRYPT
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004549 if (*buf->b_p_key != NUL && !filtering)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004551 char_u *header;
4552 int header_len;
4553
4554 buf->b_cryptstate = crypt_create_for_writing(
4555 crypt_get_method_nr(buf),
4556 buf->b_p_key, &header, &header_len);
4557 if (buf->b_cryptstate == NULL || header == NULL)
4558 end = 0;
4559 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004561 /* Write magic number, so that Vim knows how this file is
4562 * encrypted when reading it back. */
4563 write_info.bw_buf = header;
4564 write_info.bw_len = header_len;
4565 write_info.bw_flags = FIO_NOCONVERT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004566 if (buf_write_bytes(&write_info) == FAIL)
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004567 end = 0;
4568 wb_flags |= FIO_ENCRYPTED;
4569 vim_free(header);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004570 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004571 }
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004572#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004573 }
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004574 errmsg = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004576 write_info.bw_buf = buffer;
4577 nchars = 0;
4578
4579 /* use "++bin", "++nobin" or 'binary' */
4580 if (eap != NULL && eap->force_bin != 0)
4581 write_bin = (eap->force_bin == FORCE_BIN);
4582 else
4583 write_bin = buf->b_p_bin;
4584
4585#ifdef FEAT_MBYTE
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 /*
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004587 * The BOM is written just after the encryption magic number.
4588 * Skip it when appending and the file already existed, the BOM only
4589 * makes sense at the start of the file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 */
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004591 if (buf->b_p_bomb && !write_bin && (!append || perm < 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004592 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004593 write_info.bw_len = make_bom(buffer, fenc);
4594 if (write_info.bw_len > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004595 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004596 /* don't convert, do encryption */
4597 write_info.bw_flags = FIO_NOCONVERT | wb_flags;
4598 if (buf_write_bytes(&write_info) == FAIL)
4599 end = 0;
4600 else
4601 nchars += write_info.bw_len;
4602 }
4603 }
4604 write_info.bw_start_lnum = start;
4605#endif
4606
4607#ifdef FEAT_PERSISTENT_UNDO
4608 write_undo_file = (buf->b_p_udf
4609 && overwriting
4610 && !append
4611 && !filtering
4612 && reset_changed
4613 && !checking_conversion);
4614 if (write_undo_file)
4615 /* Prepare for computing the hash value of the text. */
4616 sha256_start(&sha_ctx);
4617#endif
4618
4619 write_info.bw_len = bufsize;
4620#ifdef HAS_BW_FLAGS
4621 write_info.bw_flags = wb_flags;
4622#endif
4623 fileformat = get_fileformat_force(buf, eap);
4624 s = buffer;
4625 len = 0;
4626 for (lnum = start; lnum <= end; ++lnum)
4627 {
4628 /*
4629 * The next while loop is done once for each character written.
4630 * Keep it fast!
4631 */
4632 ptr = ml_get_buf(buf, lnum, FALSE) - 1;
4633#ifdef FEAT_PERSISTENT_UNDO
4634 if (write_undo_file)
4635 sha256_update(&sha_ctx, ptr + 1,
4636 (UINT32_T)(STRLEN(ptr + 1) + 1));
4637#endif
4638 while ((c = *++ptr) != NUL)
4639 {
4640 if (c == NL)
4641 *s = NUL; /* replace newlines with NULs */
4642 else if (c == CAR && fileformat == EOL_MAC)
4643 *s = NL; /* Mac: replace CRs with NLs */
4644 else
4645 *s = c;
4646 ++s;
4647 if (++len != bufsize)
4648 continue;
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004649 if (buf_write_bytes(&write_info) == FAIL)
4650 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004651 end = 0; /* write error: break loop */
Bram Moolenaard4755bb2004-09-02 19:12:26 +00004652 break;
4653 }
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004654 nchars += bufsize;
4655 s = buffer;
4656 len = 0;
4657#ifdef FEAT_MBYTE
4658 write_info.bw_start_lnum = lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659#endif
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004660 }
4661 /* write failed or last line has no EOL: stop here */
4662 if (end == 0
4663 || (lnum == end
4664 && (write_bin || !buf->b_p_fixeol)
4665 && (lnum == buf->b_no_eol_lnum
4666 || (lnum == buf->b_ml.ml_line_count
4667 && !buf->b_p_eol))))
4668 {
4669 ++lnum; /* written the line, count it */
4670 no_eol = TRUE;
4671 break;
4672 }
4673 if (fileformat == EOL_UNIX)
4674 *s++ = NL;
4675 else
4676 {
4677 *s++ = CAR; /* EOL_MAC or EOL_DOS: write CR */
4678 if (fileformat == EOL_DOS) /* write CR-NL */
4679 {
4680 if (++len == bufsize)
4681 {
4682 if (buf_write_bytes(&write_info) == FAIL)
4683 {
4684 end = 0; /* write error: break loop */
4685 break;
4686 }
4687 nchars += bufsize;
4688 s = buffer;
4689 len = 0;
4690 }
4691 *s++ = NL;
4692 }
4693 }
4694 if (++len == bufsize && end)
4695 {
4696 if (buf_write_bytes(&write_info) == FAIL)
4697 {
4698 end = 0; /* write error: break loop */
4699 break;
4700 }
4701 nchars += bufsize;
4702 s = buffer;
4703 len = 0;
4704
4705 ui_breakcheck();
4706 if (got_int)
4707 {
4708 end = 0; /* Interrupted, break loop */
4709 break;
4710 }
4711 }
4712#ifdef VMS
4713 /*
4714 * On VMS there is a problem: newlines get added when writing
4715 * blocks at a time. Fix it by writing a line at a time.
4716 * This is much slower!
4717 * Explanation: VAX/DECC RTL insists that records in some RMS
4718 * structures end with a newline (carriage return) character, and
4719 * if they don't it adds one.
4720 * With other RMS structures it works perfect without this fix.
4721 */
4722 if (buf->b_fab_rfm == FAB$C_VFC
4723 || ((buf->b_fab_rat & (FAB$M_FTN | FAB$M_CR)) != 0))
4724 {
4725 int b2write;
4726
4727 buf->b_fab_mrs = (buf->b_fab_mrs == 0
4728 ? MIN(4096, bufsize)
4729 : MIN(buf->b_fab_mrs, bufsize));
4730
4731 b2write = len;
4732 while (b2write > 0)
4733 {
4734 write_info.bw_len = MIN(b2write, buf->b_fab_mrs);
4735 if (buf_write_bytes(&write_info) == FAIL)
4736 {
4737 end = 0;
4738 break;
4739 }
4740 b2write -= MIN(b2write, buf->b_fab_mrs);
4741 }
4742 write_info.bw_len = bufsize;
4743 nchars += len;
4744 s = buffer;
4745 len = 0;
4746 }
4747#endif
4748 }
4749 if (len > 0 && end > 0)
4750 {
4751 write_info.bw_len = len;
4752 if (buf_write_bytes(&write_info) == FAIL)
4753 end = 0; /* write error */
4754 nchars += len;
4755 }
4756
4757 /* Stop when writing done or an error was encountered. */
4758 if (!checking_conversion || end == 0)
4759 break;
4760
4761 /* If no error happened until now, writing should be ok, so loop to
4762 * really write the buffer. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004763 }
4764
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004765 /* If we started writing, finish writing. Also when an error was
4766 * encountered. */
4767 if (!checking_conversion)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004768 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004769#if defined(UNIX) && defined(HAVE_FSYNC)
4770 /*
4771 * On many journalling file systems there is a bug that causes both the
4772 * original and the backup file to be lost when halting the system
4773 * right after writing the file. That's because only the meta-data is
4774 * journalled. Syncing the file slows down the system, but assures it
4775 * has been written to disk and we don't lose it.
4776 * For a device do try the fsync() but don't complain if it does not
4777 * work (could be a pipe).
4778 * If the 'fsync' option is FALSE, don't fsync(). Useful for laptops.
4779 */
4780 if (p_fs && fsync(fd) != 0 && !device)
4781 {
Bram Moolenaar7567d0b2017-11-16 23:04:15 +01004782 errmsg = (char_u *)_(e_fsync);
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004783 end = 0;
4784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004785#endif
4786
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02004787#if defined(HAVE_SELINUX) || defined(HAVE_SMACK)
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004788 /* Probably need to set the security context. */
4789 if (!backup_copy)
4790 mch_copy_sec(backup, wfname);
Bram Moolenaar588ebeb2008-05-07 17:09:24 +00004791#endif
4792
Bram Moolenaara5792f52005-11-23 21:25:05 +00004793#ifdef UNIX
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004794 /* When creating a new file, set its owner/group to that of the
4795 * original file. Get the new device and inode number. */
4796 if (backup != NULL && !backup_copy)
Bram Moolenaara5792f52005-11-23 21:25:05 +00004797 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004798# ifdef HAVE_FCHOWN
4799 stat_T st;
4800
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004801 /* Don't change the owner when it's already OK, some systems remove
4802 * permission or ACL stuff. */
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004803 if (mch_stat((char *)wfname, &st) < 0
4804 || st.st_uid != st_old.st_uid
4805 || st.st_gid != st_old.st_gid)
4806 {
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004807 /* changing owner might not be possible */
4808 ignored = fchown(fd, st_old.st_uid, -1);
4809 /* if changing group fails clear the group permissions */
4810 if (fchown(fd, -1, st_old.st_gid) == -1 && perm > 0)
4811 perm &= ~070;
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004812 }
Bram Moolenaara5792f52005-11-23 21:25:05 +00004813# endif
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004814 buf_setino(buf);
4815 }
4816 else if (!buf->b_dev_valid)
4817 /* Set the inode when creating a new file. */
4818 buf_setino(buf);
Bram Moolenaara5792f52005-11-23 21:25:05 +00004819#endif
4820
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004821#ifdef UNIX
4822 if (made_writable)
4823 perm &= ~0200; /* reset 'w' bit for security reasons */
4824#endif
4825#ifdef HAVE_FCHMOD
4826 /* set permission of new file same as old file */
4827 if (perm >= 0)
4828 (void)mch_fsetperm(fd, perm);
4829#endif
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004830 if (close(fd) != 0)
4831 {
4832 errmsg = (char_u *)_("E512: Close failed");
4833 end = 0;
4834 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004835
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004836#ifndef HAVE_FCHMOD
4837 /* set permission of new file same as old file */
4838 if (perm >= 0)
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004839 (void)mch_setperm(wfname, perm);
Bram Moolenaarcd142e32017-11-16 17:03:45 +01004840#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841#ifdef HAVE_ACL
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004842 /*
4843 * Probably need to set the ACL before changing the user (can't set the
4844 * ACL on a file the user doesn't own).
4845 * On Solaris, with ZFS and the aclmode property set to "discard" (the
4846 * default), chmod() discards all part of a file's ACL that don't
4847 * represent the mode of the file. It's non-trivial for us to discover
4848 * whether we're in that situation, so we simply always re-set the ACL.
4849 */
Bram Moolenaarda412772016-07-14 20:37:07 +02004850# ifndef HAVE_SOLARIS_ZFS_ACL
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004851 if (!backup_copy)
Bram Moolenaarda412772016-07-14 20:37:07 +02004852# endif
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004853 mch_set_acl(wfname, acl);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004855#ifdef FEAT_CRYPT
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004856 if (buf->b_cryptstate != NULL)
4857 {
4858 crypt_free_state(buf->b_cryptstate);
4859 buf->b_cryptstate = NULL;
4860 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004861#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004862
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863#if defined(FEAT_MBYTE) && defined(FEAT_EVAL)
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004864 if (wfname != fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004866 /*
4867 * The file was written to a temp file, now it needs to be
4868 * converted with 'charconvert' to (overwrite) the output file.
4869 */
4870 if (end != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004872 if (eval_charconvert(enc_utf8 ? (char_u *)"utf-8" : p_enc,
4873 fenc, wfname, fname) == FAIL)
4874 {
4875 write_info.bw_conv_error = TRUE;
4876 end = 0;
4877 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004878 }
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004879 mch_remove(wfname);
4880 vim_free(wfname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004882#endif
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004884
4885 if (end == 0)
4886 {
Bram Moolenaare6bf6552017-06-27 22:11:51 +02004887 /*
4888 * Error encountered.
4889 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 if (errmsg == NULL)
4891 {
4892#ifdef FEAT_MBYTE
4893 if (write_info.bw_conv_error)
Bram Moolenaar32b485f2009-07-29 16:06:27 +00004894 {
4895 if (write_info.bw_conv_error_lnum == 0)
4896 errmsg = (char_u *)_("E513: write error, conversion failed (make 'fenc' empty to override)");
4897 else
4898 {
4899 errmsg_allocated = TRUE;
4900 errmsg = alloc(300);
4901 vim_snprintf((char *)errmsg, 300, _("E513: write error, conversion failed in line %ld (make 'fenc' empty to override)"),
4902 (long)write_info.bw_conv_error_lnum);
4903 }
4904 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004905 else
4906#endif
4907 if (got_int)
4908 errmsg = (char_u *)_(e_interr);
4909 else
4910 errmsg = (char_u *)_("E514: write error (file system full?)");
4911 }
4912
4913 /*
4914 * If we have a backup file, try to put it in place of the new file,
Bram Moolenaare37d50a2008-08-06 17:06:04 +00004915 * because the new file is probably corrupt. This avoids losing the
Bram Moolenaar071d4272004-06-13 20:20:40 +00004916 * original file when trying to make a backup when writing the file a
4917 * second time.
4918 * When "backup_copy" is set we need to copy the backup over the new
4919 * file. Otherwise rename the backup file.
4920 * If this is OK, don't give the extra warning message.
4921 */
4922 if (backup != NULL)
4923 {
4924 if (backup_copy)
4925 {
4926 /* This may take a while, if we were interrupted let the user
4927 * know we got the message. */
4928 if (got_int)
4929 {
4930 MSG(_(e_interr));
4931 out_flush();
4932 }
4933 if ((fd = mch_open((char *)backup, O_RDONLY | O_EXTRA, 0)) >= 0)
4934 {
4935 if ((write_info.bw_fd = mch_open((char *)fname,
Bram Moolenaar9be038d2005-03-08 22:34:32 +00004936 O_WRONLY | O_CREAT | O_TRUNC | O_EXTRA,
4937 perm & 0777)) >= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 {
4939 /* copy the file. */
4940 write_info.bw_buf = smallbuf;
4941#ifdef HAS_BW_FLAGS
4942 write_info.bw_flags = FIO_NOCONVERT;
4943#endif
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004944 while ((write_info.bw_len = read_eintr(fd, smallbuf,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945 SMBUFSIZE)) > 0)
4946 if (buf_write_bytes(&write_info) == FAIL)
4947 break;
4948
4949 if (close(write_info.bw_fd) >= 0
4950 && write_info.bw_len == 0)
4951 end = 1; /* success */
4952 }
4953 close(fd); /* ignore errors for closing read file */
4954 }
4955 }
4956 else
4957 {
4958 if (vim_rename(backup, fname) == 0)
4959 end = 1;
4960 }
4961 }
4962 goto fail;
4963 }
4964
4965 lnum -= start; /* compute number of written lines */
4966 --no_wait_return; /* may wait for return now */
4967
4968#if !(defined(UNIX) || defined(VMS))
4969 fname = sfname; /* use shortname now, for the messages */
4970#endif
4971 if (!filtering)
4972 {
4973 msg_add_fname(buf, fname); /* put fname in IObuff with quotes */
4974 c = FALSE;
4975#ifdef FEAT_MBYTE
4976 if (write_info.bw_conv_error)
4977 {
4978 STRCAT(IObuff, _(" CONVERSION ERROR"));
4979 c = TRUE;
Bram Moolenaar32b485f2009-07-29 16:06:27 +00004980 if (write_info.bw_conv_error_lnum != 0)
Bram Moolenaara800b422010-06-27 01:15:55 +02004981 vim_snprintf_add((char *)IObuff, IOSIZE, _(" in line %ld;"),
Bram Moolenaar32b485f2009-07-29 16:06:27 +00004982 (long)write_info.bw_conv_error_lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983 }
4984 else if (notconverted)
4985 {
4986 STRCAT(IObuff, _("[NOT converted]"));
4987 c = TRUE;
4988 }
4989 else if (converted)
4990 {
4991 STRCAT(IObuff, _("[converted]"));
4992 c = TRUE;
4993 }
4994#endif
4995 if (device)
4996 {
4997 STRCAT(IObuff, _("[Device]"));
4998 c = TRUE;
4999 }
5000 else if (newfile)
5001 {
5002 STRCAT(IObuff, shortmess(SHM_NEW) ? _("[New]") : _("[New File]"));
5003 c = TRUE;
5004 }
5005 if (no_eol)
5006 {
5007 msg_add_eol();
5008 c = TRUE;
5009 }
5010 /* may add [unix/dos/mac] */
5011 if (msg_add_fileformat(fileformat))
5012 c = TRUE;
5013#ifdef FEAT_CRYPT
5014 if (wb_flags & FIO_ENCRYPTED)
5015 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005016 crypt_append_msg(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 c = TRUE;
5018 }
5019#endif
5020 msg_add_lines(c, (long)lnum, nchars); /* add line/char count */
5021 if (!shortmess(SHM_WRITE))
5022 {
5023 if (append)
5024 STRCAT(IObuff, shortmess(SHM_WRI) ? _(" [a]") : _(" appended"));
5025 else
5026 STRCAT(IObuff, shortmess(SHM_WRI) ? _(" [w]") : _(" written"));
5027 }
5028
Bram Moolenaar8f7fd652006-02-21 22:04:51 +00005029 set_keep_msg(msg_trunc_attr(IObuff, FALSE, 0), 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005030 }
5031
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005032 /* When written everything correctly: reset 'modified'. Unless not
5033 * writing to the original file and '+' is not in 'cpoptions'. */
Bram Moolenaar292ad192005-12-11 21:29:51 +00005034 if (reset_changed && whole && !append
Bram Moolenaar071d4272004-06-13 20:20:40 +00005035#ifdef FEAT_MBYTE
5036 && !write_info.bw_conv_error
5037#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005038 && (overwriting || vim_strchr(p_cpo, CPO_PLUS) != NULL)
5039 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00005040 {
5041 unchanged(buf, TRUE);
Bram Moolenaar95c526e2017-02-25 14:59:34 +01005042 /* b:changedtick is always incremented in unchanged() but that
Bram Moolenaar086329d2014-10-31 19:51:36 +01005043 * should not trigger a TextChanged event. */
Bram Moolenaar5a093432018-02-10 18:15:19 +01005044 if (buf->b_last_changedtick + 1 == CHANGEDTICK(buf))
5045 buf->b_last_changedtick = CHANGEDTICK(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005046 u_unchanged(buf);
Bram Moolenaar730cde92010-06-27 05:18:54 +02005047 u_update_save_nr(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 }
5049
5050 /*
5051 * If written to the current file, update the timestamp of the swap file
5052 * and reset the BF_WRITE_MASK flags. Also sets buf->b_mtime.
5053 */
5054 if (overwriting)
5055 {
5056 ml_timestamp(buf);
Bram Moolenaar292ad192005-12-11 21:29:51 +00005057 if (append)
5058 buf->b_flags &= ~BF_NEW;
5059 else
5060 buf->b_flags &= ~BF_WRITE_MASK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 }
5062
5063 /*
5064 * If we kept a backup until now, and we are in patch mode, then we make
5065 * the backup file our 'original' file.
5066 */
5067 if (*p_pm && dobackup)
5068 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005069 char *org = (char *)buf_modname((buf->b_p_sn || buf->b_shortname),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005070 fname, p_pm, FALSE);
5071
5072 if (backup != NULL)
5073 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02005074 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005075
5076 /*
5077 * If the original file does not exist yet
5078 * the current backup file becomes the original file
5079 */
5080 if (org == NULL)
5081 EMSG(_("E205: Patchmode: can't save original file"));
5082 else if (mch_stat(org, &st) < 0)
5083 {
5084 vim_rename(backup, (char_u *)org);
Bram Moolenaard23a8232018-02-10 18:45:26 +01005085 VIM_CLEAR(backup); /* don't delete the file */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086#ifdef UNIX
5087 set_file_time((char_u *)org, st_old.st_atime, st_old.st_mtime);
5088#endif
5089 }
5090 }
5091 /*
5092 * If there is no backup file, remember that a (new) file was
5093 * created.
5094 */
5095 else
5096 {
5097 int empty_fd;
5098
5099 if (org == NULL
Bram Moolenaara5792f52005-11-23 21:25:05 +00005100 || (empty_fd = mch_open(org,
5101 O_CREAT | O_EXTRA | O_EXCL | O_NOFOLLOW,
Bram Moolenaar4317d9b2005-03-18 20:25:31 +00005102 perm < 0 ? 0666 : (perm & 0777))) < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005103 EMSG(_("E206: patchmode: can't touch empty original file"));
5104 else
5105 close(empty_fd);
5106 }
5107 if (org != NULL)
5108 {
5109 mch_setperm((char_u *)org, mch_getperm(fname) & 0777);
5110 vim_free(org);
5111 }
5112 }
5113
5114 /*
5115 * Remove the backup unless 'backup' option is set
5116 */
5117 if (!p_bk && backup != NULL && mch_remove(backup) != 0)
5118 EMSG(_("E207: Can't delete backup file"));
5119
5120#ifdef FEAT_SUN_WORKSHOP
5121 if (usingSunWorkShop)
5122 workshop_file_saved((char *) ffname);
5123#endif
5124
5125 goto nofail;
5126
5127 /*
5128 * Finish up. We get here either after failure or success.
5129 */
5130fail:
5131 --no_wait_return; /* may wait for return now */
5132nofail:
5133
5134 /* Done saving, we accept changed buffer warnings again */
5135 buf->b_saving = FALSE;
5136
5137 vim_free(backup);
5138 if (buffer != smallbuf)
5139 vim_free(buffer);
5140#ifdef FEAT_MBYTE
5141 vim_free(fenc_tofree);
5142 vim_free(write_info.bw_conv_buf);
5143# ifdef USE_ICONV
5144 if (write_info.bw_iconv_fd != (iconv_t)-1)
5145 {
5146 iconv_close(write_info.bw_iconv_fd);
5147 write_info.bw_iconv_fd = (iconv_t)-1;
5148 }
5149# endif
5150#endif
5151#ifdef HAVE_ACL
5152 mch_free_acl(acl);
5153#endif
5154
5155 if (errmsg != NULL)
5156 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005157 int numlen = errnum != NULL ? (int)STRLEN(errnum) : 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005158
Bram Moolenaar8820b482017-03-16 17:23:31 +01005159 attr = HL_ATTR(HLF_E); /* set highlight for error messages */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005160 msg_add_fname(buf,
5161#ifndef UNIX
5162 sfname
5163#else
5164 fname
5165#endif
5166 ); /* put file name in IObuff with quotes */
5167 if (STRLEN(IObuff) + STRLEN(errmsg) + numlen >= IOSIZE)
5168 IObuff[IOSIZE - STRLEN(errmsg) - numlen - 1] = NUL;
5169 /* If the error message has the form "is ...", put the error number in
5170 * front of the file name. */
5171 if (errnum != NULL)
5172 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00005173 STRMOVE(IObuff + numlen, IObuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174 mch_memmove(IObuff, errnum, (size_t)numlen);
5175 }
5176 STRCAT(IObuff, errmsg);
5177 emsg(IObuff);
Bram Moolenaar32b485f2009-07-29 16:06:27 +00005178 if (errmsg_allocated)
5179 vim_free(errmsg);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180
5181 retval = FAIL;
5182 if (end == 0)
5183 {
5184 MSG_PUTS_ATTR(_("\nWARNING: Original file may be lost or damaged\n"),
5185 attr | MSG_HIST);
5186 MSG_PUTS_ATTR(_("don't quit the editor until the file is successfully written!"),
5187 attr | MSG_HIST);
5188
5189 /* Update the timestamp to avoid an "overwrite changed file"
5190 * prompt when writing again. */
5191 if (mch_stat((char *)fname, &st_old) >= 0)
5192 {
5193 buf_store_time(buf, &st_old, fname);
5194 buf->b_mtime_read = buf->b_mtime;
5195 }
5196 }
5197 }
5198 msg_scroll = msg_save;
5199
Bram Moolenaar55debbe2010-05-23 23:34:36 +02005200#ifdef FEAT_PERSISTENT_UNDO
5201 /*
5202 * When writing the whole file and 'undofile' is set, also write the undo
5203 * file.
5204 */
5205 if (retval == OK && write_undo_file)
5206 {
5207 char_u hash[UNDO_HASH_SIZE];
5208
5209 sha256_finish(&sha_ctx, hash);
5210 u_write_undo(NULL, FALSE, buf, hash);
5211 }
5212#endif
5213
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214#ifdef FEAT_EVAL
5215 if (!should_abort(retval))
5216#else
5217 if (!got_int)
5218#endif
5219 {
5220 aco_save_T aco;
5221
Bram Moolenaar68a33fc2012-04-25 16:50:48 +02005222 curbuf->b_no_eol_lnum = 0; /* in case it was set by the previous read */
5223
Bram Moolenaar071d4272004-06-13 20:20:40 +00005224 /*
5225 * Apply POST autocommands.
5226 * Careful: The autocommands may call buf_write() recursively!
5227 */
5228 aucmd_prepbuf(&aco, buf);
5229
5230 if (append)
5231 apply_autocmds_exarg(EVENT_FILEAPPENDPOST, fname, fname,
5232 FALSE, curbuf, eap);
5233 else if (filtering)
5234 apply_autocmds_exarg(EVENT_FILTERWRITEPOST, NULL, fname,
5235 FALSE, curbuf, eap);
5236 else if (reset_changed && whole)
5237 apply_autocmds_exarg(EVENT_BUFWRITEPOST, fname, fname,
5238 FALSE, curbuf, eap);
5239 else
5240 apply_autocmds_exarg(EVENT_FILEWRITEPOST, fname, fname,
5241 FALSE, curbuf, eap);
5242
5243 /* restore curwin/curbuf and a few other things */
5244 aucmd_restbuf(&aco);
5245
5246#ifdef FEAT_EVAL
5247 if (aborting()) /* autocmds may abort script processing */
5248 retval = FALSE;
5249#endif
5250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005251
5252 got_int |= prev_got_int;
5253
Bram Moolenaar071d4272004-06-13 20:20:40 +00005254 return retval;
5255}
5256
5257/*
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005258 * Set the name of the current buffer. Use when the buffer doesn't have a
5259 * name and a ":r" or ":w" command with a file name is used.
5260 */
5261 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005262set_rw_fname(char_u *fname, char_u *sfname)
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005263{
Bram Moolenaar8b38e242009-06-16 13:35:20 +00005264 buf_T *buf = curbuf;
5265
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005266 /* It's like the unnamed buffer is deleted.... */
5267 if (curbuf->b_p_bl)
5268 apply_autocmds(EVENT_BUFDELETE, NULL, NULL, FALSE, curbuf);
5269 apply_autocmds(EVENT_BUFWIPEOUT, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005270#ifdef FEAT_EVAL
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005271 if (aborting()) /* autocmds may abort script processing */
5272 return FAIL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005273#endif
Bram Moolenaar8b38e242009-06-16 13:35:20 +00005274 if (curbuf != buf)
5275 {
5276 /* We are in another buffer now, don't do the renaming. */
5277 EMSG(_(e_auchangedbuf));
5278 return FAIL;
5279 }
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005280
5281 if (setfname(curbuf, fname, sfname, FALSE) == OK)
5282 curbuf->b_flags |= BF_NOTEDITED;
5283
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005284 /* ....and a new named one is created */
5285 apply_autocmds(EVENT_BUFNEW, NULL, NULL, FALSE, curbuf);
5286 if (curbuf->b_p_bl)
5287 apply_autocmds(EVENT_BUFADD, NULL, NULL, FALSE, curbuf);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005288#ifdef FEAT_EVAL
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005289 if (aborting()) /* autocmds may abort script processing */
5290 return FAIL;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005291#endif
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005292
5293 /* Do filetype detection now if 'filetype' is empty. */
5294 if (*curbuf->b_p_ft == NUL)
5295 {
Bram Moolenaar910f66f2006-04-05 20:41:53 +00005296 if (au_has_group((char_u *)"filetypedetect"))
Bram Moolenaar1610d052016-06-09 22:53:01 +02005297 (void)do_doautocmd((char_u *)"filetypedetect BufRead", FALSE, NULL);
Bram Moolenaara3227e22006-03-08 21:32:40 +00005298 do_modelines(0);
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005299 }
Bram Moolenaar2d3f4892006-01-20 23:02:51 +00005300
5301 return OK;
5302}
5303
5304/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00005305 * Put file name into IObuff with quotes.
5306 */
Bram Moolenaar009b2592004-10-24 19:18:58 +00005307 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005308msg_add_fname(buf_T *buf, char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309{
5310 if (fname == NULL)
5311 fname = (char_u *)"-stdin-";
5312 home_replace(buf, fname, IObuff + 1, IOSIZE - 4, TRUE);
5313 IObuff[0] = '"';
5314 STRCAT(IObuff, "\" ");
5315}
5316
5317/*
5318 * Append message for text mode to IObuff.
5319 * Return TRUE if something appended.
5320 */
5321 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005322msg_add_fileformat(int eol_type)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005323{
5324#ifndef USE_CRNL
5325 if (eol_type == EOL_DOS)
5326 {
5327 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[dos]") : _("[dos format]"));
5328 return TRUE;
5329 }
5330#endif
5331#ifndef USE_CR
5332 if (eol_type == EOL_MAC)
5333 {
5334 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[mac]") : _("[mac format]"));
5335 return TRUE;
5336 }
5337#endif
5338#if defined(USE_CRNL) || defined(USE_CR)
5339 if (eol_type == EOL_UNIX)
5340 {
5341 STRCAT(IObuff, shortmess(SHM_TEXT) ? _("[unix]") : _("[unix format]"));
5342 return TRUE;
5343 }
5344#endif
5345 return FALSE;
5346}
5347
5348/*
5349 * Append line and character count to IObuff.
5350 */
Bram Moolenaar009b2592004-10-24 19:18:58 +00005351 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005352msg_add_lines(
5353 int insert_space,
5354 long lnum,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005355 off_T nchars)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005356{
5357 char_u *p;
5358
5359 p = IObuff + STRLEN(IObuff);
5360
5361 if (insert_space)
5362 *p++ = ' ';
5363 if (shortmess(SHM_LINES))
Bram Moolenaarbde98102016-07-01 20:03:42 +02005364 vim_snprintf((char *)p, IOSIZE - (p - IObuff),
Bram Moolenaarea391762018-04-08 13:07:22 +02005365 "%ldL, %lldC", lnum, (long long)nchars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005366 else
5367 {
5368 if (lnum == 1)
5369 STRCPY(p, _("1 line, "));
5370 else
5371 sprintf((char *)p, _("%ld lines, "), lnum);
5372 p += STRLEN(p);
5373 if (nchars == 1)
5374 STRCPY(p, _("1 character"));
5375 else
Bram Moolenaarbde98102016-07-01 20:03:42 +02005376 vim_snprintf((char *)p, IOSIZE - (p - IObuff),
Bram Moolenaarea391762018-04-08 13:07:22 +02005377 _("%lld characters"), (long long)nchars);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005378 }
5379}
5380
5381/*
5382 * Append message for missing line separator to IObuff.
5383 */
5384 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005385msg_add_eol(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005386{
5387 STRCAT(IObuff, shortmess(SHM_LAST) ? _("[noeol]") : _("[Incomplete last line]"));
5388}
5389
5390/*
5391 * Check modification time of file, before writing to it.
5392 * The size isn't checked, because using a tool like "gzip" takes care of
5393 * using the same timestamp but can't set the size.
5394 */
5395 static int
Bram Moolenaar8767f522016-07-01 17:17:39 +02005396check_mtime(buf_T *buf, stat_T *st)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005397{
5398 if (buf->b_mtime_read != 0
5399 && time_differs((long)st->st_mtime, buf->b_mtime_read))
5400 {
5401 msg_scroll = TRUE; /* don't overwrite messages here */
5402 msg_silent = 0; /* must give this prompt */
5403 /* don't use emsg() here, don't want to flush the buffers */
5404 MSG_ATTR(_("WARNING: The file has been changed since reading it!!!"),
Bram Moolenaar8820b482017-03-16 17:23:31 +01005405 HL_ATTR(HLF_E));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005406 if (ask_yesno((char_u *)_("Do you really want to write to it"),
5407 TRUE) == 'n')
5408 return FAIL;
5409 msg_scroll = FALSE; /* always overwrite the file message now */
5410 }
5411 return OK;
5412}
5413
5414 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005415time_differs(long t1, long t2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005416{
Bram Moolenaar48e330a2016-02-23 14:53:34 +01005417#if defined(__linux__) || defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005418 /* On a FAT filesystem, esp. under Linux, there are only 5 bits to store
5419 * the seconds. Since the roundoff is done when flushing the inode, the
5420 * time may change unexpectedly by one second!!! */
5421 return (t1 - t2 > 1 || t2 - t1 > 1);
5422#else
5423 return (t1 != t2);
5424#endif
5425}
5426
5427/*
5428 * Call write() to write a number of bytes to the file.
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01005429 * Handles encryption and 'encoding' conversion.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005430 *
5431 * Return FAIL for failure, OK otherwise.
5432 */
5433 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005434buf_write_bytes(struct bw_info *ip)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435{
5436 int wlen;
5437 char_u *buf = ip->bw_buf; /* data to write */
5438 int len = ip->bw_len; /* length of data */
5439#ifdef HAS_BW_FLAGS
5440 int flags = ip->bw_flags; /* extra flags */
5441#endif
5442
5443#ifdef FEAT_MBYTE
5444 /*
5445 * Skip conversion when writing the crypt magic number or the BOM.
5446 */
5447 if (!(flags & FIO_NOCONVERT))
5448 {
5449 char_u *p;
5450 unsigned c;
5451 int n;
5452
5453 if (flags & FIO_UTF8)
5454 {
5455 /*
5456 * Convert latin1 in the buffer to UTF-8 in the file.
5457 */
5458 p = ip->bw_conv_buf; /* translate to buffer */
5459 for (wlen = 0; wlen < len; ++wlen)
5460 p += utf_char2bytes(buf[wlen], p);
5461 buf = ip->bw_conv_buf;
5462 len = (int)(p - ip->bw_conv_buf);
5463 }
5464 else if (flags & (FIO_UCS4 | FIO_UTF16 | FIO_UCS2 | FIO_LATIN1))
5465 {
5466 /*
5467 * Convert UTF-8 bytes in the buffer to UCS-2, UCS-4, UTF-16 or
5468 * Latin1 chars in the file.
5469 */
5470 if (flags & FIO_LATIN1)
5471 p = buf; /* translate in-place (can only get shorter) */
5472 else
5473 p = ip->bw_conv_buf; /* translate to buffer */
5474 for (wlen = 0; wlen < len; wlen += n)
5475 {
5476 if (wlen == 0 && ip->bw_restlen != 0)
5477 {
5478 int l;
5479
5480 /* Use remainder of previous call. Append the start of
5481 * buf[] to get a full sequence. Might still be too
5482 * short! */
5483 l = CONV_RESTLEN - ip->bw_restlen;
5484 if (l > len)
5485 l = len;
5486 mch_memmove(ip->bw_rest + ip->bw_restlen, buf, (size_t)l);
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005487 n = utf_ptr2len_len(ip->bw_rest, ip->bw_restlen + l);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005488 if (n > ip->bw_restlen + len)
5489 {
5490 /* We have an incomplete byte sequence at the end to
5491 * be written. We can't convert it without the
5492 * remaining bytes. Keep them for the next call. */
5493 if (ip->bw_restlen + len > CONV_RESTLEN)
5494 return FAIL;
5495 ip->bw_restlen += len;
5496 break;
5497 }
5498 if (n > 1)
5499 c = utf_ptr2char(ip->bw_rest);
5500 else
5501 c = ip->bw_rest[0];
5502 if (n >= ip->bw_restlen)
5503 {
5504 n -= ip->bw_restlen;
5505 ip->bw_restlen = 0;
5506 }
5507 else
5508 {
5509 ip->bw_restlen -= n;
5510 mch_memmove(ip->bw_rest, ip->bw_rest + n,
5511 (size_t)ip->bw_restlen);
5512 n = 0;
5513 }
5514 }
5515 else
5516 {
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00005517 n = utf_ptr2len_len(buf + wlen, len - wlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 if (n > len - wlen)
5519 {
5520 /* We have an incomplete byte sequence at the end to
5521 * be written. We can't convert it without the
5522 * remaining bytes. Keep them for the next call. */
5523 if (len - wlen > CONV_RESTLEN)
5524 return FAIL;
5525 ip->bw_restlen = len - wlen;
5526 mch_memmove(ip->bw_rest, buf + wlen,
5527 (size_t)ip->bw_restlen);
5528 break;
5529 }
5530 if (n > 1)
5531 c = utf_ptr2char(buf + wlen);
5532 else
5533 c = buf[wlen];
5534 }
5535
Bram Moolenaar32b485f2009-07-29 16:06:27 +00005536 if (ucs2bytes(c, &p, flags) && !ip->bw_conv_error)
5537 {
5538 ip->bw_conv_error = TRUE;
5539 ip->bw_conv_error_lnum = ip->bw_start_lnum;
5540 }
5541 if (c == NL)
5542 ++ip->bw_start_lnum;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 }
5544 if (flags & FIO_LATIN1)
5545 len = (int)(p - buf);
5546 else
5547 {
5548 buf = ip->bw_conv_buf;
5549 len = (int)(p - ip->bw_conv_buf);
5550 }
5551 }
5552
5553# ifdef WIN3264
5554 else if (flags & FIO_CODEPAGE)
5555 {
5556 /*
5557 * Convert UTF-8 or codepage to UCS-2 and then to MS-Windows
5558 * codepage.
5559 */
5560 char_u *from;
5561 size_t fromlen;
5562 char_u *to;
5563 int u8c;
5564 BOOL bad = FALSE;
5565 int needed;
5566
5567 if (ip->bw_restlen > 0)
5568 {
5569 /* Need to concatenate the remainder of the previous call and
5570 * the bytes of the current call. Use the end of the
5571 * conversion buffer for this. */
5572 fromlen = len + ip->bw_restlen;
5573 from = ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5574 mch_memmove(from, ip->bw_rest, (size_t)ip->bw_restlen);
5575 mch_memmove(from + ip->bw_restlen, buf, (size_t)len);
5576 }
5577 else
5578 {
5579 from = buf;
5580 fromlen = len;
5581 }
5582
5583 to = ip->bw_conv_buf;
5584 if (enc_utf8)
5585 {
5586 /* Convert from UTF-8 to UCS-2, to the start of the buffer.
5587 * The buffer has been allocated to be big enough. */
5588 while (fromlen > 0)
5589 {
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005590 n = (int)utf_ptr2len_len(from, (int)fromlen);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 if (n > (int)fromlen) /* incomplete byte sequence */
5592 break;
5593 u8c = utf_ptr2char(from);
5594 *to++ = (u8c & 0xff);
5595 *to++ = (u8c >> 8);
5596 fromlen -= n;
5597 from += n;
5598 }
5599
5600 /* Copy remainder to ip->bw_rest[] to be used for the next
5601 * call. */
5602 if (fromlen > CONV_RESTLEN)
5603 {
5604 /* weird overlong sequence */
5605 ip->bw_conv_error = TRUE;
5606 return FAIL;
5607 }
5608 mch_memmove(ip->bw_rest, from, fromlen);
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005609 ip->bw_restlen = (int)fromlen;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005610 }
5611 else
5612 {
5613 /* Convert from enc_codepage to UCS-2, to the start of the
5614 * buffer. The buffer has been allocated to be big enough. */
5615 ip->bw_restlen = 0;
5616 needed = MultiByteToWideChar(enc_codepage,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005617 MB_ERR_INVALID_CHARS, (LPCSTR)from, (int)fromlen,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005618 NULL, 0);
5619 if (needed == 0)
5620 {
5621 /* When conversion fails there may be a trailing byte. */
5622 needed = MultiByteToWideChar(enc_codepage,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005623 MB_ERR_INVALID_CHARS, (LPCSTR)from, (int)fromlen - 1,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005624 NULL, 0);
5625 if (needed == 0)
5626 {
5627 /* Conversion doesn't work. */
5628 ip->bw_conv_error = TRUE;
5629 return FAIL;
5630 }
5631 /* Save the trailing byte for the next call. */
5632 ip->bw_rest[0] = from[fromlen - 1];
5633 ip->bw_restlen = 1;
5634 }
5635 needed = MultiByteToWideChar(enc_codepage, MB_ERR_INVALID_CHARS,
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005636 (LPCSTR)from, (int)(fromlen - ip->bw_restlen),
Bram Moolenaar071d4272004-06-13 20:20:40 +00005637 (LPWSTR)to, needed);
5638 if (needed == 0)
5639 {
5640 /* Safety check: Conversion doesn't work. */
5641 ip->bw_conv_error = TRUE;
5642 return FAIL;
5643 }
5644 to += needed * 2;
5645 }
5646
5647 fromlen = to - ip->bw_conv_buf;
5648 buf = to;
5649# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
5650 if (FIO_GET_CP(flags) == CP_UTF8)
5651 {
5652 /* Convert from UCS-2 to UTF-8, using the remainder of the
5653 * conversion buffer. Fails when out of space. */
5654 for (from = ip->bw_conv_buf; fromlen > 1; fromlen -= 2)
5655 {
5656 u8c = *from++;
5657 u8c += (*from++ << 8);
5658 to += utf_char2bytes(u8c, to);
5659 if (to + 6 >= ip->bw_conv_buf + ip->bw_conv_buflen)
5660 {
5661 ip->bw_conv_error = TRUE;
5662 return FAIL;
5663 }
5664 }
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00005665 len = (int)(to - buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005666 }
5667 else
5668#endif
5669 {
5670 /* Convert from UCS-2 to the codepage, using the remainder of
5671 * the conversion buffer. If the conversion uses the default
5672 * character "0", the data doesn't fit in this encoding, so
5673 * fail. */
5674 len = WideCharToMultiByte(FIO_GET_CP(flags), 0,
5675 (LPCWSTR)ip->bw_conv_buf, (int)fromlen / sizeof(WCHAR),
Bram Moolenaar36f5ac02007-05-06 12:40:34 +00005676 (LPSTR)to, (int)(ip->bw_conv_buflen - fromlen), 0,
5677 &bad);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678 if (bad)
5679 {
5680 ip->bw_conv_error = TRUE;
5681 return FAIL;
5682 }
5683 }
5684 }
5685# endif
5686
Bram Moolenaar56718732006-03-15 22:53:57 +00005687# ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00005688 else if (flags & FIO_MACROMAN)
5689 {
5690 /*
5691 * Convert UTF-8 or latin1 to Apple MacRoman.
5692 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005693 char_u *from;
5694 size_t fromlen;
5695
5696 if (ip->bw_restlen > 0)
5697 {
5698 /* Need to concatenate the remainder of the previous call and
5699 * the bytes of the current call. Use the end of the
5700 * conversion buffer for this. */
5701 fromlen = len + ip->bw_restlen;
5702 from = ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5703 mch_memmove(from, ip->bw_rest, (size_t)ip->bw_restlen);
5704 mch_memmove(from + ip->bw_restlen, buf, (size_t)len);
5705 }
5706 else
5707 {
5708 from = buf;
5709 fromlen = len;
5710 }
5711
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00005712 if (enc2macroman(from, fromlen,
5713 ip->bw_conv_buf, &len, ip->bw_conv_buflen,
5714 ip->bw_rest, &ip->bw_restlen) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005715 {
5716 ip->bw_conv_error = TRUE;
5717 return FAIL;
5718 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005719 buf = ip->bw_conv_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720 }
5721# endif
5722
5723# ifdef USE_ICONV
5724 if (ip->bw_iconv_fd != (iconv_t)-1)
5725 {
5726 const char *from;
5727 size_t fromlen;
5728 char *to;
5729 size_t tolen;
5730
5731 /* Convert with iconv(). */
5732 if (ip->bw_restlen > 0)
5733 {
Bram Moolenaar5d294d12009-03-11 12:11:02 +00005734 char *fp;
5735
Bram Moolenaar071d4272004-06-13 20:20:40 +00005736 /* Need to concatenate the remainder of the previous call and
5737 * the bytes of the current call. Use the end of the
5738 * conversion buffer for this. */
5739 fromlen = len + ip->bw_restlen;
Bram Moolenaar5d294d12009-03-11 12:11:02 +00005740 fp = (char *)ip->bw_conv_buf + ip->bw_conv_buflen - fromlen;
5741 mch_memmove(fp, ip->bw_rest, (size_t)ip->bw_restlen);
5742 mch_memmove(fp + ip->bw_restlen, buf, (size_t)len);
5743 from = fp;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744 tolen = ip->bw_conv_buflen - fromlen;
5745 }
5746 else
5747 {
5748 from = (const char *)buf;
5749 fromlen = len;
5750 tolen = ip->bw_conv_buflen;
5751 }
5752 to = (char *)ip->bw_conv_buf;
5753
5754 if (ip->bw_first)
5755 {
5756 size_t save_len = tolen;
5757
5758 /* output the initial shift state sequence */
5759 (void)iconv(ip->bw_iconv_fd, NULL, NULL, &to, &tolen);
5760
5761 /* There is a bug in iconv() on Linux (which appears to be
5762 * wide-spread) which sets "to" to NULL and messes up "tolen".
5763 */
5764 if (to == NULL)
5765 {
5766 to = (char *)ip->bw_conv_buf;
5767 tolen = save_len;
5768 }
5769 ip->bw_first = FALSE;
5770 }
5771
5772 /*
5773 * If iconv() has an error or there is not enough room, fail.
5774 */
5775 if ((iconv(ip->bw_iconv_fd, (void *)&from, &fromlen, &to, &tolen)
5776 == (size_t)-1 && ICONV_ERRNO != ICONV_EINVAL)
5777 || fromlen > CONV_RESTLEN)
5778 {
5779 ip->bw_conv_error = TRUE;
5780 return FAIL;
5781 }
5782
5783 /* copy remainder to ip->bw_rest[] to be used for the next call. */
5784 if (fromlen > 0)
5785 mch_memmove(ip->bw_rest, (void *)from, fromlen);
5786 ip->bw_restlen = (int)fromlen;
5787
5788 buf = ip->bw_conv_buf;
5789 len = (int)((char_u *)to - ip->bw_conv_buf);
5790 }
5791# endif
5792 }
5793#endif /* FEAT_MBYTE */
5794
Bram Moolenaare6bf6552017-06-27 22:11:51 +02005795 if (ip->bw_fd < 0)
5796 /* Only checking conversion, which is OK if we get here. */
5797 return OK;
5798
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005800 if (flags & FIO_ENCRYPTED)
5801 {
5802 /* Encrypt the data. Do it in-place if possible, otherwise use an
5803 * allocated buffer. */
5804 if (crypt_works_inplace(ip->bw_buffer->b_cryptstate))
5805 {
5806 crypt_encode_inplace(ip->bw_buffer->b_cryptstate, buf, len);
5807 }
5808 else
5809 {
5810 char_u *outbuf;
5811
5812 len = crypt_encode_alloc(curbuf->b_cryptstate, buf, len, &outbuf);
5813 if (len == 0)
5814 return OK; /* Crypt layer is buffering, will flush later. */
5815 wlen = write_eintr(ip->bw_fd, outbuf, len);
5816 vim_free(outbuf);
5817 return (wlen < len) ? FAIL : OK;
5818 }
5819 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005820#endif
5821
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01005822 wlen = write_eintr(ip->bw_fd, buf, len);
5823 return (wlen < len) ? FAIL : OK;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824}
5825
5826#ifdef FEAT_MBYTE
5827/*
5828 * Convert a Unicode character to bytes.
Bram Moolenaar32b485f2009-07-29 16:06:27 +00005829 * Return TRUE for an error, FALSE when it's OK.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 */
5831 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005832ucs2bytes(
5833 unsigned c, /* in: character */
5834 char_u **pp, /* in/out: pointer to result */
5835 int flags) /* FIO_ flags */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836{
5837 char_u *p = *pp;
5838 int error = FALSE;
5839 int cc;
5840
5841
5842 if (flags & FIO_UCS4)
5843 {
5844 if (flags & FIO_ENDIAN_L)
5845 {
5846 *p++ = c;
5847 *p++ = (c >> 8);
5848 *p++ = (c >> 16);
5849 *p++ = (c >> 24);
5850 }
5851 else
5852 {
5853 *p++ = (c >> 24);
5854 *p++ = (c >> 16);
5855 *p++ = (c >> 8);
5856 *p++ = c;
5857 }
5858 }
5859 else if (flags & (FIO_UCS2 | FIO_UTF16))
5860 {
5861 if (c >= 0x10000)
5862 {
5863 if (flags & FIO_UTF16)
5864 {
5865 /* Make two words, ten bits of the character in each. First
5866 * word is 0xd800 - 0xdbff, second one 0xdc00 - 0xdfff */
5867 c -= 0x10000;
5868 if (c >= 0x100000)
5869 error = TRUE;
5870 cc = ((c >> 10) & 0x3ff) + 0xd800;
5871 if (flags & FIO_ENDIAN_L)
5872 {
5873 *p++ = cc;
5874 *p++ = ((unsigned)cc >> 8);
5875 }
5876 else
5877 {
5878 *p++ = ((unsigned)cc >> 8);
5879 *p++ = cc;
5880 }
5881 c = (c & 0x3ff) + 0xdc00;
5882 }
5883 else
5884 error = TRUE;
5885 }
5886 if (flags & FIO_ENDIAN_L)
5887 {
5888 *p++ = c;
5889 *p++ = (c >> 8);
5890 }
5891 else
5892 {
5893 *p++ = (c >> 8);
5894 *p++ = c;
5895 }
5896 }
5897 else /* Latin1 */
5898 {
5899 if (c >= 0x100)
5900 {
5901 error = TRUE;
5902 *p++ = 0xBF;
5903 }
5904 else
5905 *p++ = c;
5906 }
5907
5908 *pp = p;
5909 return error;
5910}
5911
5912/*
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00005913 * Return TRUE if file encoding "fenc" requires conversion from or to
5914 * 'encoding'.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005915 */
5916 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005917need_conversion(char_u *fenc)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918{
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00005919 int same_encoding;
5920 int enc_flags;
5921 int fenc_flags;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00005923 if (*fenc == NUL || STRCMP(p_enc, fenc) == 0)
Bram Moolenaar442b4222010-05-24 21:34:22 +02005924 {
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00005925 same_encoding = TRUE;
Bram Moolenaar442b4222010-05-24 21:34:22 +02005926 fenc_flags = 0;
5927 }
Bram Moolenaarb5cdf2e2009-07-29 16:25:31 +00005928 else
5929 {
5930 /* Ignore difference between "ansi" and "latin1", "ucs-4" and
5931 * "ucs-4be", etc. */
5932 enc_flags = get_fio_flags(p_enc);
5933 fenc_flags = get_fio_flags(fenc);
5934 same_encoding = (enc_flags != 0 && fenc_flags == enc_flags);
5935 }
5936 if (same_encoding)
5937 {
5938 /* Specified encoding matches with 'encoding'. This requires
5939 * conversion when 'encoding' is Unicode but not UTF-8. */
5940 return enc_unicode != 0;
5941 }
5942
5943 /* Encodings differ. However, conversion is not needed when 'enc' is any
5944 * Unicode encoding and the file is UTF-8. */
5945 return !(enc_utf8 && fenc_flags == FIO_UTF8);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005946}
5947
5948/*
5949 * Check "ptr" for a unicode encoding and return the FIO_ flags needed for the
5950 * internal conversion.
5951 * if "ptr" is an empty string, use 'encoding'.
5952 */
5953 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005954get_fio_flags(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005955{
5956 int prop;
5957
5958 if (*ptr == NUL)
5959 ptr = p_enc;
5960
5961 prop = enc_canon_props(ptr);
5962 if (prop & ENC_UNICODE)
5963 {
5964 if (prop & ENC_2BYTE)
5965 {
5966 if (prop & ENC_ENDIAN_L)
5967 return FIO_UCS2 | FIO_ENDIAN_L;
5968 return FIO_UCS2;
5969 }
5970 if (prop & ENC_4BYTE)
5971 {
5972 if (prop & ENC_ENDIAN_L)
5973 return FIO_UCS4 | FIO_ENDIAN_L;
5974 return FIO_UCS4;
5975 }
5976 if (prop & ENC_2WORD)
5977 {
5978 if (prop & ENC_ENDIAN_L)
5979 return FIO_UTF16 | FIO_ENDIAN_L;
5980 return FIO_UTF16;
5981 }
5982 return FIO_UTF8;
5983 }
5984 if (prop & ENC_LATIN1)
5985 return FIO_LATIN1;
5986 /* must be ENC_DBCS, requires iconv() */
5987 return 0;
5988}
5989
5990#ifdef WIN3264
5991/*
5992 * Check "ptr" for a MS-Windows codepage name and return the FIO_ flags needed
5993 * for the conversion MS-Windows can do for us. Also accept "utf-8".
5994 * Used for conversion between 'encoding' and 'fileencoding'.
5995 */
5996 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01005997get_win_fio_flags(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005998{
5999 int cp;
6000
6001 /* Cannot do this when 'encoding' is not utf-8 and not a codepage. */
6002 if (!enc_utf8 && enc_codepage <= 0)
6003 return 0;
6004
6005 cp = encname2codepage(ptr);
6006 if (cp == 0)
6007 {
6008# ifdef CP_UTF8 /* VC 4.1 doesn't define CP_UTF8 */
6009 if (STRCMP(ptr, "utf-8") == 0)
6010 cp = CP_UTF8;
6011 else
6012# endif
6013 return 0;
6014 }
6015 return FIO_PUT_CP(cp) | FIO_CODEPAGE;
6016}
6017#endif
6018
Bram Moolenaard0573012017-10-28 21:11:06 +02006019#ifdef MACOS_CONVERT
Bram Moolenaar071d4272004-06-13 20:20:40 +00006020/*
6021 * Check "ptr" for a Carbon supported encoding and return the FIO_ flags
6022 * needed for the internal conversion to/from utf-8 or latin1.
6023 */
6024 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006025get_mac_fio_flags(char_u *ptr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006026{
6027 if ((enc_utf8 || STRCMP(p_enc, "latin1") == 0)
6028 && (enc_canon_props(ptr) & ENC_MACROMAN))
6029 return FIO_MACROMAN;
6030 return 0;
6031}
6032#endif
6033
6034/*
6035 * Check for a Unicode BOM (Byte Order Mark) at the start of p[size].
6036 * "size" must be at least 2.
6037 * Return the name of the encoding and set "*lenp" to the length.
6038 * Returns NULL when no BOM found.
6039 */
6040 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006041check_for_bom(
6042 char_u *p,
6043 long size,
6044 int *lenp,
6045 int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006046{
6047 char *name = NULL;
6048 int len = 2;
6049
6050 if (p[0] == 0xef && p[1] == 0xbb && size >= 3 && p[2] == 0xbf
Bram Moolenaaree0f5a62008-07-24 20:09:16 +00006051 && (flags == FIO_ALL || flags == FIO_UTF8 || flags == 0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006052 {
6053 name = "utf-8"; /* EF BB BF */
6054 len = 3;
6055 }
6056 else if (p[0] == 0xff && p[1] == 0xfe)
6057 {
6058 if (size >= 4 && p[2] == 0 && p[3] == 0
6059 && (flags == FIO_ALL || flags == (FIO_UCS4 | FIO_ENDIAN_L)))
6060 {
6061 name = "ucs-4le"; /* FF FE 00 00 */
6062 len = 4;
6063 }
Bram Moolenaar223a1892008-11-11 20:57:11 +00006064 else if (flags == (FIO_UCS2 | FIO_ENDIAN_L))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006065 name = "ucs-2le"; /* FF FE */
Bram Moolenaar223a1892008-11-11 20:57:11 +00006066 else if (flags == FIO_ALL || flags == (FIO_UTF16 | FIO_ENDIAN_L))
6067 /* utf-16le is preferred, it also works for ucs-2le text */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 name = "utf-16le"; /* FF FE */
6069 }
6070 else if (p[0] == 0xfe && p[1] == 0xff
6071 && (flags == FIO_ALL || flags == FIO_UCS2 || flags == FIO_UTF16))
6072 {
Bram Moolenaarffd82c52008-02-20 17:15:26 +00006073 /* Default to utf-16, it works also for ucs-2 text. */
6074 if (flags == FIO_UCS2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075 name = "ucs-2"; /* FE FF */
Bram Moolenaarffd82c52008-02-20 17:15:26 +00006076 else
6077 name = "utf-16"; /* FE FF */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006078 }
6079 else if (size >= 4 && p[0] == 0 && p[1] == 0 && p[2] == 0xfe
6080 && p[3] == 0xff && (flags == FIO_ALL || flags == FIO_UCS4))
6081 {
6082 name = "ucs-4"; /* 00 00 FE FF */
6083 len = 4;
6084 }
6085
6086 *lenp = len;
6087 return (char_u *)name;
6088}
6089
6090/*
6091 * Generate a BOM in "buf[4]" for encoding "name".
6092 * Return the length of the BOM (zero when no BOM).
6093 */
6094 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006095make_bom(char_u *buf, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006096{
6097 int flags;
6098 char_u *p;
6099
6100 flags = get_fio_flags(name);
6101
6102 /* Can't put a BOM in a non-Unicode file. */
6103 if (flags == FIO_LATIN1 || flags == 0)
6104 return 0;
6105
6106 if (flags == FIO_UTF8) /* UTF-8 */
6107 {
6108 buf[0] = 0xef;
6109 buf[1] = 0xbb;
6110 buf[2] = 0xbf;
6111 return 3;
6112 }
6113 p = buf;
6114 (void)ucs2bytes(0xfeff, &p, flags);
6115 return (int)(p - buf);
6116}
6117#endif
6118
6119/*
6120 * Try to find a shortname by comparing the fullname with the current
6121 * directory.
Bram Moolenaard089d9b2007-09-30 12:02:55 +00006122 * Returns "full_path" or pointer into "full_path" if shortened.
6123 */
6124 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006125shorten_fname1(char_u *full_path)
Bram Moolenaard089d9b2007-09-30 12:02:55 +00006126{
Bram Moolenaard9462e32011-04-11 21:35:11 +02006127 char_u *dirname;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00006128 char_u *p = full_path;
6129
Bram Moolenaard9462e32011-04-11 21:35:11 +02006130 dirname = alloc(MAXPATHL);
6131 if (dirname == NULL)
6132 return full_path;
Bram Moolenaard089d9b2007-09-30 12:02:55 +00006133 if (mch_dirname(dirname, MAXPATHL) == OK)
6134 {
6135 p = shorten_fname(full_path, dirname);
6136 if (p == NULL || *p == NUL)
6137 p = full_path;
6138 }
Bram Moolenaard9462e32011-04-11 21:35:11 +02006139 vim_free(dirname);
Bram Moolenaard089d9b2007-09-30 12:02:55 +00006140 return p;
6141}
6142
6143/*
6144 * Try to find a shortname by comparing the fullname with the current
6145 * directory.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006146 * Returns NULL if not shorter name possible, pointer into "full_path"
6147 * otherwise.
6148 */
6149 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006150shorten_fname(char_u *full_path, char_u *dir_name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006151{
6152 int len;
6153 char_u *p;
6154
6155 if (full_path == NULL)
6156 return NULL;
6157 len = (int)STRLEN(dir_name);
6158 if (fnamencmp(dir_name, full_path, len) == 0)
6159 {
6160 p = full_path + len;
Bram Moolenaar48e330a2016-02-23 14:53:34 +01006161#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006162 /*
Bram Moolenaar48e330a2016-02-23 14:53:34 +01006163 * MSWIN: when a file is in the root directory, dir_name will end in a
Bram Moolenaar071d4272004-06-13 20:20:40 +00006164 * slash, since C: by itself does not define a specific dir. In this
6165 * case p may already be correct. <negri>
6166 */
6167 if (!((len > 2) && (*(p - 2) == ':')))
6168#endif
6169 {
6170 if (vim_ispathsep(*p))
6171 ++p;
6172#ifndef VMS /* the path separator is always part of the path */
6173 else
6174 p = NULL;
6175#endif
6176 }
6177 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01006178#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006179 /*
6180 * When using a file in the current drive, remove the drive name:
6181 * "A:\dir\file" -> "\dir\file". This helps when moving a session file on
6182 * a floppy from "A:\dir" to "B:\dir".
6183 */
6184 else if (len > 3
6185 && TOUPPER_LOC(full_path[0]) == TOUPPER_LOC(dir_name[0])
6186 && full_path[1] == ':'
6187 && vim_ispathsep(full_path[2]))
6188 p = full_path + 2;
6189#endif
6190 else
6191 p = NULL;
6192 return p;
6193}
6194
6195/*
Bram Moolenaara796d462018-05-01 14:30:36 +02006196 * Shorten filename of a buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006197 * When "force" is TRUE: Use full path from now on for files currently being
6198 * edited, both for file name and swap file name. Try to shorten the file
6199 * names a bit, if safe to do so.
6200 * When "force" is FALSE: Only try to shorten absolute file names.
6201 * For buffers that have buftype "nofile" or "scratch": never change the file
6202 * name.
6203 */
6204 void
Bram Moolenaara796d462018-05-01 14:30:36 +02006205shorten_buf_fname(buf_T *buf, char_u *dirname, int force)
6206{
6207 char_u *p;
6208
6209 if (buf->b_fname != NULL
6210#ifdef FEAT_QUICKFIX
6211 && !bt_nofile(buf)
6212#endif
6213 && !path_with_url(buf->b_fname)
6214 && (force
6215 || buf->b_sfname == NULL
6216 || mch_isFullName(buf->b_sfname)))
6217 {
6218 VIM_CLEAR(buf->b_sfname);
6219 p = shorten_fname(buf->b_ffname, dirname);
6220 if (p != NULL)
6221 {
6222 buf->b_sfname = vim_strsave(p);
6223 buf->b_fname = buf->b_sfname;
6224 }
6225 if (p == NULL || buf->b_fname == NULL)
6226 buf->b_fname = buf->b_ffname;
6227 }
6228}
6229
6230/*
6231 * Shorten filenames for all buffers.
6232 */
6233 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006234shorten_fnames(int force)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006235{
6236 char_u dirname[MAXPATHL];
6237 buf_T *buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006238
6239 mch_dirname(dirname, MAXPATHL);
Bram Moolenaar29323592016-07-24 22:04:11 +02006240 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006241 {
Bram Moolenaara796d462018-05-01 14:30:36 +02006242 shorten_buf_fname(buf, dirname, force);
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00006243
6244 /* Always make the swap file name a full path, a "nofile" buffer may
6245 * also have a swap file. */
6246 mf_fullname(buf->b_ml.ml_mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006247 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006248 status_redraw_all();
Bram Moolenaar49d7bf12006-02-17 21:45:41 +00006249 redraw_tabline = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006250}
6251
6252#if (defined(FEAT_DND) && defined(FEAT_GUI_GTK)) \
6253 || defined(FEAT_GUI_MSWIN) \
6254 || defined(FEAT_GUI_MAC) \
6255 || defined(PROTO)
6256/*
6257 * Shorten all filenames in "fnames[count]" by current directory.
6258 */
6259 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006260shorten_filenames(char_u **fnames, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006261{
6262 int i;
6263 char_u dirname[MAXPATHL];
6264 char_u *p;
6265
6266 if (fnames == NULL || count < 1)
6267 return;
6268 mch_dirname(dirname, sizeof(dirname));
6269 for (i = 0; i < count; ++i)
6270 {
6271 if ((p = shorten_fname(fnames[i], dirname)) != NULL)
6272 {
6273 /* shorten_fname() returns pointer in given "fnames[i]". If free
6274 * "fnames[i]" first, "p" becomes invalid. So we need to copy
6275 * "p" first then free fnames[i]. */
6276 p = vim_strsave(p);
6277 vim_free(fnames[i]);
6278 fnames[i] = p;
6279 }
6280 }
6281}
6282#endif
6283
6284/*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02006285 * Add extension to file name - change path/fo.o.h to path/fo.o.h.ext or
Bram Moolenaar071d4272004-06-13 20:20:40 +00006286 * fo_o_h.ext for MSDOS or when shortname option set.
6287 *
6288 * Assumed that fname is a valid name found in the filesystem we assure that
6289 * the return value is a different name and ends in 'ext'.
6290 * "ext" MUST be at most 4 characters long if it starts with a dot, 3
6291 * characters otherwise.
6292 * Space for the returned name is allocated, must be freed later.
6293 * Returns NULL when out of memory.
6294 */
6295 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006296modname(
6297 char_u *fname,
6298 char_u *ext,
6299 int prepend_dot) /* may prepend a '.' to file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006300{
Bram Moolenaar48e330a2016-02-23 14:53:34 +01006301 return buf_modname((curbuf->b_p_sn || curbuf->b_shortname),
Bram Moolenaar071d4272004-06-13 20:20:40 +00006302 fname, ext, prepend_dot);
6303}
6304
6305 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006306buf_modname(
6307 int shortname, /* use 8.3 file name */
6308 char_u *fname,
6309 char_u *ext,
6310 int prepend_dot) /* may prepend a '.' to file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006311{
6312 char_u *retval;
6313 char_u *s;
6314 char_u *e;
6315 char_u *ptr;
6316 int fnamelen, extlen;
6317
6318 extlen = (int)STRLEN(ext);
6319
6320 /*
6321 * If there is no file name we must get the name of the current directory
6322 * (we need the full path in case :cd is used).
6323 */
6324 if (fname == NULL || *fname == NUL)
6325 {
6326 retval = alloc((unsigned)(MAXPATHL + extlen + 3));
6327 if (retval == NULL)
6328 return NULL;
6329 if (mch_dirname(retval, MAXPATHL) == FAIL ||
6330 (fnamelen = (int)STRLEN(retval)) == 0)
6331 {
6332 vim_free(retval);
6333 return NULL;
6334 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00006335 if (!after_pathsep(retval, retval + fnamelen))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006336 {
6337 retval[fnamelen++] = PATHSEP;
6338 retval[fnamelen] = NUL;
6339 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006340 prepend_dot = FALSE; /* nothing to prepend a dot to */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006341 }
6342 else
6343 {
6344 fnamelen = (int)STRLEN(fname);
6345 retval = alloc((unsigned)(fnamelen + extlen + 3));
6346 if (retval == NULL)
6347 return NULL;
6348 STRCPY(retval, fname);
6349#ifdef VMS
6350 vms_remove_version(retval); /* we do not need versions here */
6351#endif
6352 }
6353
6354 /*
6355 * search backwards until we hit a '/', '\' or ':' replacing all '.'
6356 * by '_' for MSDOS or when shortname option set and ext starts with a dot.
6357 * Then truncate what is after the '/', '\' or ':' to 8 characters for
6358 * MSDOS and 26 characters for AMIGA, a lot more for UNIX.
6359 */
Bram Moolenaar91acfff2017-03-12 19:22:36 +01006360 for (ptr = retval + fnamelen; ptr > retval; MB_PTR_BACK(retval, ptr))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006361 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006362 if (*ext == '.'
Bram Moolenaare60acc12011-05-10 16:41:25 +02006363#ifdef USE_LONG_FNAME
Bram Moolenaar071d4272004-06-13 20:20:40 +00006364 && (!USE_LONG_FNAME || shortname)
Bram Moolenaare60acc12011-05-10 16:41:25 +02006365#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006366 && shortname
Bram Moolenaare60acc12011-05-10 16:41:25 +02006367#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006368 )
6369 if (*ptr == '.') /* replace '.' by '_' */
6370 *ptr = '_';
Bram Moolenaar071d4272004-06-13 20:20:40 +00006371 if (vim_ispathsep(*ptr))
Bram Moolenaar53180ce2005-07-05 21:48:14 +00006372 {
6373 ++ptr;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006374 break;
Bram Moolenaar53180ce2005-07-05 21:48:14 +00006375 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006376 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006377
6378 /* the file name has at most BASENAMELEN characters. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006379 if (STRLEN(ptr) > (unsigned)BASENAMELEN)
6380 ptr[BASENAMELEN] = '\0';
Bram Moolenaar071d4272004-06-13 20:20:40 +00006381
6382 s = ptr + STRLEN(ptr);
6383
6384 /*
6385 * For 8.3 file names we may have to reduce the length.
6386 */
6387#ifdef USE_LONG_FNAME
6388 if (!USE_LONG_FNAME || shortname)
6389#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00006390 if (shortname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006391#endif
6392 {
6393 /*
6394 * If there is no file name, or the file name ends in '/', and the
6395 * extension starts with '.', put a '_' before the dot, because just
6396 * ".ext" is invalid.
6397 */
6398 if (fname == NULL || *fname == NUL
6399 || vim_ispathsep(fname[STRLEN(fname) - 1]))
6400 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006401 if (*ext == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006402 *s++ = '_';
6403 }
6404 /*
6405 * If the extension starts with '.', truncate the base name at 8
6406 * characters
6407 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006408 else if (*ext == '.')
Bram Moolenaar071d4272004-06-13 20:20:40 +00006409 {
Bram Moolenaar78a15312009-05-15 19:33:18 +00006410 if ((size_t)(s - ptr) > (size_t)8)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006411 {
6412 s = ptr + 8;
6413 *s = '\0';
6414 }
6415 }
6416 /*
6417 * If the extension doesn't start with '.', and the file name
6418 * doesn't have an extension yet, append a '.'
6419 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006420 else if ((e = vim_strchr(ptr, '.')) == NULL)
6421 *s++ = '.';
Bram Moolenaar071d4272004-06-13 20:20:40 +00006422 /*
6423 * If the extension doesn't start with '.', and there already is an
Bram Moolenaar7263a772007-05-10 17:35:54 +00006424 * extension, it may need to be truncated
Bram Moolenaar071d4272004-06-13 20:20:40 +00006425 */
6426 else if ((int)STRLEN(e) + extlen > 4)
6427 s = e + 4 - extlen;
6428 }
Bram Moolenaare7fedb62015-12-31 19:07:19 +01006429#if defined(USE_LONG_FNAME) || defined(WIN3264)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006430 /*
6431 * If there is no file name, and the extension starts with '.', put a
6432 * '_' before the dot, because just ".ext" may be invalid if it's on a
6433 * FAT partition, and on HPFS it doesn't matter.
6434 */
6435 else if ((fname == NULL || *fname == NUL) && *ext == '.')
6436 *s++ = '_';
6437#endif
6438
6439 /*
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006440 * Append the extension.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006441 * ext can start with '.' and cannot exceed 3 more characters.
6442 */
6443 STRCPY(s, ext);
6444
Bram Moolenaar071d4272004-06-13 20:20:40 +00006445 /*
6446 * Prepend the dot.
6447 */
Bram Moolenaare60acc12011-05-10 16:41:25 +02006448 if (prepend_dot && !shortname && *(e = gettail(retval)) != '.'
Bram Moolenaar071d4272004-06-13 20:20:40 +00006449#ifdef USE_LONG_FNAME
6450 && USE_LONG_FNAME
6451#endif
6452 )
6453 {
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00006454 STRMOVE(e + 1, e);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006455 *e = '.';
Bram Moolenaar071d4272004-06-13 20:20:40 +00006456 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006457
6458 /*
6459 * Check that, after appending the extension, the file name is really
6460 * different.
6461 */
6462 if (fname != NULL && STRCMP(fname, retval) == 0)
6463 {
6464 /* we search for a character that can be replaced by '_' */
6465 while (--s >= ptr)
6466 {
6467 if (*s != '_')
6468 {
6469 *s = '_';
6470 break;
6471 }
6472 }
6473 if (s < ptr) /* fname was "________.<ext>", how tricky! */
6474 *ptr = 'v';
6475 }
6476 return retval;
6477}
6478
6479/*
6480 * Like fgets(), but if the file line is too long, it is truncated and the
6481 * rest of the line is thrown away. Returns TRUE for end-of-file.
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01006482 * If the line is truncated then buf[size - 2] will not be NUL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006483 */
6484 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006485vim_fgets(char_u *buf, int size, FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006486{
6487 char *eof;
6488#define FGETS_SIZE 200
6489 char tbuf[FGETS_SIZE];
6490
6491 buf[size - 2] = NUL;
6492#ifdef USE_CR
6493 eof = fgets_cr((char *)buf, size, fp);
6494#else
6495 eof = fgets((char *)buf, size, fp);
6496#endif
6497 if (buf[size - 2] != NUL && buf[size - 2] != '\n')
6498 {
6499 buf[size - 1] = NUL; /* Truncate the line */
6500
6501 /* Now throw away the rest of the line: */
6502 do
6503 {
6504 tbuf[FGETS_SIZE - 2] = NUL;
6505#ifdef USE_CR
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00006506 ignoredp = fgets_cr((char *)tbuf, FGETS_SIZE, fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006507#else
Bram Moolenaarfe86f2d2008-11-28 20:29:07 +00006508 ignoredp = fgets((char *)tbuf, FGETS_SIZE, fp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006509#endif
6510 } while (tbuf[FGETS_SIZE - 2] != NUL && tbuf[FGETS_SIZE - 2] != '\n');
6511 }
6512 return (eof == NULL);
6513}
6514
6515#if defined(USE_CR) || defined(PROTO)
6516/*
6517 * Like vim_fgets(), but accept any line terminator: CR, CR-LF or LF.
6518 * Returns TRUE for end-of-file.
6519 * Only used for the Mac, because it's much slower than vim_fgets().
6520 */
6521 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006522tag_fgets(char_u *buf, int size, FILE *fp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006523{
6524 int i = 0;
6525 int c;
6526 int eof = FALSE;
6527
6528 for (;;)
6529 {
6530 c = fgetc(fp);
6531 if (c == EOF)
6532 {
6533 eof = TRUE;
6534 break;
6535 }
6536 if (c == '\r')
6537 {
6538 /* Always store a NL for end-of-line. */
6539 if (i < size - 1)
6540 buf[i++] = '\n';
6541 c = fgetc(fp);
6542 if (c != '\n') /* Macintosh format: single CR. */
6543 ungetc(c, fp);
6544 break;
6545 }
6546 if (i < size - 1)
6547 buf[i++] = c;
6548 if (c == '\n')
6549 break;
6550 }
6551 buf[i] = NUL;
6552 return eof;
6553}
6554#endif
6555
6556/*
6557 * rename() only works if both files are on the same file system, this
6558 * function will (attempts to?) copy the file across if rename fails -- webb
6559 * Return -1 for failure, 0 for success.
6560 */
6561 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006562vim_rename(char_u *from, char_u *to)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006563{
6564 int fd_in;
6565 int fd_out;
6566 int n;
6567 char *errmsg = NULL;
6568 char *buffer;
6569#ifdef AMIGA
6570 BPTR flock;
6571#endif
Bram Moolenaar8767f522016-07-01 17:17:39 +02006572 stat_T st;
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006573 long perm;
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006574#ifdef HAVE_ACL
6575 vim_acl_T acl; /* ACL from original file */
6576#endif
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006577 int use_tmp_file = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006578
6579 /*
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006580 * When the names are identical, there is nothing to do. When they refer
6581 * to the same file (ignoring case and slash/backslash differences) but
6582 * the file name differs we need to go through a temp file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006583 */
6584 if (fnamecmp(from, to) == 0)
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006585 {
Bram Moolenaar71afbfe2013-03-19 16:49:16 +01006586 if (p_fic && STRCMP(gettail(from), gettail(to)) != 0)
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006587 use_tmp_file = TRUE;
6588 else
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006589 return 0;
6590 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006591
6592 /*
6593 * Fail if the "from" file doesn't exist. Avoids that "to" is deleted.
6594 */
6595 if (mch_stat((char *)from, &st) < 0)
6596 return -1;
6597
Bram Moolenaar3576da72008-12-30 15:15:57 +00006598#ifdef UNIX
6599 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02006600 stat_T st_to;
Bram Moolenaar3576da72008-12-30 15:15:57 +00006601
6602 /* It's possible for the source and destination to be the same file.
6603 * This happens when "from" and "to" differ in case and are on a FAT32
6604 * filesystem. In that case go through a temp file name. */
6605 if (mch_stat((char *)to, &st_to) >= 0
6606 && st.st_dev == st_to.st_dev
6607 && st.st_ino == st_to.st_ino)
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006608 use_tmp_file = TRUE;
6609 }
6610#endif
Bram Moolenaar1c32dff2011-05-05 16:41:24 +02006611#ifdef WIN3264
6612 {
6613 BY_HANDLE_FILE_INFORMATION info1, info2;
6614
6615 /* It's possible for the source and destination to be the same file.
6616 * In that case go through a temp file name. This makes rename("foo",
6617 * "./foo") a no-op (in a complicated way). */
6618 if (win32_fileinfo(from, &info1) == FILEINFO_OK
6619 && win32_fileinfo(to, &info2) == FILEINFO_OK
6620 && info1.dwVolumeSerialNumber == info2.dwVolumeSerialNumber
6621 && info1.nFileIndexHigh == info2.nFileIndexHigh
6622 && info1.nFileIndexLow == info2.nFileIndexLow)
6623 use_tmp_file = TRUE;
6624 }
6625#endif
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006626
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006627 if (use_tmp_file)
6628 {
6629 char tempname[MAXPATHL + 1];
6630
6631 /*
6632 * Find a name that doesn't exist and is in the same directory.
6633 * Rename "from" to "tempname" and then rename "tempname" to "to".
6634 */
6635 if (STRLEN(from) >= MAXPATHL - 5)
6636 return -1;
6637 STRCPY(tempname, from);
6638 for (n = 123; n < 99999; ++n)
Bram Moolenaar3576da72008-12-30 15:15:57 +00006639 {
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006640 sprintf((char *)gettail((char_u *)tempname), "%d", n);
6641 if (mch_stat(tempname, &st) < 0)
Bram Moolenaar3576da72008-12-30 15:15:57 +00006642 {
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006643 if (mch_rename((char *)from, tempname) == 0)
Bram Moolenaar3576da72008-12-30 15:15:57 +00006644 {
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006645 if (mch_rename(tempname, (char *)to) == 0)
6646 return 0;
6647 /* Strange, the second step failed. Try moving the
6648 * file back and return failure. */
6649 mch_rename(tempname, (char *)from);
Bram Moolenaar3576da72008-12-30 15:15:57 +00006650 return -1;
6651 }
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006652 /* If it fails for one temp name it will most likely fail
6653 * for any temp name, give up. */
6654 return -1;
Bram Moolenaar3576da72008-12-30 15:15:57 +00006655 }
Bram Moolenaar3576da72008-12-30 15:15:57 +00006656 }
Bram Moolenaare0e6f992008-12-31 15:21:32 +00006657 return -1;
Bram Moolenaar3576da72008-12-30 15:15:57 +00006658 }
Bram Moolenaar3576da72008-12-30 15:15:57 +00006659
Bram Moolenaar071d4272004-06-13 20:20:40 +00006660 /*
6661 * Delete the "to" file, this is required on some systems to make the
6662 * mch_rename() work, on other systems it makes sure that we don't have
6663 * two files when the mch_rename() fails.
6664 */
6665
6666#ifdef AMIGA
6667 /*
6668 * With MSDOS-compatible filesystems (crossdos, messydos) it is possible
6669 * that the name of the "to" file is the same as the "from" file, even
Bram Moolenaar7263a772007-05-10 17:35:54 +00006670 * though the names are different. To avoid the chance of accidentally
Bram Moolenaar071d4272004-06-13 20:20:40 +00006671 * deleting the "from" file (horror!) we lock it during the remove.
6672 *
6673 * When used for making a backup before writing the file: This should not
6674 * happen with ":w", because startscript() should detect this problem and
6675 * set buf->b_shortname, causing modname() to return a correct ".bak" file
6676 * name. This problem does exist with ":w filename", but then the
6677 * original file will be somewhere else so the backup isn't really
6678 * important. If autoscripting is off the rename may fail.
6679 */
6680 flock = Lock((UBYTE *)from, (long)ACCESS_READ);
6681#endif
6682 mch_remove(to);
6683#ifdef AMIGA
6684 if (flock)
6685 UnLock(flock);
6686#endif
6687
6688 /*
6689 * First try a normal rename, return if it works.
6690 */
6691 if (mch_rename((char *)from, (char *)to) == 0)
6692 return 0;
6693
6694 /*
6695 * Rename() failed, try copying the file.
6696 */
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006697 perm = mch_getperm(from);
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006698#ifdef HAVE_ACL
6699 /* For systems that support ACL: get the ACL from the original file. */
6700 acl = mch_get_acl(from);
6701#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006702 fd_in = mch_open((char *)from, O_RDONLY|O_EXTRA, 0);
6703 if (fd_in == -1)
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006704 {
6705#ifdef HAVE_ACL
6706 mch_free_acl(acl);
6707#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006708 return -1;
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006709 }
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006710
6711 /* Create the new file with same permissions as the original. */
Bram Moolenaara5792f52005-11-23 21:25:05 +00006712 fd_out = mch_open((char *)to,
6713 O_CREAT|O_EXCL|O_WRONLY|O_EXTRA|O_NOFOLLOW, (int)perm);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006714 if (fd_out == -1)
6715 {
6716 close(fd_in);
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006717#ifdef HAVE_ACL
6718 mch_free_acl(acl);
6719#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006720 return -1;
6721 }
6722
6723 buffer = (char *)alloc(BUFSIZE);
6724 if (buffer == NULL)
6725 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00006726 close(fd_out);
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006727 close(fd_in);
6728#ifdef HAVE_ACL
6729 mch_free_acl(acl);
6730#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006731 return -1;
6732 }
6733
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01006734 while ((n = read_eintr(fd_in, buffer, BUFSIZE)) > 0)
6735 if (write_eintr(fd_out, buffer, n) != n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006736 {
6737 errmsg = _("E208: Error writing to \"%s\"");
6738 break;
6739 }
6740
6741 vim_free(buffer);
6742 close(fd_in);
6743 if (close(fd_out) < 0)
6744 errmsg = _("E209: Error closing \"%s\"");
6745 if (n < 0)
6746 {
6747 errmsg = _("E210: Error reading \"%s\"");
6748 to = from;
6749 }
Bram Moolenaar7263a772007-05-10 17:35:54 +00006750#ifndef UNIX /* for Unix mch_open() already set the permission */
Bram Moolenaar9be038d2005-03-08 22:34:32 +00006751 mch_setperm(to, perm);
Bram Moolenaarc6039d82005-12-02 00:44:04 +00006752#endif
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006753#ifdef HAVE_ACL
6754 mch_set_acl(to, acl);
Bram Moolenaarb23a7e82008-06-27 18:42:32 +00006755 mch_free_acl(acl);
Bram Moolenaarcd71fa32005-03-11 22:46:48 +00006756#endif
Bram Moolenaar5bd32f42014-04-02 14:05:38 +02006757#if defined(HAVE_SELINUX) || defined(HAVE_SMACK)
Bram Moolenaare8747442013-11-12 18:09:29 +01006758 mch_copy_sec(from, to);
Bram Moolenaar0671de32013-11-12 05:12:03 +01006759#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006760 if (errmsg != NULL)
6761 {
6762 EMSG2(errmsg, to);
6763 return -1;
6764 }
6765 mch_remove(from);
6766 return 0;
6767}
6768
6769static int already_warned = FALSE;
6770
6771/*
6772 * Check if any not hidden buffer has been changed.
6773 * Postpone the check if there are characters in the stuff buffer, a global
6774 * command is being executed, a mapping is being executed or an autocommand is
6775 * busy.
6776 * Returns TRUE if some message was written (screen should be redrawn and
6777 * cursor positioned).
6778 */
6779 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006780check_timestamps(
6781 int focus) /* called for GUI focus event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006782{
6783 buf_T *buf;
6784 int didit = 0;
6785 int n;
6786
6787 /* Don't check timestamps while system() or another low-level function may
6788 * cause us to lose and gain focus. */
6789 if (no_check_timestamps > 0)
6790 return FALSE;
6791
6792 /* Avoid doing a check twice. The OK/Reload dialog can cause a focus
6793 * event and we would keep on checking if the file is steadily growing.
6794 * Do check again after typing something. */
6795 if (focus && did_check_timestamps)
6796 {
6797 need_check_timestamps = TRUE;
6798 return FALSE;
6799 }
6800
6801 if (!stuff_empty() || global_busy || !typebuf_typed()
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006802 || autocmd_busy || curbuf_lock > 0 || allbuf_lock > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006803 need_check_timestamps = TRUE; /* check later */
6804 else
6805 {
6806 ++no_wait_return;
6807 did_check_timestamps = TRUE;
6808 already_warned = FALSE;
Bram Moolenaar29323592016-07-24 22:04:11 +02006809 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006810 {
6811 /* Only check buffers in a window. */
6812 if (buf->b_nwindows > 0)
6813 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006814 bufref_T bufref;
6815
6816 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006817 n = buf_check_timestamp(buf, focus);
6818 if (didit < n)
6819 didit = n;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006820 if (n > 0 && !bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00006821 {
6822 /* Autocommands have removed the buffer, start at the
6823 * first one again. */
6824 buf = firstbuf;
6825 continue;
6826 }
6827 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00006828 }
6829 --no_wait_return;
6830 need_check_timestamps = FALSE;
6831 if (need_wait_return && didit == 2)
6832 {
6833 /* make sure msg isn't overwritten */
6834 msg_puts((char_u *)"\n");
6835 out_flush();
6836 }
6837 }
6838 return didit;
6839}
6840
6841/*
6842 * Move all the lines from buffer "frombuf" to buffer "tobuf".
6843 * Return OK or FAIL. When FAIL "tobuf" is incomplete and/or "frombuf" is not
6844 * empty.
6845 */
6846 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006847move_lines(buf_T *frombuf, buf_T *tobuf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006848{
6849 buf_T *tbuf = curbuf;
6850 int retval = OK;
6851 linenr_T lnum;
6852 char_u *p;
6853
6854 /* Copy the lines in "frombuf" to "tobuf". */
6855 curbuf = tobuf;
6856 for (lnum = 1; lnum <= frombuf->b_ml.ml_line_count; ++lnum)
6857 {
6858 p = vim_strsave(ml_get_buf(frombuf, lnum, FALSE));
6859 if (p == NULL || ml_append(lnum - 1, p, 0, FALSE) == FAIL)
6860 {
6861 vim_free(p);
6862 retval = FAIL;
6863 break;
6864 }
6865 vim_free(p);
6866 }
6867
6868 /* Delete all the lines in "frombuf". */
6869 if (retval != FAIL)
6870 {
6871 curbuf = frombuf;
Bram Moolenaar9460b9d2007-01-09 14:37:01 +00006872 for (lnum = curbuf->b_ml.ml_line_count; lnum > 0; --lnum)
6873 if (ml_delete(lnum, FALSE) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006874 {
6875 /* Oops! We could try putting back the saved lines, but that
6876 * might fail again... */
6877 retval = FAIL;
6878 break;
6879 }
6880 }
6881
6882 curbuf = tbuf;
6883 return retval;
6884}
6885
6886/*
6887 * Check if buffer "buf" has been changed.
6888 * Also check if the file for a new buffer unexpectedly appeared.
6889 * return 1 if a changed buffer was found.
6890 * return 2 if a message has been displayed.
6891 * return 0 otherwise.
6892 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006893 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01006894buf_check_timestamp(
6895 buf_T *buf,
6896 int focus UNUSED) /* called for GUI focus event */
Bram Moolenaar071d4272004-06-13 20:20:40 +00006897{
Bram Moolenaar8767f522016-07-01 17:17:39 +02006898 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006899 int stat_res;
6900 int retval = 0;
6901 char_u *path;
6902 char_u *tbuf;
6903 char *mesg = NULL;
Bram Moolenaar44ecf652005-03-07 23:09:59 +00006904 char *mesg2 = "";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006905 int helpmesg = FALSE;
6906 int reload = FALSE;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006907 char *reason;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006908#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
6909 int can_reload = FALSE;
6910#endif
Bram Moolenaar8767f522016-07-01 17:17:39 +02006911 off_T orig_size = buf->b_orig_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006912 int orig_mode = buf->b_orig_mode;
6913#ifdef FEAT_GUI
6914 int save_mouse_correct = need_mouse_correct;
6915#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006916 static int busy = FALSE;
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006917 int n;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006918#ifdef FEAT_EVAL
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006919 char_u *s;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01006920#endif
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02006921 bufref_T bufref;
6922
6923 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00006924
6925 /* If there is no file name, the buffer is not loaded, 'buftype' is
6926 * set, we are in the middle of a save or being called recursively: ignore
6927 * this buffer. */
6928 if (buf->b_ffname == NULL
6929 || buf->b_ml.ml_mfp == NULL
Bram Moolenaar91335e52018-08-01 17:53:12 +02006930 || !bt_normal(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006931 || buf->b_saving
Bram Moolenaar071d4272004-06-13 20:20:40 +00006932 || busy
Bram Moolenaar009b2592004-10-24 19:18:58 +00006933#ifdef FEAT_NETBEANS_INTG
6934 || isNetbeansBuffer(buf)
6935#endif
Bram Moolenaar8cad9302017-08-12 14:32:32 +02006936#ifdef FEAT_TERMINAL
6937 || buf->b_term != NULL
6938#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00006939 )
6940 return 0;
6941
6942 if ( !(buf->b_flags & BF_NOTEDITED)
6943 && buf->b_mtime != 0
6944 && ((stat_res = mch_stat((char *)buf->b_ffname, &st)) < 0
6945 || time_differs((long)st.st_mtime, buf->b_mtime)
Bram Moolenaara7611f62014-05-02 15:46:14 +02006946 || st.st_size != buf->b_orig_size
Bram Moolenaar071d4272004-06-13 20:20:40 +00006947#ifdef HAVE_ST_MODE
6948 || (int)st.st_mode != buf->b_orig_mode
6949#else
6950 || mch_getperm(buf->b_ffname) != buf->b_orig_mode
6951#endif
6952 ))
6953 {
6954 retval = 1;
6955
Bram Moolenaar386bc822018-07-07 18:34:12 +02006956 // set b_mtime to stop further warnings (e.g., when executing
6957 // FileChangedShell autocmd)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006958 if (stat_res < 0)
6959 {
Bram Moolenaar386bc822018-07-07 18:34:12 +02006960 // When 'autoread' is set we'll check the file again to see if it
6961 // re-appears.
6962 buf->b_mtime = buf->b_p_ar;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006963 buf->b_orig_size = 0;
6964 buf->b_orig_mode = 0;
6965 }
6966 else
6967 buf_store_time(buf, &st, buf->b_ffname);
6968
6969 /* Don't do anything for a directory. Might contain the file
6970 * explorer. */
6971 if (mch_isdir(buf->b_fname))
6972 ;
6973
6974 /*
6975 * If 'autoread' is set, the buffer has no changes and the file still
6976 * exists, reload the buffer. Use the buffer-local option value if it
6977 * was set, the global option value otherwise.
6978 */
6979 else if ((buf->b_p_ar >= 0 ? buf->b_p_ar : p_ar)
6980 && !bufIsChanged(buf) && stat_res >= 0)
6981 reload = TRUE;
6982 else
6983 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00006984 if (stat_res < 0)
6985 reason = "deleted";
6986 else if (bufIsChanged(buf))
6987 reason = "conflict";
6988 else if (orig_size != buf->b_orig_size || buf_contents_changed(buf))
6989 reason = "changed";
6990 else if (orig_mode != buf->b_orig_mode)
6991 reason = "mode";
6992 else
6993 reason = "time";
Bram Moolenaar071d4272004-06-13 20:20:40 +00006994
6995 /*
6996 * Only give the warning if there are no FileChangedShell
6997 * autocommands.
6998 * Avoid being called recursively by setting "busy".
6999 */
7000 busy = TRUE;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007001#ifdef FEAT_EVAL
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007002 set_vim_var_string(VV_FCS_REASON, (char_u *)reason, -1);
7003 set_vim_var_string(VV_FCS_CHOICE, (char_u *)"", -1);
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007004#endif
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00007005 ++allbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007006 n = apply_autocmds(EVENT_FILECHANGEDSHELL,
7007 buf->b_fname, buf->b_fname, FALSE, buf);
Bram Moolenaarbf1b7a72009-03-05 02:15:53 +00007008 --allbuf_lock;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007009 busy = FALSE;
7010 if (n)
7011 {
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007012 if (!bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007013 EMSG(_("E246: FileChangedShell autocommand deleted buffer"));
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007014#ifdef FEAT_EVAL
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007015 s = get_vim_var_str(VV_FCS_CHOICE);
7016 if (STRCMP(s, "reload") == 0 && *reason != 'd')
7017 reload = TRUE;
7018 else if (STRCMP(s, "ask") == 0)
7019 n = FALSE;
7020 else
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007021#endif
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007022 return 2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007023 }
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007024 if (!n)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007025 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007026 if (*reason == 'd')
7027 mesg = _("E211: File \"%s\" no longer available");
Bram Moolenaar071d4272004-06-13 20:20:40 +00007028 else
7029 {
7030 helpmesg = TRUE;
7031#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
7032 can_reload = TRUE;
7033#endif
7034 /*
7035 * Check if the file contents really changed to avoid
7036 * giving a warning when only the timestamp was set (e.g.,
7037 * checked out of CVS). Always warn when the buffer was
7038 * changed.
7039 */
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007040 if (reason[2] == 'n')
7041 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007042 mesg = _("W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as well");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007043 mesg2 = _("See \":help W12\" for more info.");
7044 }
7045 else if (reason[1] == 'h')
7046 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007047 mesg = _("W11: Warning: File \"%s\" has changed since editing started");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007048 mesg2 = _("See \":help W11\" for more info.");
7049 }
7050 else if (*reason == 'm')
7051 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007052 mesg = _("W16: Warning: Mode of file \"%s\" has changed since editing started");
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007053 mesg2 = _("See \":help W16\" for more info.");
7054 }
Bram Moolenaar85388b52009-06-24 09:58:32 +00007055 else
7056 /* Only timestamp changed, store it to avoid a warning
7057 * in check_mtime() later. */
7058 buf->b_mtime_read = buf->b_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007059 }
7060 }
7061 }
7062
7063 }
7064 else if ((buf->b_flags & BF_NEW) && !(buf->b_flags & BF_NEW_W)
7065 && vim_fexists(buf->b_ffname))
7066 {
7067 retval = 1;
7068 mesg = _("W13: Warning: File \"%s\" has been created after editing started");
7069 buf->b_flags |= BF_NEW_W;
7070#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
7071 can_reload = TRUE;
7072#endif
7073 }
7074
7075 if (mesg != NULL)
7076 {
7077 path = home_replace_save(buf, buf->b_fname);
7078 if (path != NULL)
7079 {
Bram Moolenaar19a09a12005-03-04 23:39:37 +00007080 if (!helpmesg)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007081 mesg2 = "";
7082 tbuf = alloc((unsigned)(STRLEN(path) + STRLEN(mesg)
7083 + STRLEN(mesg2) + 2));
7084 sprintf((char *)tbuf, mesg, path);
Bram Moolenaar496c5262009-03-18 14:42:00 +00007085#ifdef FEAT_EVAL
7086 /* Set warningmsg here, before the unimportant and output-specific
7087 * mesg2 has been appended. */
7088 set_vim_var_string(VV_WARNINGMSG, tbuf, -1);
7089#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007090#if defined(FEAT_CON_DIALOG) || defined(FEAT_GUI_DIALOG)
7091 if (can_reload)
7092 {
7093 if (*mesg2 != NUL)
7094 {
7095 STRCAT(tbuf, "\n");
7096 STRCAT(tbuf, mesg2);
7097 }
7098 if (do_dialog(VIM_WARNING, (char_u *)_("Warning"), tbuf,
Bram Moolenaard2c340a2011-01-17 20:08:11 +01007099 (char_u *)_("&OK\n&Load File"), 1, NULL, TRUE) == 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007100 reload = TRUE;
7101 }
7102 else
7103#endif
7104 if (State > NORMAL_BUSY || (State & CMDLINE) || already_warned)
7105 {
7106 if (*mesg2 != NUL)
7107 {
7108 STRCAT(tbuf, "; ");
7109 STRCAT(tbuf, mesg2);
7110 }
7111 EMSG(tbuf);
7112 retval = 2;
7113 }
7114 else
7115 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00007116 if (!autocmd_busy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007117 {
7118 msg_start();
Bram Moolenaar8820b482017-03-16 17:23:31 +01007119 msg_puts_attr(tbuf, HL_ATTR(HLF_E) + MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007120 if (*mesg2 != NUL)
7121 msg_puts_attr((char_u *)mesg2,
Bram Moolenaar8820b482017-03-16 17:23:31 +01007122 HL_ATTR(HLF_W) + MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007123 msg_clr_eos();
7124 (void)msg_end();
7125 if (emsg_silent == 0)
7126 {
7127 out_flush();
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007128#ifdef FEAT_GUI
Bram Moolenaar071d4272004-06-13 20:20:40 +00007129 if (!focus)
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007130#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007131 /* give the user some time to think about it */
7132 ui_delay(1000L, TRUE);
7133
7134 /* don't redraw and erase the message */
7135 redraw_cmdline = FALSE;
7136 }
7137 }
7138 already_warned = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007139 }
7140
7141 vim_free(path);
7142 vim_free(tbuf);
7143 }
7144 }
7145
7146 if (reload)
Bram Moolenaar465748e2012-08-29 18:50:54 +02007147 {
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007148 /* Reload the buffer. */
Bram Moolenaar316059c2006-01-14 21:18:42 +00007149 buf_reload(buf, orig_mode);
Bram Moolenaar465748e2012-08-29 18:50:54 +02007150#ifdef FEAT_PERSISTENT_UNDO
7151 if (buf->b_p_udf && buf->b_ffname != NULL)
7152 {
7153 char_u hash[UNDO_HASH_SIZE];
7154 buf_T *save_curbuf = curbuf;
7155
7156 /* Any existing undo file is unusable, write it now. */
7157 curbuf = buf;
7158 u_compute_hash(hash);
7159 u_write_undo(NULL, FALSE, buf, hash);
7160 curbuf = save_curbuf;
7161 }
7162#endif
7163 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007164
Bram Moolenaar3577c6f2008-06-24 21:16:56 +00007165 /* Trigger FileChangedShell when the file was changed in any way. */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007166 if (bufref_valid(&bufref) && retval != 0)
Bram Moolenaar56718732006-03-15 22:53:57 +00007167 (void)apply_autocmds(EVENT_FILECHANGEDSHELLPOST,
7168 buf->b_fname, buf->b_fname, FALSE, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007169#ifdef FEAT_GUI
7170 /* restore this in case an autocommand has set it; it would break
7171 * 'mousefocus' */
7172 need_mouse_correct = save_mouse_correct;
7173#endif
7174
7175 return retval;
7176}
7177
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007178/*
7179 * Reload a buffer that is already loaded.
7180 * Used when the file was changed outside of Vim.
Bram Moolenaar316059c2006-01-14 21:18:42 +00007181 * "orig_mode" is buf->b_orig_mode before the need for reloading was detected.
7182 * buf->b_orig_mode may have been reset already.
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007183 */
7184 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007185buf_reload(buf_T *buf, int orig_mode)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007186{
7187 exarg_T ea;
7188 pos_T old_cursor;
7189 linenr_T old_topline;
7190 int old_ro = buf->b_p_ro;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007191 buf_T *savebuf;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007192 bufref_T bufref;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007193 int saved = OK;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007194 aco_save_T aco;
Bram Moolenaar59f931e2010-07-24 20:27:03 +02007195 int flags = READ_NEW;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007196
7197 /* set curwin/curbuf for "buf" and save some things */
7198 aucmd_prepbuf(&aco, buf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007199
7200 /* We only want to read the text from the file, not reset the syntax
7201 * highlighting, clear marks, diff status, etc. Force the fileformat
7202 * and encoding to be the same. */
7203 if (prep_exarg(&ea, buf) == OK)
7204 {
7205 old_cursor = curwin->w_cursor;
7206 old_topline = curwin->w_topline;
7207
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02007208 if (p_ur < 0 || curbuf->b_ml.ml_line_count <= p_ur)
Bram Moolenaar59f931e2010-07-24 20:27:03 +02007209 {
7210 /* Save all the text, so that the reload can be undone.
7211 * Sync first so that this is a separate undo-able action. */
7212 u_sync(FALSE);
7213 saved = u_savecommon(0, curbuf->b_ml.ml_line_count + 1, 0, TRUE);
7214 flags |= READ_KEEP_UNDO;
7215 }
7216
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007217 /*
7218 * To behave like when a new file is edited (matters for
7219 * BufReadPost autocommands) we first need to delete the current
7220 * buffer contents. But if reading the file fails we should keep
7221 * the old contents. Can't use memory only, the file might be
7222 * too big. Use a hidden buffer to move the buffer contents to.
7223 */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007224 if (BUFEMPTY() || saved == FAIL)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007225 savebuf = NULL;
7226 else
7227 {
7228 /* Allocate a buffer without putting it in the buffer list. */
7229 savebuf = buflist_new(NULL, NULL, (linenr_T)1, BLN_DUMMY);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007230 set_bufref(&bufref, savebuf);
Bram Moolenaar8424a622006-04-19 21:23:36 +00007231 if (savebuf != NULL && buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007232 {
7233 /* Open the memline. */
7234 curbuf = savebuf;
7235 curwin->w_buffer = savebuf;
Bram Moolenaar4770d092006-01-12 23:22:24 +00007236 saved = ml_open(curbuf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007237 curbuf = buf;
7238 curwin->w_buffer = buf;
7239 }
Bram Moolenaar8424a622006-04-19 21:23:36 +00007240 if (savebuf == NULL || saved == FAIL || buf != curbuf
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007241 || move_lines(buf, savebuf) == FAIL)
7242 {
7243 EMSG2(_("E462: Could not prepare for reloading \"%s\""),
7244 buf->b_fname);
7245 saved = FAIL;
7246 }
7247 }
7248
7249 if (saved == OK)
7250 {
7251 curbuf->b_flags |= BF_CHECK_RO; /* check for RO again */
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007252 keep_filetype = TRUE; /* don't detect 'filetype' */
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007253 if (readfile(buf->b_ffname, buf->b_fname, (linenr_T)0,
7254 (linenr_T)0,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01007255 (linenr_T)MAXLNUM, &ea, flags) != OK)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007256 {
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01007257#if defined(FEAT_EVAL)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007258 if (!aborting())
7259#endif
7260 EMSG2(_("E321: Could not reload \"%s\""), buf->b_fname);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007261 if (savebuf != NULL && bufref_valid(&bufref) && buf == curbuf)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007262 {
7263 /* Put the text back from the save buffer. First
7264 * delete any lines that readfile() added. */
Bram Moolenaarb5aedf32017-03-12 18:23:53 +01007265 while (!BUFEMPTY())
Bram Moolenaar8424a622006-04-19 21:23:36 +00007266 if (ml_delete(buf->b_ml.ml_line_count, FALSE) == FAIL)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007267 break;
7268 (void)move_lines(savebuf, buf);
7269 }
7270 }
Bram Moolenaar59f931e2010-07-24 20:27:03 +02007271 else if (buf == curbuf) /* "buf" still valid */
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007272 {
7273 /* Mark the buffer as unmodified and free undo info. */
7274 unchanged(buf, TRUE);
Bram Moolenaar59f931e2010-07-24 20:27:03 +02007275 if ((flags & READ_KEEP_UNDO) == 0)
7276 {
7277 u_blockfree(buf);
7278 u_clearall(buf);
7279 }
7280 else
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02007281 {
Bram Moolenaar59f931e2010-07-24 20:27:03 +02007282 /* Mark all undo states as changed. */
7283 u_unchanged(curbuf);
Bram Moolenaarf9bb7342010-08-04 14:29:54 +02007284 }
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007285 }
7286 }
7287 vim_free(ea.cmd);
7288
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02007289 if (savebuf != NULL && bufref_valid(&bufref))
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007290 wipe_buffer(savebuf, FALSE);
7291
7292#ifdef FEAT_DIFF
7293 /* Invalidate diff info if necessary. */
Bram Moolenaar8424a622006-04-19 21:23:36 +00007294 diff_invalidate(curbuf);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007295#endif
7296
7297 /* Restore the topline and cursor position and check it (lines may
7298 * have been removed). */
7299 if (old_topline > curbuf->b_ml.ml_line_count)
7300 curwin->w_topline = curbuf->b_ml.ml_line_count;
7301 else
7302 curwin->w_topline = old_topline;
7303 curwin->w_cursor = old_cursor;
7304 check_cursor();
7305 update_topline();
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007306 keep_filetype = FALSE;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007307#ifdef FEAT_FOLDING
7308 {
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00007309 win_T *wp;
7310 tabpage_T *tp;
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007311
7312 /* Update folds unless they are defined manually. */
Bram Moolenaarbd1e5d22009-04-29 09:02:44 +00007313 FOR_ALL_TAB_WINDOWS(tp, wp)
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007314 if (wp->w_buffer == curwin->w_buffer
7315 && !foldmethodIsManual(wp))
7316 foldUpdateAll(wp);
7317 }
7318#endif
7319 /* If the mode didn't change and 'readonly' was set, keep the old
7320 * value; the user probably used the ":view" command. But don't
7321 * reset it, might have had a read error. */
7322 if (orig_mode == curbuf->b_orig_mode)
7323 curbuf->b_p_ro |= old_ro;
Bram Moolenaar52f85b72013-01-30 14:13:56 +01007324
7325 /* Modelines must override settings done by autocommands. */
7326 do_modelines(0);
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007327 }
7328
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007329 /* restore curwin/curbuf and a few other things */
7330 aucmd_restbuf(&aco);
7331 /* Careful: autocommands may have made "buf" invalid! */
Bram Moolenaar631d6f62005-06-07 21:02:10 +00007332}
7333
Bram Moolenaar071d4272004-06-13 20:20:40 +00007334 void
Bram Moolenaar8767f522016-07-01 17:17:39 +02007335buf_store_time(buf_T *buf, stat_T *st, char_u *fname UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007336{
7337 buf->b_mtime = (long)st->st_mtime;
Bram Moolenaar914703b2010-05-31 21:59:46 +02007338 buf->b_orig_size = st->st_size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007339#ifdef HAVE_ST_MODE
7340 buf->b_orig_mode = (int)st->st_mode;
7341#else
7342 buf->b_orig_mode = mch_getperm(fname);
7343#endif
7344}
7345
7346/*
7347 * Adjust the line with missing eol, used for the next write.
7348 * Used for do_filter(), when the input lines for the filter are deleted.
7349 */
7350 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007351write_lnum_adjust(linenr_T offset)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007352{
Bram Moolenaarcab35ad2011-02-15 17:39:22 +01007353 if (curbuf->b_no_eol_lnum != 0) /* only if there is a missing eol */
7354 curbuf->b_no_eol_lnum += offset;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007355}
7356
Bram Moolenaarda440d22016-01-16 21:27:23 +01007357#if defined(TEMPDIRNAMES) || defined(FEAT_EVAL) || defined(PROTO)
7358/*
7359 * Delete "name" and everything in it, recursively.
7360 * return 0 for succes, -1 if some file was not deleted.
7361 */
7362 int
7363delete_recursive(char_u *name)
7364{
7365 int result = 0;
7366 char_u **files;
7367 int file_count;
7368 int i;
7369 char_u *exp;
7370
Bram Moolenaar43a34f92016-01-17 15:56:34 +01007371 /* A symbolic link to a directory itself is deleted, not the directory it
7372 * points to. */
7373 if (
Bram Moolenaar203258c2016-01-17 22:15:16 +01007374# if defined(UNIX) || defined(WIN32)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01007375 mch_isrealdir(name)
Bram Moolenaar203258c2016-01-17 22:15:16 +01007376# else
Bram Moolenaar43a34f92016-01-17 15:56:34 +01007377 mch_isdir(name)
Bram Moolenaar43a34f92016-01-17 15:56:34 +01007378# endif
7379 )
Bram Moolenaarda440d22016-01-16 21:27:23 +01007380 {
7381 vim_snprintf((char *)NameBuff, MAXPATHL, "%s/*", name);
7382 exp = vim_strsave(NameBuff);
7383 if (exp == NULL)
7384 return -1;
7385 if (gen_expand_wildcards(1, &exp, &file_count, &files,
Bram Moolenaar336bd622016-01-17 18:23:58 +01007386 EW_DIR|EW_FILE|EW_SILENT|EW_ALLLINKS|EW_DODOT|EW_EMPTYOK) == OK)
Bram Moolenaarda440d22016-01-16 21:27:23 +01007387 {
7388 for (i = 0; i < file_count; ++i)
7389 if (delete_recursive(files[i]) != 0)
7390 result = -1;
7391 FreeWild(file_count, files);
7392 }
7393 else
7394 result = -1;
7395 vim_free(exp);
7396 (void)mch_rmdir(name);
7397 }
7398 else
7399 result = mch_remove(name) == 0 ? 0 : -1;
7400
7401 return result;
7402}
7403#endif
7404
Bram Moolenaar071d4272004-06-13 20:20:40 +00007405#if defined(TEMPDIRNAMES) || defined(PROTO)
7406static long temp_count = 0; /* Temp filename counter. */
7407
7408/*
7409 * Delete the temp directory and all files it contains.
7410 */
7411 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007412vim_deltempdir(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007413{
Bram Moolenaar071d4272004-06-13 20:20:40 +00007414 if (vim_tempdir != NULL)
7415 {
Bram Moolenaarda440d22016-01-16 21:27:23 +01007416 /* remove the trailing path separator */
7417 gettail(vim_tempdir)[-1] = NUL;
7418 delete_recursive(vim_tempdir);
Bram Moolenaard23a8232018-02-10 18:45:26 +01007419 VIM_CLEAR(vim_tempdir);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007420 }
7421}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007422
7423/*
Bram Moolenaareaf03392009-11-17 11:08:52 +00007424 * Directory "tempdir" was created. Expand this name to a full path and put
7425 * it in "vim_tempdir". This avoids that using ":cd" would confuse us.
7426 * "tempdir" must be no longer than MAXPATHL.
7427 */
7428 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007429vim_settempdir(char_u *tempdir)
Bram Moolenaareaf03392009-11-17 11:08:52 +00007430{
7431 char_u *buf;
7432
7433 buf = alloc((unsigned)MAXPATHL + 2);
7434 if (buf != NULL)
7435 {
7436 if (vim_FullName(tempdir, buf, MAXPATHL, FALSE) == FAIL)
7437 STRCPY(buf, tempdir);
Bram Moolenaara06ecab2016-07-16 14:47:36 +02007438 add_pathsep(buf);
Bram Moolenaareaf03392009-11-17 11:08:52 +00007439 vim_tempdir = vim_strsave(buf);
7440 vim_free(buf);
7441 }
7442}
Bram Moolenaar4592dee2009-11-18 19:11:58 +00007443#endif
Bram Moolenaareaf03392009-11-17 11:08:52 +00007444
7445/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00007446 * vim_tempname(): Return a unique name that can be used for a temp file.
7447 *
Bram Moolenaar76ae22f2016-06-13 20:00:29 +02007448 * The temp file is NOT guaranteed to be created. If "keep" is FALSE it is
7449 * guaranteed to NOT be created.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007450 *
7451 * The returned pointer is to allocated memory.
7452 * The returned pointer is NULL if no valid name was found.
7453 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007454 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007455vim_tempname(
7456 int extra_char UNUSED, /* char to use in the name instead of '?' */
7457 int keep UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007458{
7459#ifdef USE_TMPNAM
7460 char_u itmp[L_tmpnam]; /* use tmpnam() */
7461#else
7462 char_u itmp[TEMPNAMELEN];
7463#endif
7464
7465#ifdef TEMPDIRNAMES
7466 static char *(tempdirs[]) = {TEMPDIRNAMES};
7467 int i;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007468# ifndef EEXIST
Bram Moolenaar8767f522016-07-01 17:17:39 +02007469 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007470# endif
7471
7472 /*
7473 * This will create a directory for private use by this instance of Vim.
7474 * This is done once, and the same directory is used for all temp files.
7475 * This method avoids security problems because of symlink attacks et al.
7476 * It's also a bit faster, because we only need to check for an existing
7477 * file when creating the directory and not for each temp file.
7478 */
7479 if (vim_tempdir == NULL)
7480 {
7481 /*
7482 * Try the entries in TEMPDIRNAMES to create the temp directory.
7483 */
Bram Moolenaar78a15312009-05-15 19:33:18 +00007484 for (i = 0; i < (int)(sizeof(tempdirs) / sizeof(char *)); ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007485 {
Bram Moolenaareaf03392009-11-17 11:08:52 +00007486# ifndef HAVE_MKDTEMP
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01007487 size_t itmplen;
Bram Moolenaareaf03392009-11-17 11:08:52 +00007488 long nr;
7489 long off;
7490# endif
7491
Bram Moolenaare1a61992015-12-03 21:02:27 +01007492 /* Expand $TMP, leave room for "/v1100000/999999999".
7493 * Skip the directory check if the expansion fails. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007494 expand_env((char_u *)tempdirs[i], itmp, TEMPNAMELEN - 20);
Bram Moolenaare1a61992015-12-03 21:02:27 +01007495 if (itmp[0] != '$' && mch_isdir(itmp))
Bram Moolenaar071d4272004-06-13 20:20:40 +00007496 {
Bram Moolenaare1a61992015-12-03 21:02:27 +01007497 /* directory exists */
Bram Moolenaara06ecab2016-07-16 14:47:36 +02007498 add_pathsep(itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007499
Bram Moolenaareaf03392009-11-17 11:08:52 +00007500# ifdef HAVE_MKDTEMP
Bram Moolenaar35d88f42016-06-04 14:52:00 +02007501 {
7502# if defined(UNIX) || defined(VMS)
7503 /* Make sure the umask doesn't remove the executable bit.
7504 * "repl" has been reported to use "177". */
7505 mode_t umask_save = umask(077);
7506# endif
7507 /* Leave room for filename */
7508 STRCAT(itmp, "vXXXXXX");
7509 if (mkdtemp((char *)itmp) != NULL)
7510 vim_settempdir(itmp);
7511# if defined(UNIX) || defined(VMS)
7512 (void)umask(umask_save);
7513# endif
7514 }
Bram Moolenaareaf03392009-11-17 11:08:52 +00007515# else
Bram Moolenaar071d4272004-06-13 20:20:40 +00007516 /* Get an arbitrary number of up to 6 digits. When it's
7517 * unlikely that it already exists it will be faster,
7518 * otherwise it doesn't matter. The use of mkdir() avoids any
7519 * security problems because of the predictable number. */
7520 nr = (mch_get_pid() + (long)time(NULL)) % 1000000L;
Bram Moolenaar2660c0e2010-01-19 14:59:56 +01007521 itmplen = STRLEN(itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007522
7523 /* Try up to 10000 different values until we find a name that
7524 * doesn't exist. */
7525 for (off = 0; off < 10000L; ++off)
7526 {
7527 int r;
Bram Moolenaareaf03392009-11-17 11:08:52 +00007528# if defined(UNIX) || defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007529 mode_t umask_save;
Bram Moolenaareaf03392009-11-17 11:08:52 +00007530# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007531
Bram Moolenaareaf03392009-11-17 11:08:52 +00007532 sprintf((char *)itmp + itmplen, "v%ld", nr + off);
7533# ifndef EEXIST
Bram Moolenaar071d4272004-06-13 20:20:40 +00007534 /* If mkdir() does not set errno to EEXIST, check for
7535 * existing file here. There is a race condition then,
7536 * although it's fail-safe. */
7537 if (mch_stat((char *)itmp, &st) >= 0)
7538 continue;
Bram Moolenaareaf03392009-11-17 11:08:52 +00007539# endif
7540# if defined(UNIX) || defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007541 /* Make sure the umask doesn't remove the executable bit.
7542 * "repl" has been reported to use "177". */
7543 umask_save = umask(077);
Bram Moolenaareaf03392009-11-17 11:08:52 +00007544# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007545 r = vim_mkdir(itmp, 0700);
Bram Moolenaareaf03392009-11-17 11:08:52 +00007546# if defined(UNIX) || defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007547 (void)umask(umask_save);
Bram Moolenaareaf03392009-11-17 11:08:52 +00007548# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007549 if (r == 0)
7550 {
Bram Moolenaareaf03392009-11-17 11:08:52 +00007551 vim_settempdir(itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007552 break;
7553 }
Bram Moolenaareaf03392009-11-17 11:08:52 +00007554# ifdef EEXIST
Bram Moolenaar071d4272004-06-13 20:20:40 +00007555 /* If the mkdir() didn't fail because the file/dir exists,
7556 * we probably can't create any dir here, try another
7557 * place. */
7558 if (errno != EEXIST)
Bram Moolenaareaf03392009-11-17 11:08:52 +00007559# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007560 break;
7561 }
Bram Moolenaareaf03392009-11-17 11:08:52 +00007562# endif /* HAVE_MKDTEMP */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007563 if (vim_tempdir != NULL)
7564 break;
7565 }
7566 }
7567 }
7568
7569 if (vim_tempdir != NULL)
7570 {
7571 /* There is no need to check if the file exists, because we own the
7572 * directory and nobody else creates a file in it. */
7573 sprintf((char *)itmp, "%s%ld", vim_tempdir, temp_count++);
7574 return vim_strsave(itmp);
7575 }
7576
7577 return NULL;
7578
7579#else /* TEMPDIRNAMES */
7580
7581# ifdef WIN3264
7582 char szTempFile[_MAX_PATH + 1];
7583 char buf4[4];
7584 char_u *retval;
7585 char_u *p;
7586
7587 STRCPY(itmp, "");
7588 if (GetTempPath(_MAX_PATH, szTempFile) == 0)
Bram Moolenaarb1891912011-02-09 14:47:03 +01007589 {
7590 szTempFile[0] = '.'; /* GetTempPath() failed, use current dir */
7591 szTempFile[1] = NUL;
7592 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00007593 strcpy(buf4, "VIM");
7594 buf4[2] = extra_char; /* make it "VIa", "VIb", etc. */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01007595 if (GetTempFileName(szTempFile, buf4, 0, (LPSTR)itmp) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007596 return NULL;
Bram Moolenaare5c421c2015-03-31 13:33:08 +02007597 if (!keep)
7598 /* GetTempFileName() will create the file, we don't want that */
Bram Moolenaar6aa2cd42016-02-16 15:06:59 +01007599 (void)DeleteFile((LPSTR)itmp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007600
7601 /* Backslashes in a temp file name cause problems when filtering with
7602 * "sh". NOTE: This also checks 'shellcmdflag' to help those people who
7603 * didn't set 'shellslash'. */
7604 retval = vim_strsave(itmp);
7605 if (*p_shcf == '-' || p_ssl)
7606 for (p = retval; *p; ++p)
7607 if (*p == '\\')
7608 *p = '/';
7609 return retval;
7610
7611# else /* WIN3264 */
7612
7613# ifdef USE_TMPNAM
Bram Moolenaar95474ca2011-02-09 16:44:51 +01007614 char_u *p;
7615
Bram Moolenaar071d4272004-06-13 20:20:40 +00007616 /* tmpnam() will make its own name */
Bram Moolenaar95474ca2011-02-09 16:44:51 +01007617 p = tmpnam((char *)itmp);
7618 if (p == NULL || *p == NUL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007619 return NULL;
7620# else
7621 char_u *p;
7622
7623# ifdef VMS_TEMPNAM
7624 /* mktemp() is not working on VMS. It seems to be
7625 * a do-nothing function. Therefore we use tempnam().
7626 */
7627 sprintf((char *)itmp, "VIM%c", extra_char);
7628 p = (char_u *)tempnam("tmp:", (char *)itmp);
7629 if (p != NULL)
7630 {
Bram Moolenaar206f0112014-03-12 16:51:55 +01007631 /* VMS will use '.LIS' if we don't explicitly specify an extension,
Bram Moolenaar071d4272004-06-13 20:20:40 +00007632 * and VIM will then be unable to find the file later */
7633 STRCPY(itmp, p);
7634 STRCAT(itmp, ".txt");
7635 free(p);
7636 }
7637 else
7638 return NULL;
7639# else
7640 STRCPY(itmp, TEMPNAME);
7641 if ((p = vim_strchr(itmp, '?')) != NULL)
7642 *p = extra_char;
7643 if (mktemp((char *)itmp) == NULL)
7644 return NULL;
7645# endif
7646# endif
7647
7648 return vim_strsave(itmp);
7649# endif /* WIN3264 */
7650#endif /* TEMPDIRNAMES */
7651}
7652
7653#if defined(BACKSLASH_IN_FILENAME) || defined(PROTO)
7654/*
Bram Moolenaarb4f6a462015-10-13 19:43:17 +02007655 * Convert all backslashes in fname to forward slashes in-place, unless when
7656 * it looks like a URL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007657 */
7658 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007659forward_slash(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007660{
7661 char_u *p;
7662
Bram Moolenaarb4f6a462015-10-13 19:43:17 +02007663 if (path_with_url(fname))
7664 return;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007665 for (p = fname; *p != NUL; ++p)
7666# ifdef FEAT_MBYTE
7667 /* The Big5 encoding can have '\' in the trail byte. */
Bram Moolenaar0fa313a2005-08-10 21:07:57 +00007668 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007669 ++p;
7670 else
7671# endif
7672 if (*p == '\\')
7673 *p = '/';
7674}
7675#endif
7676
7677
7678/*
7679 * Code for automatic commands.
Bram Moolenaar071d4272004-06-13 20:20:40 +00007680 */
7681
Bram Moolenaar071d4272004-06-13 20:20:40 +00007682/*
7683 * The autocommands are stored in a list for each event.
7684 * Autocommands for the same pattern, that are consecutive, are joined
7685 * together, to avoid having to match the pattern too often.
7686 * The result is an array of Autopat lists, which point to AutoCmd lists:
7687 *
Bram Moolenaar462455e2017-11-10 21:53:11 +01007688 * last_autopat[0] -----------------------------+
7689 * V
Bram Moolenaar071d4272004-06-13 20:20:40 +00007690 * first_autopat[0] --> Autopat.next --> Autopat.next --> NULL
7691 * Autopat.cmds Autopat.cmds
7692 * | |
7693 * V V
7694 * AutoCmd.next AutoCmd.next
7695 * | |
7696 * V V
7697 * AutoCmd.next NULL
7698 * |
7699 * V
7700 * NULL
7701 *
Bram Moolenaar462455e2017-11-10 21:53:11 +01007702 * last_autopat[1] --------+
7703 * V
Bram Moolenaar071d4272004-06-13 20:20:40 +00007704 * first_autopat[1] --> Autopat.next --> NULL
7705 * Autopat.cmds
7706 * |
7707 * V
7708 * AutoCmd.next
7709 * |
7710 * V
7711 * NULL
7712 * etc.
7713 *
7714 * The order of AutoCmds is important, this is the order in which they were
7715 * defined and will have to be executed.
7716 */
7717typedef struct AutoCmd
7718{
7719 char_u *cmd; /* The command to be executed (NULL
7720 when command has been removed) */
7721 char nested; /* If autocommands nest here */
7722 char last; /* last command in list */
7723#ifdef FEAT_EVAL
7724 scid_T scriptID; /* script ID where defined */
7725#endif
7726 struct AutoCmd *next; /* Next AutoCmd in list */
7727} AutoCmd;
7728
7729typedef struct AutoPat
7730{
Bram Moolenaar462455e2017-11-10 21:53:11 +01007731 struct AutoPat *next; /* next AutoPat in AutoPat list; MUST
7732 * be the first entry */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007733 char_u *pat; /* pattern as typed (NULL when pattern
7734 has been removed) */
Bram Moolenaar748bf032005-02-02 23:04:36 +00007735 regprog_T *reg_prog; /* compiled regprog for pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007736 AutoCmd *cmds; /* list of commands to do */
Bram Moolenaar6395af82013-06-12 19:52:15 +02007737 int group; /* group ID */
7738 int patlen; /* strlen() of pat */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007739 int buflocal_nr; /* !=0 for buffer-local AutoPat */
Bram Moolenaar6395af82013-06-12 19:52:15 +02007740 char allow_dirs; /* Pattern may match whole path */
7741 char last; /* last pattern for apply_autocmds() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007742} AutoPat;
7743
7744static struct event_name
7745{
7746 char *name; /* event name */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007747 event_T event; /* event number */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007748} event_names[] =
7749{
7750 {"BufAdd", EVENT_BUFADD},
7751 {"BufCreate", EVENT_BUFADD},
7752 {"BufDelete", EVENT_BUFDELETE},
7753 {"BufEnter", EVENT_BUFENTER},
7754 {"BufFilePost", EVENT_BUFFILEPOST},
7755 {"BufFilePre", EVENT_BUFFILEPRE},
7756 {"BufHidden", EVENT_BUFHIDDEN},
7757 {"BufLeave", EVENT_BUFLEAVE},
7758 {"BufNew", EVENT_BUFNEW},
7759 {"BufNewFile", EVENT_BUFNEWFILE},
7760 {"BufRead", EVENT_BUFREADPOST},
7761 {"BufReadCmd", EVENT_BUFREADCMD},
7762 {"BufReadPost", EVENT_BUFREADPOST},
7763 {"BufReadPre", EVENT_BUFREADPRE},
7764 {"BufUnload", EVENT_BUFUNLOAD},
7765 {"BufWinEnter", EVENT_BUFWINENTER},
7766 {"BufWinLeave", EVENT_BUFWINLEAVE},
7767 {"BufWipeout", EVENT_BUFWIPEOUT},
7768 {"BufWrite", EVENT_BUFWRITEPRE},
7769 {"BufWritePost", EVENT_BUFWRITEPOST},
7770 {"BufWritePre", EVENT_BUFWRITEPRE},
7771 {"BufWriteCmd", EVENT_BUFWRITECMD},
Bram Moolenaar153b7042018-01-31 15:48:32 +01007772 {"CmdlineChanged", EVENT_CMDLINECHANGED},
Bram Moolenaarfafcf0d2017-10-19 18:35:51 +02007773 {"CmdlineEnter", EVENT_CMDLINEENTER},
7774 {"CmdlineLeave", EVENT_CMDLINELEAVE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007775 {"CmdwinEnter", EVENT_CMDWINENTER},
7776 {"CmdwinLeave", EVENT_CMDWINLEAVE},
Bram Moolenaard5005162014-08-22 23:05:54 +02007777 {"CmdUndefined", EVENT_CMDUNDEFINED},
Bram Moolenaarcfbc5ee2004-07-02 15:38:35 +00007778 {"ColorScheme", EVENT_COLORSCHEME},
Bram Moolenaar60a68362018-04-30 15:40:48 +02007779 {"ColorSchemePre", EVENT_COLORSCHEMEPRE},
Bram Moolenaarcfa3cae2012-07-10 17:14:56 +02007780 {"CompleteDone", EVENT_COMPLETEDONE},
Bram Moolenaar754b5602006-02-09 23:53:20 +00007781 {"CursorHold", EVENT_CURSORHOLD},
7782 {"CursorHoldI", EVENT_CURSORHOLDI},
7783 {"CursorMoved", EVENT_CURSORMOVED},
7784 {"CursorMovedI", EVENT_CURSORMOVEDI},
Bram Moolenaarb7407d32018-02-03 17:36:27 +01007785 {"DirChanged", EVENT_DIRCHANGED},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007786 {"EncodingChanged", EVENT_ENCODINGCHANGED},
Bram Moolenaar12a96de2018-03-11 14:44:18 +01007787 {"ExitPre", EVENT_EXITPRE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007788 {"FileEncoding", EVENT_ENCODINGCHANGED},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007789 {"FileAppendPost", EVENT_FILEAPPENDPOST},
7790 {"FileAppendPre", EVENT_FILEAPPENDPRE},
7791 {"FileAppendCmd", EVENT_FILEAPPENDCMD},
7792 {"FileChangedShell",EVENT_FILECHANGEDSHELL},
Bram Moolenaar56718732006-03-15 22:53:57 +00007793 {"FileChangedShellPost",EVENT_FILECHANGEDSHELLPOST},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007794 {"FileChangedRO", EVENT_FILECHANGEDRO},
7795 {"FileReadPost", EVENT_FILEREADPOST},
7796 {"FileReadPre", EVENT_FILEREADPRE},
7797 {"FileReadCmd", EVENT_FILEREADCMD},
7798 {"FileType", EVENT_FILETYPE},
7799 {"FileWritePost", EVENT_FILEWRITEPOST},
7800 {"FileWritePre", EVENT_FILEWRITEPRE},
7801 {"FileWriteCmd", EVENT_FILEWRITECMD},
7802 {"FilterReadPost", EVENT_FILTERREADPOST},
7803 {"FilterReadPre", EVENT_FILTERREADPRE},
7804 {"FilterWritePost", EVENT_FILTERWRITEPOST},
7805 {"FilterWritePre", EVENT_FILTERWRITEPRE},
7806 {"FocusGained", EVENT_FOCUSGAINED},
7807 {"FocusLost", EVENT_FOCUSLOST},
7808 {"FuncUndefined", EVENT_FUNCUNDEFINED},
7809 {"GUIEnter", EVENT_GUIENTER},
Bram Moolenaar265e5072006-08-29 16:13:22 +00007810 {"GUIFailed", EVENT_GUIFAILED},
Bram Moolenaar843ee412004-06-30 16:16:41 +00007811 {"InsertChange", EVENT_INSERTCHANGE},
7812 {"InsertEnter", EVENT_INSERTENTER},
7813 {"InsertLeave", EVENT_INSERTLEAVE},
Bram Moolenaare659c952011-05-19 17:25:41 +02007814 {"InsertCharPre", EVENT_INSERTCHARPRE},
Bram Moolenaara3ffd9c2005-07-21 21:03:15 +00007815 {"MenuPopup", EVENT_MENUPOPUP},
Bram Moolenaar53744302015-07-17 17:38:22 +02007816 {"OptionSet", EVENT_OPTIONSET},
Bram Moolenaar7c626922005-02-07 22:01:03 +00007817 {"QuickFixCmdPost", EVENT_QUICKFIXCMDPOST},
7818 {"QuickFixCmdPre", EVENT_QUICKFIXCMDPRE},
Bram Moolenaar3b53dfb2012-06-06 18:03:07 +02007819 {"QuitPre", EVENT_QUITPRE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007820 {"RemoteReply", EVENT_REMOTEREPLY},
Bram Moolenaar9372a112005-12-06 19:59:18 +00007821 {"SessionLoadPost", EVENT_SESSIONLOADPOST},
Bram Moolenaar5c4bab02006-03-10 21:37:46 +00007822 {"ShellCmdPost", EVENT_SHELLCMDPOST},
7823 {"ShellFilterPost", EVENT_SHELLFILTERPOST},
Bram Moolenaara2031822006-03-07 22:29:51 +00007824 {"SourcePre", EVENT_SOURCEPRE},
Bram Moolenaar8dd1aa52007-01-16 20:33:19 +00007825 {"SourceCmd", EVENT_SOURCECMD},
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00007826 {"SpellFileMissing",EVENT_SPELLFILEMISSING},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007827 {"StdinReadPost", EVENT_STDINREADPOST},
7828 {"StdinReadPre", EVENT_STDINREADPRE},
Bram Moolenaarb815dac2005-12-07 20:59:24 +00007829 {"SwapExists", EVENT_SWAPEXISTS},
Bram Moolenaar7e8fd632006-02-18 22:14:51 +00007830 {"Syntax", EVENT_SYNTAX},
Bram Moolenaarc917da42016-07-19 22:31:36 +02007831 {"TabNew", EVENT_TABNEW},
Bram Moolenaar12c11d52016-07-19 23:13:03 +02007832 {"TabClosed", EVENT_TABCLOSED},
Bram Moolenaar70836c82006-02-20 21:28:49 +00007833 {"TabEnter", EVENT_TABENTER},
7834 {"TabLeave", EVENT_TABLEAVE},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007835 {"TermChanged", EVENT_TERMCHANGED},
Bram Moolenaarb852c3e2018-03-11 16:55:36 +01007836 {"TerminalOpen", EVENT_TERMINALOPEN},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007837 {"TermResponse", EVENT_TERMRESPONSE},
Bram Moolenaar186628f2013-03-19 13:33:23 +01007838 {"TextChanged", EVENT_TEXTCHANGED},
7839 {"TextChangedI", EVENT_TEXTCHANGEDI},
Bram Moolenaar5a093432018-02-10 18:15:19 +01007840 {"TextChangedP", EVENT_TEXTCHANGEDP},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007841 {"User", EVENT_USER},
7842 {"VimEnter", EVENT_VIMENTER},
7843 {"VimLeave", EVENT_VIMLEAVE},
7844 {"VimLeavePre", EVENT_VIMLEAVEPRE},
Bram Moolenaarc917da42016-07-19 22:31:36 +02007845 {"WinNew", EVENT_WINNEW},
Bram Moolenaar071d4272004-06-13 20:20:40 +00007846 {"WinEnter", EVENT_WINENTER},
7847 {"WinLeave", EVENT_WINLEAVE},
Bram Moolenaar56718732006-03-15 22:53:57 +00007848 {"VimResized", EVENT_VIMRESIZED},
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01007849 {"TextYankPost", EVENT_TEXTYANKPOST},
Bram Moolenaar754b5602006-02-09 23:53:20 +00007850 {NULL, (event_T)0}
Bram Moolenaar071d4272004-06-13 20:20:40 +00007851};
7852
7853static AutoPat *first_autopat[NUM_EVENTS] =
7854{
7855 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7856 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7857 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7858 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
Bram Moolenaarab79bcb2004-07-18 21:34:53 +00007859 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
Bram Moolenaar53744302015-07-17 17:38:22 +02007860 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +00007861};
7862
Bram Moolenaar462455e2017-11-10 21:53:11 +01007863static AutoPat *last_autopat[NUM_EVENTS] =
7864{
7865 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7866 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7867 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7868 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7869 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
7870 NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL
7871};
7872
Bram Moolenaar071d4272004-06-13 20:20:40 +00007873/*
7874 * struct used to keep status while executing autocommands for an event.
7875 */
7876typedef struct AutoPatCmd
7877{
7878 AutoPat *curpat; /* next AutoPat to examine */
7879 AutoCmd *nextcmd; /* next AutoCmd to execute */
7880 int group; /* group being used */
7881 char_u *fname; /* fname to match with */
7882 char_u *sfname; /* sfname to match with */
7883 char_u *tail; /* tail of fname */
Bram Moolenaar754b5602006-02-09 23:53:20 +00007884 event_T event; /* current event */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007885 int arg_bufnr; /* initially equal to <abuf>, set to zero when
7886 buf is deleted */
7887 struct AutoPatCmd *next; /* chain of active apc-s for auto-invalidation*/
Bram Moolenaar071d4272004-06-13 20:20:40 +00007888} AutoPatCmd;
7889
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007890static AutoPatCmd *active_apc_list = NULL; /* stack of active autocommands */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007891
Bram Moolenaar071d4272004-06-13 20:20:40 +00007892/*
7893 * augroups stores a list of autocmd group names.
7894 */
Bram Moolenaard6f676d2005-06-01 21:51:55 +00007895static garray_T augroups = {0, 0, sizeof(char_u *), 10, NULL};
Bram Moolenaar071d4272004-06-13 20:20:40 +00007896#define AUGROUP_NAME(i) (((char_u **)augroups.ga_data)[i])
Bram Moolenaarb62cc362016-09-03 16:43:53 +02007897/* use get_deleted_augroup() to get this */
Bram Moolenaarf2c4c392016-07-29 20:50:24 +02007898static char_u *deleted_augroup = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007899
7900/*
7901 * The ID of the current group. Group 0 is the default one.
7902 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007903static int current_augroup = AUGROUP_DEFAULT;
7904
7905static int au_need_clean = FALSE; /* need to delete marked patterns */
7906
Bram Moolenaard25c16e2016-01-29 22:13:30 +01007907static void show_autocmd(AutoPat *ap, event_T event);
7908static void au_remove_pat(AutoPat *ap);
7909static void au_remove_cmds(AutoPat *ap);
7910static void au_cleanup(void);
7911static int au_new_group(char_u *name);
7912static void au_del_group(char_u *name);
7913static event_T event_name2nr(char_u *start, char_u **end);
7914static char_u *event_nr2name(event_T event);
7915static char_u *find_end_event(char_u *arg, int have_group);
7916static int event_ignored(event_T event);
7917static int au_get_grouparg(char_u **argp);
7918static int do_autocmd_event(event_T event, char_u *pat, int nested, char_u *cmd, int forceit, int group);
7919static int apply_autocmds_group(event_T event, char_u *fname, char_u *fname_io, int force, int group, buf_T *buf, exarg_T *eap);
7920static void auto_next_pat(AutoPatCmd *apc, int stop_at_last);
Bram Moolenaard25c16e2016-01-29 22:13:30 +01007921static int match_file_pat(char_u *pattern, regprog_T **prog, char_u *fname, char_u *sfname, char_u *tail, int allow_dirs);
Bram Moolenaar071d4272004-06-13 20:20:40 +00007922
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00007923
Bram Moolenaar754b5602006-02-09 23:53:20 +00007924static event_T last_event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00007925static int last_group;
Bram Moolenaar78ab3312007-09-29 12:16:41 +00007926static int autocmd_blocked = 0; /* block all autocmds */
Bram Moolenaar071d4272004-06-13 20:20:40 +00007927
Bram Moolenaarb62cc362016-09-03 16:43:53 +02007928 static char_u *
7929get_deleted_augroup(void)
7930{
7931 if (deleted_augroup == NULL)
7932 deleted_augroup = (char_u *)_("--Deleted--");
7933 return deleted_augroup;
7934}
7935
Bram Moolenaar071d4272004-06-13 20:20:40 +00007936/*
7937 * Show the autocommands for one AutoPat.
7938 */
7939 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01007940show_autocmd(AutoPat *ap, event_T event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007941{
7942 AutoCmd *ac;
7943
7944 /* Check for "got_int" (here and at various places below), which is set
7945 * when "q" has been hit for the "--more--" prompt */
7946 if (got_int)
7947 return;
7948 if (ap->pat == NULL) /* pattern has been removed */
7949 return;
7950
7951 msg_putchar('\n');
7952 if (got_int)
7953 return;
7954 if (event != last_event || ap->group != last_group)
7955 {
7956 if (ap->group != AUGROUP_DEFAULT)
7957 {
7958 if (AUGROUP_NAME(ap->group) == NULL)
Bram Moolenaar8820b482017-03-16 17:23:31 +01007959 msg_puts_attr(get_deleted_augroup(), HL_ATTR(HLF_E));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007960 else
Bram Moolenaar8820b482017-03-16 17:23:31 +01007961 msg_puts_attr(AUGROUP_NAME(ap->group), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007962 msg_puts((char_u *)" ");
7963 }
Bram Moolenaar8820b482017-03-16 17:23:31 +01007964 msg_puts_attr(event_nr2name(event), HL_ATTR(HLF_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00007965 last_event = event;
7966 last_group = ap->group;
7967 msg_putchar('\n');
7968 if (got_int)
7969 return;
7970 }
7971 msg_col = 4;
7972 msg_outtrans(ap->pat);
7973
7974 for (ac = ap->cmds; ac != NULL; ac = ac->next)
7975 {
7976 if (ac->cmd != NULL) /* skip removed commands */
7977 {
7978 if (msg_col >= 14)
7979 msg_putchar('\n');
7980 msg_col = 14;
7981 if (got_int)
7982 return;
7983 msg_outtrans(ac->cmd);
Bram Moolenaarac6e65f2005-08-29 22:25:38 +00007984#ifdef FEAT_EVAL
7985 if (p_verbose > 0)
7986 last_set_msg(ac->scriptID);
7987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00007988 if (got_int)
7989 return;
7990 if (ac->next != NULL)
7991 {
7992 msg_putchar('\n');
7993 if (got_int)
7994 return;
7995 }
7996 }
7997 }
7998}
7999
8000/*
8001 * Mark an autocommand pattern for deletion.
8002 */
8003 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008004au_remove_pat(AutoPat *ap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008005{
Bram Moolenaard23a8232018-02-10 18:45:26 +01008006 VIM_CLEAR(ap->pat);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008007 ap->buflocal_nr = -1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008008 au_need_clean = TRUE;
8009}
8010
8011/*
8012 * Mark all commands for a pattern for deletion.
8013 */
8014 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008015au_remove_cmds(AutoPat *ap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008016{
8017 AutoCmd *ac;
8018
8019 for (ac = ap->cmds; ac != NULL; ac = ac->next)
Bram Moolenaard23a8232018-02-10 18:45:26 +01008020 VIM_CLEAR(ac->cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008021 au_need_clean = TRUE;
8022}
8023
8024/*
8025 * Cleanup autocommands and patterns that have been deleted.
8026 * This is only done when not executing autocommands.
8027 */
8028 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008029au_cleanup(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008030{
8031 AutoPat *ap, **prev_ap;
8032 AutoCmd *ac, **prev_ac;
Bram Moolenaar754b5602006-02-09 23:53:20 +00008033 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008034
8035 if (autocmd_busy || !au_need_clean)
8036 return;
8037
8038 /* loop over all events */
Bram Moolenaar754b5602006-02-09 23:53:20 +00008039 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
8040 event = (event_T)((int)event + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008041 {
8042 /* loop over all autocommand patterns */
8043 prev_ap = &(first_autopat[(int)event]);
8044 for (ap = *prev_ap; ap != NULL; ap = *prev_ap)
8045 {
8046 /* loop over all commands for this pattern */
8047 prev_ac = &(ap->cmds);
8048 for (ac = *prev_ac; ac != NULL; ac = *prev_ac)
8049 {
8050 /* remove the command if the pattern is to be deleted or when
8051 * the command has been marked for deletion */
8052 if (ap->pat == NULL || ac->cmd == NULL)
8053 {
8054 *prev_ac = ac->next;
8055 vim_free(ac->cmd);
8056 vim_free(ac);
8057 }
8058 else
8059 prev_ac = &(ac->next);
8060 }
8061
8062 /* remove the pattern if it has been marked for deletion */
8063 if (ap->pat == NULL)
8064 {
Bram Moolenaar462455e2017-11-10 21:53:11 +01008065 if (ap->next == NULL)
8066 {
8067 if (prev_ap == &(first_autopat[(int)event]))
8068 last_autopat[(int)event] = NULL;
8069 else
8070 /* this depends on the "next" field being the first in
8071 * the struct */
8072 last_autopat[(int)event] = (AutoPat *)prev_ap;
8073 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008074 *prev_ap = ap->next;
Bram Moolenaar473de612013-06-08 18:19:48 +02008075 vim_regfree(ap->reg_prog);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008076 vim_free(ap);
8077 }
8078 else
8079 prev_ap = &(ap->next);
8080 }
8081 }
8082
8083 au_need_clean = FALSE;
8084}
8085
8086/*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008087 * Called when buffer is freed, to remove/invalidate related buffer-local
8088 * autocmds.
8089 */
8090 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008091aubuflocal_remove(buf_T *buf)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008092{
8093 AutoPat *ap;
Bram Moolenaar754b5602006-02-09 23:53:20 +00008094 event_T event;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008095 AutoPatCmd *apc;
8096
8097 /* invalidate currently executing autocommands */
8098 for (apc = active_apc_list; apc; apc = apc->next)
8099 if (buf->b_fnum == apc->arg_bufnr)
8100 apc->arg_bufnr = 0;
8101
8102 /* invalidate buflocals looping through events */
Bram Moolenaar754b5602006-02-09 23:53:20 +00008103 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
8104 event = (event_T)((int)event + 1))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008105 /* loop over all autocommand patterns */
8106 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
8107 if (ap->buflocal_nr == buf->b_fnum)
8108 {
8109 au_remove_pat(ap);
8110 if (p_verbose >= 6)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008111 {
8112 verbose_enter();
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008113 smsg((char_u *)
8114 _("auto-removing autocommand: %s <buffer=%d>"),
8115 event_nr2name(event), buf->b_fnum);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00008116 verbose_leave();
8117 }
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008118 }
8119 au_cleanup();
8120}
8121
8122/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00008123 * Add an autocmd group name.
8124 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
8125 */
8126 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008127au_new_group(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008128{
8129 int i;
8130
8131 i = au_find_group(name);
8132 if (i == AUGROUP_ERROR) /* the group doesn't exist yet, add it */
8133 {
8134 /* First try using a free entry. */
8135 for (i = 0; i < augroups.ga_len; ++i)
8136 if (AUGROUP_NAME(i) == NULL)
8137 break;
8138 if (i == augroups.ga_len && ga_grow(&augroups, 1) == FAIL)
8139 return AUGROUP_ERROR;
8140
8141 AUGROUP_NAME(i) = vim_strsave(name);
8142 if (AUGROUP_NAME(i) == NULL)
8143 return AUGROUP_ERROR;
8144 if (i == augroups.ga_len)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008145 ++augroups.ga_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008146 }
8147
8148 return i;
8149}
8150
8151 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008152au_del_group(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008153{
8154 int i;
8155
8156 i = au_find_group(name);
8157 if (i == AUGROUP_ERROR) /* the group doesn't exist */
8158 EMSG2(_("E367: No such group: \"%s\""), name);
Bram Moolenaarde653f02016-09-03 16:59:06 +02008159 else if (i == current_augroup)
8160 EMSG(_("E936: Cannot delete the current group"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008161 else
8162 {
Bram Moolenaarf2c4c392016-07-29 20:50:24 +02008163 event_T event;
8164 AutoPat *ap;
8165 int in_use = FALSE;
8166
8167 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
8168 event = (event_T)((int)event + 1))
8169 {
8170 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
Bram Moolenaar5c809082016-09-01 16:21:48 +02008171 if (ap->group == i && ap->pat != NULL)
Bram Moolenaarf2c4c392016-07-29 20:50:24 +02008172 {
8173 give_warning((char_u *)_("W19: Deleting augroup that is still in use"), TRUE);
8174 in_use = TRUE;
8175 event = NUM_EVENTS;
8176 break;
8177 }
8178 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008179 vim_free(AUGROUP_NAME(i));
Bram Moolenaarf2c4c392016-07-29 20:50:24 +02008180 if (in_use)
8181 {
Bram Moolenaarb62cc362016-09-03 16:43:53 +02008182 AUGROUP_NAME(i) = get_deleted_augroup();
Bram Moolenaarf2c4c392016-07-29 20:50:24 +02008183 }
8184 else
8185 AUGROUP_NAME(i) = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008186 }
8187}
8188
8189/*
8190 * Find the ID of an autocmd group name.
8191 * Return it's ID. Returns AUGROUP_ERROR (< 0) for error.
8192 */
8193 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008194au_find_group(char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008195{
8196 int i;
8197
8198 for (i = 0; i < augroups.ga_len; ++i)
Bram Moolenaarb62cc362016-09-03 16:43:53 +02008199 if (AUGROUP_NAME(i) != NULL && AUGROUP_NAME(i) != get_deleted_augroup()
Bram Moolenaarf2c4c392016-07-29 20:50:24 +02008200 && STRCMP(AUGROUP_NAME(i), name) == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008201 return i;
8202 return AUGROUP_ERROR;
8203}
8204
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008205/*
8206 * Return TRUE if augroup "name" exists.
8207 */
8208 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008209au_has_group(char_u *name)
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008210{
8211 return au_find_group(name) != AUGROUP_ERROR;
8212}
Bram Moolenaar1d94f9b2005-08-04 21:29:45 +00008213
Bram Moolenaar071d4272004-06-13 20:20:40 +00008214/*
8215 * ":augroup {name}".
8216 */
8217 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008218do_augroup(char_u *arg, int del_group)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008219{
8220 int i;
8221
8222 if (del_group)
8223 {
8224 if (*arg == NUL)
8225 EMSG(_(e_argreq));
8226 else
8227 au_del_group(arg);
8228 }
8229 else if (STRICMP(arg, "end") == 0) /* ":aug end": back to group 0 */
8230 current_augroup = AUGROUP_DEFAULT;
8231 else if (*arg) /* ":aug xxx": switch to group xxx */
8232 {
8233 i = au_new_group(arg);
8234 if (i != AUGROUP_ERROR)
8235 current_augroup = i;
8236 }
8237 else /* ":aug": list the group names */
8238 {
8239 msg_start();
8240 for (i = 0; i < augroups.ga_len; ++i)
8241 {
8242 if (AUGROUP_NAME(i) != NULL)
8243 {
8244 msg_puts(AUGROUP_NAME(i));
8245 msg_puts((char_u *)" ");
8246 }
8247 }
8248 msg_clr_eos();
8249 msg_end();
8250 }
8251}
8252
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00008253#if defined(EXITFREE) || defined(PROTO)
8254 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008255free_all_autocmds(void)
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00008256{
Bram Moolenaarf2c4c392016-07-29 20:50:24 +02008257 int i;
8258 char_u *s;
8259
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00008260 for (current_augroup = -1; current_augroup < augroups.ga_len;
8261 ++current_augroup)
8262 do_autocmd((char_u *)"", TRUE);
Bram Moolenaarf2c4c392016-07-29 20:50:24 +02008263
8264 for (i = 0; i < augroups.ga_len; ++i)
8265 {
8266 s = ((char_u **)(augroups.ga_data))[i];
Bram Moolenaarb62cc362016-09-03 16:43:53 +02008267 if (s != get_deleted_augroup())
Bram Moolenaarf2c4c392016-07-29 20:50:24 +02008268 vim_free(s);
8269 }
8270 ga_clear(&augroups);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00008271}
8272#endif
8273
Bram Moolenaar071d4272004-06-13 20:20:40 +00008274/*
8275 * Return the event number for event name "start".
8276 * Return NUM_EVENTS if the event name was not found.
8277 * Return a pointer to the next event name in "end".
8278 */
Bram Moolenaar754b5602006-02-09 23:53:20 +00008279 static event_T
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008280event_name2nr(char_u *start, char_u **end)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008281{
8282 char_u *p;
8283 int i;
8284 int len;
8285
Bram Moolenaare99e8442016-07-26 20:43:40 +02008286 /* the event name ends with end of line, '|', a blank or a comma */
Bram Moolenaar1c465442017-03-12 20:10:05 +01008287 for (p = start; *p && !VIM_ISWHITE(*p) && *p != ',' && *p != '|'; ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008288 ;
8289 for (i = 0; event_names[i].name != NULL; ++i)
8290 {
8291 len = (int)STRLEN(event_names[i].name);
8292 if (len == p - start && STRNICMP(event_names[i].name, start, len) == 0)
8293 break;
8294 }
8295 if (*p == ',')
8296 ++p;
8297 *end = p;
8298 if (event_names[i].name == NULL)
8299 return NUM_EVENTS;
8300 return event_names[i].event;
8301}
8302
8303/*
8304 * Return the name for event "event".
8305 */
8306 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008307event_nr2name(event_T event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008308{
8309 int i;
8310
8311 for (i = 0; event_names[i].name != NULL; ++i)
8312 if (event_names[i].event == event)
8313 return (char_u *)event_names[i].name;
8314 return (char_u *)"Unknown";
8315}
8316
8317/*
8318 * Scan over the events. "*" stands for all events.
8319 */
8320 static char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008321find_end_event(
8322 char_u *arg,
8323 int have_group) /* TRUE when group name was found */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008324{
8325 char_u *pat;
8326 char_u *p;
8327
8328 if (*arg == '*')
8329 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01008330 if (arg[1] && !VIM_ISWHITE(arg[1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008331 {
8332 EMSG2(_("E215: Illegal character after *: %s"), arg);
8333 return NULL;
8334 }
8335 pat = arg + 1;
8336 }
8337 else
8338 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01008339 for (pat = arg; *pat && *pat != '|' && !VIM_ISWHITE(*pat); pat = p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008340 {
8341 if ((int)event_name2nr(pat, &p) >= (int)NUM_EVENTS)
8342 {
8343 if (have_group)
8344 EMSG2(_("E216: No such event: %s"), pat);
8345 else
8346 EMSG2(_("E216: No such group or event: %s"), pat);
8347 return NULL;
8348 }
8349 }
8350 }
8351 return pat;
8352}
8353
8354/*
8355 * Return TRUE if "event" is included in 'eventignore'.
8356 */
8357 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008358event_ignored(event_T event)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008359{
8360 char_u *p = p_ei;
8361
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008362 while (*p != NUL)
8363 {
8364 if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ','))
8365 return TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008366 if (event_name2nr(p, &p) == event)
8367 return TRUE;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008368 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008369
8370 return FALSE;
8371}
8372
8373/*
8374 * Return OK when the contents of p_ei is valid, FAIL otherwise.
8375 */
8376 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008377check_ei(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008378{
8379 char_u *p = p_ei;
8380
Bram Moolenaar071d4272004-06-13 20:20:40 +00008381 while (*p)
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008382 {
8383 if (STRNICMP(p, "all", 3) == 0 && (p[3] == NUL || p[3] == ','))
8384 {
8385 p += 3;
8386 if (*p == ',')
8387 ++p;
8388 }
8389 else if (event_name2nr(p, &p) == NUM_EVENTS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008390 return FAIL;
Bram Moolenaarf193fff2006-04-27 00:02:13 +00008391 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008392
8393 return OK;
8394}
8395
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00008396# if defined(FEAT_SYN_HL) || defined(PROTO)
8397
8398/*
8399 * Add "what" to 'eventignore' to skip loading syntax highlighting for every
8400 * buffer loaded into the window. "what" must start with a comma.
8401 * Returns the old value of 'eventignore' in allocated memory.
8402 */
8403 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008404au_event_disable(char *what)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00008405{
8406 char_u *new_ei;
8407 char_u *save_ei;
8408
8409 save_ei = vim_strsave(p_ei);
8410 if (save_ei != NULL)
8411 {
Bram Moolenaara5792f52005-11-23 21:25:05 +00008412 new_ei = vim_strnsave(p_ei, (int)(STRLEN(p_ei) + STRLEN(what)));
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00008413 if (new_ei != NULL)
8414 {
Bram Moolenaar8cac9fd2010-03-02 12:48:05 +01008415 if (*what == ',' && *p_ei == NUL)
8416 STRCPY(new_ei, what + 1);
8417 else
8418 STRCAT(new_ei, what);
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008419 set_string_option_direct((char_u *)"ei", -1, new_ei,
8420 OPT_FREE, SID_NONE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00008421 vim_free(new_ei);
8422 }
8423 }
8424 return save_ei;
8425}
8426
8427 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008428au_event_restore(char_u *old_ei)
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00008429{
8430 if (old_ei != NULL)
8431 {
Bram Moolenaar5e3cb7e2006-02-27 23:58:35 +00008432 set_string_option_direct((char_u *)"ei", -1, old_ei,
8433 OPT_FREE, SID_NONE);
Bram Moolenaardcaf10e2005-01-21 11:55:25 +00008434 vim_free(old_ei);
8435 }
8436}
8437# endif /* FEAT_SYN_HL */
8438
Bram Moolenaar071d4272004-06-13 20:20:40 +00008439/*
8440 * do_autocmd() -- implements the :autocmd command. Can be used in the
8441 * following ways:
8442 *
8443 * :autocmd <event> <pat> <cmd> Add <cmd> to the list of commands that
8444 * will be automatically executed for <event>
8445 * when editing a file matching <pat>, in
8446 * the current group.
Bram Moolenaar8c555332018-06-22 21:30:31 +02008447 * :autocmd <event> <pat> Show the autocommands associated with
Bram Moolenaar071d4272004-06-13 20:20:40 +00008448 * <event> and <pat>.
Bram Moolenaar8c555332018-06-22 21:30:31 +02008449 * :autocmd <event> Show the autocommands associated with
Bram Moolenaar071d4272004-06-13 20:20:40 +00008450 * <event>.
Bram Moolenaar8c555332018-06-22 21:30:31 +02008451 * :autocmd Show all autocommands.
8452 * :autocmd! <event> <pat> <cmd> Remove all autocommands associated with
Bram Moolenaar071d4272004-06-13 20:20:40 +00008453 * <event> and <pat>, and add the command
8454 * <cmd>, for the current group.
Bram Moolenaar8c555332018-06-22 21:30:31 +02008455 * :autocmd! <event> <pat> Remove all autocommands associated with
Bram Moolenaar071d4272004-06-13 20:20:40 +00008456 * <event> and <pat> for the current group.
Bram Moolenaar8c555332018-06-22 21:30:31 +02008457 * :autocmd! <event> Remove all autocommands associated with
Bram Moolenaar071d4272004-06-13 20:20:40 +00008458 * <event> for the current group.
Bram Moolenaar8c555332018-06-22 21:30:31 +02008459 * :autocmd! Remove ALL autocommands for the current
Bram Moolenaar071d4272004-06-13 20:20:40 +00008460 * group.
8461 *
8462 * Multiple events and patterns may be given separated by commas. Here are
8463 * some examples:
8464 * :autocmd bufread,bufenter *.c,*.h set tw=0 smartindent noic
8465 * :autocmd bufleave * set tw=79 nosmartindent ic infercase
8466 *
8467 * :autocmd * *.c show all autocommands for *.c files.
Bram Moolenaard35f9712005-12-18 22:02:33 +00008468 *
8469 * Mostly a {group} argument can optionally appear before <event>.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008470 */
8471 void
Bram Moolenaare99e8442016-07-26 20:43:40 +02008472do_autocmd(char_u *arg_in, int forceit)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008473{
Bram Moolenaare99e8442016-07-26 20:43:40 +02008474 char_u *arg = arg_in;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008475 char_u *pat;
8476 char_u *envpat = NULL;
8477 char_u *cmd;
Bram Moolenaar754b5602006-02-09 23:53:20 +00008478 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008479 int need_free = FALSE;
8480 int nested = FALSE;
8481 int group;
8482
Bram Moolenaare99e8442016-07-26 20:43:40 +02008483 if (*arg == '|')
8484 {
8485 arg = (char_u *)"";
8486 group = AUGROUP_ALL; /* no argument, use all groups */
8487 }
8488 else
8489 {
8490 /*
8491 * Check for a legal group name. If not, use AUGROUP_ALL.
8492 */
8493 group = au_get_grouparg(&arg);
8494 if (arg == NULL) /* out of memory */
8495 return;
8496 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008497
8498 /*
8499 * Scan over the events.
8500 * If we find an illegal name, return here, don't do anything.
8501 */
8502 pat = find_end_event(arg, group != AUGROUP_ALL);
8503 if (pat == NULL)
8504 return;
8505
Bram Moolenaar071d4272004-06-13 20:20:40 +00008506 pat = skipwhite(pat);
Bram Moolenaare99e8442016-07-26 20:43:40 +02008507 if (*pat == '|')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008508 {
Bram Moolenaare99e8442016-07-26 20:43:40 +02008509 pat = (char_u *)"";
8510 cmd = (char_u *)"";
Bram Moolenaar071d4272004-06-13 20:20:40 +00008511 }
Bram Moolenaare99e8442016-07-26 20:43:40 +02008512 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00008513 {
Bram Moolenaare99e8442016-07-26 20:43:40 +02008514 /*
8515 * Scan over the pattern. Put a NUL at the end.
8516 */
8517 cmd = pat;
Bram Moolenaar1c465442017-03-12 20:10:05 +01008518 while (*cmd && (!VIM_ISWHITE(*cmd) || cmd[-1] == '\\'))
Bram Moolenaare99e8442016-07-26 20:43:40 +02008519 cmd++;
8520 if (*cmd)
8521 *cmd++ = NUL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008522
Bram Moolenaare99e8442016-07-26 20:43:40 +02008523 /* Expand environment variables in the pattern. Set 'shellslash', we want
8524 * forward slashes here. */
8525 if (vim_strchr(pat, '$') != NULL || vim_strchr(pat, '~') != NULL)
8526 {
8527#ifdef BACKSLASH_IN_FILENAME
8528 int p_ssl_save = p_ssl;
8529
8530 p_ssl = TRUE;
8531#endif
8532 envpat = expand_env_save(pat);
8533#ifdef BACKSLASH_IN_FILENAME
8534 p_ssl = p_ssl_save;
8535#endif
8536 if (envpat != NULL)
8537 pat = envpat;
8538 }
8539
8540 /*
8541 * Check for "nested" flag.
8542 */
8543 cmd = skipwhite(cmd);
Bram Moolenaar1c465442017-03-12 20:10:05 +01008544 if (*cmd != NUL && STRNCMP(cmd, "nested", 6) == 0 && VIM_ISWHITE(cmd[6]))
Bram Moolenaare99e8442016-07-26 20:43:40 +02008545 {
8546 nested = TRUE;
8547 cmd = skipwhite(cmd + 6);
8548 }
8549
8550 /*
8551 * Find the start of the commands.
8552 * Expand <sfile> in it.
8553 */
8554 if (*cmd != NUL)
8555 {
8556 cmd = expand_sfile(cmd);
8557 if (cmd == NULL) /* some error */
8558 return;
8559 need_free = TRUE;
8560 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008561 }
8562
8563 /*
8564 * Print header when showing autocommands.
8565 */
8566 if (!forceit && *cmd == NUL)
8567 {
8568 /* Highlight title */
Bram Moolenaar8c555332018-06-22 21:30:31 +02008569 MSG_PUTS_TITLE(_("\n--- Autocommands ---"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00008570 }
8571
8572 /*
8573 * Loop over the events.
8574 */
Bram Moolenaar754b5602006-02-09 23:53:20 +00008575 last_event = (event_T)-1; /* for listing the event name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008576 last_group = AUGROUP_ERROR; /* for listing the group name */
Bram Moolenaare99e8442016-07-26 20:43:40 +02008577 if (*arg == '*' || *arg == NUL || *arg == '|')
Bram Moolenaar071d4272004-06-13 20:20:40 +00008578 {
Bram Moolenaar754b5602006-02-09 23:53:20 +00008579 for (event = (event_T)0; (int)event < (int)NUM_EVENTS;
8580 event = (event_T)((int)event + 1))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008581 if (do_autocmd_event(event, pat,
8582 nested, cmd, forceit, group) == FAIL)
8583 break;
8584 }
8585 else
8586 {
Bram Moolenaar1c465442017-03-12 20:10:05 +01008587 while (*arg && *arg != '|' && !VIM_ISWHITE(*arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008588 if (do_autocmd_event(event_name2nr(arg, &arg), pat,
8589 nested, cmd, forceit, group) == FAIL)
8590 break;
8591 }
8592
8593 if (need_free)
8594 vim_free(cmd);
8595 vim_free(envpat);
8596}
8597
8598/*
8599 * Find the group ID in a ":autocmd" or ":doautocmd" argument.
8600 * The "argp" argument is advanced to the following argument.
8601 *
8602 * Returns the group ID, AUGROUP_ERROR for error (out of memory).
8603 */
8604 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008605au_get_grouparg(char_u **argp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008606{
8607 char_u *group_name;
8608 char_u *p;
8609 char_u *arg = *argp;
8610 int group = AUGROUP_ALL;
8611
Bram Moolenaar1c465442017-03-12 20:10:05 +01008612 for (p = arg; *p && !VIM_ISWHITE(*p) && *p != '|'; ++p)
Bram Moolenaare99e8442016-07-26 20:43:40 +02008613 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008614 if (p > arg)
8615 {
8616 group_name = vim_strnsave(arg, (int)(p - arg));
8617 if (group_name == NULL) /* out of memory */
8618 return AUGROUP_ERROR;
8619 group = au_find_group(group_name);
8620 if (group == AUGROUP_ERROR)
8621 group = AUGROUP_ALL; /* no match, use all groups */
8622 else
8623 *argp = skipwhite(p); /* match, skip over group name */
8624 vim_free(group_name);
8625 }
8626 return group;
8627}
8628
8629/*
8630 * do_autocmd() for one event.
8631 * If *pat == NUL do for all patterns.
8632 * If *cmd == NUL show entries.
8633 * If forceit == TRUE delete entries.
8634 * If group is not AUGROUP_ALL, only use this group.
8635 */
8636 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008637do_autocmd_event(
8638 event_T event,
8639 char_u *pat,
8640 int nested,
8641 char_u *cmd,
8642 int forceit,
8643 int group)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008644{
8645 AutoPat *ap;
8646 AutoPat **prev_ap;
8647 AutoCmd *ac;
8648 AutoCmd **prev_ac;
8649 int brace_level;
8650 char_u *endpat;
8651 int findgroup;
8652 int allgroups;
8653 int patlen;
Bram Moolenaarc9b4b052006-04-30 18:54:39 +00008654 int is_buflocal;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008655 int buflocal_nr;
8656 char_u buflocal_pat[25]; /* for "<buffer=X>" */
Bram Moolenaar071d4272004-06-13 20:20:40 +00008657
8658 if (group == AUGROUP_ALL)
8659 findgroup = current_augroup;
8660 else
8661 findgroup = group;
8662 allgroups = (group == AUGROUP_ALL && !forceit && *cmd == NUL);
8663
8664 /*
8665 * Show or delete all patterns for an event.
8666 */
8667 if (*pat == NUL)
8668 {
8669 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
8670 {
8671 if (forceit) /* delete the AutoPat, if it's in the current group */
8672 {
8673 if (ap->group == findgroup)
8674 au_remove_pat(ap);
8675 }
8676 else if (group == AUGROUP_ALL || ap->group == group)
8677 show_autocmd(ap, event);
8678 }
8679 }
8680
8681 /*
8682 * Loop through all the specified patterns.
8683 */
8684 for ( ; *pat; pat = (*endpat == ',' ? endpat + 1 : endpat))
8685 {
8686 /*
8687 * Find end of the pattern.
8688 * Watch out for a comma in braces, like "*.\{obj,o\}".
8689 */
8690 brace_level = 0;
8691 for (endpat = pat; *endpat && (*endpat != ',' || brace_level
Bram Moolenaar6b9be1b2015-07-28 13:33:45 +02008692 || (endpat > pat && endpat[-1] == '\\')); ++endpat)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008693 {
8694 if (*endpat == '{')
8695 brace_level++;
8696 else if (*endpat == '}')
8697 brace_level--;
8698 }
8699 if (pat == endpat) /* ignore single comma */
8700 continue;
8701 patlen = (int)(endpat - pat);
8702
8703 /*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008704 * detect special <buflocal[=X]> buffer-local patterns
8705 */
8706 is_buflocal = FALSE;
8707 buflocal_nr = 0;
8708
Bram Moolenaar1e997822015-02-17 16:04:57 +01008709 if (patlen >= 8 && STRNCMP(pat, "<buffer", 7) == 0
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008710 && pat[patlen - 1] == '>')
8711 {
Bram Moolenaar1e997822015-02-17 16:04:57 +01008712 /* "<buffer...>": Error will be printed only for addition.
8713 * printing and removing will proceed silently. */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008714 is_buflocal = TRUE;
8715 if (patlen == 8)
Bram Moolenaar1e997822015-02-17 16:04:57 +01008716 /* "<buffer>" */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008717 buflocal_nr = curbuf->b_fnum;
8718 else if (patlen > 9 && pat[7] == '=')
8719 {
Bram Moolenaar1e997822015-02-17 16:04:57 +01008720 if (patlen == 13 && STRNICMP(pat, "<buffer=abuf>", 13) == 0)
8721 /* "<buffer=abuf>" */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008722 buflocal_nr = autocmd_bufnr;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008723 else if (skipdigits(pat + 8) == pat + patlen - 1)
Bram Moolenaar1e997822015-02-17 16:04:57 +01008724 /* "<buffer=123>" */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008725 buflocal_nr = atoi((char *)pat + 8);
8726 }
8727 }
8728
8729 if (is_buflocal)
8730 {
8731 /* normalize pat into standard "<buffer>#N" form */
8732 sprintf((char *)buflocal_pat, "<buffer=%d>", buflocal_nr);
8733 pat = buflocal_pat; /* can modify pat and patlen */
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00008734 patlen = (int)STRLEN(buflocal_pat); /* but not endpat */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008735 }
8736
8737 /*
Bram Moolenaar462455e2017-11-10 21:53:11 +01008738 * Find AutoPat entries with this pattern. When adding a command it
8739 * always goes at or after the last one, so start at the end.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008740 */
Bram Moolenaar462455e2017-11-10 21:53:11 +01008741 if (!forceit && *cmd != NUL && last_autopat[(int)event] != NULL)
8742 prev_ap = &last_autopat[(int)event];
8743 else
8744 prev_ap = &first_autopat[(int)event];
Bram Moolenaar071d4272004-06-13 20:20:40 +00008745 while ((ap = *prev_ap) != NULL)
8746 {
8747 if (ap->pat != NULL)
8748 {
8749 /* Accept a pattern when:
8750 * - a group was specified and it's that group, or a group was
8751 * not specified and it's the current group, or a group was
8752 * not specified and we are listing
8753 * - the length of the pattern matches
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008754 * - the pattern matches.
8755 * For <buffer[=X]>, this condition works because we normalize
8756 * all buffer-local patterns.
Bram Moolenaar071d4272004-06-13 20:20:40 +00008757 */
8758 if ((allgroups || ap->group == findgroup)
8759 && ap->patlen == patlen
8760 && STRNCMP(pat, ap->pat, patlen) == 0)
8761 {
8762 /*
8763 * Remove existing autocommands.
8764 * If adding any new autocmd's for this AutoPat, don't
8765 * delete the pattern from the autopat list, append to
8766 * this list.
8767 */
8768 if (forceit)
8769 {
8770 if (*cmd != NUL && ap->next == NULL)
8771 {
8772 au_remove_cmds(ap);
8773 break;
8774 }
8775 au_remove_pat(ap);
8776 }
8777
8778 /*
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008779 * Show autocmd's for this autopat, or buflocals <buffer=X>
Bram Moolenaar071d4272004-06-13 20:20:40 +00008780 */
8781 else if (*cmd == NUL)
8782 show_autocmd(ap, event);
8783
8784 /*
8785 * Add autocmd to this autopat, if it's the last one.
8786 */
8787 else if (ap->next == NULL)
8788 break;
8789 }
8790 }
8791 prev_ap = &ap->next;
8792 }
8793
8794 /*
8795 * Add a new command.
8796 */
8797 if (*cmd != NUL)
8798 {
8799 /*
8800 * If the pattern we want to add a command to does appear at the
8801 * end of the list (or not is not in the list at all), add the
8802 * pattern at the end of the list.
8803 */
8804 if (ap == NULL)
8805 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008806 /* refuse to add buffer-local ap if buffer number is invalid */
8807 if (is_buflocal && (buflocal_nr == 0
8808 || buflist_findnr(buflocal_nr) == NULL))
8809 {
8810 EMSGN(_("E680: <buffer=%d>: invalid buffer number "),
8811 buflocal_nr);
8812 return FAIL;
8813 }
8814
Bram Moolenaar071d4272004-06-13 20:20:40 +00008815 ap = (AutoPat *)alloc((unsigned)sizeof(AutoPat));
8816 if (ap == NULL)
8817 return FAIL;
8818 ap->pat = vim_strnsave(pat, patlen);
8819 ap->patlen = patlen;
8820 if (ap->pat == NULL)
8821 {
8822 vim_free(ap);
8823 return FAIL;
8824 }
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008825
8826 if (is_buflocal)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008827 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008828 ap->buflocal_nr = buflocal_nr;
Bram Moolenaar748bf032005-02-02 23:04:36 +00008829 ap->reg_prog = NULL;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008830 }
8831 else
8832 {
Bram Moolenaar748bf032005-02-02 23:04:36 +00008833 char_u *reg_pat;
8834
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008835 ap->buflocal_nr = 0;
Bram Moolenaar748bf032005-02-02 23:04:36 +00008836 reg_pat = file_pat_to_reg_pat(pat, endpat,
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008837 &ap->allow_dirs, TRUE);
Bram Moolenaar748bf032005-02-02 23:04:36 +00008838 if (reg_pat != NULL)
8839 ap->reg_prog = vim_regcomp(reg_pat, RE_MAGIC);
Bram Moolenaar0a5fe212005-06-24 23:01:23 +00008840 vim_free(reg_pat);
Bram Moolenaar748bf032005-02-02 23:04:36 +00008841 if (reg_pat == NULL || ap->reg_prog == NULL)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00008842 {
8843 vim_free(ap->pat);
8844 vim_free(ap);
8845 return FAIL;
8846 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008847 }
8848 ap->cmds = NULL;
8849 *prev_ap = ap;
Bram Moolenaar462455e2017-11-10 21:53:11 +01008850 last_autopat[(int)event] = ap;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008851 ap->next = NULL;
8852 if (group == AUGROUP_ALL)
8853 ap->group = current_augroup;
8854 else
8855 ap->group = group;
8856 }
8857
8858 /*
8859 * Add the autocmd at the end of the AutoCmd list.
8860 */
8861 prev_ac = &(ap->cmds);
8862 while ((ac = *prev_ac) != NULL)
8863 prev_ac = &ac->next;
8864 ac = (AutoCmd *)alloc((unsigned)sizeof(AutoCmd));
8865 if (ac == NULL)
8866 return FAIL;
8867 ac->cmd = vim_strsave(cmd);
8868#ifdef FEAT_EVAL
8869 ac->scriptID = current_SID;
8870#endif
8871 if (ac->cmd == NULL)
8872 {
8873 vim_free(ac);
8874 return FAIL;
8875 }
8876 ac->next = NULL;
8877 *prev_ac = ac;
8878 ac->nested = nested;
8879 }
8880 }
8881
8882 au_cleanup(); /* may really delete removed patterns/commands now */
8883 return OK;
8884}
8885
8886/*
8887 * Implementation of ":doautocmd [group] event [fname]".
8888 * Return OK for success, FAIL for failure;
8889 */
8890 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008891do_doautocmd(
8892 char_u *arg,
Bram Moolenaar1610d052016-06-09 22:53:01 +02008893 int do_msg, /* give message for no matching autocmds? */
8894 int *did_something)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008895{
8896 char_u *fname;
8897 int nothing_done = TRUE;
8898 int group;
8899
Bram Moolenaar1610d052016-06-09 22:53:01 +02008900 if (did_something != NULL)
Bram Moolenaar76ae22f2016-06-13 20:00:29 +02008901 *did_something = FALSE;
Bram Moolenaar1610d052016-06-09 22:53:01 +02008902
Bram Moolenaar071d4272004-06-13 20:20:40 +00008903 /*
8904 * Check for a legal group name. If not, use AUGROUP_ALL.
8905 */
8906 group = au_get_grouparg(&arg);
8907 if (arg == NULL) /* out of memory */
8908 return FAIL;
8909
8910 if (*arg == '*')
8911 {
8912 EMSG(_("E217: Can't execute autocommands for ALL events"));
8913 return FAIL;
8914 }
8915
8916 /*
8917 * Scan over the events.
8918 * If we find an illegal name, return here, don't do anything.
8919 */
8920 fname = find_end_event(arg, group != AUGROUP_ALL);
8921 if (fname == NULL)
8922 return FAIL;
8923
8924 fname = skipwhite(fname);
8925
8926 /*
8927 * Loop over the events.
8928 */
Bram Moolenaarfaf29d72017-07-09 11:07:16 +02008929 while (*arg && !ends_excmd(*arg) && !VIM_ISWHITE(*arg))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008930 if (apply_autocmds_group(event_name2nr(arg, &arg),
8931 fname, NULL, TRUE, group, curbuf, NULL))
8932 nothing_done = FALSE;
8933
8934 if (nothing_done && do_msg)
8935 MSG(_("No matching autocommands"));
Bram Moolenaar1610d052016-06-09 22:53:01 +02008936 if (did_something != NULL)
8937 *did_something = !nothing_done;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008938
8939#ifdef FEAT_EVAL
8940 return aborting() ? FAIL : OK;
8941#else
8942 return OK;
8943#endif
8944}
8945
8946/*
8947 * ":doautoall": execute autocommands for each loaded buffer.
8948 */
8949 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01008950ex_doautoall(exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008951{
8952 int retval;
8953 aco_save_T aco;
8954 buf_T *buf;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02008955 bufref_T bufref;
Bram Moolenaara61d5fb2012-02-12 00:18:58 +01008956 char_u *arg = eap->arg;
Bram Moolenaar60542ac2012-02-12 20:14:01 +01008957 int call_do_modelines = check_nomodeline(&arg);
Bram Moolenaar1610d052016-06-09 22:53:01 +02008958 int did_aucmd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00008959
8960 /*
8961 * This is a bit tricky: For some commands curwin->w_buffer needs to be
8962 * equal to curbuf, but for some buffers there may not be a window.
8963 * So we change the buffer for the current window for a moment. This
8964 * gives problems when the autocommands make changes to the list of
8965 * buffers or windows...
8966 */
Bram Moolenaar29323592016-07-24 22:04:11 +02008967 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008968 {
Bram Moolenaar3a847972008-07-08 09:36:58 +00008969 if (buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00008970 {
8971 /* find a window for this buffer and save some values */
8972 aucmd_prepbuf(&aco, buf);
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02008973 set_bufref(&bufref, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00008974
8975 /* execute the autocommands for this buffer */
Bram Moolenaar1610d052016-06-09 22:53:01 +02008976 retval = do_doautocmd(arg, FALSE, &did_aucmd);
Bram Moolenaareeefcc72007-05-01 21:21:21 +00008977
Bram Moolenaar1610d052016-06-09 22:53:01 +02008978 if (call_do_modelines && did_aucmd)
Bram Moolenaara61d5fb2012-02-12 00:18:58 +01008979 {
8980 /* Execute the modeline settings, but don't set window-local
8981 * options if we are using the current window for another
8982 * buffer. */
8983 do_modelines(curwin == aucmd_win ? OPT_NOWIN : 0);
8984 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00008985
8986 /* restore the current window */
8987 aucmd_restbuf(&aco);
8988
8989 /* stop if there is some error or buffer was deleted */
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02008990 if (retval == FAIL || !bufref_valid(&bufref))
Bram Moolenaar071d4272004-06-13 20:20:40 +00008991 break;
8992 }
8993 }
8994
8995 check_cursor(); /* just in case lines got deleted */
8996}
8997
8998/*
Bram Moolenaar60542ac2012-02-12 20:14:01 +01008999 * Check *argp for <nomodeline>. When it is present return FALSE, otherwise
9000 * return TRUE and advance *argp to after it.
9001 * Thus return TRUE when do_modelines() should be called.
9002 */
9003 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009004check_nomodeline(char_u **argp)
Bram Moolenaar60542ac2012-02-12 20:14:01 +01009005{
9006 if (STRNCMP(*argp, "<nomodeline>", 12) == 0)
9007 {
9008 *argp = skipwhite(*argp + 12);
9009 return FALSE;
9010 }
9011 return TRUE;
9012}
9013
9014/*
Bram Moolenaar071d4272004-06-13 20:20:40 +00009015 * Prepare for executing autocommands for (hidden) buffer "buf".
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009016 * Search for a visible window containing the current buffer. If there isn't
9017 * one then use "aucmd_win".
Bram Moolenaar071d4272004-06-13 20:20:40 +00009018 * Set "curbuf" and "curwin" to match "buf".
9019 */
9020 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009021aucmd_prepbuf(
9022 aco_save_T *aco, /* structure to save values in */
9023 buf_T *buf) /* new curbuf */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009024{
9025 win_T *win;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009026 int save_ea;
Bram Moolenaar01c458e2013-08-05 22:02:20 +02009027#ifdef FEAT_AUTOCHDIR
Bram Moolenaar4008f4f2013-08-02 17:08:13 +02009028 int save_acd;
Bram Moolenaar01c458e2013-08-05 22:02:20 +02009029#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009030
9031 /* Find a window that is for the new buffer */
9032 if (buf == curbuf) /* be quick when buf is curbuf */
9033 win = curwin;
9034 else
Bram Moolenaar29323592016-07-24 22:04:11 +02009035 FOR_ALL_WINDOWS(win)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009036 if (win->w_buffer == buf)
9037 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009038
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009039 /* Allocate "aucmd_win" when needed. If this fails (out of memory) fall
9040 * back to using the current window. */
9041 if (win == NULL && aucmd_win == NULL)
9042 {
9043 win_alloc_aucmd_win();
9044 if (aucmd_win == NULL)
9045 win = curwin;
9046 }
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00009047 if (win == NULL && aucmd_win_used)
9048 /* Strange recursive autocommand, fall back to using the current
9049 * window. Expect a few side effects... */
9050 win = curwin;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009051
9052 aco->save_curwin = curwin;
9053 aco->save_curbuf = curbuf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009054 if (win != NULL)
9055 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009056 /* There is a window for "buf" in the current tab page, make it the
9057 * curwin. This is preferred, it has the least side effects (esp. if
9058 * "buf" is curbuf). */
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00009059 aco->use_aucmd_win = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009060 curwin = win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009061 }
9062 else
9063 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009064 /* There is no window for "buf", use "aucmd_win". To minimize the side
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02009065 * effects, insert it in the current tab page.
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009066 * Anything related to a window (e.g., setting folds) may have
9067 * unexpected results. */
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00009068 aco->use_aucmd_win = TRUE;
9069 aucmd_win_used = TRUE;
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00009070 aucmd_win->w_buffer = buf;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01009071#if defined(FEAT_SYN_HL) || defined(FEAT_SPELL)
Bram Moolenaarcdddaa42010-06-07 23:07:44 +02009072 aucmd_win->w_s = &buf->b_s;
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01009073#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009074 ++buf->b_nwindows;
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00009075 win_init_empty(aucmd_win); /* set cursor and topline to safe values */
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00009076
9077 /* Make sure w_localdir and globaldir are NULL to avoid a chdir() in
9078 * win_enter_ext(). */
Bram Moolenaard23a8232018-02-10 18:45:26 +01009079 VIM_CLEAR(aucmd_win->w_localdir);
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00009080 aco->globaldir = globaldir;
9081 globaldir = NULL;
9082
Bram Moolenaar071d4272004-06-13 20:20:40 +00009083
Bram Moolenaar2bc76e62009-07-01 15:13:56 +00009084 /* Split the current window, put the aucmd_win in the upper half.
9085 * We don't want the BufEnter or WinEnter autocommands. */
9086 block_autocmds();
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009087 make_snapshot(SNAP_AUCMD_IDX);
9088 save_ea = p_ea;
9089 p_ea = FALSE;
Bram Moolenaar4008f4f2013-08-02 17:08:13 +02009090
Bram Moolenaar4033c552017-09-16 20:54:51 +02009091#ifdef FEAT_AUTOCHDIR
Bram Moolenaar4008f4f2013-08-02 17:08:13 +02009092 /* Prevent chdir() call in win_enter_ext(), through do_autochdir(). */
9093 save_acd = p_acd;
9094 p_acd = FALSE;
Bram Moolenaar4033c552017-09-16 20:54:51 +02009095#endif
Bram Moolenaar4008f4f2013-08-02 17:08:13 +02009096
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009097 (void)win_split_ins(0, WSP_TOP, aucmd_win, 0);
9098 (void)win_comp_pos(); /* recompute window positions */
9099 p_ea = save_ea;
Bram Moolenaar4033c552017-09-16 20:54:51 +02009100#ifdef FEAT_AUTOCHDIR
Bram Moolenaar4008f4f2013-08-02 17:08:13 +02009101 p_acd = save_acd;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009102#endif
Bram Moolenaar4033c552017-09-16 20:54:51 +02009103 unblock_autocmds();
Bram Moolenaarf061e0b2009-06-24 15:32:01 +00009104 curwin = aucmd_win;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009105 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009106 curbuf = buf;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009107 aco->new_curwin = curwin;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02009108 set_bufref(&aco->new_curbuf, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009109}
9110
9111/*
9112 * Cleanup after executing autocommands for a (hidden) buffer.
9113 * Restore the window as it was (if possible).
9114 */
9115 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009116aucmd_restbuf(
9117 aco_save_T *aco) /* structure holding saved values */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009118{
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009119 int dummy;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009120
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00009121 if (aco->use_aucmd_win)
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009122 {
9123 --curbuf->b_nwindows;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009124 /* Find "aucmd_win", it can't be closed, but it may be in another tab
Bram Moolenaar2bc76e62009-07-01 15:13:56 +00009125 * page. Do not trigger autocommands here. */
9126 block_autocmds();
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009127 if (curwin != aucmd_win)
9128 {
9129 tabpage_T *tp;
9130 win_T *wp;
9131
9132 FOR_ALL_TAB_WINDOWS(tp, wp)
9133 {
9134 if (wp == aucmd_win)
9135 {
9136 if (tp != curtab)
Bram Moolenaar49e649f2013-05-06 04:50:35 +02009137 goto_tabpage_tp(tp, TRUE, TRUE);
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009138 win_goto(aucmd_win);
Bram Moolenaar28f29082012-02-11 23:45:37 +01009139 goto win_found;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009140 }
9141 }
9142 }
Bram Moolenaar28f29082012-02-11 23:45:37 +01009143win_found:
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009144
9145 /* Remove the window and frame from the tree of frames. */
9146 (void)winframe_remove(curwin, &dummy, NULL);
9147 win_remove(curwin, NULL);
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00009148 aucmd_win_used = FALSE;
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009149 last_status(FALSE); /* may need to remove last status line */
Bram Moolenaar8c752bd2017-03-19 17:09:56 +01009150
9151 if (!valid_tabpage_win(curtab))
9152 /* no valid window in current tabpage */
9153 close_tabpage(curtab);
9154
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009155 restore_snapshot(SNAP_AUCMD_IDX, FALSE);
9156 (void)win_comp_pos(); /* recompute window positions */
Bram Moolenaar2bc76e62009-07-01 15:13:56 +00009157 unblock_autocmds();
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009158
9159 if (win_valid(aco->save_curwin))
9160 curwin = aco->save_curwin;
9161 else
9162 /* Hmm, original window disappeared. Just use the first one. */
9163 curwin = firstwin;
Bram Moolenaar4033c552017-09-16 20:54:51 +02009164#ifdef FEAT_EVAL
Bram Moolenaar429fa852013-04-15 12:27:36 +02009165 vars_clear(&aucmd_win->w_vars->dv_hashtab); /* free all w: variables */
9166 hash_init(&aucmd_win->w_vars->dv_hashtab); /* re-use the hashtab */
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009167#endif
9168 curbuf = curwin->w_buffer;
9169
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00009170 vim_free(globaldir);
9171 globaldir = aco->globaldir;
9172
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009173 /* the buffer contents may have changed */
9174 check_cursor();
9175 if (curwin->w_topline > curbuf->b_ml.ml_line_count)
9176 {
9177 curwin->w_topline = curbuf->b_ml.ml_line_count;
9178#ifdef FEAT_DIFF
9179 curwin->w_topfill = 0;
9180#endif
9181 }
9182#if defined(FEAT_GUI)
9183 /* Hide the scrollbars from the aucmd_win and update. */
9184 gui_mch_enable_scrollbar(&aucmd_win->w_scrollbars[SBAR_LEFT], FALSE);
9185 gui_mch_enable_scrollbar(&aucmd_win->w_scrollbars[SBAR_RIGHT], FALSE);
9186 gui_may_update_scrollbars();
9187#endif
9188 }
9189 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00009190 {
9191 /* restore curwin */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009192 if (win_valid(aco->save_curwin))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009193 {
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009194 /* Restore the buffer which was previously edited by curwin, if
Bram Moolenaar6bef63c2009-07-29 10:10:29 +00009195 * it was changed, we are still the same window and the buffer is
Bram Moolenaar746ebd32009-06-16 14:01:43 +00009196 * valid. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009197 if (curwin == aco->new_curwin
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02009198 && curbuf != aco->new_curbuf.br_buf
9199 && bufref_valid(&aco->new_curbuf)
9200 && aco->new_curbuf.br_buf->b_ml.ml_mfp != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009201 {
Bram Moolenaar7da9c372012-04-30 17:04:52 +02009202# if defined(FEAT_SYN_HL) || defined(FEAT_SPELL)
9203 if (curwin->w_s == &curbuf->b_s)
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02009204 curwin->w_s = &aco->new_curbuf.br_buf->b_s;
Bram Moolenaar7da9c372012-04-30 17:04:52 +02009205# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009206 --curbuf->b_nwindows;
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02009207 curbuf = aco->new_curbuf.br_buf;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009208 curwin->w_buffer = curbuf;
9209 ++curbuf->b_nwindows;
9210 }
9211
9212 curwin = aco->save_curwin;
9213 curbuf = curwin->w_buffer;
Bram Moolenaar371932a2014-09-09 16:59:38 +02009214 /* In case the autocommand move the cursor to a position that that
9215 * not exist in curbuf. */
9216 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009217 }
9218 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009219}
9220
9221static int autocmd_nested = FALSE;
9222
9223/*
9224 * Execute autocommands for "event" and file name "fname".
9225 * Return TRUE if some commands were executed.
9226 */
9227 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009228apply_autocmds(
9229 event_T event,
9230 char_u *fname, /* NULL or empty means use actual file name */
9231 char_u *fname_io, /* fname to use for <afile> on cmdline */
9232 int force, /* when TRUE, ignore autocmd_busy */
9233 buf_T *buf) /* buffer for <abuf> */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009234{
9235 return apply_autocmds_group(event, fname, fname_io, force,
9236 AUGROUP_ALL, buf, NULL);
9237}
9238
9239/*
9240 * Like apply_autocmds(), but with extra "eap" argument. This takes care of
9241 * setting v:filearg.
9242 */
9243 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009244apply_autocmds_exarg(
9245 event_T event,
9246 char_u *fname,
9247 char_u *fname_io,
9248 int force,
9249 buf_T *buf,
9250 exarg_T *eap)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009251{
9252 return apply_autocmds_group(event, fname, fname_io, force,
9253 AUGROUP_ALL, buf, eap);
9254}
9255
9256/*
9257 * Like apply_autocmds(), but handles the caller's retval. If the script
9258 * processing is being aborted or if retval is FAIL when inside a try
9259 * conditional, no autocommands are executed. If otherwise the autocommands
9260 * cause the script to be aborted, retval is set to FAIL.
9261 */
9262 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009263apply_autocmds_retval(
9264 event_T event,
9265 char_u *fname, /* NULL or empty means use actual file name */
9266 char_u *fname_io, /* fname to use for <afile> on cmdline */
9267 int force, /* when TRUE, ignore autocmd_busy */
9268 buf_T *buf, /* buffer for <abuf> */
9269 int *retval) /* pointer to caller's retval */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009270{
9271 int did_cmd;
9272
Bram Moolenaar1e015462005-09-25 22:16:38 +00009273#ifdef FEAT_EVAL
Bram Moolenaar071d4272004-06-13 20:20:40 +00009274 if (should_abort(*retval))
9275 return FALSE;
Bram Moolenaar1e015462005-09-25 22:16:38 +00009276#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009277
9278 did_cmd = apply_autocmds_group(event, fname, fname_io, force,
9279 AUGROUP_ALL, buf, NULL);
Bram Moolenaar1e015462005-09-25 22:16:38 +00009280 if (did_cmd
9281#ifdef FEAT_EVAL
9282 && aborting()
9283#endif
9284 )
Bram Moolenaar071d4272004-06-13 20:20:40 +00009285 *retval = FAIL;
9286 return did_cmd;
9287}
9288
Bram Moolenaard35f9712005-12-18 22:02:33 +00009289/*
9290 * Return TRUE when there is a CursorHold autocommand defined.
9291 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009292 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009293has_cursorhold(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009294{
Bram Moolenaar754b5602006-02-09 23:53:20 +00009295 return (first_autopat[(int)(get_real_state() == NORMAL_BUSY
9296 ? EVENT_CURSORHOLD : EVENT_CURSORHOLDI)] != NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009297}
Bram Moolenaard35f9712005-12-18 22:02:33 +00009298
9299/*
9300 * Return TRUE if the CursorHold event can be triggered.
9301 */
9302 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009303trigger_cursorhold(void)
Bram Moolenaard35f9712005-12-18 22:02:33 +00009304{
Bram Moolenaar754b5602006-02-09 23:53:20 +00009305 int state;
9306
Bram Moolenaar05334432011-07-20 18:29:39 +02009307 if (!did_cursorhold
9308 && has_cursorhold()
Bram Moolenaar0b6d9112018-05-22 20:35:17 +02009309 && reg_recording == 0
Bram Moolenaar05334432011-07-20 18:29:39 +02009310 && typebuf.tb_len == 0
Bram Moolenaard29a9ee2006-09-14 09:07:34 +00009311#ifdef FEAT_INS_EXPAND
9312 && !ins_compl_active()
9313#endif
9314 )
Bram Moolenaar754b5602006-02-09 23:53:20 +00009315 {
9316 state = get_real_state();
9317 if (state == NORMAL_BUSY || (state & INSERT) != 0)
9318 return TRUE;
9319 }
9320 return FALSE;
Bram Moolenaard35f9712005-12-18 22:02:33 +00009321}
Bram Moolenaar754b5602006-02-09 23:53:20 +00009322
9323/*
9324 * Return TRUE when there is a CursorMoved autocommand defined.
9325 */
9326 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009327has_cursormoved(void)
Bram Moolenaar754b5602006-02-09 23:53:20 +00009328{
9329 return (first_autopat[(int)EVENT_CURSORMOVED] != NULL);
9330}
9331
9332/*
9333 * Return TRUE when there is a CursorMovedI autocommand defined.
9334 */
9335 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009336has_cursormovedI(void)
Bram Moolenaar754b5602006-02-09 23:53:20 +00009337{
9338 return (first_autopat[(int)EVENT_CURSORMOVEDI] != NULL);
9339}
Bram Moolenaar071d4272004-06-13 20:20:40 +00009340
Bram Moolenaarf5876f12012-02-29 18:22:08 +01009341/*
Bram Moolenaar186628f2013-03-19 13:33:23 +01009342 * Return TRUE when there is a TextChanged autocommand defined.
9343 */
9344 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009345has_textchanged(void)
Bram Moolenaar186628f2013-03-19 13:33:23 +01009346{
9347 return (first_autopat[(int)EVENT_TEXTCHANGED] != NULL);
9348}
9349
9350/*
9351 * Return TRUE when there is a TextChangedI autocommand defined.
9352 */
9353 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009354has_textchangedI(void)
Bram Moolenaar186628f2013-03-19 13:33:23 +01009355{
9356 return (first_autopat[(int)EVENT_TEXTCHANGEDI] != NULL);
9357}
9358
9359/*
Bram Moolenaar5a093432018-02-10 18:15:19 +01009360 * Return TRUE when there is a TextChangedP autocommand defined.
9361 */
9362 int
9363has_textchangedP(void)
9364{
9365 return (first_autopat[(int)EVENT_TEXTCHANGEDP] != NULL);
9366}
9367
9368/*
Bram Moolenaarf5876f12012-02-29 18:22:08 +01009369 * Return TRUE when there is an InsertCharPre autocommand defined.
9370 */
9371 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009372has_insertcharpre(void)
Bram Moolenaarf5876f12012-02-29 18:22:08 +01009373{
9374 return (first_autopat[(int)EVENT_INSERTCHARPRE] != NULL);
9375}
9376
Bram Moolenaard5005162014-08-22 23:05:54 +02009377/*
9378 * Return TRUE when there is an CmdUndefined autocommand defined.
9379 */
9380 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009381has_cmdundefined(void)
Bram Moolenaard5005162014-08-22 23:05:54 +02009382{
9383 return (first_autopat[(int)EVENT_CMDUNDEFINED] != NULL);
9384}
9385
9386/*
9387 * Return TRUE when there is an FuncUndefined autocommand defined.
9388 */
9389 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009390has_funcundefined(void)
Bram Moolenaard5005162014-08-22 23:05:54 +02009391{
9392 return (first_autopat[(int)EVENT_FUNCUNDEFINED] != NULL);
9393}
9394
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02009395/*
Bram Moolenaar7e1652c2017-12-16 18:27:02 +01009396 * Return TRUE when there is a TextYankPost autocommand defined.
9397 */
9398 int
9399has_textyankpost(void)
9400{
9401 return (first_autopat[(int)EVENT_TEXTYANKPOST] != NULL);
9402}
9403
9404/*
Bram Moolenaar7c0a2f32016-07-10 22:11:16 +02009405 * Execute autocommands for "event" and file name "fname".
9406 * Return TRUE if some commands were executed.
9407 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009408 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009409apply_autocmds_group(
9410 event_T event,
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01009411 char_u *fname, /* NULL or empty means use actual file name */
9412 char_u *fname_io, /* fname to use for <afile> on cmdline, NULL means
Bram Moolenaar071d4272004-06-13 20:20:40 +00009413 use fname */
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01009414 int force, /* when TRUE, ignore autocmd_busy */
9415 int group, /* group ID, or AUGROUP_ALL */
9416 buf_T *buf, /* buffer for <abuf> */
9417 exarg_T *eap UNUSED) /* command arguments */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009418{
9419 char_u *sfname = NULL; /* short file name */
9420 char_u *tail;
9421 int save_changed;
9422 buf_T *old_curbuf;
9423 int retval = FALSE;
9424 char_u *save_sourcing_name;
9425 linenr_T save_sourcing_lnum;
9426 char_u *save_autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009427 int save_autocmd_fname_full;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009428 int save_autocmd_bufnr;
9429 char_u *save_autocmd_match;
9430 int save_autocmd_busy;
9431 int save_autocmd_nested;
9432 static int nesting = 0;
9433 AutoPatCmd patcmd;
9434 AutoPat *ap;
9435#ifdef FEAT_EVAL
9436 scid_T save_current_SID;
9437 void *save_funccalp;
9438 char_u *save_cmdarg;
9439 long save_cmdbang;
9440#endif
9441 static int filechangeshell_busy = FALSE;
Bram Moolenaar05159a02005-02-26 23:04:13 +00009442#ifdef FEAT_PROFILE
9443 proftime_T wait_time;
9444#endif
Bram Moolenaarc51b02d2015-02-17 10:58:25 +01009445 int did_save_redobuff = FALSE;
Bram Moolenaard4863aa2017-04-07 19:50:12 +02009446 save_redo_T save_redo;
Bram Moolenaarc9e9c712017-11-09 12:29:35 +01009447 int save_KeyTyped = KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009448
9449 /*
9450 * Quickly return if there are no autocommands for this event or
9451 * autocommands are blocked.
9452 */
Bram Moolenaarfaf29d72017-07-09 11:07:16 +02009453 if (event == NUM_EVENTS || first_autopat[(int)event] == NULL
9454 || autocmd_blocked > 0)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009455 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009456
9457 /*
9458 * When autocommands are busy, new autocommands are only executed when
9459 * explicitly enabled with the "nested" flag.
9460 */
9461 if (autocmd_busy && !(force || autocmd_nested))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009462 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009463
9464#ifdef FEAT_EVAL
9465 /*
Bram Moolenaar7263a772007-05-10 17:35:54 +00009466 * Quickly return when immediately aborting on error, or when an interrupt
Bram Moolenaar071d4272004-06-13 20:20:40 +00009467 * occurred or an exception was thrown but not caught.
9468 */
9469 if (aborting())
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009470 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009471#endif
9472
9473 /*
9474 * FileChangedShell never nests, because it can create an endless loop.
9475 */
Bram Moolenaar56718732006-03-15 22:53:57 +00009476 if (filechangeshell_busy && (event == EVENT_FILECHANGEDSHELL
9477 || event == EVENT_FILECHANGEDSHELLPOST))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009478 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009479
9480 /*
9481 * Ignore events in 'eventignore'.
9482 */
9483 if (event_ignored(event))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009484 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009485
9486 /*
9487 * Allow nesting of autocommands, but restrict the depth, because it's
9488 * possible to create an endless loop.
9489 */
9490 if (nesting == 10)
9491 {
9492 EMSG(_("E218: autocommand nesting too deep"));
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009493 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009494 }
9495
9496 /*
9497 * Check if these autocommands are disabled. Used when doing ":all" or
9498 * ":ball".
9499 */
9500 if ( (autocmd_no_enter
9501 && (event == EVENT_WINENTER || event == EVENT_BUFENTER))
9502 || (autocmd_no_leave
9503 && (event == EVENT_WINLEAVE || event == EVENT_BUFLEAVE)))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009504 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009505
9506 /*
9507 * Save the autocmd_* variables and info about the current buffer.
9508 */
9509 save_autocmd_fname = autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009510 save_autocmd_fname_full = autocmd_fname_full;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009511 save_autocmd_bufnr = autocmd_bufnr;
9512 save_autocmd_match = autocmd_match;
9513 save_autocmd_busy = autocmd_busy;
9514 save_autocmd_nested = autocmd_nested;
9515 save_changed = curbuf->b_changed;
9516 old_curbuf = curbuf;
9517
9518 /*
9519 * Set the file name to be used for <afile>.
Bram Moolenaara0174af2008-01-02 20:08:25 +00009520 * Make a copy to avoid that changing a buffer name or directory makes it
9521 * invalid.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009522 */
9523 if (fname_io == NULL)
9524 {
Bram Moolenaar60a68362018-04-30 15:40:48 +02009525 if (event == EVENT_COLORSCHEME || event == EVENT_COLORSCHEMEPRE
9526 || event == EVENT_OPTIONSET)
Bram Moolenaarb95186f2013-11-28 18:53:52 +01009527 autocmd_fname = NULL;
Bram Moolenaarfaf29d72017-07-09 11:07:16 +02009528 else if (fname != NULL && !ends_excmd(*fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00009529 autocmd_fname = fname;
9530 else if (buf != NULL)
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009531 autocmd_fname = buf->b_ffname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009532 else
9533 autocmd_fname = NULL;
9534 }
9535 else
9536 autocmd_fname = fname_io;
Bram Moolenaara0174af2008-01-02 20:08:25 +00009537 if (autocmd_fname != NULL)
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009538 autocmd_fname = vim_strsave(autocmd_fname);
9539 autocmd_fname_full = FALSE; /* call FullName_save() later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009540
9541 /*
9542 * Set the buffer number to be used for <abuf>.
9543 */
9544 if (buf == NULL)
9545 autocmd_bufnr = 0;
9546 else
9547 autocmd_bufnr = buf->b_fnum;
9548
9549 /*
9550 * When the file name is NULL or empty, use the file name of buffer "buf".
9551 * Always use the full path of the file name to match with, in case
9552 * "allow_dirs" is set.
9553 */
9554 if (fname == NULL || *fname == NUL)
9555 {
9556 if (buf == NULL)
9557 fname = NULL;
9558 else
9559 {
9560#ifdef FEAT_SYN_HL
9561 if (event == EVENT_SYNTAX)
9562 fname = buf->b_p_syn;
9563 else
9564#endif
9565 if (event == EVENT_FILETYPE)
9566 fname = buf->b_p_ft;
9567 else
9568 {
9569 if (buf->b_sfname != NULL)
9570 sfname = vim_strsave(buf->b_sfname);
9571 fname = buf->b_ffname;
9572 }
9573 }
9574 if (fname == NULL)
9575 fname = (char_u *)"";
9576 fname = vim_strsave(fname); /* make a copy, so we can change it */
9577 }
9578 else
9579 {
9580 sfname = vim_strsave(fname);
Bram Moolenaarb95186f2013-11-28 18:53:52 +01009581 /* Don't try expanding FileType, Syntax, FuncUndefined, WindowID,
Bram Moolenaarb7407d32018-02-03 17:36:27 +01009582 * ColorScheme, QuickFixCmd* or DirChanged */
Bram Moolenaar7c626922005-02-07 22:01:03 +00009583 if (event == EVENT_FILETYPE
9584 || event == EVENT_SYNTAX
Bram Moolenaara4baf5b2018-04-22 13:27:44 +02009585 || event == EVENT_CMDLINECHANGED
9586 || event == EVENT_CMDLINEENTER
9587 || event == EVENT_CMDLINELEAVE
9588 || event == EVENT_CMDWINENTER
9589 || event == EVENT_CMDWINLEAVE
9590 || event == EVENT_CMDUNDEFINED
Bram Moolenaar5135d462009-04-29 16:03:38 +00009591 || event == EVENT_FUNCUNDEFINED
Bram Moolenaar7c626922005-02-07 22:01:03 +00009592 || event == EVENT_REMOTEREPLY
Bram Moolenaarb8a7b562006-02-01 21:47:16 +00009593 || event == EVENT_SPELLFILEMISSING
Bram Moolenaar7c626922005-02-07 22:01:03 +00009594 || event == EVENT_QUICKFIXCMDPRE
Bram Moolenaarb95186f2013-11-28 18:53:52 +01009595 || event == EVENT_COLORSCHEME
Bram Moolenaar60a68362018-04-30 15:40:48 +02009596 || event == EVENT_COLORSCHEMEPRE
Bram Moolenaar53744302015-07-17 17:38:22 +02009597 || event == EVENT_OPTIONSET
Bram Moolenaarb7407d32018-02-03 17:36:27 +01009598 || event == EVENT_QUICKFIXCMDPOST
9599 || event == EVENT_DIRCHANGED)
Bram Moolenaara4baf5b2018-04-22 13:27:44 +02009600 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00009601 fname = vim_strsave(fname);
Bram Moolenaara4baf5b2018-04-22 13:27:44 +02009602 autocmd_fname_full = TRUE; /* don't expand it later */
9603 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009604 else
9605 fname = FullName_save(fname, FALSE);
9606 }
9607 if (fname == NULL) /* out of memory */
9608 {
9609 vim_free(sfname);
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009610 retval = FALSE;
9611 goto BYPASS_AU;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009612 }
9613
9614#ifdef BACKSLASH_IN_FILENAME
9615 /*
9616 * Replace all backslashes with forward slashes. This makes the
9617 * autocommand patterns portable between Unix and MS-DOS.
9618 */
9619 if (sfname != NULL)
9620 forward_slash(sfname);
9621 forward_slash(fname);
9622#endif
9623
9624#ifdef VMS
9625 /* remove version for correct match */
9626 if (sfname != NULL)
9627 vms_remove_version(sfname);
9628 vms_remove_version(fname);
9629#endif
9630
9631 /*
9632 * Set the name to be used for <amatch>.
9633 */
9634 autocmd_match = fname;
9635
9636
Bram Moolenaar8c555332018-06-22 21:30:31 +02009637 /* Don't redraw while doing autocommands. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009638 ++RedrawingDisabled;
9639 save_sourcing_name = sourcing_name;
9640 sourcing_name = NULL; /* don't free this one */
9641 save_sourcing_lnum = sourcing_lnum;
9642 sourcing_lnum = 0; /* no line number here */
9643
9644#ifdef FEAT_EVAL
9645 save_current_SID = current_SID;
9646
Bram Moolenaar05159a02005-02-26 23:04:13 +00009647# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +00009648 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00009649 prof_child_enter(&wait_time); /* doesn't count for the caller itself */
9650# endif
9651
Bram Moolenaar071d4272004-06-13 20:20:40 +00009652 /* Don't use local function variables, if called from a function */
9653 save_funccalp = save_funccal();
9654#endif
9655
9656 /*
9657 * When starting to execute autocommands, save the search patterns.
9658 */
9659 if (!autocmd_busy)
9660 {
9661 save_search_patterns();
Bram Moolenaar20ad69c2015-12-03 13:52:52 +01009662#ifdef FEAT_INS_EXPAND
Bram Moolenaarc51b02d2015-02-17 10:58:25 +01009663 if (!ins_compl_active())
Bram Moolenaar20ad69c2015-12-03 13:52:52 +01009664#endif
Bram Moolenaarc51b02d2015-02-17 10:58:25 +01009665 {
Bram Moolenaard4863aa2017-04-07 19:50:12 +02009666 saveRedobuff(&save_redo);
Bram Moolenaarc51b02d2015-02-17 10:58:25 +01009667 did_save_redobuff = TRUE;
9668 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009669 did_filetype = keep_filetype;
9670 }
9671
9672 /*
9673 * Note that we are applying autocmds. Some commands need to know.
9674 */
9675 autocmd_busy = TRUE;
9676 filechangeshell_busy = (event == EVENT_FILECHANGEDSHELL);
9677 ++nesting; /* see matching decrement below */
9678
9679 /* Remember that FileType was triggered. Used for did_filetype(). */
9680 if (event == EVENT_FILETYPE)
9681 did_filetype = TRUE;
9682
9683 tail = gettail(fname);
9684
9685 /* Find first autocommand that matches */
9686 patcmd.curpat = first_autopat[(int)event];
9687 patcmd.nextcmd = NULL;
9688 patcmd.group = group;
9689 patcmd.fname = fname;
9690 patcmd.sfname = sfname;
9691 patcmd.tail = tail;
9692 patcmd.event = event;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009693 patcmd.arg_bufnr = autocmd_bufnr;
9694 patcmd.next = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009695 auto_next_pat(&patcmd, FALSE);
9696
9697 /* found one, start executing the autocommands */
9698 if (patcmd.curpat != NULL)
9699 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009700 /* add to active_apc_list */
9701 patcmd.next = active_apc_list;
9702 active_apc_list = &patcmd;
9703
Bram Moolenaar071d4272004-06-13 20:20:40 +00009704#ifdef FEAT_EVAL
9705 /* set v:cmdarg (only when there is a matching pattern) */
Bram Moolenaar22fcfad2016-07-01 18:17:26 +02009706 save_cmdbang = (long)get_vim_var_nr(VV_CMDBANG);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009707 if (eap != NULL)
9708 {
9709 save_cmdarg = set_cmdarg(eap, NULL);
9710 set_vim_var_nr(VV_CMDBANG, (long)eap->forceit);
9711 }
9712 else
9713 save_cmdarg = NULL; /* avoid gcc warning */
9714#endif
9715 retval = TRUE;
9716 /* mark the last pattern, to avoid an endless loop when more patterns
9717 * are added when executing autocommands */
9718 for (ap = patcmd.curpat; ap->next != NULL; ap = ap->next)
9719 ap->last = FALSE;
9720 ap->last = TRUE;
9721 check_lnums(TRUE); /* make sure cursor and topline are valid */
9722 do_cmdline(NULL, getnextac, (void *)&patcmd,
9723 DOCMD_NOWAIT|DOCMD_VERBOSE|DOCMD_REPEAT);
9724#ifdef FEAT_EVAL
9725 if (eap != NULL)
9726 {
9727 (void)set_cmdarg(NULL, save_cmdarg);
9728 set_vim_var_nr(VV_CMDBANG, save_cmdbang);
9729 }
9730#endif
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009731 /* delete from active_apc_list */
9732 if (active_apc_list == &patcmd) /* just in case */
9733 active_apc_list = patcmd.next;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009734 }
9735
9736 --RedrawingDisabled;
9737 autocmd_busy = save_autocmd_busy;
9738 filechangeshell_busy = FALSE;
9739 autocmd_nested = save_autocmd_nested;
9740 vim_free(sourcing_name);
9741 sourcing_name = save_sourcing_name;
9742 sourcing_lnum = save_sourcing_lnum;
Bram Moolenaara0174af2008-01-02 20:08:25 +00009743 vim_free(autocmd_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009744 autocmd_fname = save_autocmd_fname;
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009745 autocmd_fname_full = save_autocmd_fname_full;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009746 autocmd_bufnr = save_autocmd_bufnr;
9747 autocmd_match = save_autocmd_match;
9748#ifdef FEAT_EVAL
9749 current_SID = save_current_SID;
9750 restore_funccal(save_funccalp);
Bram Moolenaar05159a02005-02-26 23:04:13 +00009751# ifdef FEAT_PROFILE
Bram Moolenaar371d5402006-03-20 21:47:49 +00009752 if (do_profiling == PROF_YES)
Bram Moolenaar05159a02005-02-26 23:04:13 +00009753 prof_child_exit(&wait_time);
9754# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00009755#endif
Bram Moolenaarc9e9c712017-11-09 12:29:35 +01009756 KeyTyped = save_KeyTyped;
Bram Moolenaar071d4272004-06-13 20:20:40 +00009757 vim_free(fname);
9758 vim_free(sfname);
9759 --nesting; /* see matching increment above */
9760
9761 /*
9762 * When stopping to execute autocommands, restore the search patterns and
Bram Moolenaar3be85852014-06-12 14:01:31 +02009763 * the redo buffer. Free any buffers in the au_pending_free_buf list and
9764 * free any windows in the au_pending_free_win list.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009765 */
9766 if (!autocmd_busy)
9767 {
9768 restore_search_patterns();
Bram Moolenaarc51b02d2015-02-17 10:58:25 +01009769 if (did_save_redobuff)
Bram Moolenaard4863aa2017-04-07 19:50:12 +02009770 restoreRedobuff(&save_redo);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009771 did_filetype = FALSE;
Bram Moolenaar4c7ab1b2014-04-06 20:45:43 +02009772 while (au_pending_free_buf != NULL)
9773 {
9774 buf_T *b = au_pending_free_buf->b_next;
9775 vim_free(au_pending_free_buf);
9776 au_pending_free_buf = b;
9777 }
Bram Moolenaar3be85852014-06-12 14:01:31 +02009778 while (au_pending_free_win != NULL)
9779 {
9780 win_T *w = au_pending_free_win->w_next;
9781 vim_free(au_pending_free_win);
9782 au_pending_free_win = w;
9783 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009784 }
9785
9786 /*
9787 * Some events don't set or reset the Changed flag.
9788 * Check if still in the same buffer!
9789 */
9790 if (curbuf == old_curbuf
9791 && (event == EVENT_BUFREADPOST
9792 || event == EVENT_BUFWRITEPOST
9793 || event == EVENT_FILEAPPENDPOST
9794 || event == EVENT_VIMLEAVE
9795 || event == EVENT_VIMLEAVEPRE))
9796 {
9797#ifdef FEAT_TITLE
9798 if (curbuf->b_changed != save_changed)
9799 need_maketitle = TRUE;
9800#endif
9801 curbuf->b_changed = save_changed;
9802 }
9803
9804 au_cleanup(); /* may really delete removed patterns/commands now */
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009805
9806BYPASS_AU:
9807 /* When wiping out a buffer make sure all its buffer-local autocommands
9808 * are deleted. */
9809 if (event == EVENT_BUFWIPEOUT && buf != NULL)
9810 aubuflocal_remove(buf);
9811
Bram Moolenaarc3691332016-04-20 12:49:49 +02009812 if (retval == OK && event == EVENT_FILETYPE)
9813 au_did_filetype = TRUE;
9814
Bram Moolenaar071d4272004-06-13 20:20:40 +00009815 return retval;
9816}
9817
Bram Moolenaar78ab3312007-09-29 12:16:41 +00009818# ifdef FEAT_EVAL
9819static char_u *old_termresponse = NULL;
9820# endif
9821
9822/*
9823 * Block triggering autocommands until unblock_autocmd() is called.
9824 * Can be used recursively, so long as it's symmetric.
9825 */
9826 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009827block_autocmds(void)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00009828{
9829# ifdef FEAT_EVAL
9830 /* Remember the value of v:termresponse. */
9831 if (autocmd_blocked == 0)
9832 old_termresponse = get_vim_var_str(VV_TERMRESPONSE);
9833# endif
9834 ++autocmd_blocked;
9835}
9836
9837 void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009838unblock_autocmds(void)
Bram Moolenaar78ab3312007-09-29 12:16:41 +00009839{
9840 --autocmd_blocked;
9841
9842# ifdef FEAT_EVAL
9843 /* When v:termresponse was set while autocommands were blocked, trigger
9844 * the autocommands now. Esp. useful when executing a shell command
9845 * during startup (vimdiff). */
9846 if (autocmd_blocked == 0
9847 && get_vim_var_str(VV_TERMRESPONSE) != old_termresponse)
9848 apply_autocmds(EVENT_TERMRESPONSE, NULL, NULL, FALSE, curbuf);
9849# endif
9850}
9851
Bram Moolenaarabab85a2013-06-26 19:18:05 +02009852 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009853is_autocmd_blocked(void)
Bram Moolenaarabab85a2013-06-26 19:18:05 +02009854{
9855 return autocmd_blocked != 0;
9856}
9857
Bram Moolenaar071d4272004-06-13 20:20:40 +00009858/*
9859 * Find next autocommand pattern that matches.
9860 */
9861 static void
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009862auto_next_pat(
9863 AutoPatCmd *apc,
9864 int stop_at_last) /* stop when 'last' flag is set */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009865{
9866 AutoPat *ap;
9867 AutoCmd *cp;
9868 char_u *name;
9869 char *s;
9870
Bram Moolenaard23a8232018-02-10 18:45:26 +01009871 VIM_CLEAR(sourcing_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009872
9873 for (ap = apc->curpat; ap != NULL && !got_int; ap = ap->next)
9874 {
9875 apc->curpat = NULL;
9876
Bram Moolenaarf6dad432008-09-18 19:29:58 +00009877 /* Only use a pattern when it has not been removed, has commands and
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009878 * the group matches. For buffer-local autocommands only check the
9879 * buffer number. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00009880 if (ap->pat != NULL && ap->cmds != NULL
9881 && (apc->group == AUGROUP_ALL || apc->group == ap->group))
9882 {
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009883 /* execution-condition */
9884 if (ap->buflocal_nr == 0
Bram Moolenaardffa5b82014-11-19 16:38:07 +01009885 ? (match_file_pat(NULL, &ap->reg_prog, apc->fname,
Bram Moolenaar748bf032005-02-02 23:04:36 +00009886 apc->sfname, apc->tail, ap->allow_dirs))
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009887 : ap->buflocal_nr == apc->arg_bufnr)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009888 {
9889 name = event_nr2name(apc->event);
Bram Moolenaar8c555332018-06-22 21:30:31 +02009890 s = _("%s Autocommands for \"%s\"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00009891 sourcing_name = alloc((unsigned)(STRLEN(s)
9892 + STRLEN(name) + ap->patlen + 1));
9893 if (sourcing_name != NULL)
9894 {
9895 sprintf((char *)sourcing_name, s,
9896 (char *)name, (char *)ap->pat);
9897 if (p_verbose >= 8)
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009898 {
9899 verbose_enter();
Bram Moolenaar051b7822005-05-19 21:00:46 +00009900 smsg((char_u *)_("Executing %s"), sourcing_name);
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009901 verbose_leave();
9902 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00009903 }
9904
9905 apc->curpat = ap;
9906 apc->nextcmd = ap->cmds;
9907 /* mark last command */
9908 for (cp = ap->cmds; cp->next != NULL; cp = cp->next)
9909 cp->last = FALSE;
9910 cp->last = TRUE;
9911 }
9912 line_breakcheck();
9913 if (apc->curpat != NULL) /* found a match */
9914 break;
9915 }
9916 if (stop_at_last && ap->last)
9917 break;
9918 }
9919}
9920
9921/*
9922 * Get next autocommand command.
9923 * Called by do_cmdline() to get the next line for ":if".
9924 * Returns allocated string, or NULL for end of autocommands.
9925 */
Bram Moolenaar21691f82012-12-05 19:13:18 +01009926 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009927getnextac(int c UNUSED, void *cookie, int indent UNUSED)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009928{
9929 AutoPatCmd *acp = (AutoPatCmd *)cookie;
9930 char_u *retval;
9931 AutoCmd *ac;
9932
9933 /* Can be called again after returning the last line. */
9934 if (acp->curpat == NULL)
9935 return NULL;
9936
9937 /* repeat until we find an autocommand to execute */
9938 for (;;)
9939 {
9940 /* skip removed commands */
9941 while (acp->nextcmd != NULL && acp->nextcmd->cmd == NULL)
9942 if (acp->nextcmd->last)
9943 acp->nextcmd = NULL;
9944 else
9945 acp->nextcmd = acp->nextcmd->next;
9946
9947 if (acp->nextcmd != NULL)
9948 break;
9949
9950 /* at end of commands, find next pattern that matches */
9951 if (acp->curpat->last)
9952 acp->curpat = NULL;
9953 else
9954 acp->curpat = acp->curpat->next;
9955 if (acp->curpat != NULL)
9956 auto_next_pat(acp, TRUE);
9957 if (acp->curpat == NULL)
9958 return NULL;
9959 }
9960
9961 ac = acp->nextcmd;
9962
9963 if (p_verbose >= 9)
9964 {
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009965 verbose_enter_scroll();
Bram Moolenaar051b7822005-05-19 21:00:46 +00009966 smsg((char_u *)_("autocommand %s"), ac->cmd);
Bram Moolenaar071d4272004-06-13 20:20:40 +00009967 msg_puts((char_u *)"\n"); /* don't overwrite this either */
Bram Moolenaara04f10b2005-05-31 22:09:46 +00009968 verbose_leave_scroll();
Bram Moolenaar071d4272004-06-13 20:20:40 +00009969 }
9970 retval = vim_strsave(ac->cmd);
9971 autocmd_nested = ac->nested;
9972#ifdef FEAT_EVAL
9973 current_SID = ac->scriptID;
9974#endif
9975 if (ac->last)
9976 acp->nextcmd = NULL;
9977 else
9978 acp->nextcmd = ac->next;
9979 return retval;
9980}
9981
9982/*
9983 * Return TRUE if there is a matching autocommand for "fname".
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +00009984 * To account for buffer-local autocommands, function needs to know
9985 * in which buffer the file will be opened.
Bram Moolenaar071d4272004-06-13 20:20:40 +00009986 */
9987 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +01009988has_autocmd(event_T event, char_u *sfname, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00009989{
9990 AutoPat *ap;
9991 char_u *fname;
9992 char_u *tail = gettail(sfname);
9993 int retval = FALSE;
9994
9995 fname = FullName_save(sfname, FALSE);
9996 if (fname == NULL)
9997 return FALSE;
9998
9999#ifdef BACKSLASH_IN_FILENAME
10000 /*
10001 * Replace all backslashes with forward slashes. This makes the
10002 * autocommand patterns portable between Unix and MS-DOS.
10003 */
10004 sfname = vim_strsave(sfname);
10005 if (sfname != NULL)
10006 forward_slash(sfname);
10007 forward_slash(fname);
10008#endif
10009
10010 for (ap = first_autopat[(int)event]; ap != NULL; ap = ap->next)
10011 if (ap->pat != NULL && ap->cmds != NULL
Bram Moolenaarc9b4b052006-04-30 18:54:39 +000010012 && (ap->buflocal_nr == 0
Bram Moolenaardffa5b82014-11-19 16:38:07 +010010013 ? match_file_pat(NULL, &ap->reg_prog,
Bram Moolenaar748bf032005-02-02 23:04:36 +000010014 fname, sfname, tail, ap->allow_dirs)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +000010015 : buf != NULL && ap->buflocal_nr == buf->b_fnum
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000010016 ))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010017 {
10018 retval = TRUE;
10019 break;
10020 }
10021
10022 vim_free(fname);
10023#ifdef BACKSLASH_IN_FILENAME
10024 vim_free(sfname);
10025#endif
10026
10027 return retval;
10028}
10029
10030#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
10031/*
10032 * Function given to ExpandGeneric() to obtain the list of autocommand group
10033 * names.
10034 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010035 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010010036get_augroup_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010037{
10038 if (idx == augroups.ga_len) /* add "END" add the end */
10039 return (char_u *)"END";
10040 if (idx >= augroups.ga_len) /* end of list */
10041 return NULL;
Bram Moolenaarb62cc362016-09-03 16:43:53 +020010042 if (AUGROUP_NAME(idx) == NULL || AUGROUP_NAME(idx) == get_deleted_augroup())
Bram Moolenaarf2c4c392016-07-29 20:50:24 +020010043 /* skip deleted entries */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010044 return (char_u *)"";
10045 return AUGROUP_NAME(idx); /* return a name */
10046}
10047
10048static int include_groups = FALSE;
10049
10050 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010010051set_context_in_autocmd(
10052 expand_T *xp,
10053 char_u *arg,
10054 int doautocmd) /* TRUE for :doauto*, FALSE for :autocmd */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010055{
10056 char_u *p;
10057 int group;
10058
10059 /* check for a group name, skip it if present */
10060 include_groups = FALSE;
10061 p = arg;
10062 group = au_get_grouparg(&arg);
10063 if (group == AUGROUP_ERROR)
10064 return NULL;
10065 /* If there only is a group name that's what we expand. */
Bram Moolenaar1c465442017-03-12 20:10:05 +010010066 if (*arg == NUL && group != AUGROUP_ALL && !VIM_ISWHITE(arg[-1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010067 {
10068 arg = p;
10069 group = AUGROUP_ALL;
10070 }
10071
10072 /* skip over event name */
Bram Moolenaar1c465442017-03-12 20:10:05 +010010073 for (p = arg; *p != NUL && !VIM_ISWHITE(*p); ++p)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010074 if (*p == ',')
10075 arg = p + 1;
10076 if (*p == NUL)
10077 {
10078 if (group == AUGROUP_ALL)
10079 include_groups = TRUE;
10080 xp->xp_context = EXPAND_EVENTS; /* expand event name */
10081 xp->xp_pattern = arg;
10082 return NULL;
10083 }
10084
10085 /* skip over pattern */
10086 arg = skipwhite(p);
Bram Moolenaar1c465442017-03-12 20:10:05 +010010087 while (*arg && (!VIM_ISWHITE(*arg) || arg[-1] == '\\'))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010088 arg++;
10089 if (*arg)
10090 return arg; /* expand (next) command */
10091
10092 if (doautocmd)
10093 xp->xp_context = EXPAND_FILES; /* expand file names */
10094 else
10095 xp->xp_context = EXPAND_NOTHING; /* pattern is not expanded */
10096 return NULL;
10097}
10098
10099/*
10100 * Function given to ExpandGeneric() to obtain the list of event names.
10101 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010102 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010010103get_event_name(expand_T *xp UNUSED, int idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010104{
10105 if (idx < augroups.ga_len) /* First list group names, if wanted */
10106 {
Bram Moolenaarf2c4c392016-07-29 20:50:24 +020010107 if (!include_groups || AUGROUP_NAME(idx) == NULL
Bram Moolenaarb62cc362016-09-03 16:43:53 +020010108 || AUGROUP_NAME(idx) == get_deleted_augroup())
Bram Moolenaar071d4272004-06-13 20:20:40 +000010109 return (char_u *)""; /* skip deleted entries */
10110 return AUGROUP_NAME(idx); /* return a name */
10111 }
10112 return (char_u *)event_names[idx - augroups.ga_len].name;
10113}
10114
10115#endif /* FEAT_CMDL_COMPL */
10116
10117/*
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +000010118 * Return TRUE if autocmd is supported.
10119 */
10120 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010010121autocmd_supported(char_u *name)
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +000010122{
10123 char_u *p;
10124
10125 return (event_name2nr(name, &p) != NUM_EVENTS);
10126}
10127
10128/*
Bram Moolenaar195d6352005-12-19 22:08:24 +000010129 * Return TRUE if an autocommand is defined for a group, event and
10130 * pattern: The group can be omitted to accept any group. "event" and "pattern"
10131 * can be NULL to accept any event and pattern. "pattern" can be NULL to accept
10132 * any pattern. Buffer-local patterns <buffer> or <buffer=N> are accepted.
10133 * Used for:
10134 * exists("#Group") or
10135 * exists("#Group#Event") or
10136 * exists("#Group#Event#pat") or
10137 * exists("#Event") or
10138 * exists("#Event#pat")
Bram Moolenaar071d4272004-06-13 20:20:40 +000010139 */
10140 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010010141au_exists(char_u *arg)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010142{
Bram Moolenaar195d6352005-12-19 22:08:24 +000010143 char_u *arg_save;
10144 char_u *pattern = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010145 char_u *event_name;
10146 char_u *p;
Bram Moolenaar754b5602006-02-09 23:53:20 +000010147 event_T event;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010148 AutoPat *ap;
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000010149 buf_T *buflocal_buf = NULL;
Bram Moolenaar195d6352005-12-19 22:08:24 +000010150 int group;
10151 int retval = FALSE;
10152
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +000010153 /* Make a copy so that we can change the '#' chars to a NUL. */
Bram Moolenaar195d6352005-12-19 22:08:24 +000010154 arg_save = vim_strsave(arg);
10155 if (arg_save == NULL)
10156 return FALSE;
Bram Moolenaarf4cd3e82005-12-22 22:47:02 +000010157 p = vim_strchr(arg_save, '#');
Bram Moolenaar195d6352005-12-19 22:08:24 +000010158 if (p != NULL)
10159 *p++ = NUL;
10160
10161 /* First, look for an autocmd group name */
10162 group = au_find_group(arg_save);
10163 if (group == AUGROUP_ERROR)
10164 {
10165 /* Didn't match a group name, assume the first argument is an event. */
10166 group = AUGROUP_ALL;
10167 event_name = arg_save;
10168 }
10169 else
10170 {
10171 if (p == NULL)
10172 {
10173 /* "Group": group name is present and it's recognized */
10174 retval = TRUE;
10175 goto theend;
10176 }
10177
10178 /* Must be "Group#Event" or "Group#Event#pat". */
10179 event_name = p;
10180 p = vim_strchr(event_name, '#');
10181 if (p != NULL)
10182 *p++ = NUL; /* "Group#Event#pat" */
10183 }
10184
10185 pattern = p; /* "pattern" is NULL when there is no pattern */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010186
10187 /* find the index (enum) for the event name */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010188 event = event_name2nr(event_name, &p);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010189
10190 /* return FALSE if the event name is not recognized */
Bram Moolenaar195d6352005-12-19 22:08:24 +000010191 if (event == NUM_EVENTS)
10192 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010193
10194 /* Find the first autocommand for this event.
10195 * If there isn't any, return FALSE;
10196 * If there is one and no pattern given, return TRUE; */
10197 ap = first_autopat[(int)event];
10198 if (ap == NULL)
Bram Moolenaar195d6352005-12-19 22:08:24 +000010199 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010200
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000010201 /* if pattern is "<buffer>", special handling is needed which uses curbuf */
10202 /* for pattern "<buffer=N>, fnamecmp() will work fine */
Bram Moolenaar5b7880d2009-09-11 15:24:31 +000010203 if (pattern != NULL && STRICMP(pattern, "<buffer>") == 0)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000010204 buflocal_buf = curbuf;
10205
Bram Moolenaar071d4272004-06-13 20:20:40 +000010206 /* Check if there is an autocommand with the given pattern. */
10207 for ( ; ap != NULL; ap = ap->next)
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000010208 /* only use a pattern when it has not been removed and has commands. */
10209 /* For buffer-local autocommands, fnamecmp() works fine. */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010210 if (ap->pat != NULL && ap->cmds != NULL
Bram Moolenaar195d6352005-12-19 22:08:24 +000010211 && (group == AUGROUP_ALL || ap->group == group)
Bram Moolenaar5b7880d2009-09-11 15:24:31 +000010212 && (pattern == NULL
10213 || (buflocal_buf == NULL
10214 ? fnamecmp(ap->pat, pattern) == 0
10215 : ap->buflocal_nr == buflocal_buf->b_fnum)))
Bram Moolenaar195d6352005-12-19 22:08:24 +000010216 {
10217 retval = TRUE;
10218 break;
10219 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010220
Bram Moolenaar195d6352005-12-19 22:08:24 +000010221theend:
10222 vim_free(arg_save);
10223 return retval;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010224}
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000010225
Bram Moolenaarf30e74c2006-08-16 17:35:00 +000010226
10227/*
Bram Moolenaar748bf032005-02-02 23:04:36 +000010228 * Try matching a filename with a "pattern" ("prog" is NULL), or use the
10229 * precompiled regprog "prog" ("pattern" is NULL). That avoids calling
10230 * vim_regcomp() often.
Bram Moolenaar071d4272004-06-13 20:20:40 +000010231 * Used for autocommands and 'wildignore'.
10232 * Returns TRUE if there is a match, FALSE otherwise.
10233 */
Bram Moolenaardffa5b82014-11-19 16:38:07 +010010234 static int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010010235match_file_pat(
10236 char_u *pattern, /* pattern to match with */
10237 regprog_T **prog, /* pre-compiled regprog or NULL */
10238 char_u *fname, /* full path of file name */
10239 char_u *sfname, /* short file name or NULL */
10240 char_u *tail, /* tail of path */
10241 int allow_dirs) /* allow matching with dir */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010242{
10243 regmatch_T regmatch;
10244 int result = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010245
Bram Moolenaar71afbfe2013-03-19 16:49:16 +010010246 regmatch.rm_ic = p_fic; /* ignore case if 'fileignorecase' is set */
Bram Moolenaar49a6ed82015-01-07 14:43:39 +010010247 if (prog != NULL)
10248 regmatch.regprog = *prog;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010249 else
Bram Moolenaar49a6ed82015-01-07 14:43:39 +010010250 regmatch.regprog = vim_regcomp(pattern, RE_MAGIC);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010251
10252 /*
10253 * Try for a match with the pattern with:
10254 * 1. the full file name, when the pattern has a '/'.
10255 * 2. the short file name, when the pattern has a '/'.
10256 * 3. the tail of the file name, when the pattern has no '/'.
10257 */
Bram Moolenaar49a6ed82015-01-07 14:43:39 +010010258 if (regmatch.regprog != NULL
Bram Moolenaar071d4272004-06-13 20:20:40 +000010259 && ((allow_dirs
10260 && (vim_regexec(&regmatch, fname, (colnr_T)0)
10261 || (sfname != NULL
10262 && vim_regexec(&regmatch, sfname, (colnr_T)0))))
Bram Moolenaar49a6ed82015-01-07 14:43:39 +010010263 || (!allow_dirs && vim_regexec(&regmatch, tail, (colnr_T)0))))
Bram Moolenaar071d4272004-06-13 20:20:40 +000010264 result = TRUE;
10265
Bram Moolenaardffa5b82014-11-19 16:38:07 +010010266 if (prog != NULL)
10267 *prog = regmatch.regprog;
10268 else
Bram Moolenaar473de612013-06-08 18:19:48 +020010269 vim_regfree(regmatch.regprog);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010270 return result;
10271}
Bram Moolenaar071d4272004-06-13 20:20:40 +000010272
10273#if defined(FEAT_WILDIGN) || defined(PROTO)
10274/*
10275 * Return TRUE if a file matches with a pattern in "list".
10276 * "list" is a comma-separated list of patterns, like 'wildignore'.
10277 * "sfname" is the short file name or NULL, "ffname" the long file name.
10278 */
10279 int
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010010280match_file_list(char_u *list, char_u *sfname, char_u *ffname)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010281{
10282 char_u buf[100];
10283 char_u *tail;
10284 char_u *regpat;
10285 char allow_dirs;
10286 int match;
10287 char_u *p;
10288
10289 tail = gettail(sfname);
10290
10291 /* try all patterns in 'wildignore' */
10292 p = list;
10293 while (*p)
10294 {
10295 copy_option_part(&p, buf, 100, ",");
10296 regpat = file_pat_to_reg_pat(buf, NULL, &allow_dirs, FALSE);
10297 if (regpat == NULL)
10298 break;
Bram Moolenaar748bf032005-02-02 23:04:36 +000010299 match = match_file_pat(regpat, NULL, ffname, sfname,
10300 tail, (int)allow_dirs);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010301 vim_free(regpat);
10302 if (match)
10303 return TRUE;
10304 }
10305 return FALSE;
10306}
10307#endif
10308
10309/*
10310 * Convert the given pattern "pat" which has shell style wildcards in it, into
10311 * a regular expression, and return the result in allocated memory. If there
10312 * is a directory path separator to be matched, then TRUE is put in
10313 * allow_dirs, otherwise FALSE is put there -- webb.
10314 * Handle backslashes before special characters, like "\*" and "\ ".
10315 *
Bram Moolenaar071d4272004-06-13 20:20:40 +000010316 * Returns NULL when out of memory.
10317 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010318 char_u *
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010010319file_pat_to_reg_pat(
10320 char_u *pat,
10321 char_u *pat_end, /* first char after pattern or NULL */
10322 char *allow_dirs, /* Result passed back out in here */
10323 int no_bslash UNUSED) /* Don't use a backward slash as pathsep */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010324{
Bram Moolenaar49a6ed82015-01-07 14:43:39 +010010325 int size = 2; /* '^' at start, '$' at end */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010326 char_u *endp;
10327 char_u *reg_pat;
10328 char_u *p;
10329 int i;
10330 int nested = 0;
10331 int add_dollar = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010332
10333 if (allow_dirs != NULL)
10334 *allow_dirs = FALSE;
10335 if (pat_end == NULL)
10336 pat_end = pat + STRLEN(pat);
10337
Bram Moolenaar071d4272004-06-13 20:20:40 +000010338 for (p = pat; p < pat_end; p++)
10339 {
10340 switch (*p)
10341 {
10342 case '*':
10343 case '.':
10344 case ',':
10345 case '{':
10346 case '}':
10347 case '~':
10348 size += 2; /* extra backslash */
10349 break;
10350#ifdef BACKSLASH_IN_FILENAME
10351 case '\\':
10352 case '/':
10353 size += 4; /* could become "[\/]" */
10354 break;
10355#endif
10356 default:
10357 size++;
Bram Moolenaar2288afe2015-08-11 16:20:05 +020010358# ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010359 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010360 {
10361 ++p;
10362 ++size;
10363 }
10364# endif
10365 break;
10366 }
10367 }
10368 reg_pat = alloc(size + 1);
10369 if (reg_pat == NULL)
10370 return NULL;
10371
Bram Moolenaar071d4272004-06-13 20:20:40 +000010372 i = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010373
10374 if (pat[0] == '*')
10375 while (pat[0] == '*' && pat < pat_end - 1)
10376 pat++;
10377 else
10378 reg_pat[i++] = '^';
10379 endp = pat_end - 1;
Bram Moolenaar8fee8782015-08-11 18:45:48 +020010380 if (endp >= pat && *endp == '*')
Bram Moolenaar071d4272004-06-13 20:20:40 +000010381 {
10382 while (endp - pat > 0 && *endp == '*')
10383 endp--;
10384 add_dollar = FALSE;
10385 }
10386 for (p = pat; *p && nested >= 0 && p <= endp; p++)
10387 {
10388 switch (*p)
10389 {
10390 case '*':
10391 reg_pat[i++] = '.';
10392 reg_pat[i++] = '*';
Bram Moolenaar02743632005-07-25 20:42:36 +000010393 while (p[1] == '*') /* "**" matches like "*" */
10394 ++p;
Bram Moolenaar071d4272004-06-13 20:20:40 +000010395 break;
10396 case '.':
Bram Moolenaar071d4272004-06-13 20:20:40 +000010397 case '~':
10398 reg_pat[i++] = '\\';
10399 reg_pat[i++] = *p;
10400 break;
10401 case '?':
Bram Moolenaar071d4272004-06-13 20:20:40 +000010402 reg_pat[i++] = '.';
10403 break;
10404 case '\\':
10405 if (p[1] == NUL)
10406 break;
10407#ifdef BACKSLASH_IN_FILENAME
10408 if (!no_bslash)
10409 {
10410 /* translate:
10411 * "\x" to "\\x" e.g., "dir\file"
10412 * "\*" to "\\.*" e.g., "dir\*.c"
10413 * "\?" to "\\." e.g., "dir\??.c"
10414 * "\+" to "\+" e.g., "fileX\+.c"
10415 */
10416 if ((vim_isfilec(p[1]) || p[1] == '*' || p[1] == '?')
10417 && p[1] != '+')
10418 {
10419 reg_pat[i++] = '[';
10420 reg_pat[i++] = '\\';
10421 reg_pat[i++] = '/';
10422 reg_pat[i++] = ']';
10423 if (allow_dirs != NULL)
10424 *allow_dirs = TRUE;
10425 break;
10426 }
10427 }
10428#endif
Bram Moolenaar8cd213c2010-06-01 21:57:09 +020010429 /* Undo escaping from ExpandEscape():
10430 * foo\?bar -> foo?bar
10431 * foo\%bar -> foo%bar
10432 * foo\,bar -> foo,bar
10433 * foo\ bar -> foo bar
10434 * Don't unescape \, * and others that are also special in a
Bram Moolenaarf4e11432013-07-03 16:53:03 +020010435 * regexp.
10436 * An escaped { must be unescaped since we use magic not
Bram Moolenaara946afe2013-08-02 15:22:39 +020010437 * verymagic. Use "\\\{n,m\}"" to get "\{n,m}".
Bram Moolenaarf4e11432013-07-03 16:53:03 +020010438 */
Bram Moolenaar071d4272004-06-13 20:20:40 +000010439 if (*++p == '?'
10440#ifdef BACKSLASH_IN_FILENAME
10441 && no_bslash
10442#endif
10443 )
10444 reg_pat[i++] = '?';
10445 else
Bram Moolenaarf4e11432013-07-03 16:53:03 +020010446 if (*p == ',' || *p == '%' || *p == '#'
Bram Moolenaar2288afe2015-08-11 16:20:05 +020010447 || vim_isspace(*p) || *p == '{' || *p == '}')
Bram Moolenaar8cd213c2010-06-01 21:57:09 +020010448 reg_pat[i++] = *p;
Bram Moolenaara946afe2013-08-02 15:22:39 +020010449 else if (*p == '\\' && p[1] == '\\' && p[2] == '{')
10450 {
10451 reg_pat[i++] = '\\';
10452 reg_pat[i++] = '{';
10453 p += 2;
10454 }
Bram Moolenaar071d4272004-06-13 20:20:40 +000010455 else
10456 {
10457 if (allow_dirs != NULL && vim_ispathsep(*p)
10458#ifdef BACKSLASH_IN_FILENAME
10459 && (!no_bslash || *p != '\\')
10460#endif
10461 )
10462 *allow_dirs = TRUE;
10463 reg_pat[i++] = '\\';
10464 reg_pat[i++] = *p;
10465 }
10466 break;
10467#ifdef BACKSLASH_IN_FILENAME
10468 case '/':
10469 reg_pat[i++] = '[';
10470 reg_pat[i++] = '\\';
10471 reg_pat[i++] = '/';
10472 reg_pat[i++] = ']';
10473 if (allow_dirs != NULL)
10474 *allow_dirs = TRUE;
10475 break;
10476#endif
10477 case '{':
10478 reg_pat[i++] = '\\';
10479 reg_pat[i++] = '(';
10480 nested++;
10481 break;
10482 case '}':
10483 reg_pat[i++] = '\\';
10484 reg_pat[i++] = ')';
10485 --nested;
10486 break;
10487 case ',':
10488 if (nested)
10489 {
10490 reg_pat[i++] = '\\';
10491 reg_pat[i++] = '|';
10492 }
10493 else
10494 reg_pat[i++] = ',';
10495 break;
10496 default:
10497# ifdef FEAT_MBYTE
Bram Moolenaar0fa313a2005-08-10 21:07:57 +000010498 if (enc_dbcs != 0 && (*mb_ptr2len)(p) > 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +000010499 reg_pat[i++] = *p++;
10500 else
10501# endif
10502 if (allow_dirs != NULL && vim_ispathsep(*p))
10503 *allow_dirs = TRUE;
10504 reg_pat[i++] = *p;
10505 break;
10506 }
10507 }
10508 if (add_dollar)
10509 reg_pat[i++] = '$';
10510 reg_pat[i] = NUL;
10511 if (nested != 0)
10512 {
10513 if (nested < 0)
10514 EMSG(_("E219: Missing {."));
10515 else
10516 EMSG(_("E220: Missing }."));
Bram Moolenaard23a8232018-02-10 18:45:26 +010010517 VIM_CLEAR(reg_pat);
Bram Moolenaar071d4272004-06-13 20:20:40 +000010518 }
10519 return reg_pat;
10520}
Bram Moolenaar540fc6f2010-12-17 16:27:16 +010010521
10522#if defined(EINTR) || defined(PROTO)
10523/*
10524 * Version of read() that retries when interrupted by EINTR (possibly
10525 * by a SIGWINCH).
10526 */
10527 long
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010010528read_eintr(int fd, void *buf, size_t bufsize)
Bram Moolenaar540fc6f2010-12-17 16:27:16 +010010529{
10530 long ret;
10531
10532 for (;;)
10533 {
10534 ret = vim_read(fd, buf, bufsize);
10535 if (ret >= 0 || errno != EINTR)
10536 break;
10537 }
10538 return ret;
10539}
10540
10541/*
10542 * Version of write() that retries when interrupted by EINTR (possibly
10543 * by a SIGWINCH).
10544 */
10545 long
Bram Moolenaar78c0b7d2016-01-30 15:52:46 +010010546write_eintr(int fd, void *buf, size_t bufsize)
Bram Moolenaar540fc6f2010-12-17 16:27:16 +010010547{
10548 long ret = 0;
10549 long wlen;
10550
10551 /* Repeat the write() so long it didn't fail, other than being interrupted
10552 * by a signal. */
10553 while (ret < (long)bufsize)
10554 {
Bram Moolenaar9c263032010-12-17 18:06:06 +010010555 wlen = vim_write(fd, (char *)buf + ret, bufsize - ret);
Bram Moolenaar540fc6f2010-12-17 16:27:16 +010010556 if (wlen < 0)
10557 {
10558 if (errno != EINTR)
10559 break;
10560 }
10561 else
10562 ret += wlen;
10563 }
10564 return ret;
10565}
10566#endif