blob: 32cbb7e526a9ac628a2d2687709577f15e347e91 [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/* for debugging */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +010011/* #define CHECK(c, s) do { if (c) emsg((s)); } while (0) */
Bram Moolenaar6f470022018-04-10 18:47:20 +020012#define CHECK(c, s) do { /**/ } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013
14/*
15 * memline.c: Contains the functions for appending, deleting and changing the
Bram Moolenaar4770d092006-01-12 23:22:24 +000016 * text lines. The memfile functions are used to store the information in
17 * blocks of memory, backed up by a file. The structure of the information is
18 * a tree. The root of the tree is a pointer block. The leaves of the tree
19 * are data blocks. In between may be several layers of pointer blocks,
20 * forming branches.
Bram Moolenaar071d4272004-06-13 20:20:40 +000021 *
22 * Three types of blocks are used:
23 * - Block nr 0 contains information for recovery
24 * - Pointer blocks contain list of pointers to other blocks.
25 * - Data blocks contain the actual text.
26 *
27 * Block nr 0 contains the block0 structure (see below).
28 *
29 * Block nr 1 is the first pointer block. It is the root of the tree.
30 * Other pointer blocks are branches.
31 *
32 * If a line is too big to fit in a single page, the block containing that
33 * line is made big enough to hold the line. It may span several pages.
34 * Otherwise all blocks are one page.
35 *
36 * A data block that was filled when starting to edit a file and was not
37 * changed since then, can have a negative block number. This means that it
38 * has not yet been assigned a place in the file. When recovering, the lines
39 * in this data block can be read from the original file. When the block is
40 * changed (lines appended/deleted/changed) or when it is flushed it gets a
41 * positive number. Use mf_trans_del() to get the new number, before calling
42 * mf_get().
43 */
44
Bram Moolenaar071d4272004-06-13 20:20:40 +000045#include "vim.h"
46
Bram Moolenaar071d4272004-06-13 20:20:40 +000047#ifndef UNIX /* it's in os_unix.h for Unix */
48# include <time.h>
49#endif
50
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000051#if defined(SASC) || defined(__amigaos4__)
Bram Moolenaar071d4272004-06-13 20:20:40 +000052# include <proto/dos.h> /* for Open() and Close() */
53#endif
54
55typedef struct block0 ZERO_BL; /* contents of the first block */
56typedef struct pointer_block PTR_BL; /* contents of a pointer block */
57typedef struct data_block DATA_BL; /* contents of a data block */
58typedef struct pointer_entry PTR_EN; /* block/line-count pair */
59
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +020060#define DATA_ID (('d' << 8) + 'a') /* data block id */
61#define PTR_ID (('p' << 8) + 't') /* pointer block id */
62#define BLOCK0_ID0 'b' /* block 0 id 0 */
63#define BLOCK0_ID1 '0' /* block 0 id 1 */
64#define BLOCK0_ID1_C0 'c' /* block 0 id 1 'cm' 0 */
65#define BLOCK0_ID1_C1 'C' /* block 0 id 1 'cm' 1 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020066#define BLOCK0_ID1_C2 'd' /* block 0 id 1 'cm' 2 */
67
68#if defined(FEAT_CRYPT)
69static int id1_codes[] = {
70 BLOCK0_ID1_C0, /* CRYPT_M_ZIP */
71 BLOCK0_ID1_C1, /* CRYPT_M_BF */
72 BLOCK0_ID1_C2, /* CRYPT_M_BF2 */
73};
74#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000075
76/*
77 * pointer to a block, used in a pointer block
78 */
79struct pointer_entry
80{
81 blocknr_T pe_bnum; /* block number */
82 linenr_T pe_line_count; /* number of lines in this branch */
83 linenr_T pe_old_lnum; /* lnum for this block (for recovery) */
84 int pe_page_count; /* number of pages in block pe_bnum */
85};
86
87/*
88 * A pointer block contains a list of branches in the tree.
89 */
90struct pointer_block
91{
92 short_u pb_id; /* ID for pointer block: PTR_ID */
Bram Moolenaar20a825a2010-05-31 21:27:30 +020093 short_u pb_count; /* number of pointers in this block */
Bram Moolenaar071d4272004-06-13 20:20:40 +000094 short_u pb_count_max; /* maximum value for pb_count */
95 PTR_EN pb_pointer[1]; /* list of pointers to blocks (actually longer)
96 * followed by empty space until end of page */
97};
98
99/*
100 * A data block is a leaf in the tree.
101 *
102 * The text of the lines is at the end of the block. The text of the first line
103 * in the block is put at the end, the text of the second line in front of it,
104 * etc. Thus the order of the lines is the opposite of the line number.
105 */
106struct data_block
107{
108 short_u db_id; /* ID for data block: DATA_ID */
109 unsigned db_free; /* free space available */
110 unsigned db_txt_start; /* byte where text starts */
111 unsigned db_txt_end; /* byte just after data block */
112 linenr_T db_line_count; /* number of lines in this block */
113 unsigned db_index[1]; /* index for start of line (actually bigger)
114 * followed by empty space upto db_txt_start
115 * followed by the text in the lines until
116 * end of page */
117};
118
119/*
120 * The low bits of db_index hold the actual index. The topmost bit is
121 * used for the global command to be able to mark a line.
122 * This method is not clean, but otherwise there would be at least one extra
123 * byte used for each line.
124 * The mark has to be in this place to keep it with the correct line when other
125 * lines are inserted or deleted.
126 */
127#define DB_MARKED ((unsigned)1 << ((sizeof(unsigned) * 8) - 1))
128#define DB_INDEX_MASK (~DB_MARKED)
129
130#define INDEX_SIZE (sizeof(unsigned)) /* size of one db_index entry */
131#define HEADER_SIZE (sizeof(DATA_BL) - INDEX_SIZE) /* size of data block header */
132
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000133#define B0_FNAME_SIZE_ORG 900 /* what it was in older versions */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200134#define B0_FNAME_SIZE_NOCRYPT 898 /* 2 bytes used for other things */
135#define B0_FNAME_SIZE_CRYPT 890 /* 10 bytes used for other things */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000136#define B0_UNAME_SIZE 40
137#define B0_HNAME_SIZE 40
Bram Moolenaar071d4272004-06-13 20:20:40 +0000138/*
139 * Restrict the numbers to 32 bits, otherwise most compilers will complain.
140 * This won't detect a 64 bit machine that only swaps a byte in the top 32
141 * bits, but that is crazy anyway.
142 */
143#define B0_MAGIC_LONG 0x30313233L
144#define B0_MAGIC_INT 0x20212223L
145#define B0_MAGIC_SHORT 0x10111213L
146#define B0_MAGIC_CHAR 0x55
147
148/*
149 * Block zero holds all info about the swap file.
150 *
151 * NOTE: DEFINITION OF BLOCK 0 SHOULD NOT CHANGE! It would make all existing
152 * swap files unusable!
153 *
154 * If size of block0 changes anyway, adjust MIN_SWAP_PAGE_SIZE in vim.h!!
155 *
Bram Moolenaarbae0c162007-05-10 19:30:25 +0000156 * This block is built up of single bytes, to make it portable across
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157 * different machines. b0_magic_* is used to check the byte order and size of
158 * variables, because the rest of the swap file is not portable.
159 */
160struct block0
161{
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200162 char_u b0_id[2]; /* id for block 0: BLOCK0_ID0 and BLOCK0_ID1,
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200163 * BLOCK0_ID1_C0, BLOCK0_ID1_C1, etc. */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 char_u b0_version[10]; /* Vim version string */
165 char_u b0_page_size[4];/* number of bytes per page */
166 char_u b0_mtime[4]; /* last modification time of file */
167 char_u b0_ino[4]; /* inode of b0_fname */
168 char_u b0_pid[4]; /* process id of creator (or 0) */
169 char_u b0_uname[B0_UNAME_SIZE]; /* name of user (uid if no name) */
170 char_u b0_hname[B0_HNAME_SIZE]; /* host name (if it has a name) */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000171 char_u b0_fname[B0_FNAME_SIZE_ORG]; /* name of file being edited */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000172 long b0_magic_long; /* check for byte order of long */
173 int b0_magic_int; /* check for byte order of int */
174 short b0_magic_short; /* check for byte order of short */
175 char_u b0_magic_char; /* check for last char */
176};
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000177
178/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000179 * Note: b0_dirty and b0_flags are put at the end of the file name. For very
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000180 * long file names in older versions of Vim they are invalid.
181 * The 'fileencoding' comes before b0_flags, with a NUL in front. But only
182 * when there is room, for very long file names it's omitted.
183 */
184#define B0_DIRTY 0x55
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200185#define b0_dirty b0_fname[B0_FNAME_SIZE_ORG - 1]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000186
187/*
188 * The b0_flags field is new in Vim 7.0.
189 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200190#define b0_flags b0_fname[B0_FNAME_SIZE_ORG - 2]
191
192/*
193 * Crypt seed goes here, 8 bytes. New in Vim 7.3.
194 * Without encryption these bytes may be used for 'fenc'.
195 */
196#define b0_seed b0_fname[B0_FNAME_SIZE_ORG - 2 - MF_SEED_LEN]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000197
198/* The lowest two bits contain the fileformat. Zero means it's not set
199 * (compatible with Vim 6.x), otherwise it's EOL_UNIX + 1, EOL_DOS + 1 or
200 * EOL_MAC + 1. */
201#define B0_FF_MASK 3
202
203/* Swap file is in directory of edited file. Used to find the file from
204 * different mount points. */
205#define B0_SAME_DIR 4
206
207/* The 'fileencoding' is at the end of b0_fname[], with a NUL in front of it.
208 * When empty there is only the NUL. */
209#define B0_HAS_FENC 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210
211#define STACK_INCR 5 /* nr of entries added to ml_stack at a time */
212
213/*
214 * The line number where the first mark may be is remembered.
215 * If it is 0 there are no marks at all.
216 * (always used for the current buffer only, no buffer change possible while
217 * executing a global command).
218 */
219static linenr_T lowest_marked = 0;
220
221/*
222 * arguments for ml_find_line()
223 */
224#define ML_DELETE 0x11 /* delete line */
225#define ML_INSERT 0x12 /* insert line */
226#define ML_FIND 0x13 /* just find the line */
227#define ML_FLUSH 0x02 /* flush locked block */
228#define ML_SIMPLE(x) (x & 0x10) /* DEL, INS or FIND */
229
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200230/* argument for ml_upd_block0() */
231typedef enum {
232 UB_FNAME = 0 /* update timestamp and filename */
233 , UB_SAME_DIR /* update the B0_SAME_DIR flag */
234 , UB_CRYPT /* update crypt key */
235} upd_block0_T;
236
237#ifdef FEAT_CRYPT
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100238static void ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200239#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100240static void ml_upd_block0(buf_T *buf, upd_block0_T what);
241static void set_b0_fname(ZERO_BL *, buf_T *buf);
242static void set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100243static void add_b0_fenc(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100244static time_t swapfile_info(char_u *);
245static int recov_file_names(char_u **, char_u *, int prepend_dot);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100246static int ml_delete_int(buf_T *, linenr_T, int);
247static char_u *findswapname(buf_T *, char_u **, char_u *);
248static void ml_flush_line(buf_T *);
249static bhdr_T *ml_new_data(memfile_T *, int, int);
250static bhdr_T *ml_new_ptr(memfile_T *);
251static bhdr_T *ml_find_line(buf_T *, linenr_T, int);
252static int ml_add_stack(buf_T *);
253static void ml_lineadd(buf_T *, int);
254static int b0_magic_wrong(ZERO_BL *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000255#ifdef CHECK_INODE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100256static int fnamecmp_ino(char_u *, char_u *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000257#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100258static void long_to_char(long, char_u *);
259static long char_to_long(char_u *);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200260#ifdef FEAT_CRYPT
Bram Moolenaar8767f522016-07-01 17:17:39 +0200261static cryptstate_T *ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200262#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263#ifdef FEAT_BYTEOFF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100264static void ml_updatechunk(buf_T *buf, long line, long len, int updtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000265#endif
266
267/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000268 * Open a new memline for "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269 *
Bram Moolenaar4770d092006-01-12 23:22:24 +0000270 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271 */
272 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100273ml_open(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274{
275 memfile_T *mfp;
276 bhdr_T *hp = NULL;
277 ZERO_BL *b0p;
278 PTR_BL *pp;
279 DATA_BL *dp;
280
Bram Moolenaar4770d092006-01-12 23:22:24 +0000281 /*
282 * init fields in memline struct
283 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200284 buf->b_ml.ml_stack_size = 0; /* no stack yet */
Bram Moolenaar4770d092006-01-12 23:22:24 +0000285 buf->b_ml.ml_stack = NULL; /* no stack yet */
286 buf->b_ml.ml_stack_top = 0; /* nothing in the stack */
287 buf->b_ml.ml_locked = NULL; /* no cached block */
288 buf->b_ml.ml_line_lnum = 0; /* no cached line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000289#ifdef FEAT_BYTEOFF
Bram Moolenaar4770d092006-01-12 23:22:24 +0000290 buf->b_ml.ml_chunksize = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000291#endif
292
Bram Moolenaar5803ae62014-03-23 16:04:02 +0100293 if (cmdmod.noswapfile)
294 buf->b_p_swf = FALSE;
295
Bram Moolenaar4770d092006-01-12 23:22:24 +0000296 /*
297 * When 'updatecount' is non-zero swap file may be opened later.
298 */
299 if (p_uc && buf->b_p_swf)
300 buf->b_may_swap = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301 else
Bram Moolenaar4770d092006-01-12 23:22:24 +0000302 buf->b_may_swap = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303
Bram Moolenaar4770d092006-01-12 23:22:24 +0000304 /*
305 * Open the memfile. No swap file is created yet.
306 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 mfp = mf_open(NULL, 0);
308 if (mfp == NULL)
309 goto error;
310
Bram Moolenaar4770d092006-01-12 23:22:24 +0000311 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200312#ifdef FEAT_CRYPT
313 mfp->mf_buffer = buf;
314#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000315 buf->b_ml.ml_flags = ML_EMPTY;
316 buf->b_ml.ml_line_count = 1;
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000317#ifdef FEAT_LINEBREAK
318 curwin->w_nrwidth_line_count = 0;
319#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321/*
322 * fill block0 struct and write page 0
323 */
324 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
325 goto error;
326 if (hp->bh_bnum != 0)
327 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100328 iemsg(_("E298: Didn't get block nr 0?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000329 goto error;
330 }
331 b0p = (ZERO_BL *)(hp->bh_data);
332
333 b0p->b0_id[0] = BLOCK0_ID0;
334 b0p->b0_id[1] = BLOCK0_ID1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 b0p->b0_magic_long = (long)B0_MAGIC_LONG;
336 b0p->b0_magic_int = (int)B0_MAGIC_INT;
337 b0p->b0_magic_short = (short)B0_MAGIC_SHORT;
338 b0p->b0_magic_char = B0_MAGIC_CHAR;
Bram Moolenaar22c10562018-05-26 17:35:27 +0200339 mch_memmove(b0p->b0_version, "VIM ", 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 STRNCPY(b0p->b0_version + 4, Version, 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 long_to_char((long)mfp->mf_page_size, b0p->b0_page_size);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000342
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000343#ifdef FEAT_SPELL
344 if (!buf->b_spell)
345#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000346 {
347 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
348 b0p->b0_flags = get_fileformat(buf) + 1;
349 set_b0_fname(b0p, buf);
350 (void)get_user_name(b0p->b0_uname, B0_UNAME_SIZE);
351 b0p->b0_uname[B0_UNAME_SIZE - 1] = NUL;
352 mch_get_host_name(b0p->b0_hname, B0_HNAME_SIZE);
353 b0p->b0_hname[B0_HNAME_SIZE - 1] = NUL;
354 long_to_char(mch_get_pid(), b0p->b0_pid);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200355#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200356 ml_set_b0_crypt(buf, b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200357#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000358 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359
360 /*
361 * Always sync block number 0 to disk, so we can check the file name in
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200362 * the swap file in findswapname(). Don't do this for a help files or
363 * a spell buffer though.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000364 * Only works when there's a swapfile, otherwise it's done when the file
365 * is created.
366 */
367 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000368 if (!buf->b_help && !B_SPELL(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000369 (void)mf_sync(mfp, 0);
370
Bram Moolenaar4770d092006-01-12 23:22:24 +0000371 /*
372 * Fill in root pointer block and write page 1.
373 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000374 if ((hp = ml_new_ptr(mfp)) == NULL)
375 goto error;
376 if (hp->bh_bnum != 1)
377 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100378 iemsg(_("E298: Didn't get block nr 1?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000379 goto error;
380 }
381 pp = (PTR_BL *)(hp->bh_data);
382 pp->pb_count = 1;
383 pp->pb_pointer[0].pe_bnum = 2;
384 pp->pb_pointer[0].pe_page_count = 1;
385 pp->pb_pointer[0].pe_old_lnum = 1;
386 pp->pb_pointer[0].pe_line_count = 1; /* line count after insertion */
387 mf_put(mfp, hp, TRUE, FALSE);
388
Bram Moolenaar4770d092006-01-12 23:22:24 +0000389 /*
390 * Allocate first data block and create an empty line 1.
391 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000392 if ((hp = ml_new_data(mfp, FALSE, 1)) == NULL)
393 goto error;
394 if (hp->bh_bnum != 2)
395 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100396 iemsg(_("E298: Didn't get block nr 2?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397 goto error;
398 }
399
400 dp = (DATA_BL *)(hp->bh_data);
401 dp->db_index[0] = --dp->db_txt_start; /* at end of block */
402 dp->db_free -= 1 + INDEX_SIZE;
403 dp->db_line_count = 1;
Bram Moolenaarf05da212009-11-17 16:13:15 +0000404 *((char_u *)dp + dp->db_txt_start) = NUL; /* empty line */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000405
406 return OK;
407
408error:
409 if (mfp != NULL)
410 {
411 if (hp)
412 mf_put(mfp, hp, FALSE, FALSE);
413 mf_close(mfp, TRUE); /* will also free(mfp->mf_fname) */
414 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000415 buf->b_ml.ml_mfp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 return FAIL;
417}
418
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200419#if defined(FEAT_CRYPT) || defined(PROTO)
420/*
Bram Moolenaar2be79502014-08-13 21:58:28 +0200421 * Prepare encryption for "buf" for the current key and method.
422 */
423 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100424ml_set_mfp_crypt(buf_T *buf)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200425{
426 if (*buf->b_p_key != NUL)
427 {
428 int method_nr = crypt_get_method_nr(buf);
429
430 if (method_nr > CRYPT_M_ZIP)
431 {
432 /* Generate a seed and store it in the memfile. */
433 sha2_seed(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN, NULL, 0);
434 }
435 }
436}
437
438/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200439 * Prepare encryption for "buf" with block 0 "b0p".
440 */
441 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100442ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200443{
444 if (*buf->b_p_key == NUL)
445 b0p->b0_id[1] = BLOCK0_ID1;
446 else
447 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200448 int method_nr = crypt_get_method_nr(buf);
449
450 b0p->b0_id[1] = id1_codes[method_nr];
451 if (method_nr > CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200452 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200453 /* Generate a seed and store it in block 0 and in the memfile. */
454 sha2_seed(&b0p->b0_seed, MF_SEED_LEN, NULL, 0);
455 mch_memmove(buf->b_ml.ml_mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
456 }
457 }
458}
459
460/*
461 * Called after the crypt key or 'cryptmethod' was changed for "buf".
462 * Will apply this to the swapfile.
463 * "old_key" is the previous key. It is equal to buf->b_p_key when
464 * 'cryptmethod' is changed.
Bram Moolenaar49771f42010-07-20 17:32:38 +0200465 * "old_cm" is the previous 'cryptmethod'. It is equal to the current
466 * 'cryptmethod' when 'key' is changed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200467 */
468 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100469ml_set_crypt_key(
470 buf_T *buf,
471 char_u *old_key,
472 char_u *old_cm)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200473{
474 memfile_T *mfp = buf->b_ml.ml_mfp;
475 bhdr_T *hp;
476 int page_count;
477 int idx;
478 long error;
479 infoptr_T *ip;
480 PTR_BL *pp;
481 DATA_BL *dp;
482 blocknr_T bnum;
483 int top;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200484 int old_method;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200485
Bram Moolenaar3832c462010-08-04 15:32:46 +0200486 if (mfp == NULL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200487 return; /* no memfile yet, nothing to do */
Bram Moolenaarbc563362015-06-09 18:35:25 +0200488 old_method = crypt_method_nr_from_name(old_cm);
489
490 /* First make sure the swapfile is in a consistent state, using the old
491 * key and method. */
492 {
493 char_u *new_key = buf->b_p_key;
494 char_u *new_buf_cm = buf->b_p_cm;
495
496 buf->b_p_key = old_key;
497 buf->b_p_cm = old_cm;
498 ml_preserve(buf, FALSE);
499 buf->b_p_key = new_key;
500 buf->b_p_cm = new_buf_cm;
501 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200502
503 /* Set the key, method and seed to be used for reading, these must be the
504 * old values. */
505 mfp->mf_old_key = old_key;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200506 mfp->mf_old_cm = old_method;
507 if (old_method > 0 && *old_key != NUL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200508 mch_memmove(mfp->mf_old_seed, mfp->mf_seed, MF_SEED_LEN);
509
510 /* Update block 0 with the crypt flag and may set a new seed. */
511 ml_upd_block0(buf, UB_CRYPT);
512
513 if (mfp->mf_infile_count > 2)
514 {
515 /*
516 * Need to read back all data blocks from disk, decrypt them with the
517 * old key/method and mark them to be written. The algorithm is
518 * similar to what happens in ml_recover(), but we skip negative block
519 * numbers.
520 */
521 ml_flush_line(buf); /* flush buffered line */
522 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush locked block */
523
524 hp = NULL;
525 bnum = 1; /* start with block 1 */
526 page_count = 1; /* which is 1 page */
527 idx = 0; /* start with first index in block 1 */
528 error = 0;
529 buf->b_ml.ml_stack_top = 0;
Bram Moolenaard23a8232018-02-10 18:45:26 +0100530 VIM_CLEAR(buf->b_ml.ml_stack);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200531 buf->b_ml.ml_stack_size = 0; /* no stack yet */
532
533 for ( ; !got_int; line_breakcheck())
534 {
535 if (hp != NULL)
536 mf_put(mfp, hp, FALSE, FALSE); /* release previous block */
537
538 /* get the block (pointer or data) */
539 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
540 {
541 if (bnum == 1)
542 break;
543 ++error;
544 }
545 else
546 {
547 pp = (PTR_BL *)(hp->bh_data);
548 if (pp->pb_id == PTR_ID) /* it is a pointer block */
549 {
550 if (pp->pb_count == 0)
551 {
552 /* empty block? */
553 ++error;
554 }
555 else if (idx < (int)pp->pb_count) /* go a block deeper */
556 {
557 if (pp->pb_pointer[idx].pe_bnum < 0)
558 {
Bram Moolenaarbc563362015-06-09 18:35:25 +0200559 /* Skip data block with negative block number.
560 * Should not happen, because of the ml_preserve()
561 * above. Get same block again for next index. */
Bram Moolenaar4b7214e2019-01-03 21:55:32 +0100562 ++idx;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200563 continue;
564 }
565
566 /* going one block deeper in the tree, new entry in
567 * stack */
568 if ((top = ml_add_stack(buf)) < 0)
569 {
570 ++error;
571 break; /* out of memory */
572 }
573 ip = &(buf->b_ml.ml_stack[top]);
574 ip->ip_bnum = bnum;
575 ip->ip_index = idx;
576
577 bnum = pp->pb_pointer[idx].pe_bnum;
578 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200579 idx = 0;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200580 continue;
581 }
582 }
583 else /* not a pointer block */
584 {
585 dp = (DATA_BL *)(hp->bh_data);
586 if (dp->db_id != DATA_ID) /* block id wrong */
587 ++error;
588 else
589 {
590 /* It is a data block, need to write it back to disk. */
591 mf_put(mfp, hp, TRUE, FALSE);
592 hp = NULL;
593 }
594 }
595 }
596
597 if (buf->b_ml.ml_stack_top == 0) /* finished */
598 break;
599
600 /* go one block up in the tree */
601 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
602 bnum = ip->ip_bnum;
603 idx = ip->ip_index + 1; /* go to next index */
604 page_count = 1;
605 }
Bram Moolenaarbc563362015-06-09 18:35:25 +0200606 if (hp != NULL)
607 mf_put(mfp, hp, FALSE, FALSE); /* release previous block */
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +0100608
609 if (error > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100610 emsg(_("E843: Error while updating swap file crypt"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200611 }
612
613 mfp->mf_old_key = NULL;
614}
615#endif
616
Bram Moolenaar071d4272004-06-13 20:20:40 +0000617/*
618 * ml_setname() is called when the file name of "buf" has been changed.
619 * It may rename the swap file.
620 */
621 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100622ml_setname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000623{
624 int success = FALSE;
625 memfile_T *mfp;
626 char_u *fname;
627 char_u *dirp;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100628#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000629 char_u *p;
630#endif
631
632 mfp = buf->b_ml.ml_mfp;
633 if (mfp->mf_fd < 0) /* there is no swap file yet */
634 {
635 /*
636 * When 'updatecount' is 0 and 'noswapfile' there is no swap file.
637 * For help files we will make a swap file now.
638 */
Bram Moolenaar5803ae62014-03-23 16:04:02 +0100639 if (p_uc != 0 && !cmdmod.noswapfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 ml_open_file(buf); /* create a swap file */
641 return;
642 }
643
644 /*
645 * Try all directories in the 'directory' option.
646 */
647 dirp = p_dir;
648 for (;;)
649 {
650 if (*dirp == NUL) /* tried all directories, fail */
651 break;
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000652 fname = findswapname(buf, &dirp, mfp->mf_fname);
653 /* alloc's fname */
Bram Moolenaarf541c362011-10-26 11:44:18 +0200654 if (dirp == NULL) /* out of memory */
655 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 if (fname == NULL) /* no file name found for this dir */
657 continue;
658
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100659#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000660 /*
661 * Set full pathname for swap file now, because a ":!cd dir" may
662 * change directory without us knowing it.
663 */
664 p = FullName_save(fname, FALSE);
665 vim_free(fname);
666 fname = p;
667 if (fname == NULL)
668 continue;
669#endif
670 /* if the file name is the same we don't have to do anything */
671 if (fnamecmp(fname, mfp->mf_fname) == 0)
672 {
673 vim_free(fname);
674 success = TRUE;
675 break;
676 }
677 /* need to close the swap file before renaming */
678 if (mfp->mf_fd >= 0)
679 {
680 close(mfp->mf_fd);
681 mfp->mf_fd = -1;
682 }
683
684 /* try to rename the swap file */
685 if (vim_rename(mfp->mf_fname, fname) == 0)
686 {
687 success = TRUE;
688 vim_free(mfp->mf_fname);
689 mfp->mf_fname = fname;
690 vim_free(mfp->mf_ffname);
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100691#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 mfp->mf_ffname = NULL; /* mf_fname is full pathname already */
693#else
694 mf_set_ffname(mfp);
695#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200696 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000697 break;
698 }
699 vim_free(fname); /* this fname didn't work, try another */
700 }
701
702 if (mfp->mf_fd == -1) /* need to (re)open the swap file */
703 {
704 mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0);
705 if (mfp->mf_fd < 0)
706 {
707 /* could not (re)open the swap file, what can we do???? */
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100708 emsg(_("E301: Oops, lost the swap file!!!"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000709 return;
710 }
Bram Moolenaarf05da212009-11-17 16:13:15 +0000711#ifdef HAVE_FD_CLOEXEC
712 {
713 int fdflags = fcntl(mfp->mf_fd, F_GETFD);
714 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +0100715 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +0000716 }
717#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 }
719 if (!success)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100720 emsg(_("E302: Could not rename swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000721}
722
723/*
724 * Open a file for the memfile for all buffers that are not readonly or have
725 * been modified.
726 * Used when 'updatecount' changes from zero to non-zero.
727 */
728 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100729ml_open_files(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000730{
731 buf_T *buf;
732
Bram Moolenaar29323592016-07-24 22:04:11 +0200733 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 if (!buf->b_p_ro || buf->b_changed)
735 ml_open_file(buf);
736}
737
738/*
739 * Open a swap file for an existing memfile, if there is no swap file yet.
740 * If we are unable to find a file name, mf_fname will be NULL
741 * and the memfile will be in memory only (no recovery possible).
742 */
743 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100744ml_open_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745{
746 memfile_T *mfp;
747 char_u *fname;
748 char_u *dirp;
749
750 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar5803ae62014-03-23 16:04:02 +0100751 if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf || cmdmod.noswapfile)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 return; /* nothing to do */
753
Bram Moolenaara1956f62006-03-12 22:18:00 +0000754#ifdef FEAT_SPELL
Bram Moolenaar4770d092006-01-12 23:22:24 +0000755 /* For a spell buffer use a temp file name. */
756 if (buf->b_spell)
757 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +0200758 fname = vim_tempname('s', FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000759 if (fname != NULL)
760 (void)mf_open_file(mfp, fname); /* consumes fname! */
761 buf->b_may_swap = FALSE;
762 return;
763 }
764#endif
765
Bram Moolenaar071d4272004-06-13 20:20:40 +0000766 /*
767 * Try all directories in 'directory' option.
768 */
769 dirp = p_dir;
770 for (;;)
771 {
772 if (*dirp == NUL)
773 break;
Bram Moolenaare242b832010-06-24 05:39:03 +0200774 /* There is a small chance that between choosing the swap file name
775 * and creating it, another Vim creates the file. In that case the
Bram Moolenaar071d4272004-06-13 20:20:40 +0000776 * creation will fail and we will use another directory. */
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000777 fname = findswapname(buf, &dirp, NULL); /* allocates fname */
Bram Moolenaarf541c362011-10-26 11:44:18 +0200778 if (dirp == NULL)
779 break; /* out of memory */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 if (fname == NULL)
781 continue;
782 if (mf_open_file(mfp, fname) == OK) /* consumes fname! */
783 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100784#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000785 /*
786 * set full pathname for swap file now, because a ":!cd dir" may
787 * change directory without us knowing it.
788 */
789 mf_fullname(mfp);
790#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200791 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000792
Bram Moolenaar071d4272004-06-13 20:20:40 +0000793 /* Flush block zero, so others can read it */
794 if (mf_sync(mfp, MFS_ZERO) == OK)
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000795 {
796 /* Mark all blocks that should be in the swapfile as dirty.
797 * Needed for when the 'swapfile' option was reset, so that
798 * the swap file was deleted, and then on again. */
799 mf_set_dirty(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 break;
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000801 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000802 /* Writing block 0 failed: close the file and try another dir */
803 mf_close_file(buf, FALSE);
804 }
805 }
806
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200807 if (*p_dir != NUL && mfp->mf_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000808 {
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200809 need_wait_return = TRUE; // call wait_return later
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100811 (void)semsg(_("E303: Unable to open swap file for \"%s\", recovery impossible"),
Bram Moolenaare1704ba2012-10-03 18:25:00 +0200812 buf_spname(buf) != NULL ? buf_spname(buf) : buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 --no_wait_return;
814 }
815
816 /* don't try to open a swap file again */
817 buf->b_may_swap = FALSE;
818}
819
820/*
821 * If still need to create a swap file, and starting to edit a not-readonly
822 * file, or reading into an existing buffer, create a swap file now.
823 */
824 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100825check_need_swap(
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200826 int newfile) // reading file into new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000827{
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200828 int old_msg_silent = msg_silent; // might be reset by an E325 message
829
Bram Moolenaar071d4272004-06-13 20:20:40 +0000830 if (curbuf->b_may_swap && (!curbuf->b_p_ro || !newfile))
831 ml_open_file(curbuf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200832 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833}
834
835/*
836 * Close memline for buffer 'buf'.
837 * If 'del_file' is TRUE, delete the swap file
838 */
839 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100840ml_close(buf_T *buf, int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841{
842 if (buf->b_ml.ml_mfp == NULL) /* not open */
843 return;
844 mf_close(buf->b_ml.ml_mfp, del_file); /* close the .swp file */
845 if (buf->b_ml.ml_line_lnum != 0 && (buf->b_ml.ml_flags & ML_LINE_DIRTY))
846 vim_free(buf->b_ml.ml_line_ptr);
847 vim_free(buf->b_ml.ml_stack);
848#ifdef FEAT_BYTEOFF
Bram Moolenaard23a8232018-02-10 18:45:26 +0100849 VIM_CLEAR(buf->b_ml.ml_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000850#endif
851 buf->b_ml.ml_mfp = NULL;
852
853 /* Reset the "recovered" flag, give the ATTENTION prompt the next time
854 * this buffer is loaded. */
855 buf->b_flags &= ~BF_RECOVERED;
856}
857
858/*
859 * Close all existing memlines and memfiles.
860 * Only used when exiting.
861 * When 'del_file' is TRUE, delete the memfiles.
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000862 * But don't delete files that were ":preserve"d when we are POSIX compatible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 */
864 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100865ml_close_all(int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866{
867 buf_T *buf;
868
Bram Moolenaar29323592016-07-24 22:04:11 +0200869 FOR_ALL_BUFFERS(buf)
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000870 ml_close(buf, del_file && ((buf->b_flags & BF_PRESERVED) == 0
871 || vim_strchr(p_cpo, CPO_PRESERVE) == NULL));
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100872#ifdef FEAT_SPELL
873 spell_delete_wordlist(); /* delete the internal wordlist */
874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875#ifdef TEMPDIRNAMES
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100876 vim_deltempdir(); /* delete created temp directory */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877#endif
878}
879
880/*
881 * Close all memfiles for not modified buffers.
882 * Only use just before exiting!
883 */
884 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100885ml_close_notmod(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000886{
887 buf_T *buf;
888
Bram Moolenaar29323592016-07-24 22:04:11 +0200889 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890 if (!bufIsChanged(buf))
891 ml_close(buf, TRUE); /* close all not-modified buffers */
892}
893
894/*
895 * Update the timestamp in the .swp file.
896 * Used when the file has been written.
897 */
898 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100899ml_timestamp(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000900{
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200901 ml_upd_block0(buf, UB_FNAME);
902}
903
904/*
905 * Return FAIL when the ID of "b0p" is wrong.
906 */
907 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100908ml_check_b0_id(ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200909{
910 if (b0p->b0_id[0] != BLOCK0_ID0
911 || (b0p->b0_id[1] != BLOCK0_ID1
912 && b0p->b0_id[1] != BLOCK0_ID1_C0
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200913 && b0p->b0_id[1] != BLOCK0_ID1_C1
914 && b0p->b0_id[1] != BLOCK0_ID1_C2)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200915 )
916 return FAIL;
917 return OK;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000918}
919
920/*
921 * Update the timestamp or the B0_SAME_DIR flag of the .swp file.
922 */
923 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100924ml_upd_block0(buf_T *buf, upd_block0_T what)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000925{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000926 memfile_T *mfp;
927 bhdr_T *hp;
928 ZERO_BL *b0p;
929
930 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200931 if (mfp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 return;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200933 hp = mf_get(mfp, (blocknr_T)0, 1);
934 if (hp == NULL)
935 {
936#ifdef FEAT_CRYPT
937 /* Possibly update the seed in the memfile before there is a block0. */
938 if (what == UB_CRYPT)
939 ml_set_mfp_crypt(buf);
940#endif
941 return;
942 }
943
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200945 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100946 iemsg(_("E304: ml_upd_block0(): Didn't get block 0??"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000947 else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000948 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200949 if (what == UB_FNAME)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000950 set_b0_fname(b0p, buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200951#ifdef FEAT_CRYPT
952 else if (what == UB_CRYPT)
953 ml_set_b0_crypt(buf, b0p);
954#endif
955 else /* what == UB_SAME_DIR */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000956 set_b0_dir_flag(b0p, buf);
957 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000958 mf_put(mfp, hp, TRUE, FALSE);
959}
960
961/*
962 * Write file name and timestamp into block 0 of a swap file.
963 * Also set buf->b_mtime.
964 * Don't use NameBuff[]!!!
965 */
966 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100967set_b0_fname(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968{
Bram Moolenaar8767f522016-07-01 17:17:39 +0200969 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970
971 if (buf->b_ffname == NULL)
972 b0p->b0_fname[0] = NUL;
973 else
974 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100975#if defined(MSWIN) || defined(AMIGA)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000976 /* Systems that cannot translate "~user" back into a path: copy the
977 * file name unmodified. Do use slashes instead of backslashes for
978 * portability. */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200979 vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000980# ifdef BACKSLASH_IN_FILENAME
981 forward_slash(b0p->b0_fname);
982# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983#else
984 size_t flen, ulen;
985 char_u uname[B0_UNAME_SIZE];
986
987 /*
988 * For a file under the home directory of the current user, we try to
989 * replace the home directory path with "~user". This helps when
990 * editing the same file on different machines over a network.
991 * First replace home dir path with "~/" with home_replace().
992 * Then insert the user name to get "~user/".
993 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200994 home_replace(NULL, buf->b_ffname, b0p->b0_fname,
995 B0_FNAME_SIZE_CRYPT, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000996 if (b0p->b0_fname[0] == '~')
997 {
998 flen = STRLEN(b0p->b0_fname);
999 /* If there is no user name or it is too long, don't use "~/" */
1000 if (get_user_name(uname, B0_UNAME_SIZE) == FAIL
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001001 || (ulen = STRLEN(uname)) + flen > B0_FNAME_SIZE_CRYPT - 1)
1002 vim_strncpy(b0p->b0_fname, buf->b_ffname,
1003 B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001004 else
1005 {
1006 mch_memmove(b0p->b0_fname + ulen + 1, b0p->b0_fname + 1, flen);
1007 mch_memmove(b0p->b0_fname + 1, uname, ulen);
1008 }
1009 }
1010#endif
1011 if (mch_stat((char *)buf->b_ffname, &st) >= 0)
1012 {
1013 long_to_char((long)st.st_mtime, b0p->b0_mtime);
1014#ifdef CHECK_INODE
1015 long_to_char((long)st.st_ino, b0p->b0_ino);
1016#endif
1017 buf_store_time(buf, &st, buf->b_ffname);
1018 buf->b_mtime_read = buf->b_mtime;
1019 }
1020 else
1021 {
1022 long_to_char(0L, b0p->b0_mtime);
1023#ifdef CHECK_INODE
1024 long_to_char(0L, b0p->b0_ino);
1025#endif
1026 buf->b_mtime = 0;
1027 buf->b_mtime_read = 0;
1028 buf->b_orig_size = 0;
1029 buf->b_orig_mode = 0;
1030 }
1031 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001032
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001033 /* Also add the 'fileencoding' if there is room. */
1034 add_b0_fenc(b0p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035}
1036
1037/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001038 * Update the B0_SAME_DIR flag of the swap file. It's set if the file and the
1039 * swapfile for "buf" are in the same directory.
1040 * This is fail safe: if we are not sure the directories are equal the flag is
1041 * not set.
1042 */
1043 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001044set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001045{
1046 if (same_directory(buf->b_ml.ml_mfp->mf_fname, buf->b_ffname))
1047 b0p->b0_flags |= B0_SAME_DIR;
1048 else
1049 b0p->b0_flags &= ~B0_SAME_DIR;
1050}
1051
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001052/*
1053 * When there is room, add the 'fileencoding' to block zero.
1054 */
1055 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001056add_b0_fenc(
1057 ZERO_BL *b0p,
1058 buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001059{
1060 int n;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001061 int size = B0_FNAME_SIZE_NOCRYPT;
1062
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001063#ifdef FEAT_CRYPT
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001064 /* Without encryption use the same offset as in Vim 7.2 to be compatible.
1065 * With encryption it's OK to move elsewhere, the swap file is not
1066 * compatible anyway. */
1067 if (*buf->b_p_key != NUL)
1068 size = B0_FNAME_SIZE_CRYPT;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001069#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001070
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001071 n = (int)STRLEN(buf->b_p_fenc);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001072 if ((int)STRLEN(b0p->b0_fname) + n + 1 > size)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001073 b0p->b0_flags &= ~B0_HAS_FENC;
1074 else
1075 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001076 mch_memmove((char *)b0p->b0_fname + size - n,
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001077 (char *)buf->b_p_fenc, (size_t)n);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001078 *(b0p->b0_fname + size - n - 1) = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001079 b0p->b0_flags |= B0_HAS_FENC;
1080 }
1081}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001082
1083
1084/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001085 * Try to recover curbuf from the .swp file.
Bram Moolenaar99499b12019-05-23 21:35:48 +02001086 * If "checkext" is TRUE, check the extension and detect whether it is
1087 * a swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001088 */
1089 void
Bram Moolenaar99499b12019-05-23 21:35:48 +02001090ml_recover(int checkext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001091{
1092 buf_T *buf = NULL;
1093 memfile_T *mfp = NULL;
1094 char_u *fname;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001095 char_u *fname_used = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001096 bhdr_T *hp = NULL;
1097 ZERO_BL *b0p;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001098 int b0_ff;
1099 char_u *b0_fenc = NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001100#ifdef FEAT_CRYPT
1101 int b0_cm = -1;
1102#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 PTR_BL *pp;
1104 DATA_BL *dp;
1105 infoptr_T *ip;
1106 blocknr_T bnum;
1107 int page_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001108 stat_T org_stat, swp_stat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001109 int len;
1110 int directly;
1111 linenr_T lnum;
1112 char_u *p;
1113 int i;
1114 long error;
1115 int cannot_open;
1116 linenr_T line_count;
1117 int has_error;
1118 int idx;
1119 int top;
1120 int txt_start;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001121 off_T size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001122 int called_from_main;
1123 int serious_error = TRUE;
1124 long mtime;
1125 int attr;
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001126 int orig_file_status = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127
1128 recoverymode = TRUE;
1129 called_from_main = (curbuf->b_ml.ml_mfp == NULL);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001130 attr = HL_ATTR(HLF_E);
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001131
1132 /*
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001133 * If the file name ends in ".s[a-w][a-z]" we assume this is the swap file.
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001134 * Otherwise a search is done to find the swap file(s).
1135 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 fname = curbuf->b_fname;
1137 if (fname == NULL) /* When there is no file name */
1138 fname = (char_u *)"";
1139 len = (int)STRLEN(fname);
Bram Moolenaar99499b12019-05-23 21:35:48 +02001140 if (checkext && len >= 4 &&
Bram Moolenaare60acc12011-05-10 16:41:25 +02001141#if defined(VMS)
Bram Moolenaar79518e22017-02-17 16:31:35 +01001142 STRNICMP(fname + len - 4, "_s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143#else
Bram Moolenaar79518e22017-02-17 16:31:35 +01001144 STRNICMP(fname + len - 4, ".s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001145#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001146 == 0
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001147 && vim_strchr((char_u *)"abcdefghijklmnopqrstuvw",
1148 TOLOWER_ASC(fname[len - 2])) != NULL
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001149 && ASCII_ISALPHA(fname[len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001150 {
1151 directly = TRUE;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001152 fname_used = vim_strsave(fname); /* make a copy for mf_open() */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 }
1154 else
1155 {
1156 directly = FALSE;
1157
1158 /* count the number of matching swap files */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001159 len = recover_names(fname, FALSE, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 if (len == 0) /* no swap files found */
1161 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001162 semsg(_("E305: No swap file found for %s"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001163 goto theend;
1164 }
1165 if (len == 1) /* one swap file found, use it */
1166 i = 1;
1167 else /* several swap files found, choose */
1168 {
1169 /* list the names of the swap files */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001170 (void)recover_names(fname, TRUE, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001171 msg_putchar('\n');
Bram Moolenaar32526b32019-01-19 17:43:09 +01001172 msg_puts(_("Enter number of swap file to use (0 to quit): "));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001173 i = get_number(FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 if (i < 1 || i > len)
1175 goto theend;
1176 }
1177 /* get the swap file name that will be used */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001178 (void)recover_names(fname, FALSE, i, &fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001180 if (fname_used == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181 goto theend; /* out of memory */
1182
1183 /* When called from main() still need to initialize storage structure */
Bram Moolenaar4770d092006-01-12 23:22:24 +00001184 if (called_from_main && ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185 getout(1);
1186
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001187 /*
1188 * Allocate a buffer structure for the swap file that is used for recovery.
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001189 * Only the memline and crypt information in it are really used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001190 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001191 buf = ALLOC_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 if (buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001195 /*
1196 * init fields in memline struct
1197 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 buf->b_ml.ml_stack_size = 0; /* no stack yet */
1199 buf->b_ml.ml_stack = NULL; /* no stack yet */
1200 buf->b_ml.ml_stack_top = 0; /* nothing in the stack */
1201 buf->b_ml.ml_line_lnum = 0; /* no cached line */
1202 buf->b_ml.ml_locked = NULL; /* no locked block */
1203 buf->b_ml.ml_flags = 0;
Bram Moolenaar0fe849a2010-07-25 15:11:11 +02001204#ifdef FEAT_CRYPT
1205 buf->b_p_key = empty_option;
1206 buf->b_p_cm = empty_option;
1207#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001209 /*
1210 * open the memfile from the old swap file
1211 */
1212 p = vim_strsave(fname_used); /* save "fname_used" for the message:
1213 mf_open() will consume "fname_used"! */
1214 mfp = mf_open(fname_used, O_RDONLY);
1215 fname_used = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 if (mfp == NULL || mfp->mf_fd < 0)
1217 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001218 if (fname_used != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001219 semsg(_("E306: Cannot open %s"), fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 goto theend;
1221 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001223#ifdef FEAT_CRYPT
1224 mfp->mf_buffer = buf;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001225#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226
1227 /*
1228 * The page size set in mf_open() might be different from the page size
1229 * used in the swap file, we must get it from block 0. But to read block
1230 * 0 we need a page size. Use the minimal size for block 0 here, it will
1231 * be set to the real value below.
1232 */
1233 mfp->mf_page_size = MIN_SWAP_PAGE_SIZE;
1234
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001235 /*
1236 * try to read block 0
1237 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001238 if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL)
1239 {
1240 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001241 msg_puts_attr(_("Unable to read block 0 from "), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001243 msg_puts_attr(_("\nMaybe no changes were made or Vim did not update the swap file."),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 attr | MSG_HIST);
1245 msg_end();
1246 goto theend;
1247 }
1248 b0p = (ZERO_BL *)(hp->bh_data);
1249 if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0)
1250 {
1251 msg_start();
1252 msg_outtrans_attr(mfp->mf_fname, MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001253 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001255 msg_puts_attr(_("Use Vim version 3.0.\n"), MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256 msg_end();
1257 goto theend;
1258 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001259 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001261 semsg(_("E307: %s does not look like a Vim swap file"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001262 goto theend;
1263 }
1264 if (b0_magic_wrong(b0p))
1265 {
1266 msg_start();
1267 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001268#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001269 if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001270 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 attr | MSG_HIST);
1272 else
1273#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001274 msg_puts_attr(_(" cannot be used on this computer.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001275 attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001276 msg_puts_attr(_("The file was created on "), attr | MSG_HIST);
Bram Moolenaare242b832010-06-24 05:39:03 +02001277 /* avoid going past the end of a corrupted hostname */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278 b0p->b0_fname[0] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001279 msg_puts_attr((char *)b0p->b0_hname, attr | MSG_HIST);
1280 msg_puts_attr(_(",\nor the file has been damaged."), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 msg_end();
1282 goto theend;
1283 }
Bram Moolenaar1c536282007-04-26 15:21:56 +00001284
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001285#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001286 for (i = 0; i < (int)(sizeof(id1_codes) / sizeof(int)); ++i)
1287 if (id1_codes[i] == b0p->b0_id[1])
1288 b0_cm = i;
1289 if (b0_cm > 0)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001290 mch_memmove(mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001291 crypt_set_cm_option(buf, b0_cm < 0 ? 0 : b0_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001292#else
1293 if (b0p->b0_id[1] != BLOCK0_ID1)
1294 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001295 semsg(_("E833: %s is encrypted and this version of Vim does not support encryption"), mfp->mf_fname);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001296 goto theend;
1297 }
1298#endif
1299
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 /*
1301 * If we guessed the wrong page size, we have to recalculate the
1302 * highest block number in the file.
1303 */
1304 if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size))
1305 {
Bram Moolenaar1c536282007-04-26 15:21:56 +00001306 unsigned previous_page_size = mfp->mf_page_size;
1307
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size));
Bram Moolenaar1c536282007-04-26 15:21:56 +00001309 if (mfp->mf_page_size < previous_page_size)
1310 {
1311 msg_start();
1312 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001313 msg_puts_attr(_(" has been damaged (page size is smaller than minimum value).\n"),
Bram Moolenaar1c536282007-04-26 15:21:56 +00001314 attr | MSG_HIST);
1315 msg_end();
1316 goto theend;
1317 }
Bram Moolenaar8767f522016-07-01 17:17:39 +02001318 if ((size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 mfp->mf_blocknr_max = 0; /* no file or empty file */
1320 else
1321 mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size);
1322 mfp->mf_infile_count = mfp->mf_blocknr_max;
Bram Moolenaar1c536282007-04-26 15:21:56 +00001323
1324 /* need to reallocate the memory used to store the data */
1325 p = alloc(mfp->mf_page_size);
1326 if (p == NULL)
1327 goto theend;
1328 mch_memmove(p, hp->bh_data, previous_page_size);
1329 vim_free(hp->bh_data);
1330 hp->bh_data = p;
1331 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 }
1333
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001334 /*
1335 * If .swp file name given directly, use name from swap file for buffer.
1336 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 if (directly)
1338 {
1339 expand_env(b0p->b0_fname, NameBuff, MAXPATHL);
1340 if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL)
1341 goto theend;
1342 }
1343
1344 home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001345 smsg(_("Using swap file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346
1347 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02001348 vim_strncpy(NameBuff, buf_spname(curbuf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 else
1350 home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001351 smsg(_("Original file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 msg_putchar('\n');
1353
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001354 /*
1355 * check date of swap file and original file
1356 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001357 mtime = char_to_long(b0p->b0_mtime);
1358 if (curbuf->b_ffname != NULL
1359 && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1
1360 && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1
1361 && org_stat.st_mtime > swp_stat.st_mtime)
1362 || org_stat.st_mtime != mtime))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001363 emsg(_("E308: Warning: Original file may have been changed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001364 out_flush();
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001365
1366 /* Get the 'fileformat' and 'fileencoding' from block zero. */
1367 b0_ff = (b0p->b0_flags & B0_FF_MASK);
1368 if (b0p->b0_flags & B0_HAS_FENC)
1369 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001370 int fnsize = B0_FNAME_SIZE_NOCRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001371
1372#ifdef FEAT_CRYPT
1373 /* Use the same size as in add_b0_fenc(). */
1374 if (b0p->b0_id[1] != BLOCK0_ID1)
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001375 fnsize = B0_FNAME_SIZE_CRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001376#endif
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001377 for (p = b0p->b0_fname + fnsize; p > b0p->b0_fname && p[-1] != NUL; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001378 ;
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001379 b0_fenc = vim_strnsave(p, (int)(b0p->b0_fname + fnsize - p));
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001380 }
1381
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 mf_put(mfp, hp, FALSE, FALSE); /* release block 0 */
1383 hp = NULL;
1384
1385 /*
1386 * Now that we are sure that the file is going to be recovered, clear the
1387 * contents of the current buffer.
1388 */
1389 while (!(curbuf->b_ml.ml_flags & ML_EMPTY))
1390 ml_delete((linenr_T)1, FALSE);
1391
1392 /*
1393 * Try reading the original file to obtain the values of 'fileformat',
1394 * 'fileencoding', etc. Ignore errors. The text itself is not used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001395 * When the file is encrypted the user is asked to enter the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396 */
1397 if (curbuf->b_ffname != NULL)
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001398 orig_file_status = readfile(curbuf->b_ffname, NULL, (linenr_T)0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001401#ifdef FEAT_CRYPT
1402 if (b0_cm >= 0)
1403 {
1404 /* Need to ask the user for the crypt key. If this fails we continue
1405 * without a key, will probably get garbage text. */
1406 if (*curbuf->b_p_key != NUL)
1407 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001408 smsg(_("Swap file is encrypted: \"%s\""), fname_used);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001409 msg_puts(_("\nIf you entered a new crypt key but did not write the text file,"));
1410 msg_puts(_("\nenter the new crypt key."));
1411 msg_puts(_("\nIf you wrote the text file after changing the crypt key press enter"));
1412 msg_puts(_("\nto use the same key for text file and swap file"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001413 }
1414 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001415 smsg(_(need_key_msg), fname_used);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001416 buf->b_p_key = crypt_get_key(FALSE, FALSE);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001417 if (buf->b_p_key == NULL)
1418 buf->b_p_key = curbuf->b_p_key;
1419 else if (*buf->b_p_key == NUL)
1420 {
1421 vim_free(buf->b_p_key);
1422 buf->b_p_key = curbuf->b_p_key;
1423 }
1424 if (buf->b_p_key == NULL)
1425 buf->b_p_key = empty_option;
1426 }
1427#endif
1428
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001429 /* Use the 'fileformat' and 'fileencoding' as stored in the swap file. */
1430 if (b0_ff != 0)
1431 set_fileformat(b0_ff - 1, OPT_LOCAL);
1432 if (b0_fenc != NULL)
1433 {
1434 set_option_value((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL);
1435 vim_free(b0_fenc);
1436 }
Bram Moolenaarc024b462019-06-08 18:07:21 +02001437 unchanged(curbuf, TRUE, TRUE);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001438
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439 bnum = 1; /* start with block 1 */
1440 page_count = 1; /* which is 1 page */
1441 lnum = 0; /* append after line 0 in curbuf */
1442 line_count = 0;
1443 idx = 0; /* start with first index in block 1 */
1444 error = 0;
1445 buf->b_ml.ml_stack_top = 0;
1446 buf->b_ml.ml_stack = NULL;
1447 buf->b_ml.ml_stack_size = 0; /* no stack yet */
1448
1449 if (curbuf->b_ffname == NULL)
1450 cannot_open = TRUE;
1451 else
1452 cannot_open = FALSE;
1453
1454 serious_error = FALSE;
1455 for ( ; !got_int; line_breakcheck())
1456 {
1457 if (hp != NULL)
1458 mf_put(mfp, hp, FALSE, FALSE); /* release previous block */
1459
1460 /*
1461 * get block
1462 */
1463 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
1464 {
1465 if (bnum == 1)
1466 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001467 semsg(_("E309: Unable to read block 1 from %s"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001468 goto theend;
1469 }
1470 ++error;
1471 ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"),
1472 (colnr_T)0, TRUE);
1473 }
1474 else /* there is a block */
1475 {
1476 pp = (PTR_BL *)(hp->bh_data);
1477 if (pp->pb_id == PTR_ID) /* it is a pointer block */
1478 {
1479 /* check line count when using pointer block first time */
1480 if (idx == 0 && line_count != 0)
1481 {
1482 for (i = 0; i < (int)pp->pb_count; ++i)
1483 line_count -= pp->pb_pointer[i].pe_line_count;
1484 if (line_count != 0)
1485 {
1486 ++error;
1487 ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"),
1488 (colnr_T)0, TRUE);
1489 }
1490 }
1491
1492 if (pp->pb_count == 0)
1493 {
1494 ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"),
1495 (colnr_T)0, TRUE);
1496 ++error;
1497 }
1498 else if (idx < (int)pp->pb_count) /* go a block deeper */
1499 {
1500 if (pp->pb_pointer[idx].pe_bnum < 0)
1501 {
1502 /*
1503 * Data block with negative block number.
1504 * Try to read lines from the original file.
1505 * This is slow, but it works.
1506 */
1507 if (!cannot_open)
1508 {
1509 line_count = pp->pb_pointer[idx].pe_line_count;
1510 if (readfile(curbuf->b_ffname, NULL, lnum,
1511 pp->pb_pointer[idx].pe_old_lnum - 1,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001512 line_count, NULL, 0) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513 cannot_open = TRUE;
1514 else
1515 lnum += line_count;
1516 }
1517 if (cannot_open)
1518 {
1519 ++error;
1520 ml_append(lnum++, (char_u *)_("???LINES MISSING"),
1521 (colnr_T)0, TRUE);
1522 }
1523 ++idx; /* get same block again for next index */
1524 continue;
1525 }
1526
1527 /*
1528 * going one block deeper in the tree
1529 */
1530 if ((top = ml_add_stack(buf)) < 0) /* new entry in stack */
1531 {
1532 ++error;
1533 break; /* out of memory */
1534 }
1535 ip = &(buf->b_ml.ml_stack[top]);
1536 ip->ip_bnum = bnum;
1537 ip->ip_index = idx;
1538
1539 bnum = pp->pb_pointer[idx].pe_bnum;
1540 line_count = pp->pb_pointer[idx].pe_line_count;
1541 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaar986a0032011-06-13 01:07:27 +02001542 idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 continue;
1544 }
1545 }
1546 else /* not a pointer block */
1547 {
1548 dp = (DATA_BL *)(hp->bh_data);
1549 if (dp->db_id != DATA_ID) /* block id wrong */
1550 {
1551 if (bnum == 1)
1552 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001553 semsg(_("E310: Block 1 ID wrong (%s not a .swp file?)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001554 mfp->mf_fname);
1555 goto theend;
1556 }
1557 ++error;
1558 ml_append(lnum++, (char_u *)_("???BLOCK MISSING"),
1559 (colnr_T)0, TRUE);
1560 }
1561 else
1562 {
1563 /*
1564 * it is a data block
1565 * Append all the lines in this block
1566 */
1567 has_error = FALSE;
1568 /*
1569 * check length of block
1570 * if wrong, use length in pointer block
1571 */
1572 if (page_count * mfp->mf_page_size != dp->db_txt_end)
1573 {
1574 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"),
1575 (colnr_T)0, TRUE);
1576 ++error;
1577 has_error = TRUE;
1578 dp->db_txt_end = page_count * mfp->mf_page_size;
1579 }
1580
1581 /* make sure there is a NUL at the end of the block */
1582 *((char_u *)dp + dp->db_txt_end - 1) = NUL;
1583
1584 /*
1585 * check number of lines in block
1586 * if wrong, use count in data block
1587 */
1588 if (line_count != dp->db_line_count)
1589 {
1590 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"),
1591 (colnr_T)0, TRUE);
1592 ++error;
1593 has_error = TRUE;
1594 }
1595
1596 for (i = 0; i < dp->db_line_count; ++i)
1597 {
1598 txt_start = (dp->db_index[i] & DB_INDEX_MASK);
Bram Moolenaar740885b2009-11-03 14:33:17 +00001599 if (txt_start <= (int)HEADER_SIZE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 || txt_start >= (int)dp->db_txt_end)
1601 {
1602 p = (char_u *)"???";
1603 ++error;
1604 }
1605 else
1606 p = (char_u *)dp + txt_start;
1607 ml_append(lnum++, p, (colnr_T)0, TRUE);
1608 }
1609 if (has_error)
Bram Moolenaar740885b2009-11-03 14:33:17 +00001610 ml_append(lnum++, (char_u *)_("???END"),
1611 (colnr_T)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001612 }
1613 }
1614 }
1615
1616 if (buf->b_ml.ml_stack_top == 0) /* finished */
1617 break;
1618
1619 /*
1620 * go one block up in the tree
1621 */
1622 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
1623 bnum = ip->ip_bnum;
1624 idx = ip->ip_index + 1; /* go to next index */
1625 page_count = 1;
1626 }
1627
1628 /*
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001629 * Compare the buffer contents with the original file. When they differ
1630 * set the 'modified' flag.
1631 * Lines 1 - lnum are the new contents.
1632 * Lines lnum + 1 to ml_line_count are the original contents.
1633 * Line ml_line_count + 1 in the dummy empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001634 */
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001635 if (orig_file_status != OK || curbuf->b_ml.ml_line_count != lnum * 2 + 1)
1636 {
1637 /* Recovering an empty file results in two lines and the first line is
1638 * empty. Don't set the modified flag then. */
1639 if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
1640 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001641 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001642 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001643 }
1644 }
1645 else
1646 {
1647 for (idx = 1; idx <= lnum; ++idx)
1648 {
1649 /* Need to copy one line, fetching the other one may flush it. */
1650 p = vim_strsave(ml_get(idx));
1651 i = STRCMP(p, ml_get(idx + lnum));
1652 vim_free(p);
1653 if (i != 0)
1654 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001655 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001656 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001657 break;
1658 }
1659 }
1660 }
1661
1662 /*
1663 * Delete the lines from the original file and the dummy line from the
1664 * empty buffer. These will now be after the last line in the buffer.
1665 */
1666 while (curbuf->b_ml.ml_line_count > lnum
1667 && !(curbuf->b_ml.ml_flags & ML_EMPTY))
1668 ml_delete(curbuf->b_ml.ml_line_count, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001669 curbuf->b_flags |= BF_RECOVERED;
1670
1671 recoverymode = FALSE;
1672 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001673 emsg(_("E311: Recovery Interrupted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 else if (error)
1675 {
1676 ++no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001677 msg(">>>>>>>>>>>>>");
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001678 emsg(_("E312: Errors detected while recovering; look for lines starting with ???"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001679 --no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001680 msg(_("See \":help E312\" for more information."));
1681 msg(">>>>>>>>>>>>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 }
1683 else
1684 {
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001685 if (curbuf->b_changed)
1686 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001687 msg(_("Recovery completed. You should check if everything is OK."));
1688 msg_puts(_("\n(You might want to write out this file under another name\n"));
1689 msg_puts(_("and run diff with the original file to check for changes)"));
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001690 }
1691 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001692 msg(_("Recovery completed. Buffer contents equals file contents."));
1693 msg_puts(_("\nYou may want to delete the .swp file now.\n\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001694 cmdline_row = msg_row;
1695 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001696#ifdef FEAT_CRYPT
1697 if (*buf->b_p_key != NUL && STRCMP(curbuf->b_p_key, buf->b_p_key) != 0)
1698 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001699 msg_puts(_("Using crypt key from swap file for the text file.\n"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001700 set_option_value((char_u *)"key", 0L, buf->b_p_key, OPT_LOCAL);
1701 }
1702#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 redraw_curbuf_later(NOT_VALID);
1704
1705theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001706 vim_free(fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001707 recoverymode = FALSE;
1708 if (mfp != NULL)
1709 {
1710 if (hp != NULL)
1711 mf_put(mfp, hp, FALSE, FALSE);
1712 mf_close(mfp, FALSE); /* will also vim_free(mfp->mf_fname) */
1713 }
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001714 if (buf != NULL)
1715 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001716#ifdef FEAT_CRYPT
1717 if (buf->b_p_key != curbuf->b_p_key)
1718 free_string_option(buf->b_p_key);
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001719 free_string_option(buf->b_p_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001720#endif
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001721 vim_free(buf->b_ml.ml_stack);
1722 vim_free(buf);
1723 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001724 if (serious_error && called_from_main)
1725 ml_close(curbuf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 else
1727 {
1728 apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf);
1729 apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf);
1730 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 return;
1732}
1733
1734/*
1735 * Find the names of swap files in current directory and the directory given
1736 * with the 'directory' option.
1737 *
1738 * Used to:
1739 * - list the swap files for "vim -r"
1740 * - count the number of swap files when recovering
1741 * - list the swap files when recovering
1742 * - find the name of the n'th swap file when recovering
1743 */
1744 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001745recover_names(
1746 char_u *fname, /* base for swap file name */
1747 int list, /* when TRUE, list the swap file names */
1748 int nr, /* when non-zero, return nr'th swap file name */
1749 char_u **fname_out) /* result when "nr" > 0 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001750{
1751 int num_names;
1752 char_u *(names[6]);
1753 char_u *tail;
1754 char_u *p;
1755 int num_files;
1756 int file_count = 0;
1757 char_u **files;
1758 int i;
1759 char_u *dirp;
1760 char_u *dir_name;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001761 char_u *fname_res = NULL;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001762#ifdef HAVE_READLINK
1763 char_u fname_buf[MAXPATHL];
Bram Moolenaar64354da2010-05-25 21:37:17 +02001764#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001765
Bram Moolenaar64354da2010-05-25 21:37:17 +02001766 if (fname != NULL)
1767 {
1768#ifdef HAVE_READLINK
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001769 /* Expand symlink in the file name, because the swap file is created
1770 * with the actual file instead of with the symlink. */
1771 if (resolve_symlink(fname, fname_buf) == OK)
1772 fname_res = fname_buf;
1773 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001774#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001775 fname_res = fname;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001776 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001777
1778 if (list)
1779 {
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001780 /* use msg() to start the scrolling properly */
Bram Moolenaar32526b32019-01-19 17:43:09 +01001781 msg(_("Swap files found:"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001782 msg_putchar('\n');
1783 }
1784
1785 /*
1786 * Do the loop for every directory in 'directory'.
1787 * First allocate some memory to put the directory name in.
1788 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001789 dir_name = alloc(STRLEN(p_dir) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 dirp = p_dir;
1791 while (dir_name != NULL && *dirp)
1792 {
1793 /*
1794 * Isolate a directory name from *dirp and put it in dir_name (we know
1795 * it is large enough, so use 31000 for length).
1796 * Advance dirp to next directory name.
1797 */
1798 (void)copy_option_part(&dirp, dir_name, 31000, ",");
1799
1800 if (dir_name[0] == '.' && dir_name[1] == NUL) /* check current dir */
1801 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001802 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 {
1804#ifdef VMS
1805 names[0] = vim_strsave((char_u *)"*_sw%");
1806#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001807 names[0] = vim_strsave((char_u *)"*.sw?");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001809#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar2cc93182006-10-10 19:56:03 +00001810 /* For Unix names starting with a dot are special. MS-Windows
1811 * supports this too, on some file systems. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001812 names[1] = vim_strsave((char_u *)".*.sw?");
1813 names[2] = vim_strsave((char_u *)".sw?");
1814 num_names = 3;
1815#else
1816# ifdef VMS
1817 names[1] = vim_strsave((char_u *)".*_sw%");
1818 num_names = 2;
1819# else
1820 num_names = 1;
1821# endif
1822#endif
1823 }
1824 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001825 num_names = recov_file_names(names, fname_res, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001826 }
1827 else /* check directory dir_name */
1828 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001829 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001830 {
1831#ifdef VMS
1832 names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE);
1833#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001834 names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001835#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001836#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar2cc93182006-10-10 19:56:03 +00001837 /* For Unix names starting with a dot are special. MS-Windows
1838 * supports this too, on some file systems. */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001839 names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
1840 names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
1841 num_names = 3;
1842#else
1843# ifdef VMS
1844 names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE);
1845 num_names = 2;
1846# else
1847 num_names = 1;
1848# endif
1849#endif
1850 }
1851 else
1852 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001853#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01001854 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01001855
1856 p = dir_name + len;
1857 if (after_pathsep(dir_name, p) && len > 1 && p[-1] == p[-2])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858 {
1859 /* Ends with '//', Use Full path for swap name */
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001860 tail = make_percent_swname(dir_name, fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 }
1862 else
1863#endif
1864 {
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001865 tail = gettail(fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 tail = concat_fnames(dir_name, tail, TRUE);
1867 }
1868 if (tail == NULL)
1869 num_names = 0;
1870 else
1871 {
1872 num_names = recov_file_names(names, tail, FALSE);
1873 vim_free(tail);
1874 }
1875 }
1876 }
1877
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02001878 // check for out-of-memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001879 for (i = 0; i < num_names; ++i)
1880 {
1881 if (names[i] == NULL)
1882 {
1883 for (i = 0; i < num_names; ++i)
1884 vim_free(names[i]);
1885 num_names = 0;
1886 }
1887 }
1888 if (num_names == 0)
1889 num_files = 0;
1890 else if (expand_wildcards(num_names, names, &num_files, &files,
Bram Moolenaar99499b12019-05-23 21:35:48 +02001891 EW_NOTENV|EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001892 num_files = 0;
1893
1894 /*
1895 * When no swap file found, wildcard expansion might have failed (e.g.
1896 * not able to execute the shell).
1897 * Try finding a swap file by simply adding ".swp" to the file name.
1898 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001899 if (*dirp == NUL && file_count + num_files == 0 && fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001901 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001902 char_u *swapname;
1903
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001904 swapname = modname(fname_res,
Bram Moolenaare60acc12011-05-10 16:41:25 +02001905#if defined(VMS)
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001906 (char_u *)"_swp", FALSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907#else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001908 (char_u *)".swp", TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001909#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001910 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 if (swapname != NULL)
1912 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001913 if (mch_stat((char *)swapname, &st) != -1) // It exists!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001915 files = ALLOC_ONE(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 if (files != NULL)
1917 {
1918 files[0] = swapname;
1919 swapname = NULL;
1920 num_files = 1;
1921 }
1922 }
1923 vim_free(swapname);
1924 }
1925 }
1926
1927 /*
1928 * remove swapfile name of the current buffer, it must be ignored
1929 */
1930 if (curbuf->b_ml.ml_mfp != NULL
1931 && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL)
1932 {
1933 for (i = 0; i < num_files; ++i)
Bram Moolenaar99499b12019-05-23 21:35:48 +02001934 // Do not expand wildcards, on windows would try to expand
1935 // "%tmp%" in "%tmp%file".
1936 if (fullpathcmp(p, files[i], TRUE, FALSE) & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02001938 // Remove the name from files[i]. Move further entries
1939 // down. When the array becomes empty free it here, since
1940 // FreeWild() won't be called below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 vim_free(files[i]);
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00001942 if (--num_files == 0)
1943 vim_free(files);
1944 else
1945 for ( ; i < num_files; ++i)
1946 files[i] = files[i + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001947 }
1948 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001949 if (nr > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 {
1951 file_count += num_files;
1952 if (nr <= file_count)
1953 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001954 *fname_out = vim_strsave(
1955 files[nr - 1 + num_files - file_count]);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001956 dirp = (char_u *)""; /* stop searching */
1957 }
1958 }
1959 else if (list)
1960 {
1961 if (dir_name[0] == '.' && dir_name[1] == NUL)
1962 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001963 if (fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001964 msg_puts(_(" In current directory:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001966 msg_puts(_(" Using specified name:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967 }
1968 else
1969 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001970 msg_puts(_(" In directory "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 msg_home_replace(dir_name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001972 msg_puts(":\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 }
1974
1975 if (num_files)
1976 {
1977 for (i = 0; i < num_files; ++i)
1978 {
1979 /* print the swap file name */
1980 msg_outnum((long)++file_count);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001981 msg_puts(". ");
1982 msg_puts((char *)gettail(files[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001983 msg_putchar('\n');
1984 (void)swapfile_info(files[i]);
1985 }
1986 }
1987 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001988 msg_puts(_(" -- none --\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 out_flush();
1990 }
1991 else
1992 file_count += num_files;
1993
1994 for (i = 0; i < num_names; ++i)
1995 vim_free(names[i]);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001996 if (num_files > 0)
1997 FreeWild(num_files, files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 }
1999 vim_free(dir_name);
2000 return file_count;
2001}
2002
Bram Moolenaar4f974752019-02-17 17:44:42 +01002003#if defined(UNIX) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004/*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002005 * Need _very_ long file names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 * Append the full path to name with path separators made into percent
2007 * signs, to dir. An unnamed buffer is handled as "" (<currentdir>/"")
2008 */
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002009 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002010make_percent_swname(char_u *dir, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011{
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002012 char_u *d = NULL, *s, *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002013
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002014 f = fix_fname(name != NULL ? name : (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002015 if (f != NULL)
2016 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002017 s = alloc(STRLEN(f) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 if (s != NULL)
2019 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002020 STRCPY(s, f);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002021 for (d = s; *d != NUL; MB_PTR_ADV(d))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002022 if (vim_ispathsep(*d))
2023 *d = '%';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 d = concat_fnames(dir, s, TRUE);
2025 vim_free(s);
2026 }
2027 vim_free(f);
2028 }
2029 return d;
2030}
2031#endif
2032
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002033#if (defined(UNIX) || defined(VMS) || defined(MSWIN)) \
2034 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
2035# define HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036static int process_still_running;
2037#endif
2038
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002039#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040/*
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002041 * Return information found in swapfile "fname" in dictionary "d".
2042 * This is used by the swapinfo() function.
2043 */
2044 void
2045get_b0_dict(char_u *fname, dict_T *d)
2046{
2047 int fd;
2048 struct block0 b0;
2049
2050 if ((fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
2051 {
2052 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
2053 {
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002054 if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002055 dict_add_string(d, "error", (char_u *)"Not a swap file");
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002056 else if (b0_magic_wrong(&b0))
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002057 dict_add_string(d, "error", (char_u *)"Magic number mismatch");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002058 else
2059 {
2060 /* we have swap information */
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002061 dict_add_string_len(d, "version", b0.b0_version, 10);
2062 dict_add_string_len(d, "user", b0.b0_uname, B0_UNAME_SIZE);
2063 dict_add_string_len(d, "host", b0.b0_hname, B0_HNAME_SIZE);
2064 dict_add_string_len(d, "fname", b0.b0_fname, B0_FNAME_SIZE_ORG);
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002065
2066 dict_add_number(d, "pid", char_to_long(b0.b0_pid));
2067 dict_add_number(d, "mtime", char_to_long(b0.b0_mtime));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002068 dict_add_number(d, "dirty", b0.b0_dirty ? 1 : 0);
2069# ifdef CHECK_INODE
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002070 dict_add_number(d, "inode", char_to_long(b0.b0_ino));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002071# endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002072 }
2073 }
2074 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002075 dict_add_string(d, "error", (char_u *)"Cannot read file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002076 close(fd);
2077 }
2078 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002079 dict_add_string(d, "error", (char_u *)"Cannot open file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002080}
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002081#endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002082
2083/*
Bram Moolenaardb517302019-06-18 22:53:24 +02002084 * Cache of the current timezone name as retrieved from TZ, or an empty string
2085 * where unset, up to 64 octets long including trailing null byte.
2086 */
2087#if defined(HAVE_LOCALTIME_R) && defined(HAVE_TZSET)
2088static char tz_cache[64];
2089#endif
2090
2091/*
2092 * Call either localtime(3) or localtime_r(3) from POSIX libc time.h, with the
2093 * latter version preferred for reentrancy.
2094 *
2095 * If we use localtime_r(3) and we have tzset(3) available, check to see if the
2096 * environment variable TZ has changed since the last run, and call tzset(3) to
2097 * update the global timezone variables if it has. This is because the POSIX
2098 * standard doesn't require localtime_r(3) implementations to do that as it
2099 * does with localtime(3), and we don't want to call tzset(3) every time.
2100 */
2101 struct tm *
2102vim_localtime(
2103 const time_t *timep, // timestamp for local representation
Bram Moolenaarbd67aac2019-09-21 23:09:04 +02002104 struct tm *result UNUSED) // pointer to caller return buffer
Bram Moolenaardb517302019-06-18 22:53:24 +02002105{
2106#ifdef HAVE_LOCALTIME_R
2107# ifdef HAVE_TZSET
2108 char *tz; // pointer for TZ environment var
2109
2110 tz = (char *)mch_getenv((char_u *)"TZ");
2111 if (tz == NULL)
2112 tz = "";
2113 if (STRNCMP(tz_cache, tz, sizeof(tz_cache) - 1) != 0)
2114 {
2115 tzset();
2116 vim_strncpy((char_u *)tz_cache, (char_u *)tz, sizeof(tz_cache) - 1);
2117 }
2118# endif // HAVE_TZSET
2119 return localtime_r(timep, result);
2120#else
2121 return localtime(timep);
2122#endif // HAVE_LOCALTIME_R
2123}
2124
2125/*
Bram Moolenaar63d25552019-05-10 21:28:38 +02002126 * Replacement for ctime(), which is not safe to use.
2127 * Requires strftime(), otherwise returns "(unknown)".
2128 * If "thetime" is invalid returns "(invalid)". Never returns NULL.
2129 * When "add_newline" is TRUE add a newline like ctime() does.
2130 * Uses a static buffer.
2131 */
2132 char *
2133get_ctime(time_t thetime, int add_newline)
2134{
2135 static char buf[50];
2136#ifdef HAVE_STRFTIME
Bram Moolenaar63d25552019-05-10 21:28:38 +02002137 struct tm tmval;
Bram Moolenaar63d25552019-05-10 21:28:38 +02002138 struct tm *curtime;
2139
Bram Moolenaardb517302019-06-18 22:53:24 +02002140 curtime = vim_localtime(&thetime, &tmval);
Bram Moolenaar63d25552019-05-10 21:28:38 +02002141 /* MSVC returns NULL for an invalid value of seconds. */
2142 if (curtime == NULL)
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02002143 vim_strncpy((char_u *)buf, (char_u *)_("(Invalid)"), sizeof(buf) - 1);
Bram Moolenaar63d25552019-05-10 21:28:38 +02002144 else
Bram Moolenaar663bbc02019-07-21 15:23:35 +02002145 {
2146 (void)strftime(buf, sizeof(buf) - 1, _("%a %b %d %H:%M:%S %Y"),
2147 curtime);
2148# ifdef MSWIN
2149 if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
2150 {
2151 char_u *to_free = NULL;
2152 int len;
2153
2154 acp_to_enc((char_u *)buf, (int)strlen(buf), &to_free, &len);
2155 if (to_free != NULL)
2156 {
2157 STRCPY(buf, to_free);
2158 vim_free(to_free);
2159 }
2160 }
2161# endif
2162 }
Bram Moolenaar63d25552019-05-10 21:28:38 +02002163#else
2164 STRCPY(buf, "(unknown)");
2165#endif
2166 if (add_newline)
2167 STRCAT(buf, "\n");
2168 return buf;
2169}
2170
2171/*
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002172 * Give information about an existing swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002173 * Returns timestamp (0 when unknown).
2174 */
2175 static time_t
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002176swapfile_info(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177{
Bram Moolenaar8767f522016-07-01 17:17:39 +02002178 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002179 int fd;
2180 struct block0 b0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181#ifdef UNIX
2182 char_u uname[B0_UNAME_SIZE];
2183#endif
2184
Bram Moolenaar63d25552019-05-10 21:28:38 +02002185 // print the swap file date
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 if (mch_stat((char *)fname, &st) != -1)
2187 {
2188#ifdef UNIX
Bram Moolenaar63d25552019-05-10 21:28:38 +02002189 // print name of owner of the file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK)
2191 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002192 msg_puts(_(" owned by: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002193 msg_outtrans(uname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002194 msg_puts(_(" dated: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 }
2196 else
2197#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002198 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02002199 msg_puts(get_ctime(st.st_mtime, TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 }
Bram Moolenaar63d25552019-05-10 21:28:38 +02002201 else
2202 st.st_mtime = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203
2204 /*
2205 * print the original file name
2206 */
2207 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2208 if (fd >= 0)
2209 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01002210 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 {
2212 if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0)
2213 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002214 msg_puts(_(" [from Vim version 3.0]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002216 else if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002218 msg_puts(_(" [does not look like a Vim swap file]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002219 }
2220 else
2221 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002222 msg_puts(_(" file name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 if (b0.b0_fname[0] == NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002224 msg_puts(_("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 else
2226 msg_outtrans(b0.b0_fname);
2227
Bram Moolenaar32526b32019-01-19 17:43:09 +01002228 msg_puts(_("\n modified: "));
2229 msg_puts(b0.b0_dirty ? _("YES") : _("no"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002230
2231 if (*(b0.b0_uname) != NUL)
2232 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002233 msg_puts(_("\n user name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 msg_outtrans(b0.b0_uname);
2235 }
2236
2237 if (*(b0.b0_hname) != NUL)
2238 {
2239 if (*(b0.b0_uname) != NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002240 msg_puts(_(" host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002242 msg_puts(_("\n host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 msg_outtrans(b0.b0_hname);
2244 }
2245
2246 if (char_to_long(b0.b0_pid) != 0L)
2247 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002248 msg_puts(_("\n process ID: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 msg_outnum(char_to_long(b0.b0_pid));
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002250#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002251 if (mch_process_running(char_to_long(b0.b0_pid)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002253 msg_puts(_(" (STILL RUNNING)"));
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002254# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 process_still_running = TRUE;
2256# endif
2257 }
2258#endif
2259 }
2260
2261 if (b0_magic_wrong(&b0))
2262 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002263#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 if (STRNCMP(b0.b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002265 msg_puts(_("\n [not usable with this version of Vim]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002266 else
2267#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002268 msg_puts(_("\n [not usable on this computer]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269 }
2270 }
2271 }
2272 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002273 msg_puts(_(" [cannot be read]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002274 close(fd);
2275 }
2276 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002277 msg_puts(_(" [cannot be opened]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 msg_putchar('\n');
2279
Bram Moolenaar63d25552019-05-10 21:28:38 +02002280 return st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002281}
2282
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002283/*
2284 * Return TRUE if the swap file looks OK and there are no changes, thus it can
2285 * be safely deleted.
2286 */
2287 static time_t
2288swapfile_unchanged(char_u *fname)
2289{
2290 stat_T st;
2291 int fd;
2292 struct block0 b0;
2293 int ret = TRUE;
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002294#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002295 long pid;
2296#endif
2297
2298 // must be able to stat the swap file
2299 if (mch_stat((char *)fname, &st) == -1)
2300 return FALSE;
2301
2302 // must be able to read the first block
2303 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2304 if (fd < 0)
2305 return FALSE;
2306 if (read_eintr(fd, &b0, sizeof(b0)) != sizeof(b0))
2307 {
2308 close(fd);
2309 return FALSE;
2310 }
2311
2312 // the ID and magic number must be correct
2313 if (ml_check_b0_id(&b0) == FAIL|| b0_magic_wrong(&b0))
2314 ret = FALSE;
2315
2316 // must be unchanged
2317 if (b0.b0_dirty)
2318 ret = FALSE;
2319
2320#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar32aa1022019-11-02 22:54:41 +01002321 // process must be known and not be running
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002322 pid = char_to_long(b0.b0_pid);
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002323 if (pid == 0L || mch_process_running(pid))
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002324 ret = FALSE;
2325#endif
2326
2327 // TODO: Should we check if the swap file was created on the current
2328 // system? And the current user?
2329
2330 close(fd);
2331 return ret;
2332}
2333
Bram Moolenaar071d4272004-06-13 20:20:40 +00002334 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002335recov_file_names(char_u **names, char_u *path, int prepend_dot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336{
2337 int num_names;
2338
Bram Moolenaar071d4272004-06-13 20:20:40 +00002339 /*
2340 * (Win32 and Win64) never short names, but do prepend a dot.
2341 * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both.
2342 * Only use the short name if it is different.
2343 */
2344 char_u *p;
2345 int i;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002346# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002347 int shortname = curbuf->b_shortname;
2348
2349 curbuf->b_shortname = FALSE;
2350# endif
2351
2352 num_names = 0;
2353
2354 /*
2355 * May also add the file name with a dot prepended, for swap file in same
2356 * dir as original file.
2357 */
2358 if (prepend_dot)
2359 {
2360 names[num_names] = modname(path, (char_u *)".sw?", TRUE);
2361 if (names[num_names] == NULL)
2362 goto end;
2363 ++num_names;
2364 }
2365
2366 /*
2367 * Form the normal swap file name pattern by appending ".sw?".
2368 */
2369#ifdef VMS
2370 names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE);
2371#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372 names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002373#endif
2374 if (names[num_names] == NULL)
2375 goto end;
2376 if (num_names >= 1) /* check if we have the same name twice */
2377 {
2378 p = names[num_names - 1];
2379 i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]);
2380 if (i > 0)
2381 p += i; /* file name has been expanded to full path */
2382
2383 if (STRCMP(p, names[num_names]) != 0)
2384 ++num_names;
2385 else
2386 vim_free(names[num_names]);
2387 }
2388 else
2389 ++num_names;
2390
Bram Moolenaar4f974752019-02-17 17:44:42 +01002391# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002392 /*
2393 * Also try with 'shortname' set, in case the file is on a DOS filesystem.
2394 */
2395 curbuf->b_shortname = TRUE;
2396#ifdef VMS
2397 names[num_names] = modname(path, (char_u *)"_sw%", FALSE);
2398#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 names[num_names] = modname(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002400#endif
2401 if (names[num_names] == NULL)
2402 goto end;
2403
2404 /*
2405 * Remove the one from 'shortname', if it's the same as with 'noshortname'.
2406 */
2407 p = names[num_names];
2408 i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]);
2409 if (i > 0)
2410 p += i; /* file name has been expanded to full path */
2411 if (STRCMP(names[num_names - 1], p) == 0)
2412 vim_free(names[num_names]);
2413 else
2414 ++num_names;
2415# endif
2416
2417end:
Bram Moolenaar4f974752019-02-17 17:44:42 +01002418# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419 curbuf->b_shortname = shortname;
2420# endif
2421
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422 return num_names;
2423}
2424
2425/*
2426 * sync all memlines
2427 *
2428 * If 'check_file' is TRUE, check if original file exists and was not changed.
2429 * If 'check_char' is TRUE, stop syncing when character becomes available, but
2430 * always sync at least one block.
2431 */
2432 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002433ml_sync_all(int check_file, int check_char)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434{
2435 buf_T *buf;
Bram Moolenaar8767f522016-07-01 17:17:39 +02002436 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437
Bram Moolenaar29323592016-07-24 22:04:11 +02002438 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002439 {
2440 if (buf->b_ml.ml_mfp == NULL || buf->b_ml.ml_mfp->mf_fname == NULL)
2441 continue; /* no file */
2442
2443 ml_flush_line(buf); /* flush buffered line */
2444 /* flush locked block */
2445 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH);
2446 if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp)
2447 && buf->b_ffname != NULL)
2448 {
2449 /*
2450 * If the original file does not exist anymore or has been changed
2451 * call ml_preserve() to get rid of all negative numbered blocks.
2452 */
2453 if (mch_stat((char *)buf->b_ffname, &st) == -1
2454 || st.st_mtime != buf->b_mtime_read
Bram Moolenaar914703b2010-05-31 21:59:46 +02002455 || st.st_size != buf->b_orig_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456 {
2457 ml_preserve(buf, FALSE);
2458 did_check_timestamps = FALSE;
2459 need_check_timestamps = TRUE; /* give message later */
2460 }
2461 }
2462 if (buf->b_ml.ml_mfp->mf_dirty)
2463 {
2464 (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0)
2465 | (bufIsChanged(buf) ? MFS_FLUSH : 0));
2466 if (check_char && ui_char_avail()) /* character available now */
2467 break;
2468 }
2469 }
2470}
2471
2472/*
2473 * sync one buffer, including negative blocks
2474 *
2475 * after this all the blocks are in the swap file
2476 *
2477 * Used for the :preserve command and when the original file has been
2478 * changed or deleted.
2479 *
2480 * when message is TRUE the success of preserving is reported
2481 */
2482 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002483ml_preserve(buf_T *buf, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002484{
2485 bhdr_T *hp;
2486 linenr_T lnum;
2487 memfile_T *mfp = buf->b_ml.ml_mfp;
2488 int status;
2489 int got_int_save = got_int;
2490
2491 if (mfp == NULL || mfp->mf_fname == NULL)
2492 {
2493 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002494 emsg(_("E313: Cannot preserve, there is no swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 return;
2496 }
2497
2498 /* We only want to stop when interrupted here, not when interrupted
2499 * before. */
2500 got_int = FALSE;
2501
2502 ml_flush_line(buf); /* flush buffered line */
2503 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush locked block */
2504 status = mf_sync(mfp, MFS_ALL | MFS_FLUSH);
2505
2506 /* stack is invalid after mf_sync(.., MFS_ALL) */
2507 buf->b_ml.ml_stack_top = 0;
2508
2509 /*
2510 * Some of the data blocks may have been changed from negative to
2511 * positive block number. In that case the pointer blocks need to be
2512 * updated.
2513 *
2514 * We don't know in which pointer block the references are, so we visit
2515 * all data blocks until there are no more translations to be done (or
2516 * we hit the end of the file, which can only happen in case a write fails,
2517 * e.g. when file system if full).
2518 * ml_find_line() does the work by translating the negative block numbers
2519 * when getting the first line of each data block.
2520 */
2521 if (mf_need_trans(mfp) && !got_int)
2522 {
2523 lnum = 1;
2524 while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count)
2525 {
2526 hp = ml_find_line(buf, lnum, ML_FIND);
2527 if (hp == NULL)
2528 {
2529 status = FAIL;
2530 goto theend;
2531 }
2532 CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum");
2533 lnum = buf->b_ml.ml_locked_high + 1;
2534 }
2535 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush locked block */
2536 /* sync the updated pointer blocks */
2537 if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL)
2538 status = FAIL;
2539 buf->b_ml.ml_stack_top = 0; /* stack is invalid now */
2540 }
2541theend:
2542 got_int |= got_int_save;
2543
2544 if (message)
2545 {
2546 if (status == OK)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002547 msg(_("File preserved"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002549 emsg(_("E314: Preserve failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550 }
2551}
2552
2553/*
2554 * NOTE: The pointer returned by the ml_get_*() functions only remains valid
2555 * until the next call!
2556 * line1 = ml_get(1);
2557 * line2 = ml_get(2); // line1 is now invalid!
2558 * Make a copy of the line if necessary.
2559 */
2560/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002561 * Return a pointer to a (read-only copy of a) line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002562 *
2563 * On failure an error message is given and IObuff is returned (to avoid
2564 * having to check for error everywhere).
2565 */
2566 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002567ml_get(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002568{
2569 return ml_get_buf(curbuf, lnum, FALSE);
2570}
2571
2572/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002573 * Return pointer to position "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002574 */
2575 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002576ml_get_pos(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577{
2578 return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col);
2579}
2580
2581/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002582 * Return pointer to cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002583 */
2584 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002585ml_get_curline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002586{
2587 return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE);
2588}
2589
2590/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002591 * Return pointer to cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 */
2593 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002594ml_get_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595{
2596 return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) +
2597 curwin->w_cursor.col);
2598}
2599
2600/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002601 * Return a pointer to a line in a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00002602 *
2603 * "will_change": if TRUE mark the buffer dirty (chars in the line will be
2604 * changed)
2605 */
2606 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002607ml_get_buf(
2608 buf_T *buf,
2609 linenr_T lnum,
2610 int will_change) /* line will be changed */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611{
Bram Moolenaarad40f022007-02-13 03:01:39 +00002612 bhdr_T *hp;
2613 DATA_BL *dp;
Bram Moolenaarad40f022007-02-13 03:01:39 +00002614 static int recursive = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615
2616 if (lnum > buf->b_ml.ml_line_count) /* invalid line number */
2617 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002618 if (recursive == 0)
2619 {
2620 /* Avoid giving this message for a recursive call, may happen when
2621 * the GUI redraws part of the text. */
2622 ++recursive;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002623 siemsg(_("E315: ml_get: invalid lnum: %ld"), lnum);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002624 --recursive;
2625 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002626errorret:
2627 STRCPY(IObuff, "???");
Bram Moolenaaradfde112019-05-25 22:11:45 +02002628 buf->b_ml.ml_line_len = 4;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 return IObuff;
2630 }
Bram Moolenaaradfde112019-05-25 22:11:45 +02002631 if (lnum <= 0) // pretend line 0 is line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002632 lnum = 1;
2633
Bram Moolenaaradfde112019-05-25 22:11:45 +02002634 if (buf->b_ml.ml_mfp == NULL) // there are no lines
2635 {
2636 buf->b_ml.ml_line_len = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 return (char_u *)"";
Bram Moolenaaradfde112019-05-25 22:11:45 +02002638 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002639
Bram Moolenaar37d619f2010-03-10 14:46:26 +01002640 /*
2641 * See if it is the same line as requested last time.
2642 * Otherwise may need to flush last used line.
2643 * Don't use the last used line when 'swapfile' is reset, need to load all
2644 * blocks.
2645 */
Bram Moolenaar47b8b152007-02-07 02:41:57 +00002646 if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002647 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002648 unsigned start, end;
2649 colnr_T len;
2650 int idx;
2651
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652 ml_flush_line(buf);
2653
2654 /*
2655 * Find the data block containing the line.
2656 * This also fills the stack with the blocks from the root to the data
2657 * block and releases any locked block.
2658 */
2659 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
2660 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002661 if (recursive == 0)
2662 {
2663 /* Avoid giving this message for a recursive call, may happen
2664 * when the GUI redraws part of the text. */
2665 ++recursive;
Bram Moolenaarcb868932019-10-26 20:56:21 +02002666 get_trans_bufname(buf);
2667 shorten_dir(NameBuff);
2668 siemsg(_("E316: ml_get: cannot find line %ld in buffer %d %s"),
2669 lnum, buf->b_fnum, NameBuff);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002670 --recursive;
2671 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002672 goto errorret;
2673 }
2674
2675 dp = (DATA_BL *)(hp->bh_data);
2676
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002677 idx = lnum - buf->b_ml.ml_locked_low;
2678 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
2679 // The text ends where the previous line starts. The first line ends
2680 // at the end of the block.
2681 if (idx == 0)
2682 end = dp->db_txt_end;
2683 else
2684 end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
2685 len = end - start;
2686
2687 buf->b_ml.ml_line_ptr = (char_u *)dp + start;
2688 buf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002689 buf->b_ml.ml_line_lnum = lnum;
2690 buf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
2691 }
2692 if (will_change)
2693 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
2694
2695 return buf->b_ml.ml_line_ptr;
2696}
2697
2698/*
2699 * Check if a line that was just obtained by a call to ml_get
2700 * is in allocated memory.
2701 */
2702 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002703ml_line_alloced(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002704{
2705 return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY);
2706}
2707
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002708#ifdef FEAT_TEXT_PROP
2709 static void
2710add_text_props_for_append(
2711 buf_T *buf,
2712 linenr_T lnum,
2713 char_u **line,
2714 int *len,
2715 char_u **tofree)
2716{
2717 int round;
2718 int new_prop_count = 0;
2719 int count;
2720 int n;
2721 char_u *props;
Bram Moolenaarea781452019-09-04 18:53:12 +02002722 int new_len = 0; // init for gcc
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002723 char_u *new_line;
2724 textprop_T prop;
2725
2726 // Make two rounds:
2727 // 1. calculate the extra space needed
2728 // 2. allocate the space and fill it
2729 for (round = 1; round <= 2; ++round)
2730 {
2731 if (round == 2)
2732 {
2733 if (new_prop_count == 0)
2734 return; // nothing to do
2735 new_len = *len + new_prop_count * sizeof(textprop_T);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002736 new_line = alloc(new_len);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002737 if (new_line == NULL)
2738 return;
2739 mch_memmove(new_line, *line, *len);
2740 new_prop_count = 0;
2741 }
2742
2743 // Get the line above to find any props that continue in the next
2744 // line.
2745 count = get_text_props(buf, lnum, &props, FALSE);
2746 for (n = 0; n < count; ++n)
2747 {
2748 mch_memmove(&prop, props + n * sizeof(textprop_T), sizeof(textprop_T));
2749 if (prop.tp_flags & TP_FLAG_CONT_NEXT)
2750 {
2751 if (round == 2)
2752 {
2753 prop.tp_flags |= TP_FLAG_CONT_PREV;
2754 prop.tp_col = 1;
2755 prop.tp_len = *len;
2756 mch_memmove(new_line + *len + new_prop_count * sizeof(textprop_T), &prop, sizeof(textprop_T));
2757 }
2758 ++new_prop_count;
2759 }
2760 }
2761 }
2762 *line = new_line;
2763 *tofree = new_line;
2764 *len = new_len;
2765}
2766#endif
2767
Bram Moolenaar071d4272004-06-13 20:20:40 +00002768 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002769ml_append_int(
2770 buf_T *buf,
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002771 linenr_T lnum, // append after this line (can be 0)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002772 char_u *line_arg, // text of the new line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002773 colnr_T len_arg, // length of line, including NUL, or 0
2774 int newfile, // flag, see above
2775 int mark) // mark the new line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002776{
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002777 char_u *line = line_arg;
2778 colnr_T len = len_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779 int i;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002780 int line_count; // number of indexes in current block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 int offset;
2782 int from, to;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002783 int space_needed; // space needed for new line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 int page_size;
2785 int page_count;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002786 int db_idx; // index for lnum in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 bhdr_T *hp;
2788 memfile_T *mfp;
2789 DATA_BL *dp;
2790 PTR_BL *pp;
2791 infoptr_T *ip;
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002792#ifdef FEAT_TEXT_PROP
2793 char_u *tofree = NULL;
2794#endif
2795 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002796
Bram Moolenaar071d4272004-06-13 20:20:40 +00002797 if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002798 return FAIL; // lnum out of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799
2800 if (lowest_marked && lowest_marked > lnum)
2801 lowest_marked = lnum + 1;
2802
2803 if (len == 0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002804 len = (colnr_T)STRLEN(line) + 1; // space needed for the text
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002805
2806#ifdef FEAT_TEXT_PROP
2807 if (curbuf->b_has_textprop && lnum > 0)
2808 // Add text properties that continue from the previous line.
2809 add_text_props_for_append(buf, lnum, &line, &len, &tofree);
2810#endif
2811
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002812 space_needed = len + INDEX_SIZE; // space needed for text + index
Bram Moolenaar071d4272004-06-13 20:20:40 +00002813
2814 mfp = buf->b_ml.ml_mfp;
2815 page_size = mfp->mf_page_size;
2816
2817/*
2818 * find the data block containing the previous line
2819 * This also fills the stack with the blocks from the root to the data block
2820 * This also releases any locked block.
2821 */
2822 if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum,
2823 ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002824 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825
2826 buf->b_ml.ml_flags &= ~ML_EMPTY;
2827
2828 if (lnum == 0) /* got line one instead, correct db_idx */
2829 db_idx = -1; /* careful, it is negative! */
2830 else
2831 db_idx = lnum - buf->b_ml.ml_locked_low;
2832 /* get line count before the insertion */
2833 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2834
2835 dp = (DATA_BL *)(hp->bh_data);
2836
2837/*
2838 * If
2839 * - there is not enough room in the current block
2840 * - appending to the last line in the block
2841 * - not appending to the last line in the file
2842 * insert in front of the next block.
2843 */
2844 if ((int)dp->db_free < space_needed && db_idx == line_count - 1
2845 && lnum < buf->b_ml.ml_line_count)
2846 {
2847 /*
2848 * Now that the line is not going to be inserted in the block that we
2849 * expected, the line count has to be adjusted in the pointer blocks
2850 * by using ml_locked_lineadd.
2851 */
2852 --(buf->b_ml.ml_locked_lineadd);
2853 --(buf->b_ml.ml_locked_high);
2854 if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002855 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002856
2857 db_idx = -1; /* careful, it is negative! */
2858 /* get line count before the insertion */
2859 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2860 CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1");
2861
2862 dp = (DATA_BL *)(hp->bh_data);
2863 }
2864
2865 ++buf->b_ml.ml_line_count;
2866
2867 if ((int)dp->db_free >= space_needed) /* enough room in data block */
2868 {
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002869 /*
2870 * Insert the new line in an existing data block, or in the data block
2871 * allocated above.
2872 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 dp->db_txt_start -= len;
2874 dp->db_free -= space_needed;
2875 ++(dp->db_line_count);
2876
2877 /*
2878 * move the text of the lines that follow to the front
2879 * adjust the indexes of the lines that follow
2880 */
2881 if (line_count > db_idx + 1) /* if there are following lines */
2882 {
2883 /*
2884 * Offset is the start of the previous line.
2885 * This will become the character just after the new line.
2886 */
2887 if (db_idx < 0)
2888 offset = dp->db_txt_end;
2889 else
2890 offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK);
2891 mch_memmove((char *)dp + dp->db_txt_start,
2892 (char *)dp + dp->db_txt_start + len,
2893 (size_t)(offset - (dp->db_txt_start + len)));
2894 for (i = line_count - 1; i > db_idx; --i)
2895 dp->db_index[i + 1] = dp->db_index[i] - len;
2896 dp->db_index[db_idx + 1] = offset - len;
2897 }
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002898 else
2899 // add line at the end (which is the start of the text)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002900 dp->db_index[db_idx + 1] = dp->db_txt_start;
2901
2902 /*
2903 * copy the text into the block
2904 */
2905 mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len);
2906 if (mark)
2907 dp->db_index[db_idx + 1] |= DB_MARKED;
2908
2909 /*
2910 * Mark the block dirty.
2911 */
2912 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
2913 if (!newfile)
2914 buf->b_ml.ml_flags |= ML_LOCKED_POS;
2915 }
2916 else /* not enough space in data block */
2917 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 long line_count_left, line_count_right;
2919 int page_count_left, page_count_right;
2920 bhdr_T *hp_left;
2921 bhdr_T *hp_right;
2922 bhdr_T *hp_new;
2923 int lines_moved;
2924 int data_moved = 0; /* init to shut up gcc */
2925 int total_moved = 0; /* init to shut up gcc */
2926 DATA_BL *dp_right, *dp_left;
2927 int stack_idx;
2928 int in_left;
2929 int lineadd;
2930 blocknr_T bnum_left, bnum_right;
2931 linenr_T lnum_left, lnum_right;
2932 int pb_idx;
2933 PTR_BL *pp_new;
2934
2935 /*
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002936 * There is not enough room, we have to create a new data block and
2937 * copy some lines into it.
2938 * Then we have to insert an entry in the pointer block.
2939 * If this pointer block also is full, we go up another block, and so
2940 * on, up to the root if necessary.
2941 * The line counts in the pointer blocks have already been adjusted by
2942 * ml_find_line().
2943 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944 * We are going to allocate a new data block. Depending on the
2945 * situation it will be put to the left or right of the existing
2946 * block. If possible we put the new line in the left block and move
2947 * the lines after it to the right block. Otherwise the new line is
2948 * also put in the right block. This method is more efficient when
2949 * inserting a lot of lines at one place.
2950 */
2951 if (db_idx < 0) /* left block is new, right block is existing */
2952 {
2953 lines_moved = 0;
2954 in_left = TRUE;
2955 /* space_needed does not change */
2956 }
2957 else /* left block is existing, right block is new */
2958 {
2959 lines_moved = line_count - db_idx - 1;
2960 if (lines_moved == 0)
2961 in_left = FALSE; /* put new line in right block */
2962 /* space_needed does not change */
2963 else
2964 {
2965 data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) -
2966 dp->db_txt_start;
2967 total_moved = data_moved + lines_moved * INDEX_SIZE;
2968 if ((int)dp->db_free + total_moved >= space_needed)
2969 {
2970 in_left = TRUE; /* put new line in left block */
2971 space_needed = total_moved;
2972 }
2973 else
2974 {
2975 in_left = FALSE; /* put new line in right block */
2976 space_needed += total_moved;
2977 }
2978 }
2979 }
2980
2981 page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size;
2982 if ((hp_new = ml_new_data(mfp, newfile, page_count)) == NULL)
2983 {
2984 /* correct line counts in pointer blocks */
2985 --(buf->b_ml.ml_locked_lineadd);
2986 --(buf->b_ml.ml_locked_high);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002987 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 }
2989 if (db_idx < 0) /* left block is new */
2990 {
2991 hp_left = hp_new;
2992 hp_right = hp;
2993 line_count_left = 0;
2994 line_count_right = line_count;
2995 }
2996 else /* right block is new */
2997 {
2998 hp_left = hp;
2999 hp_right = hp_new;
3000 line_count_left = line_count;
3001 line_count_right = 0;
3002 }
3003 dp_right = (DATA_BL *)(hp_right->bh_data);
3004 dp_left = (DATA_BL *)(hp_left->bh_data);
3005 bnum_left = hp_left->bh_bnum;
3006 bnum_right = hp_right->bh_bnum;
3007 page_count_left = hp_left->bh_page_count;
3008 page_count_right = hp_right->bh_page_count;
3009
3010 /*
3011 * May move the new line into the right/new block.
3012 */
3013 if (!in_left)
3014 {
3015 dp_right->db_txt_start -= len;
3016 dp_right->db_free -= len + INDEX_SIZE;
3017 dp_right->db_index[0] = dp_right->db_txt_start;
3018 if (mark)
3019 dp_right->db_index[0] |= DB_MARKED;
3020
3021 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3022 line, (size_t)len);
3023 ++line_count_right;
3024 }
3025 /*
3026 * may move lines from the left/old block to the right/new one.
3027 */
3028 if (lines_moved)
3029 {
3030 /*
3031 */
3032 dp_right->db_txt_start -= data_moved;
3033 dp_right->db_free -= total_moved;
3034 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3035 (char *)dp_left + dp_left->db_txt_start,
3036 (size_t)data_moved);
3037 offset = dp_right->db_txt_start - dp_left->db_txt_start;
3038 dp_left->db_txt_start += data_moved;
3039 dp_left->db_free += total_moved;
3040
3041 /*
3042 * update indexes in the new block
3043 */
3044 for (to = line_count_right, from = db_idx + 1;
3045 from < line_count_left; ++from, ++to)
3046 dp_right->db_index[to] = dp->db_index[from] + offset;
3047 line_count_right += lines_moved;
3048 line_count_left -= lines_moved;
3049 }
3050
3051 /*
3052 * May move the new line into the left (old or new) block.
3053 */
3054 if (in_left)
3055 {
3056 dp_left->db_txt_start -= len;
3057 dp_left->db_free -= len + INDEX_SIZE;
3058 dp_left->db_index[line_count_left] = dp_left->db_txt_start;
3059 if (mark)
3060 dp_left->db_index[line_count_left] |= DB_MARKED;
3061 mch_memmove((char *)dp_left + dp_left->db_txt_start,
3062 line, (size_t)len);
3063 ++line_count_left;
3064 }
3065
3066 if (db_idx < 0) /* left block is new */
3067 {
3068 lnum_left = lnum + 1;
3069 lnum_right = 0;
3070 }
3071 else /* right block is new */
3072 {
3073 lnum_left = 0;
3074 if (in_left)
3075 lnum_right = lnum + 2;
3076 else
3077 lnum_right = lnum + 1;
3078 }
3079 dp_left->db_line_count = line_count_left;
3080 dp_right->db_line_count = line_count_right;
3081
3082 /*
3083 * release the two data blocks
3084 * The new one (hp_new) already has a correct blocknumber.
3085 * The old one (hp, in ml_locked) gets a positive blocknumber if
3086 * we changed it and we are not editing a new file.
3087 */
3088 if (lines_moved || in_left)
3089 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3090 if (!newfile && db_idx >= 0 && in_left)
3091 buf->b_ml.ml_flags |= ML_LOCKED_POS;
3092 mf_put(mfp, hp_new, TRUE, FALSE);
3093
3094 /*
3095 * flush the old data block
3096 * set ml_locked_lineadd to 0, because the updating of the
3097 * pointer blocks is done below
3098 */
3099 lineadd = buf->b_ml.ml_locked_lineadd;
3100 buf->b_ml.ml_locked_lineadd = 0;
3101 ml_find_line(buf, (linenr_T)0, ML_FLUSH); /* flush data block */
3102
3103 /*
3104 * update pointer blocks for the new data block
3105 */
3106 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3107 --stack_idx)
3108 {
3109 ip = &(buf->b_ml.ml_stack[stack_idx]);
3110 pb_idx = ip->ip_index;
3111 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003112 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 pp = (PTR_BL *)(hp->bh_data); /* must be pointer block */
3114 if (pp->pb_id != PTR_ID)
3115 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003116 iemsg(_("E317: pointer block id wrong 3"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003118 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 }
3120 /*
3121 * TODO: If the pointer block is full and we are adding at the end
3122 * try to insert in front of the next block
3123 */
3124 /* block not full, add one entry */
3125 if (pp->pb_count < pp->pb_count_max)
3126 {
3127 if (pb_idx + 1 < (int)pp->pb_count)
3128 mch_memmove(&pp->pb_pointer[pb_idx + 2],
3129 &pp->pb_pointer[pb_idx + 1],
3130 (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN));
3131 ++pp->pb_count;
3132 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3133 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3134 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3135 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3136 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3137 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3138
3139 if (lnum_left != 0)
3140 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3141 if (lnum_right != 0)
3142 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3143
3144 mf_put(mfp, hp, TRUE, FALSE);
3145 buf->b_ml.ml_stack_top = stack_idx + 1; /* truncate stack */
3146
3147 if (lineadd)
3148 {
3149 --(buf->b_ml.ml_stack_top);
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003150 /* fix line count for rest of blocks in the stack */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151 ml_lineadd(buf, lineadd);
3152 /* fix stack itself */
3153 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
3154 lineadd;
3155 ++(buf->b_ml.ml_stack_top);
3156 }
3157
3158 /*
3159 * We are finished, break the loop here.
3160 */
3161 break;
3162 }
3163 else /* pointer block full */
3164 {
3165 /*
3166 * split the pointer block
3167 * allocate a new pointer block
3168 * move some of the pointer into the new block
3169 * prepare for updating the parent block
3170 */
3171 for (;;) /* do this twice when splitting block 1 */
3172 {
3173 hp_new = ml_new_ptr(mfp);
3174 if (hp_new == NULL) /* TODO: try to fix tree */
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003175 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003176 pp_new = (PTR_BL *)(hp_new->bh_data);
3177
3178 if (hp->bh_bnum != 1)
3179 break;
3180
3181 /*
3182 * if block 1 becomes full the tree is given an extra level
3183 * The pointers from block 1 are moved into the new block.
3184 * block 1 is updated to point to the new block
3185 * then continue to split the new block
3186 */
3187 mch_memmove(pp_new, pp, (size_t)page_size);
3188 pp->pb_count = 1;
3189 pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum;
3190 pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count;
3191 pp->pb_pointer[0].pe_old_lnum = 1;
3192 pp->pb_pointer[0].pe_page_count = 1;
3193 mf_put(mfp, hp, TRUE, FALSE); /* release block 1 */
3194 hp = hp_new; /* new block is to be split */
3195 pp = pp_new;
3196 CHECK(stack_idx != 0, _("stack_idx should be 0"));
3197 ip->ip_index = 0;
3198 ++stack_idx; /* do block 1 again later */
3199 }
3200 /*
3201 * move the pointers after the current one to the new block
3202 * If there are none, the new entry will be in the new block.
3203 */
3204 total_moved = pp->pb_count - pb_idx - 1;
3205 if (total_moved)
3206 {
3207 mch_memmove(&pp_new->pb_pointer[0],
3208 &pp->pb_pointer[pb_idx + 1],
3209 (size_t)(total_moved) * sizeof(PTR_EN));
3210 pp_new->pb_count = total_moved;
3211 pp->pb_count -= total_moved - 1;
3212 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3213 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3214 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3215 if (lnum_right)
3216 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3217 }
3218 else
3219 {
3220 pp_new->pb_count = 1;
3221 pp_new->pb_pointer[0].pe_bnum = bnum_right;
3222 pp_new->pb_pointer[0].pe_line_count = line_count_right;
3223 pp_new->pb_pointer[0].pe_page_count = page_count_right;
3224 pp_new->pb_pointer[0].pe_old_lnum = lnum_right;
3225 }
3226 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3227 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3228 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3229 if (lnum_left)
3230 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3231 lnum_left = 0;
3232 lnum_right = 0;
3233
3234 /*
3235 * recompute line counts
3236 */
3237 line_count_right = 0;
3238 for (i = 0; i < (int)pp_new->pb_count; ++i)
3239 line_count_right += pp_new->pb_pointer[i].pe_line_count;
3240 line_count_left = 0;
3241 for (i = 0; i < (int)pp->pb_count; ++i)
3242 line_count_left += pp->pb_pointer[i].pe_line_count;
3243
3244 bnum_left = hp->bh_bnum;
3245 bnum_right = hp_new->bh_bnum;
3246 page_count_left = 1;
3247 page_count_right = 1;
3248 mf_put(mfp, hp, TRUE, FALSE);
3249 mf_put(mfp, hp_new, TRUE, FALSE);
3250 }
3251 }
3252
3253 /*
3254 * Safety check: fallen out of for loop?
3255 */
3256 if (stack_idx < 0)
3257 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003258 iemsg(_("E318: Updated too many blocks?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 buf->b_ml.ml_stack_top = 0; /* invalidate stack */
3260 }
3261 }
3262
3263#ifdef FEAT_BYTEOFF
3264 /* The line was inserted below 'lnum' */
3265 ml_updatechunk(buf, lnum + 1, (long)len, ML_CHNK_ADDLINE);
3266#endif
3267#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003268 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269 {
3270 if (STRLEN(line) > 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003271 netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line));
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003272 netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003273 (char_u *)"\n", 1);
3274 }
3275#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003276#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003277 if (buf->b_write_to_channel)
3278 channel_write_new_lines(buf);
3279#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003280 ret = OK;
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003281
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003282theend:
3283#ifdef FEAT_TEXT_PROP
3284 vim_free(tofree);
3285#endif
3286 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003287}
3288
3289/*
Bram Moolenaar250e3112019-07-15 23:02:14 +02003290 * Flush any pending change and call ml_append_int()
3291 */
3292 static int
3293ml_append_flush(
3294 buf_T *buf,
3295 linenr_T lnum, // append after this line (can be 0)
3296 char_u *line, // text of the new line
3297 colnr_T len, // length of line, including NUL, or 0
3298 int newfile) // flag, see above
3299{
3300 if (lnum > buf->b_ml.ml_line_count)
3301 return FAIL; // lnum out of range
3302
3303 if (buf->b_ml.ml_line_lnum != 0)
3304 // This may also invoke ml_append_int().
3305 ml_flush_line(buf);
3306
3307#ifdef FEAT_EVAL
3308 // When inserting above recorded changes: flush the changes before changing
3309 // the text. Then flush the cached line, it may become invalid.
3310 may_invoke_listeners(buf, lnum + 1, lnum + 1, 1);
3311 if (buf->b_ml.ml_line_lnum != 0)
3312 ml_flush_line(buf);
3313#endif
3314
3315 return ml_append_int(buf, lnum, line, len, newfile, FALSE);
3316}
3317
3318/*
3319 * Append a line after lnum (may be 0 to insert a line in front of the file).
3320 * "line" does not need to be allocated, but can't be another line in a
3321 * buffer, unlocking may make it invalid.
3322 *
3323 * newfile: TRUE when starting to edit a new file, meaning that pe_old_lnum
3324 * will be set for recovery
3325 * Check: The caller of this function should probably also call
3326 * appended_lines().
3327 *
3328 * return FAIL for failure, OK otherwise
3329 */
3330 int
3331ml_append(
3332 linenr_T lnum, /* append after this line (can be 0) */
3333 char_u *line, /* text of the new line */
3334 colnr_T len, /* length of new line, including NUL, or 0 */
3335 int newfile) /* flag, see above */
3336{
3337 /* When starting up, we might still need to create the memfile */
3338 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
3339 return FAIL;
3340 return ml_append_flush(curbuf, lnum, line, len, newfile);
3341}
3342
3343#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(PROTO)
3344/*
3345 * Like ml_append() but for an arbitrary buffer. The buffer must already have
3346 * a memline.
3347 */
3348 int
3349ml_append_buf(
3350 buf_T *buf,
3351 linenr_T lnum, /* append after this line (can be 0) */
3352 char_u *line, /* text of the new line */
3353 colnr_T len, /* length of new line, including NUL, or 0 */
3354 int newfile) /* flag, see above */
3355{
3356 if (buf->b_ml.ml_mfp == NULL)
3357 return FAIL;
3358 return ml_append_flush(buf, lnum, line, len, newfile);
3359}
3360#endif
3361
3362/*
Bram Moolenaar4770d092006-01-12 23:22:24 +00003363 * Replace line lnum, with buffering, in current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003364 *
Bram Moolenaar1056d982006-03-09 22:37:52 +00003365 * If "copy" is TRUE, make a copy of the line, otherwise the line has been
Bram Moolenaar071d4272004-06-13 20:20:40 +00003366 * copied to allocated memory already.
3367 *
3368 * Check: The caller of this function should probably also call
3369 * changed_lines(), unless update_screen(NOT_VALID) is used.
3370 *
3371 * return FAIL for failure, OK otherwise
3372 */
3373 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003374ml_replace(linenr_T lnum, char_u *line, int copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003375{
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003376 colnr_T len = -1;
3377
3378 if (line != NULL)
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003379 len = (colnr_T)STRLEN(line);
Bram Moolenaarccae4672019-01-04 15:09:57 +01003380 return ml_replace_len(lnum, line, len, FALSE, copy);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003381}
3382
Bram Moolenaarccae4672019-01-04 15:09:57 +01003383/*
3384 * Replace a line for the current buffer. Like ml_replace() with:
3385 * "len_arg" is the length of the text, excluding NUL.
3386 * If "has_props" is TRUE then "line_arg" includes the text properties and
3387 * "len_arg" includes the NUL of the text.
3388 */
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003389 int
Bram Moolenaarccae4672019-01-04 15:09:57 +01003390ml_replace_len(
3391 linenr_T lnum,
3392 char_u *line_arg,
3393 colnr_T len_arg,
3394 int has_props,
3395 int copy)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003396{
3397 char_u *line = line_arg;
3398 colnr_T len = len_arg;
3399
Bram Moolenaar071d4272004-06-13 20:20:40 +00003400 if (line == NULL) /* just checking... */
3401 return FAIL;
3402
3403 /* When starting up, we might still need to create the memfile */
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003404 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003405 return FAIL;
3406
Bram Moolenaarccae4672019-01-04 15:09:57 +01003407 if (!has_props)
3408 ++len; // include the NUL after the text
3409 if (copy)
3410 {
3411 // copy the line to allocated memory
3412#ifdef FEAT_TEXT_PROP
3413 if (has_props)
3414 line = vim_memsave(line, len);
3415 else
3416#endif
3417 line = vim_strnsave(line, len - 1);
3418 if (line == NULL)
3419 return FAIL;
3420 }
3421
Bram Moolenaar071d4272004-06-13 20:20:40 +00003422#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003423 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003424 {
3425 netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum)));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003426 netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427 }
3428#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003429 if (curbuf->b_ml.ml_line_lnum != lnum)
3430 {
3431 // another line is buffered, flush it
3432 ml_flush_line(curbuf);
Bram Moolenaarca79a5f2018-12-13 23:16:36 +01003433 curbuf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003434
3435#ifdef FEAT_TEXT_PROP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003436 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003437 // Need to fetch the old line to copy over any text properties.
3438 ml_get_buf(curbuf, lnum, TRUE);
3439#endif
3440 }
3441
3442#ifdef FEAT_TEXT_PROP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003443 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003444 {
3445 size_t oldtextlen = STRLEN(curbuf->b_ml.ml_line_ptr) + 1;
3446
3447 if (oldtextlen < (size_t)curbuf->b_ml.ml_line_len)
3448 {
3449 char_u *newline;
3450 size_t textproplen = curbuf->b_ml.ml_line_len - oldtextlen;
3451
3452 // Need to copy over text properties, stored after the text.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003453 newline = alloc(len + (int)textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003454 if (newline != NULL)
3455 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01003456 mch_memmove(newline, line, len);
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02003457 mch_memmove(newline + len, curbuf->b_ml.ml_line_ptr
3458 + oldtextlen, textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003459 vim_free(line);
3460 line = newline;
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003461 len += (colnr_T)textproplen;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003462 }
3463 }
3464 }
3465#endif
3466
Bram Moolenaarccae4672019-01-04 15:09:57 +01003467 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) // same line allocated
3468 vim_free(curbuf->b_ml.ml_line_ptr); // free it
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003469
Bram Moolenaar071d4272004-06-13 20:20:40 +00003470 curbuf->b_ml.ml_line_ptr = line;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003471 curbuf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003472 curbuf->b_ml.ml_line_lnum = lnum;
3473 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
3474
3475 return OK;
3476}
3477
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003478#ifdef FEAT_TEXT_PROP
3479/*
3480 * Adjust text properties in line "lnum" for a deleted line.
3481 * When "above" is true this is the line above the deleted line.
3482 * "del_props" are the properties of the deleted line.
3483 */
3484 static void
3485adjust_text_props_for_delete(
3486 buf_T *buf,
3487 linenr_T lnum,
3488 char_u *del_props,
3489 int del_props_len,
3490 int above)
3491{
3492 int did_get_line = FALSE;
3493 int done_del;
3494 int done_this;
3495 textprop_T prop_del;
3496 textprop_T prop_this;
3497 bhdr_T *hp;
3498 DATA_BL *dp;
3499 int idx;
3500 int line_start;
3501 long line_size;
3502 int this_props_len;
3503 char_u *text;
3504 size_t textlen;
3505 int found;
3506
3507 for (done_del = 0; done_del < del_props_len; done_del += sizeof(textprop_T))
3508 {
3509 mch_memmove(&prop_del, del_props + done_del, sizeof(textprop_T));
3510 if ((above && (prop_del.tp_flags & TP_FLAG_CONT_PREV)
3511 && !(prop_del.tp_flags & TP_FLAG_CONT_NEXT))
3512 || (!above && (prop_del.tp_flags & TP_FLAG_CONT_NEXT)
3513 && !(prop_del.tp_flags & TP_FLAG_CONT_PREV)))
3514 {
3515 if (!did_get_line)
3516 {
3517 did_get_line = TRUE;
3518 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
3519 return;
3520
3521 dp = (DATA_BL *)(hp->bh_data);
3522 idx = lnum - buf->b_ml.ml_locked_low;
3523 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3524 if (idx == 0) // first line in block, text at the end
3525 line_size = dp->db_txt_end - line_start;
3526 else
3527 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start;
3528 text = (char_u *)dp + line_start;
3529 textlen = STRLEN(text) + 1;
3530 if ((long)textlen >= line_size)
3531 {
3532 if (above)
3533 internal_error("no text property above deleted line");
3534 else
3535 internal_error("no text property below deleted line");
3536 return;
3537 }
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003538 this_props_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003539 }
3540
3541 found = FALSE;
3542 for (done_this = 0; done_this < this_props_len; done_this += sizeof(textprop_T))
3543 {
3544 mch_memmove(&prop_this, text + textlen + done_del, sizeof(textprop_T));
3545 if (prop_del.tp_id == prop_this.tp_id
3546 && prop_del.tp_type == prop_this.tp_type)
3547 {
3548 int flag = above ? TP_FLAG_CONT_NEXT : TP_FLAG_CONT_PREV;
3549
3550 found = TRUE;
3551 if (prop_this.tp_flags & flag)
3552 {
3553 prop_this.tp_flags &= ~flag;
3554 mch_memmove(text + textlen + done_del, &prop_this, sizeof(textprop_T));
3555 }
3556 else if (above)
3557 internal_error("text property above deleted line does not continue");
3558 else
3559 internal_error("text property below deleted line does not continue");
3560 }
3561 }
3562 if (!found)
3563 {
3564 if (above)
3565 internal_error("text property above deleted line not found");
3566 else
3567 internal_error("text property below deleted line not found");
3568 }
3569
3570 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3571 }
3572 }
3573}
3574#endif
3575
Bram Moolenaar071d4272004-06-13 20:20:40 +00003576/*
Bram Moolenaar4033c552017-09-16 20:54:51 +02003577 * Delete line "lnum" in the current buffer.
3578 * When "message" is TRUE may give a "No lines in buffer" message.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003579 *
3580 * Check: The caller of this function should probably also call
3581 * deleted_lines() after this.
3582 *
3583 * return FAIL for failure, OK otherwise
3584 */
3585 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003586ml_delete(linenr_T lnum, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003587{
3588 ml_flush_line(curbuf);
Bram Moolenaaracf75442019-07-17 22:55:35 +02003589 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
3590 return FAIL;
3591
3592#ifdef FEAT_EVAL
3593 // When inserting above recorded changes: flush the changes before changing
3594 // the text.
3595 may_invoke_listeners(curbuf, lnum, lnum + 1, -1);
3596#endif
3597
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 return ml_delete_int(curbuf, lnum, message);
3599}
3600
3601 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003602ml_delete_int(buf_T *buf, linenr_T lnum, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003603{
3604 bhdr_T *hp;
3605 memfile_T *mfp;
3606 DATA_BL *dp;
3607 PTR_BL *pp;
3608 infoptr_T *ip;
3609 int count; /* number of entries in block */
3610 int idx;
3611 int stack_idx;
3612 int text_start;
3613 int line_start;
3614 long line_size;
3615 int i;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003616 int ret = FAIL;
3617#ifdef FEAT_TEXT_PROP
3618 char_u *textprop_save = NULL;
3619 int textprop_save_len;
3620#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003621
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 if (lowest_marked && lowest_marked > lnum)
3623 lowest_marked--;
3624
3625/*
3626 * If the file becomes empty the last line is replaced by an empty line.
3627 */
3628 if (buf->b_ml.ml_line_count == 1) /* file becomes empty */
3629 {
3630 if (message
3631#ifdef FEAT_NETBEANS_INTG
3632 && !netbeansSuppressNoLines
3633#endif
3634 )
Bram Moolenaar238a5642006-02-21 22:12:05 +00003635 set_keep_msg((char_u *)_(no_lines_msg), 0);
3636
Bram Moolenaar84a05ac2013-05-06 04:24:17 +02003637 /* FEAT_BYTEOFF already handled in there, don't worry 'bout it below */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003638 i = ml_replace((linenr_T)1, (char_u *)"", TRUE);
3639 buf->b_ml.ml_flags |= ML_EMPTY;
3640
3641 return i;
3642 }
3643
3644/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003645 * Find the data block containing the line.
3646 * This also fills the stack with the blocks from the root to the data block.
3647 * This also releases any locked block..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003648 */
3649 mfp = buf->b_ml.ml_mfp;
3650 if (mfp == NULL)
3651 return FAIL;
3652
3653 if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL)
3654 return FAIL;
3655
3656 dp = (DATA_BL *)(hp->bh_data);
3657 /* compute line count before the delete */
3658 count = (long)(buf->b_ml.ml_locked_high)
3659 - (long)(buf->b_ml.ml_locked_low) + 2;
3660 idx = lnum - buf->b_ml.ml_locked_low;
3661
3662 --buf->b_ml.ml_line_count;
3663
3664 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3665 if (idx == 0) /* first line in block, text at the end */
3666 line_size = dp->db_txt_end - line_start;
3667 else
3668 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start;
3669
3670#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003671 if (netbeans_active())
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003672 netbeans_removed(buf, lnum, 0, (long)line_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003673#endif
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003674#ifdef FEAT_TEXT_PROP
3675 // If there are text properties, make a copy, so that we can update
3676 // properties in preceding and following lines.
3677 if (buf->b_has_textprop)
3678 {
3679 size_t textlen = STRLEN((char_u *)dp + line_start) + 1;
3680
3681 if ((long)textlen < line_size)
3682 {
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003683 textprop_save_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003684 textprop_save = vim_memsave((char_u *)dp + line_start + textlen,
3685 textprop_save_len);
3686 }
3687 }
3688#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003689
3690/*
3691 * special case: If there is only one line in the data block it becomes empty.
3692 * Then we have to remove the entry, pointing to this data block, from the
3693 * pointer block. If this pointer block also becomes empty, we go up another
3694 * block, and so on, up to the root if necessary.
3695 * The line counts in the pointer blocks have already been adjusted by
3696 * ml_find_line().
3697 */
3698 if (count == 1)
3699 {
3700 mf_free(mfp, hp); /* free the data block */
3701 buf->b_ml.ml_locked = NULL;
3702
Bram Moolenaare60acc12011-05-10 16:41:25 +02003703 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3704 --stack_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003705 {
3706 buf->b_ml.ml_stack_top = 0; /* stack is invalid when failing */
3707 ip = &(buf->b_ml.ml_stack[stack_idx]);
3708 idx = ip->ip_index;
3709 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003710 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 pp = (PTR_BL *)(hp->bh_data); /* must be pointer block */
3712 if (pp->pb_id != PTR_ID)
3713 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003714 iemsg(_("E317: pointer block id wrong 4"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003715 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003716 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 }
3718 count = --(pp->pb_count);
3719 if (count == 0) /* the pointer block becomes empty! */
3720 mf_free(mfp, hp);
3721 else
3722 {
3723 if (count != idx) /* move entries after the deleted one */
3724 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1],
3725 (size_t)(count - idx) * sizeof(PTR_EN));
3726 mf_put(mfp, hp, TRUE, FALSE);
3727
3728 buf->b_ml.ml_stack_top = stack_idx; /* truncate stack */
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003729 /* fix line count for rest of blocks in the stack */
3730 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731 {
3732 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
3733 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003734 buf->b_ml.ml_locked_lineadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003735 }
3736 ++(buf->b_ml.ml_stack_top);
3737
3738 break;
3739 }
3740 }
3741 CHECK(stack_idx < 0, _("deleted block 1?"));
3742 }
3743 else
3744 {
3745 /*
3746 * delete the text by moving the next lines forwards
3747 */
3748 text_start = dp->db_txt_start;
3749 mch_memmove((char *)dp + text_start + line_size,
3750 (char *)dp + text_start, (size_t)(line_start - text_start));
3751
3752 /*
3753 * delete the index by moving the next indexes backwards
3754 * Adjust the indexes for the text movement.
3755 */
3756 for (i = idx; i < count - 1; ++i)
3757 dp->db_index[i] = dp->db_index[i + 1] + line_size;
3758
3759 dp->db_free += line_size + INDEX_SIZE;
3760 dp->db_txt_start += line_size;
3761 --(dp->db_line_count);
3762
3763 /*
3764 * mark the block dirty and make sure it is in the file (for recovery)
3765 */
3766 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3767 }
3768
3769#ifdef FEAT_BYTEOFF
3770 ml_updatechunk(buf, lnum, line_size, ML_CHNK_DELLINE);
3771#endif
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003772 ret = OK;
3773
3774theend:
3775#ifdef FEAT_TEXT_PROP
3776 if (textprop_save != NULL)
3777 {
3778 // Adjust text properties in the line above and below.
3779 if (lnum > 1)
3780 adjust_text_props_for_delete(buf, lnum - 1, textprop_save, textprop_save_len, TRUE);
3781 if (lnum <= buf->b_ml.ml_line_count)
3782 adjust_text_props_for_delete(buf, lnum, textprop_save, textprop_save_len, FALSE);
3783 }
3784 vim_free(textprop_save);
3785#endif
3786 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003787}
3788
3789/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003790 * set the DB_MARKED flag for line 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 */
3792 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003793ml_setmarked(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794{
3795 bhdr_T *hp;
3796 DATA_BL *dp;
3797 /* invalid line number */
3798 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count
3799 || curbuf->b_ml.ml_mfp == NULL)
3800 return; /* give error message? */
3801
3802 if (lowest_marked == 0 || lowest_marked > lnum)
3803 lowest_marked = lnum;
3804
3805 /*
3806 * find the data block containing the line
3807 * This also fills the stack with the blocks from the root to the data block
3808 * This also releases any locked block.
3809 */
3810 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
3811 return; /* give error message? */
3812
3813 dp = (DATA_BL *)(hp->bh_data);
3814 dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED;
3815 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3816}
3817
3818/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003819 * find the first line with its DB_MARKED flag set
Bram Moolenaar071d4272004-06-13 20:20:40 +00003820 */
3821 linenr_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003822ml_firstmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003823{
3824 bhdr_T *hp;
3825 DATA_BL *dp;
3826 linenr_T lnum;
3827 int i;
3828
3829 if (curbuf->b_ml.ml_mfp == NULL)
3830 return (linenr_T) 0;
3831
3832 /*
3833 * The search starts with lowest_marked line. This is the last line where
3834 * a mark was found, adjusted by inserting/deleting lines.
3835 */
3836 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3837 {
3838 /*
3839 * Find the data block containing the line.
3840 * This also fills the stack with the blocks from the root to the data
3841 * block This also releases any locked block.
3842 */
3843 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
3844 return (linenr_T)0; /* give error message? */
3845
3846 dp = (DATA_BL *)(hp->bh_data);
3847
3848 for (i = lnum - curbuf->b_ml.ml_locked_low;
3849 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3850 if ((dp->db_index[i]) & DB_MARKED)
3851 {
3852 (dp->db_index[i]) &= DB_INDEX_MASK;
3853 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3854 lowest_marked = lnum + 1;
3855 return lnum;
3856 }
3857 }
3858
3859 return (linenr_T) 0;
3860}
3861
Bram Moolenaar071d4272004-06-13 20:20:40 +00003862/*
3863 * clear all DB_MARKED flags
3864 */
3865 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003866ml_clearmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003867{
3868 bhdr_T *hp;
3869 DATA_BL *dp;
3870 linenr_T lnum;
3871 int i;
3872
3873 if (curbuf->b_ml.ml_mfp == NULL) /* nothing to do */
3874 return;
3875
3876 /*
3877 * The search starts with line lowest_marked.
3878 */
3879 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3880 {
3881 /*
3882 * Find the data block containing the line.
3883 * This also fills the stack with the blocks from the root to the data
3884 * block and releases any locked block.
3885 */
3886 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
3887 return; /* give error message? */
3888
3889 dp = (DATA_BL *)(hp->bh_data);
3890
3891 for (i = lnum - curbuf->b_ml.ml_locked_low;
3892 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3893 if ((dp->db_index[i]) & DB_MARKED)
3894 {
3895 (dp->db_index[i]) &= DB_INDEX_MASK;
3896 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3897 }
3898 }
3899
3900 lowest_marked = 0;
3901 return;
3902}
3903
3904/*
3905 * flush ml_line if necessary
3906 */
3907 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003908ml_flush_line(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909{
3910 bhdr_T *hp;
3911 DATA_BL *dp;
3912 linenr_T lnum;
3913 char_u *new_line;
3914 char_u *old_line;
3915 colnr_T new_len;
3916 int old_len;
3917 int extra;
3918 int idx;
3919 int start;
3920 int count;
3921 int i;
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003922 static int entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003923
3924 if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL)
3925 return; /* nothing to do */
3926
3927 if (buf->b_ml.ml_flags & ML_LINE_DIRTY)
3928 {
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003929 /* This code doesn't work recursively, but Netbeans may call back here
3930 * when obtaining the cursor position. */
3931 if (entered)
3932 return;
3933 entered = TRUE;
3934
Bram Moolenaar071d4272004-06-13 20:20:40 +00003935 lnum = buf->b_ml.ml_line_lnum;
3936 new_line = buf->b_ml.ml_line_ptr;
3937
3938 hp = ml_find_line(buf, lnum, ML_FIND);
3939 if (hp == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003940 siemsg(_("E320: Cannot find line %ld"), lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003941 else
3942 {
3943 dp = (DATA_BL *)(hp->bh_data);
3944 idx = lnum - buf->b_ml.ml_locked_low;
3945 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3946 old_line = (char_u *)dp + start;
3947 if (idx == 0) /* line is last in block */
3948 old_len = dp->db_txt_end - start;
3949 else /* text of previous line follows */
3950 old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003951 new_len = buf->b_ml.ml_line_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003952 extra = new_len - old_len; /* negative if lines gets smaller */
3953
3954 /*
3955 * if new line fits in data block, replace directly
3956 */
3957 if ((int)dp->db_free >= extra)
3958 {
3959 /* if the length changes and there are following lines */
3960 count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1;
3961 if (extra != 0 && idx < count - 1)
3962 {
3963 /* move text of following lines */
3964 mch_memmove((char *)dp + dp->db_txt_start - extra,
3965 (char *)dp + dp->db_txt_start,
3966 (size_t)(start - dp->db_txt_start));
3967
3968 /* adjust pointers of this and following lines */
3969 for (i = idx + 1; i < count; ++i)
3970 dp->db_index[i] -= extra;
3971 }
3972 dp->db_index[idx] -= extra;
3973
3974 /* adjust free space */
3975 dp->db_free -= extra;
3976 dp->db_txt_start -= extra;
3977
3978 /* copy new line into the data block */
3979 mch_memmove(old_line - extra, new_line, (size_t)new_len);
3980 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3981#ifdef FEAT_BYTEOFF
3982 /* The else case is already covered by the insert and delete */
3983 ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE);
3984#endif
3985 }
3986 else
3987 {
3988 /*
3989 * Cannot do it in one data block: Delete and append.
3990 * Append first, because ml_delete_int() cannot delete the
3991 * last line in a buffer, which causes trouble for a buffer
3992 * that has only one line.
3993 * Don't forget to copy the mark!
3994 */
3995 /* How about handling errors??? */
3996 (void)ml_append_int(buf, lnum, new_line, new_len, FALSE,
3997 (dp->db_index[idx] & DB_MARKED));
3998 (void)ml_delete_int(buf, lnum, FALSE);
3999 }
4000 }
4001 vim_free(new_line);
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004002
4003 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 }
4005
4006 buf->b_ml.ml_line_lnum = 0;
4007}
4008
4009/*
4010 * create a new, empty, data block
4011 */
4012 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004013ml_new_data(memfile_T *mfp, int negative, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014{
4015 bhdr_T *hp;
4016 DATA_BL *dp;
4017
4018 if ((hp = mf_new(mfp, negative, page_count)) == NULL)
4019 return NULL;
4020
4021 dp = (DATA_BL *)(hp->bh_data);
4022 dp->db_id = DATA_ID;
4023 dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size;
4024 dp->db_free = dp->db_txt_start - HEADER_SIZE;
4025 dp->db_line_count = 0;
4026
4027 return hp;
4028}
4029
4030/*
4031 * create a new, empty, pointer block
4032 */
4033 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004034ml_new_ptr(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004035{
4036 bhdr_T *hp;
4037 PTR_BL *pp;
4038
4039 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
4040 return NULL;
4041
4042 pp = (PTR_BL *)(hp->bh_data);
4043 pp->pb_id = PTR_ID;
4044 pp->pb_count = 0;
Bram Moolenaar20a825a2010-05-31 21:27:30 +02004045 pp->pb_count_max = (short_u)((mfp->mf_page_size - sizeof(PTR_BL))
4046 / sizeof(PTR_EN) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004047
4048 return hp;
4049}
4050
4051/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01004052 * Lookup line 'lnum' in a memline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 *
4054 * action: if ML_DELETE or ML_INSERT the line count is updated while searching
4055 * if ML_FLUSH only flush a locked block
4056 * if ML_FIND just find the line
4057 *
4058 * If the block was found it is locked and put in ml_locked.
4059 * The stack is updated to lead to the locked block. The ip_high field in
4060 * the stack is updated to reflect the last line in the block AFTER the
4061 * insert or delete, also if the pointer block has not been updated yet. But
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004062 * if ml_locked != NULL ml_locked_lineadd must be added to ip_high.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004063 *
4064 * return: NULL for failure, pointer to block header otherwise
4065 */
4066 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004067ml_find_line(buf_T *buf, linenr_T lnum, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068{
4069 DATA_BL *dp;
4070 PTR_BL *pp;
4071 infoptr_T *ip;
4072 bhdr_T *hp;
4073 memfile_T *mfp;
4074 linenr_T t;
4075 blocknr_T bnum, bnum2;
4076 int dirty;
4077 linenr_T low, high;
4078 int top;
4079 int page_count;
4080 int idx;
4081
4082 mfp = buf->b_ml.ml_mfp;
4083
4084 /*
4085 * If there is a locked block check if the wanted line is in it.
4086 * If not, flush and release the locked block.
4087 * Don't do this for ML_INSERT_SAME, because the stack need to be updated.
4088 * Don't do this for ML_FLUSH, because we want to flush the locked block.
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004089 * Don't do this when 'swapfile' is reset, we want to load all the blocks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004090 */
4091 if (buf->b_ml.ml_locked)
4092 {
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004093 if (ML_SIMPLE(action)
4094 && buf->b_ml.ml_locked_low <= lnum
4095 && buf->b_ml.ml_locked_high >= lnum
4096 && !mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 {
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004098 /* remember to update pointer blocks and stack later */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004099 if (action == ML_INSERT)
4100 {
4101 ++(buf->b_ml.ml_locked_lineadd);
4102 ++(buf->b_ml.ml_locked_high);
4103 }
4104 else if (action == ML_DELETE)
4105 {
4106 --(buf->b_ml.ml_locked_lineadd);
4107 --(buf->b_ml.ml_locked_high);
4108 }
4109 return (buf->b_ml.ml_locked);
4110 }
4111
4112 mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY,
4113 buf->b_ml.ml_flags & ML_LOCKED_POS);
4114 buf->b_ml.ml_locked = NULL;
4115
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004116 /*
4117 * If lines have been added or deleted in the locked block, need to
4118 * update the line count in pointer blocks.
4119 */
4120 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004121 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
4122 }
4123
4124 if (action == ML_FLUSH) /* nothing else to do */
4125 return NULL;
4126
4127 bnum = 1; /* start at the root of the tree */
4128 page_count = 1;
4129 low = 1;
4130 high = buf->b_ml.ml_line_count;
4131
4132 if (action == ML_FIND) /* first try stack entries */
4133 {
4134 for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top)
4135 {
4136 ip = &(buf->b_ml.ml_stack[top]);
4137 if (ip->ip_low <= lnum && ip->ip_high >= lnum)
4138 {
4139 bnum = ip->ip_bnum;
4140 low = ip->ip_low;
4141 high = ip->ip_high;
4142 buf->b_ml.ml_stack_top = top; /* truncate stack at prev entry */
4143 break;
4144 }
4145 }
4146 if (top < 0)
4147 buf->b_ml.ml_stack_top = 0; /* not found, start at the root */
4148 }
4149 else /* ML_DELETE or ML_INSERT */
4150 buf->b_ml.ml_stack_top = 0; /* start at the root */
4151
4152/*
4153 * search downwards in the tree until a data block is found
4154 */
4155 for (;;)
4156 {
4157 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
4158 goto error_noblock;
4159
4160 /*
4161 * update high for insert/delete
4162 */
4163 if (action == ML_INSERT)
4164 ++high;
4165 else if (action == ML_DELETE)
4166 --high;
4167
4168 dp = (DATA_BL *)(hp->bh_data);
4169 if (dp->db_id == DATA_ID) /* data block */
4170 {
4171 buf->b_ml.ml_locked = hp;
4172 buf->b_ml.ml_locked_low = low;
4173 buf->b_ml.ml_locked_high = high;
4174 buf->b_ml.ml_locked_lineadd = 0;
4175 buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS);
4176 return hp;
4177 }
4178
4179 pp = (PTR_BL *)(dp); /* must be pointer block */
4180 if (pp->pb_id != PTR_ID)
4181 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004182 iemsg(_("E317: pointer block id wrong"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183 goto error_block;
4184 }
4185
4186 if ((top = ml_add_stack(buf)) < 0) /* add new entry to stack */
4187 goto error_block;
4188 ip = &(buf->b_ml.ml_stack[top]);
4189 ip->ip_bnum = bnum;
4190 ip->ip_low = low;
4191 ip->ip_high = high;
4192 ip->ip_index = -1; /* index not known yet */
4193
4194 dirty = FALSE;
4195 for (idx = 0; idx < (int)pp->pb_count; ++idx)
4196 {
4197 t = pp->pb_pointer[idx].pe_line_count;
4198 CHECK(t == 0, _("pe_line_count is zero"));
4199 if ((low += t) > lnum)
4200 {
4201 ip->ip_index = idx;
4202 bnum = pp->pb_pointer[idx].pe_bnum;
4203 page_count = pp->pb_pointer[idx].pe_page_count;
4204 high = low - 1;
4205 low -= t;
4206
4207 /*
4208 * a negative block number may have been changed
4209 */
4210 if (bnum < 0)
4211 {
4212 bnum2 = mf_trans_del(mfp, bnum);
4213 if (bnum != bnum2)
4214 {
4215 bnum = bnum2;
4216 pp->pb_pointer[idx].pe_bnum = bnum;
4217 dirty = TRUE;
4218 }
4219 }
4220
4221 break;
4222 }
4223 }
4224 if (idx >= (int)pp->pb_count) /* past the end: something wrong! */
4225 {
4226 if (lnum > buf->b_ml.ml_line_count)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004227 siemsg(_("E322: line number out of range: %ld past the end"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004228 lnum - buf->b_ml.ml_line_count);
4229
4230 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004231 siemsg(_("E323: line count wrong in block %ld"), bnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004232 goto error_block;
4233 }
4234 if (action == ML_DELETE)
4235 {
4236 pp->pb_pointer[idx].pe_line_count--;
4237 dirty = TRUE;
4238 }
4239 else if (action == ML_INSERT)
4240 {
4241 pp->pb_pointer[idx].pe_line_count++;
4242 dirty = TRUE;
4243 }
4244 mf_put(mfp, hp, dirty, FALSE);
4245 }
4246
4247error_block:
4248 mf_put(mfp, hp, FALSE, FALSE);
4249error_noblock:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004250 /*
4251 * If action is ML_DELETE or ML_INSERT we have to correct the tree for
4252 * the incremented/decremented line counts, because there won't be a line
4253 * inserted/deleted after all.
4254 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004255 if (action == ML_DELETE)
4256 ml_lineadd(buf, 1);
4257 else if (action == ML_INSERT)
4258 ml_lineadd(buf, -1);
4259 buf->b_ml.ml_stack_top = 0;
4260 return NULL;
4261}
4262
4263/*
4264 * add an entry to the info pointer stack
4265 *
4266 * return -1 for failure, number of the new entry otherwise
4267 */
4268 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004269ml_add_stack(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004270{
4271 int top;
4272 infoptr_T *newstack;
4273
4274 top = buf->b_ml.ml_stack_top;
4275
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004276 /* may have to increase the stack size */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004277 if (top == buf->b_ml.ml_stack_size)
4278 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004279 CHECK(top > 0, _("Stack size increases")); /* more than 5 levels??? */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004281 newstack = ALLOC_MULT(infoptr_T, buf->b_ml.ml_stack_size + STACK_INCR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 if (newstack == NULL)
4283 return -1;
Bram Moolenaarfbd302f2015-08-08 18:23:46 +02004284 if (top > 0)
4285 mch_memmove(newstack, buf->b_ml.ml_stack,
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004286 (size_t)top * sizeof(infoptr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 vim_free(buf->b_ml.ml_stack);
4288 buf->b_ml.ml_stack = newstack;
4289 buf->b_ml.ml_stack_size += STACK_INCR;
4290 }
4291
4292 buf->b_ml.ml_stack_top++;
4293 return top;
4294}
4295
4296/*
4297 * Update the pointer blocks on the stack for inserted/deleted lines.
4298 * The stack itself is also updated.
4299 *
4300 * When a insert/delete line action fails, the line is not inserted/deleted,
4301 * but the pointer blocks have already been updated. That is fixed here by
4302 * walking through the stack.
4303 *
4304 * Count is the number of lines added, negative if lines have been deleted.
4305 */
4306 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004307ml_lineadd(buf_T *buf, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004308{
4309 int idx;
4310 infoptr_T *ip;
4311 PTR_BL *pp;
4312 memfile_T *mfp = buf->b_ml.ml_mfp;
4313 bhdr_T *hp;
4314
4315 for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx)
4316 {
4317 ip = &(buf->b_ml.ml_stack[idx]);
4318 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
4319 break;
4320 pp = (PTR_BL *)(hp->bh_data); /* must be pointer block */
4321 if (pp->pb_id != PTR_ID)
4322 {
4323 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004324 iemsg(_("E317: pointer block id wrong 2"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004325 break;
4326 }
4327 pp->pb_pointer[ip->ip_index].pe_line_count += count;
4328 ip->ip_high += count;
4329 mf_put(mfp, hp, TRUE, FALSE);
4330 }
4331}
4332
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004333#if defined(HAVE_READLINK) || defined(PROTO)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004334/*
4335 * Resolve a symlink in the last component of a file name.
4336 * Note that f_resolve() does it for every part of the path, we don't do that
4337 * here.
4338 * If it worked returns OK and the resolved link in "buf[MAXPATHL]".
4339 * Otherwise returns FAIL.
4340 */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004341 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004342resolve_symlink(char_u *fname, char_u *buf)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004343{
4344 char_u tmp[MAXPATHL];
4345 int ret;
4346 int depth = 0;
4347
4348 if (fname == NULL)
4349 return FAIL;
4350
4351 /* Put the result so far in tmp[], starting with the original name. */
4352 vim_strncpy(tmp, fname, MAXPATHL - 1);
4353
4354 for (;;)
4355 {
4356 /* Limit symlink depth to 100, catch recursive loops. */
4357 if (++depth == 100)
4358 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004359 semsg(_("E773: Symlink loop for \"%s\""), fname);
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004360 return FAIL;
4361 }
4362
4363 ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1);
4364 if (ret <= 0)
4365 {
Bram Moolenaarcc984262005-12-23 22:19:46 +00004366 if (errno == EINVAL || errno == ENOENT)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004367 {
Bram Moolenaarcc984262005-12-23 22:19:46 +00004368 /* Found non-symlink or not existing file, stop here.
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00004369 * When at the first level use the unmodified name, skip the
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004370 * call to vim_FullName(). */
4371 if (depth == 1)
4372 return FAIL;
4373
4374 /* Use the resolved name in tmp[]. */
4375 break;
4376 }
4377
4378 /* There must be some error reading links, use original name. */
4379 return FAIL;
4380 }
4381 buf[ret] = NUL;
4382
4383 /*
4384 * Check whether the symlink is relative or absolute.
4385 * If it's relative, build a new path based on the directory
4386 * portion of the filename (if any) and the path the symlink
4387 * points to.
4388 */
4389 if (mch_isFullName(buf))
4390 STRCPY(tmp, buf);
4391 else
4392 {
4393 char_u *tail;
4394
4395 tail = gettail(tmp);
4396 if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL)
4397 return FAIL;
4398 STRCPY(tail, buf);
4399 }
4400 }
4401
4402 /*
4403 * Try to resolve the full name of the file so that the swapfile name will
4404 * be consistent even when opening a relative symlink from different
4405 * working directories.
4406 */
4407 return vim_FullName(tmp, buf, MAXPATHL, TRUE);
4408}
4409#endif
4410
Bram Moolenaar071d4272004-06-13 20:20:40 +00004411/*
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004412 * Make swap file name out of the file name and a directory name.
4413 * Returns pointer to allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004414 */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004415 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004416makeswapname(
4417 char_u *fname,
4418 char_u *ffname UNUSED,
4419 buf_T *buf,
4420 char_u *dir_name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421{
4422 char_u *r, *s;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02004423 char_u *fname_res = fname;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004424#ifdef HAVE_READLINK
4425 char_u fname_buf[MAXPATHL];
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004426#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004427
Bram Moolenaar4f974752019-02-17 17:44:42 +01004428#if defined(UNIX) || defined(MSWIN) // Need _very_ long file names
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01004429 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01004430
4431 s = dir_name + len;
4432 if (after_pathsep(dir_name, s) && len > 1 && s[-1] == s[-2])
Bram Moolenaar071d4272004-06-13 20:20:40 +00004433 { /* Ends with '//', Use Full path */
4434 r = NULL;
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004435 if ((s = make_percent_swname(dir_name, fname)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436 {
4437 r = modname(s, (char_u *)".swp", FALSE);
4438 vim_free(s);
4439 }
4440 return r;
4441 }
4442#endif
4443
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004444#ifdef HAVE_READLINK
4445 /* Expand symlink in the file name, so that we put the swap file with the
4446 * actual file instead of with the symlink. */
4447 if (resolve_symlink(fname, fname_buf) == OK)
4448 fname_res = fname_buf;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004449#endif
4450
Bram Moolenaar071d4272004-06-13 20:20:40 +00004451 r = buf_modname(
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 (buf->b_p_sn || buf->b_shortname),
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004453 fname_res,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004454 (char_u *)
Bram Moolenaare60acc12011-05-10 16:41:25 +02004455#if defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004456 "_swp",
4457#else
4458 ".swp",
4459#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004460 /* Prepend a '.' to the swap file name for the current directory. */
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004461 dir_name[0] == '.' && dir_name[1] == NUL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004462 if (r == NULL) /* out of memory */
4463 return NULL;
4464
4465 s = get_file_in_dir(r, dir_name);
4466 vim_free(r);
4467 return s;
4468}
4469
4470/*
4471 * Get file name to use for swap file or backup file.
4472 * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir'
4473 * option "dname".
4474 * - If "dname" is ".", return "fname" (swap file in dir of file).
4475 * - If "dname" starts with "./", insert "dname" in "fname" (swap file
4476 * relative to dir of file).
4477 * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific
4478 * dir).
4479 *
4480 * The return value is an allocated string and can be NULL.
4481 */
4482 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004483get_file_in_dir(
4484 char_u *fname,
4485 char_u *dname) /* don't use "dirname", it is a global for Alpha */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486{
4487 char_u *t;
4488 char_u *tail;
4489 char_u *retval;
4490 int save_char;
4491
4492 tail = gettail(fname);
4493
4494 if (dname[0] == '.' && dname[1] == NUL)
4495 retval = vim_strsave(fname);
4496 else if (dname[0] == '.' && vim_ispathsep(dname[1]))
4497 {
4498 if (tail == fname) /* no path before file name */
4499 retval = concat_fnames(dname + 2, tail, TRUE);
4500 else
4501 {
4502 save_char = *tail;
4503 *tail = NUL;
4504 t = concat_fnames(fname, dname + 2, TRUE);
4505 *tail = save_char;
4506 if (t == NULL) /* out of memory */
4507 retval = NULL;
4508 else
4509 {
4510 retval = concat_fnames(t, tail, TRUE);
4511 vim_free(t);
4512 }
4513 }
4514 }
4515 else
4516 retval = concat_fnames(dname, tail, TRUE);
4517
Bram Moolenaar4f974752019-02-17 17:44:42 +01004518#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004519 if (retval != NULL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004520 for (t = gettail(retval); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004521 if (*t == ':')
4522 *t = '%';
4523#endif
4524
Bram Moolenaar071d4272004-06-13 20:20:40 +00004525 return retval;
4526}
4527
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004528/*
4529 * Print the ATTENTION message: info about an existing swap file.
4530 */
4531 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004532attention_message(
4533 buf_T *buf, /* buffer being edited */
4534 char_u *fname) /* swap file name */
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004535{
Bram Moolenaar8767f522016-07-01 17:17:39 +02004536 stat_T st;
Bram Moolenaar63d25552019-05-10 21:28:38 +02004537 time_t swap_mtime;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004538
4539 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004540 (void)emsg(_("E325: ATTENTION"));
Bram Moolenaar32526b32019-01-19 17:43:09 +01004541 msg_puts(_("\nFound a swap file by the name \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004542 msg_home_replace(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004543 msg_puts("\"\n");
Bram Moolenaar63d25552019-05-10 21:28:38 +02004544 swap_mtime = swapfile_info(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004545 msg_puts(_("While opening file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004546 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004547 msg_puts("\"\n");
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004548 if (mch_stat((char *)buf->b_fname, &st) == -1)
4549 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004550 msg_puts(_(" CANNOT BE FOUND"));
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004551 }
4552 else
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004553 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004554 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02004555 msg_puts(get_ctime(st.st_mtime, TRUE));
4556 if (swap_mtime != 0 && st.st_mtime > swap_mtime)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004557 msg_puts(_(" NEWER than swap file!\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004558 }
4559 /* Some of these messages are long to allow translation to
4560 * other languages. */
Bram Moolenaar32526b32019-01-19 17:43:09 +01004561 msg_puts(_("\n(1) Another program may be editing the same file. If this is the case,\n be careful not to end up with two different instances of the same\n file when making changes. Quit, or continue with caution.\n"));
4562 msg_puts(_("(2) An edit session for this file crashed.\n"));
4563 msg_puts(_(" If this is the case, use \":recover\" or \"vim -r "));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004564 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004565 msg_puts(_("\"\n to recover the changes (see \":help recovery\").\n"));
4566 msg_puts(_(" If you did this already, delete the swap file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004567 msg_outtrans(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004568 msg_puts(_("\"\n to avoid this message.\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004569 cmdline_row = msg_row;
4570 --no_wait_return;
4571}
4572
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004573#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004574/*
4575 * Trigger the SwapExists autocommands.
4576 * Returns a value for equivalent to do_dialog() (see below):
4577 * 0: still need to ask for a choice
4578 * 1: open read-only
4579 * 2: edit anyway
4580 * 3: recover
4581 * 4: delete it
4582 * 5: quit
4583 * 6: abort
4584 */
4585 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004586do_swapexists(buf_T *buf, char_u *fname)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004587{
4588 set_vim_var_string(VV_SWAPNAME, fname, -1);
4589 set_vim_var_string(VV_SWAPCHOICE, NULL, -1);
4590
4591 /* Trigger SwapExists autocommands with <afile> set to the file being
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004592 * edited. Disallow changing directory here. */
4593 ++allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004594 apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL);
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004595 --allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004596
4597 set_vim_var_string(VV_SWAPNAME, NULL, -1);
4598
4599 switch (*get_vim_var_str(VV_SWAPCHOICE))
4600 {
4601 case 'o': return 1;
4602 case 'e': return 2;
4603 case 'r': return 3;
4604 case 'd': return 4;
4605 case 'q': return 5;
4606 case 'a': return 6;
4607 }
4608
4609 return 0;
4610}
4611#endif
4612
Bram Moolenaar071d4272004-06-13 20:20:40 +00004613/*
4614 * Find out what name to use for the swap file for buffer 'buf'.
4615 *
4616 * Several names are tried to find one that does not exist
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004617 * Returns the name in allocated memory or NULL.
Bram Moolenaarf541c362011-10-26 11:44:18 +02004618 * When out of memory "dirp" is set to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 *
4620 * Note: If BASENAMELEN is not correct, you will get error messages for
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004621 * not being able to open the swap or undo file
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004622 * Note: May trigger SwapExists autocmd, pointers may change!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004623 */
4624 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004625findswapname(
4626 buf_T *buf,
4627 char_u **dirp, /* pointer to list of directories */
4628 char_u *old_fname) /* don't give warning for this file name */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004629{
4630 char_u *fname;
4631 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 char_u *dir_name;
4633#ifdef AMIGA
4634 BPTR fh;
4635#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636 int r;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004637 char_u *buf_fname = buf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004638
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004639#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004640# define CREATE_DUMMY_FILE
4641 FILE *dummyfd = NULL;
4642
Bram Moolenaar4f974752019-02-17 17:44:42 +01004643# ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004644 if (buf_fname != NULL && !mch_isFullName(buf_fname)
4645 && vim_strchr(gettail(buf_fname), ':'))
4646 {
4647 char_u *t;
4648
4649 buf_fname = vim_strsave(buf_fname);
4650 if (buf_fname == NULL)
4651 buf_fname = buf->b_fname;
4652 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004653 for (t = gettail(buf_fname); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004654 if (*t == ':')
4655 *t = '%';
4656 }
4657# endif
4658
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004659 /*
4660 * If we start editing a new file, e.g. "test.doc", which resides on an
4661 * MSDOS compatible filesystem, it is possible that the file
4662 * "test.doc.swp" which we create will be exactly the same file. To avoid
4663 * this problem we temporarily create "test.doc". Don't do this when the
4664 * check below for a 8.3 file name is used.
4665 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004666 if (!(buf->b_p_sn || buf->b_shortname) && buf_fname != NULL
4667 && mch_getperm(buf_fname) < 0)
4668 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004669#endif
4670
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004671 /*
4672 * Isolate a directory name from *dirp and put it in dir_name.
4673 * First allocate some memory to put the directory name in.
4674 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004675 dir_name = alloc(STRLEN(*dirp) + 1);
Bram Moolenaarf541c362011-10-26 11:44:18 +02004676 if (dir_name == NULL)
4677 *dirp = NULL;
4678 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004679 (void)copy_option_part(dirp, dir_name, 31000, ",");
4680
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004681 /*
4682 * we try different names until we find one that does not exist yet
4683 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 if (dir_name == NULL) /* out of memory */
4685 fname = NULL;
4686 else
Bram Moolenaar69c35002013-11-04 02:54:12 +01004687 fname = makeswapname(buf_fname, buf->b_ffname, buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688
4689 for (;;)
4690 {
4691 if (fname == NULL) /* must be out of memory */
4692 break;
4693 if ((n = (int)STRLEN(fname)) == 0) /* safety check */
4694 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01004695 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004696 break;
4697 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004698#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699/*
4700 * Some systems have a MS-DOS compatible filesystem that use 8.3 character
4701 * file names. If this is the first try and the swap file name does not fit in
4702 * 8.3, detect if this is the case, set shortname and try again.
4703 */
4704 if (fname[n - 2] == 'w' && fname[n - 1] == 'p'
4705 && !(buf->b_p_sn || buf->b_shortname))
4706 {
4707 char_u *tail;
4708 char_u *fname2;
Bram Moolenaar8767f522016-07-01 17:17:39 +02004709 stat_T s1, s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004710 int f1, f2;
4711 int created1 = FALSE, created2 = FALSE;
4712 int same = FALSE;
4713
4714 /*
4715 * Check if swapfile name does not fit in 8.3:
4716 * It either contains two dots, is longer than 8 chars, or starts
4717 * with a dot.
4718 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004719 tail = gettail(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004720 if ( vim_strchr(tail, '.') != NULL
4721 || STRLEN(tail) > (size_t)8
4722 || *gettail(fname) == '.')
4723 {
4724 fname2 = alloc(n + 2);
4725 if (fname2 != NULL)
4726 {
4727 STRCPY(fname2, fname);
4728 /* if fname == "xx.xx.swp", fname2 = "xx.xx.swx"
4729 * if fname == ".xx.swp", fname2 = ".xx.swpx"
4730 * if fname == "123456789.swp", fname2 = "12345678x.swp"
4731 */
4732 if (vim_strchr(tail, '.') != NULL)
4733 fname2[n - 1] = 'x';
4734 else if (*gettail(fname) == '.')
4735 {
4736 fname2[n] = 'x';
4737 fname2[n + 1] = NUL;
4738 }
4739 else
4740 fname2[n - 5] += 1;
4741 /*
4742 * may need to create the files to be able to use mch_stat()
4743 */
4744 f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4745 if (f1 < 0)
4746 {
4747 f1 = mch_open_rw((char *)fname,
4748 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749 created1 = TRUE;
4750 }
4751 if (f1 >= 0)
4752 {
4753 f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0);
4754 if (f2 < 0)
4755 {
4756 f2 = mch_open_rw((char *)fname2,
4757 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
4758 created2 = TRUE;
4759 }
4760 if (f2 >= 0)
4761 {
4762 /*
4763 * Both files exist now. If mch_stat() returns the
4764 * same device and inode they are the same file.
4765 */
4766 if (mch_fstat(f1, &s1) != -1
4767 && mch_fstat(f2, &s2) != -1
4768 && s1.st_dev == s2.st_dev
4769 && s1.st_ino == s2.st_ino)
4770 same = TRUE;
4771 close(f2);
4772 if (created2)
4773 mch_remove(fname2);
4774 }
4775 close(f1);
4776 if (created1)
4777 mch_remove(fname);
4778 }
4779 vim_free(fname2);
4780 if (same)
4781 {
4782 buf->b_shortname = TRUE;
4783 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004784 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004785 buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 continue; /* try again with b_shortname set */
4787 }
4788 }
4789 }
4790 }
4791#endif
4792 /*
4793 * check if the swapfile already exists
4794 */
4795 if (mch_getperm(fname) < 0) /* it does not exist */
4796 {
4797#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02004798 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799
4800 /*
4801 * Extra security check: When a swap file is a symbolic link, this
4802 * is most likely a symlink attack.
4803 */
4804 if (mch_lstat((char *)fname, &sb) < 0)
4805#else
4806# ifdef AMIGA
4807 fh = Open((UBYTE *)fname, (long)MODE_NEWFILE);
4808 /*
4809 * on the Amiga mch_getperm() will return -1 when the file exists
4810 * but is being used by another program. This happens if you edit
4811 * a file twice.
4812 */
4813 if (fh != (BPTR)NULL) /* can open file, OK */
4814 {
4815 Close(fh);
4816 mch_remove(fname);
4817 break;
4818 }
4819 if (IoErr() != ERROR_OBJECT_IN_USE
4820 && IoErr() != ERROR_OBJECT_EXISTS)
4821# endif
4822#endif
4823 break;
4824 }
4825
4826 /*
4827 * A file name equal to old_fname is OK to use.
4828 */
4829 if (old_fname != NULL && fnamecmp(fname, old_fname) == 0)
4830 break;
4831
4832 /*
4833 * get here when file already exists
4834 */
4835 if (fname[n - 2] == 'w' && fname[n - 1] == 'p') /* first try */
4836 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004837 /*
4838 * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp
4839 * and file.doc are the same file. To guess if this problem is
4840 * present try if file.doc.swx exists. If it does, we set
4841 * buf->b_shortname and try file_doc.swp (dots replaced by
4842 * underscores for this file), and try again. If it doesn't we
4843 * assume that "file.doc.swp" already exists.
4844 */
4845 if (!(buf->b_p_sn || buf->b_shortname)) /* not tried yet */
4846 {
4847 fname[n - 1] = 'x';
4848 r = mch_getperm(fname); /* try "file.swx" */
4849 fname[n - 1] = 'p';
4850 if (r >= 0) /* "file.swx" seems to exist */
4851 {
4852 buf->b_shortname = TRUE;
4853 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004854 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004855 buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 continue; /* try again with '.' replaced with '_' */
4857 }
4858 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 /*
4860 * If we get here the ".swp" file really exists.
4861 * Give an error message, unless recovering, no file name, we are
4862 * viewing a help file or when the path of the file is different
4863 * (happens when all .swp files are in one directory).
4864 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004865 if (!recoverymode && buf_fname != NULL
Bram Moolenaar2debf1c2019-08-04 20:44:19 +02004866 && !buf->b_help
4867 && !(buf->b_flags & (BF_DUMMY | BF_NO_SEA)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 {
4869 int fd;
4870 struct block0 b0;
4871 int differ = FALSE;
4872
4873 /*
4874 * Try to read block 0 from the swap file to get the original
4875 * file name (and inode number).
4876 */
4877 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4878 if (fd >= 0)
4879 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004880 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 {
4882 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004883 * If the swapfile has the same directory as the
4884 * buffer don't compare the directory names, they can
4885 * have a different mountpoint.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004886 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004887 if (b0.b0_flags & B0_SAME_DIR)
4888 {
4889 if (fnamecmp(gettail(buf->b_ffname),
4890 gettail(b0.b0_fname)) != 0
4891 || !same_directory(fname, buf->b_ffname))
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004892 {
4893#ifdef CHECK_INODE
4894 /* Symlinks may point to the same file even
4895 * when the name differs, need to check the
4896 * inode too. */
4897 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
4898 if (fnamecmp_ino(buf->b_ffname, NameBuff,
4899 char_to_long(b0.b0_ino)))
4900#endif
4901 differ = TRUE;
4902 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004903 }
4904 else
4905 {
4906 /*
4907 * The name in the swap file may be
4908 * "~user/path/file". Expand it first.
4909 */
4910 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911#ifdef CHECK_INODE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004912 if (fnamecmp_ino(buf->b_ffname, NameBuff,
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004913 char_to_long(b0.b0_ino)))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004914 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915#else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004916 if (fnamecmp(NameBuff, buf->b_ffname) != 0)
4917 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004919 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004920 }
4921 close(fd);
4922 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923
4924 /* give the ATTENTION message when there is an old swap file
4925 * for the current file, and the buffer was not recovered. */
4926 if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED)
4927 && vim_strchr(p_shm, SHM_ATTENTION) == NULL)
4928 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004929 int choice = 0;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004930 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004931#ifdef CREATE_DUMMY_FILE
4932 int did_use_dummy = FALSE;
4933
4934 /* Avoid getting a warning for the file being created
4935 * outside of Vim, it was created at the start of this
4936 * function. Delete the file now, because Vim might exit
4937 * here if the window is closed. */
4938 if (dummyfd != NULL)
4939 {
4940 fclose(dummyfd);
4941 dummyfd = NULL;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004942 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 did_use_dummy = TRUE;
4944 }
4945#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02004947#ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 process_still_running = FALSE;
4949#endif
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004950 // It's safe to delete the swap file if all these are true:
4951 // - the edited file exists
4952 // - the swap file has no changes and looks OK
4953 if (mch_stat((char *)buf->b_fname, &st) == 0
4954 && swapfile_unchanged(fname))
4955 {
4956 choice = 4;
4957 if (p_verbose > 0)
4958 verb_msg(_("Found a swap file that is not useful, deleting it"));
4959 }
4960
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004961#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004962 /*
4963 * If there is an SwapExists autocommand and we can handle
4964 * the response, trigger it. It may return 0 to ask the
4965 * user anyway.
4966 */
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004967 if (choice == 0
4968 && swap_exists_action != SEA_NONE
Bram Moolenaar69c35002013-11-04 02:54:12 +01004969 && has_autocmd(EVENT_SWAPEXISTS, buf_fname, buf))
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004970 choice = do_swapexists(buf, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004972 if (choice == 0)
4973#endif
4974 {
4975#ifdef FEAT_GUI
Bram Moolenaar798184c2018-10-07 20:48:39 +02004976 // If we are supposed to start the GUI but it wasn't
4977 // completely started yet, start it now. This makes
4978 // the messages displayed in the Vim window when
4979 // loading a session from the .gvimrc file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004980 if (gui.starting && !gui.in_use)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004981 gui_start(NULL);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004982#endif
Bram Moolenaar798184c2018-10-07 20:48:39 +02004983 // Show info about the existing swap file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004984 attention_message(buf, fname);
4985
Bram Moolenaar798184c2018-10-07 20:48:39 +02004986 // We don't want a 'q' typed at the more-prompt
4987 // interrupt loading a file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004988 got_int = FALSE;
Bram Moolenaar798184c2018-10-07 20:48:39 +02004989
4990 // If vimrc has "simalt ~x" we don't want it to
4991 // interfere with the prompt here.
Bram Moolenaar6a2633b2018-10-07 23:16:36 +02004992 flush_buffers(FLUSH_TYPEAHEAD);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004993 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994
4995#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004996 if (swap_exists_action != SEA_NONE && choice == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997 {
4998 char_u *name;
4999
Bram Moolenaar964b3742019-05-24 18:54:09 +02005000 name = alloc(STRLEN(fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005001 + STRLEN(_("Swap file \""))
Bram Moolenaar964b3742019-05-24 18:54:09 +02005002 + STRLEN(_("\" already exists!")) + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 if (name != NULL)
5004 {
5005 STRCPY(name, _("Swap file \""));
5006 home_replace(NULL, fname, name + STRLEN(name),
5007 1000, TRUE);
5008 STRCAT(name, _("\" already exists!"));
5009 }
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005010 choice = do_dialog(VIM_WARNING,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 (char_u *)_("VIM - ATTENTION"),
5012 name == NULL
5013 ? (char_u *)_("Swap file already exists!")
5014 : name,
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005015# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016 process_still_running
5017 ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") :
5018# endif
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005019 (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Delete it\n&Quit\n&Abort"), 1, NULL, FALSE);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005020
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005021# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005022 if (process_still_running && choice >= 4)
5023 choice++; /* Skip missing "Delete it" button */
5024# endif
5025 vim_free(name);
5026
5027 /* pretend screen didn't scroll, need redraw anyway */
5028 msg_scrolled = 0;
5029 redraw_all_later(NOT_VALID);
5030 }
5031#endif
5032
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005033 if (choice > 0)
5034 {
5035 switch (choice)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005036 {
5037 case 1:
5038 buf->b_p_ro = TRUE;
5039 break;
5040 case 2:
5041 break;
5042 case 3:
5043 swap_exists_action = SEA_RECOVER;
5044 break;
5045 case 4:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005046 mch_remove(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 break;
5048 case 5:
5049 swap_exists_action = SEA_QUIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005050 break;
5051 case 6:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005052 swap_exists_action = SEA_QUIT;
5053 got_int = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 break;
5055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056
5057 /* If the file was deleted this fname can be used. */
5058 if (mch_getperm(fname) < 0)
5059 break;
5060 }
5061 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005063 msg_puts("\n");
Bram Moolenaar4770d092006-01-12 23:22:24 +00005064 if (msg_silent == 0)
5065 /* call wait_return() later */
5066 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 }
5068
5069#ifdef CREATE_DUMMY_FILE
5070 /* Going to try another name, need the dummy file again. */
5071 if (did_use_dummy)
Bram Moolenaar69c35002013-11-04 02:54:12 +01005072 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005073#endif
5074 }
5075 }
5076 }
5077
5078 /*
5079 * Change the ".swp" extension to find another file that can be used.
5080 * First decrement the last char: ".swo", ".swn", etc.
5081 * If that still isn't enough decrement the last but one char: ".svz"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005082 * Can happen when editing many "No Name" buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005083 */
5084 if (fname[n - 1] == 'a') /* ".s?a" */
5085 {
5086 if (fname[n - 2] == 'a') /* ".saa": tried enough, give up */
5087 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005088 emsg(_("E326: Too many swap files found"));
Bram Moolenaard23a8232018-02-10 18:45:26 +01005089 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005090 break;
5091 }
5092 --fname[n - 2]; /* ".svz", ".suz", etc. */
5093 fname[n - 1] = 'z' + 1;
5094 }
5095 --fname[n - 1]; /* ".swo", ".swn", etc. */
5096 }
5097
5098 vim_free(dir_name);
5099#ifdef CREATE_DUMMY_FILE
5100 if (dummyfd != NULL) /* file has been created temporarily */
5101 {
5102 fclose(dummyfd);
Bram Moolenaar69c35002013-11-04 02:54:12 +01005103 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 }
5105#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005106#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01005107 if (buf_fname != buf->b_fname)
5108 vim_free(buf_fname);
5109#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 return fname;
5111}
5112
5113 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005114b0_magic_wrong(ZERO_BL *b0p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115{
5116 return (b0p->b0_magic_long != (long)B0_MAGIC_LONG
5117 || b0p->b0_magic_int != (int)B0_MAGIC_INT
5118 || b0p->b0_magic_short != (short)B0_MAGIC_SHORT
5119 || b0p->b0_magic_char != B0_MAGIC_CHAR);
5120}
5121
5122#ifdef CHECK_INODE
5123/*
5124 * Compare current file name with file name from swap file.
5125 * Try to use inode numbers when possible.
5126 * Return non-zero when files are different.
5127 *
5128 * When comparing file names a few things have to be taken into consideration:
5129 * - When working over a network the full path of a file depends on the host.
5130 * We check the inode number if possible. It is not 100% reliable though,
5131 * because the device number cannot be used over a network.
5132 * - When a file does not exist yet (editing a new file) there is no inode
5133 * number.
5134 * - The file name in a swap file may not be valid on the current host. The
5135 * "~user" form is used whenever possible to avoid this.
5136 *
5137 * This is getting complicated, let's make a table:
5138 *
5139 * ino_c ino_s fname_c fname_s differ =
5140 *
5141 * both files exist -> compare inode numbers:
5142 * != 0 != 0 X X ino_c != ino_s
5143 *
5144 * inode number(s) unknown, file names available -> compare file names
5145 * == 0 X OK OK fname_c != fname_s
5146 * X == 0 OK OK fname_c != fname_s
5147 *
5148 * current file doesn't exist, file for swap file exist, file name(s) not
5149 * available -> probably different
5150 * == 0 != 0 FAIL X TRUE
5151 * == 0 != 0 X FAIL TRUE
5152 *
5153 * current file exists, inode for swap unknown, file name(s) not
5154 * available -> probably different
5155 * != 0 == 0 FAIL X TRUE
5156 * != 0 == 0 X FAIL TRUE
5157 *
5158 * current file doesn't exist, inode for swap unknown, one file name not
5159 * available -> probably different
5160 * == 0 == 0 FAIL OK TRUE
5161 * == 0 == 0 OK FAIL TRUE
5162 *
5163 * current file doesn't exist, inode for swap unknown, both file names not
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005164 * available -> compare file names
5165 * == 0 == 0 FAIL FAIL fname_c != fname_s
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166 *
5167 * Note that when the ino_t is 64 bits, only the last 32 will be used. This
5168 * can't be changed without making the block 0 incompatible with 32 bit
5169 * versions.
5170 */
5171
5172 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005173fnamecmp_ino(
5174 char_u *fname_c, /* current file name */
5175 char_u *fname_s, /* file name from swap file */
5176 long ino_block0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005177{
Bram Moolenaar8767f522016-07-01 17:17:39 +02005178 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005179 ino_t ino_c = 0; /* ino of current file */
5180 ino_t ino_s; /* ino of file from swap file */
5181 char_u buf_c[MAXPATHL]; /* full path of fname_c */
5182 char_u buf_s[MAXPATHL]; /* full path of fname_s */
5183 int retval_c; /* flag: buf_c valid */
5184 int retval_s; /* flag: buf_s valid */
5185
5186 if (mch_stat((char *)fname_c, &st) == 0)
5187 ino_c = (ino_t)st.st_ino;
5188
5189 /*
5190 * First we try to get the inode from the file name, because the inode in
5191 * the swap file may be outdated. If that fails (e.g. this path is not
5192 * valid on this machine), use the inode from block 0.
5193 */
5194 if (mch_stat((char *)fname_s, &st) == 0)
5195 ino_s = (ino_t)st.st_ino;
5196 else
5197 ino_s = (ino_t)ino_block0;
5198
5199 if (ino_c && ino_s)
5200 return (ino_c != ino_s);
5201
5202 /*
5203 * One of the inode numbers is unknown, try a forced vim_FullName() and
5204 * compare the file names.
5205 */
5206 retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE);
5207 retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE);
5208 if (retval_c == OK && retval_s == OK)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005209 return STRCMP(buf_c, buf_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210
5211 /*
5212 * Can't compare inodes or file names, guess that the files are different,
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005213 * unless both appear not to exist at all, then compare with the file name
5214 * in the swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005215 */
5216 if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005217 return STRCMP(fname_c, fname_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005218 return TRUE;
5219}
5220#endif /* CHECK_INODE */
5221
5222/*
5223 * Move a long integer into a four byte character array.
5224 * Used for machine independency in block zero.
5225 */
5226 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005227long_to_char(long n, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228{
5229 s[0] = (char_u)(n & 0xff);
5230 n = (unsigned)n >> 8;
5231 s[1] = (char_u)(n & 0xff);
5232 n = (unsigned)n >> 8;
5233 s[2] = (char_u)(n & 0xff);
5234 n = (unsigned)n >> 8;
5235 s[3] = (char_u)(n & 0xff);
5236}
5237
5238 static long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005239char_to_long(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240{
5241 long retval;
5242
5243 retval = s[3];
5244 retval <<= 8;
5245 retval |= s[2];
5246 retval <<= 8;
5247 retval |= s[1];
5248 retval <<= 8;
5249 retval |= s[0];
5250
5251 return retval;
5252}
5253
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005254/*
5255 * Set the flags in the first block of the swap file:
5256 * - file is modified or not: buf->b_changed
5257 * - 'fileformat'
5258 * - 'fileencoding'
5259 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005261ml_setflags(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262{
5263 bhdr_T *hp;
5264 ZERO_BL *b0p;
5265
5266 if (!buf->b_ml.ml_mfp)
5267 return;
5268 for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
5269 {
5270 if (hp->bh_bnum == 0)
5271 {
5272 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005273 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
5274 b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK)
5275 | (get_fileformat(buf) + 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005276 add_b0_fenc(b0p, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 hp->bh_flags |= BH_DIRTY;
5278 mf_sync(buf->b_ml.ml_mfp, MFS_ZERO);
5279 break;
5280 }
5281 }
5282}
5283
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005284#if defined(FEAT_CRYPT) || defined(PROTO)
5285/*
5286 * If "data" points to a data block encrypt the text in it and return a copy
5287 * in allocated memory. Return NULL when out of memory.
5288 * Otherwise return "data".
5289 */
5290 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005291ml_encrypt_data(
5292 memfile_T *mfp,
5293 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005294 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005295 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005296{
5297 DATA_BL *dp = (DATA_BL *)data;
5298 char_u *head_end;
5299 char_u *text_start;
5300 char_u *new_data;
5301 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005302 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005303
5304 if (dp->db_id != DATA_ID)
5305 return data;
5306
Bram Moolenaarbc563362015-06-09 18:35:25 +02005307 state = ml_crypt_prepare(mfp, offset, FALSE);
5308 if (state == NULL)
5309 return data;
5310
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005311 new_data = alloc(size);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005312 if (new_data == NULL)
5313 return NULL;
5314 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5315 text_start = (char_u *)dp + dp->db_txt_start;
5316 text_len = size - dp->db_txt_start;
5317
5318 /* Copy the header and the text. */
5319 mch_memmove(new_data, dp, head_end - (char_u *)dp);
5320
5321 /* Encrypt the text. */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005322 crypt_encode(state, text_start, text_len, new_data + dp->db_txt_start);
5323 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005324
5325 /* Clear the gap. */
5326 if (head_end < text_start)
5327 vim_memset(new_data + (head_end - data), 0, text_start - head_end);
5328
5329 return new_data;
5330}
5331
5332/*
Bram Moolenaarbc563362015-06-09 18:35:25 +02005333 * Decrypt the text in "data" if it points to an encrypted data block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005334 */
5335 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005336ml_decrypt_data(
5337 memfile_T *mfp,
5338 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005339 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005340 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005341{
5342 DATA_BL *dp = (DATA_BL *)data;
5343 char_u *head_end;
5344 char_u *text_start;
5345 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005346 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005347
5348 if (dp->db_id == DATA_ID)
5349 {
5350 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5351 text_start = (char_u *)dp + dp->db_txt_start;
5352 text_len = dp->db_txt_end - dp->db_txt_start;
5353
5354 if (head_end > text_start || dp->db_txt_start > size
5355 || dp->db_txt_end > size)
5356 return; /* data was messed up */
5357
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005358 state = ml_crypt_prepare(mfp, offset, TRUE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005359 if (state != NULL)
5360 {
5361 /* Decrypt the text in place. */
5362 crypt_decode_inplace(state, text_start, text_len);
5363 crypt_free_state(state);
5364 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005365 }
5366}
5367
5368/*
5369 * Prepare for encryption/decryption, using the key, seed and offset.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005370 * Return an allocated cryptstate_T *.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005371 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005372 static cryptstate_T *
Bram Moolenaar8767f522016-07-01 17:17:39 +02005373ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005374{
5375 buf_T *buf = mfp->mf_buffer;
5376 char_u salt[50];
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005377 int method_nr;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005378 char_u *key;
5379 char_u *seed;
5380
5381 if (reading && mfp->mf_old_key != NULL)
5382 {
5383 /* Reading back blocks with the previous key/method/seed. */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005384 method_nr = mfp->mf_old_cm;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005385 key = mfp->mf_old_key;
5386 seed = mfp->mf_old_seed;
5387 }
5388 else
5389 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005390 method_nr = crypt_get_method_nr(buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005391 key = buf->b_p_key;
5392 seed = mfp->mf_seed;
5393 }
Bram Moolenaarbc563362015-06-09 18:35:25 +02005394 if (*key == NUL)
5395 return NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005396
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005397 if (method_nr == CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005398 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005399 /* For PKzip: Append the offset to the key, so that we use a different
5400 * key for every block. */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005401 vim_snprintf((char *)salt, sizeof(salt), "%s%ld", key, (long)offset);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005402 return crypt_create(method_nr, salt, NULL, 0, NULL, 0);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005403 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005404
5405 /* Using blowfish or better: add salt and seed. We use the byte offset
5406 * of the block for the salt. */
5407 vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
5408 return crypt_create(method_nr, key, salt, (int)STRLEN(salt),
5409 seed, MF_SEED_LEN);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005410}
5411
5412#endif
5413
5414
Bram Moolenaar071d4272004-06-13 20:20:40 +00005415#if defined(FEAT_BYTEOFF) || defined(PROTO)
5416
5417#define MLCS_MAXL 800 /* max no of lines in chunk */
5418#define MLCS_MINL 400 /* should be half of MLCS_MAXL */
5419
5420/*
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02005421 * Keep information for finding byte offset of a line, updtype may be one of:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005422 * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it
5423 * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called.
5424 * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it
5425 * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity.
5426 */
5427 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005428ml_updatechunk(
5429 buf_T *buf,
5430 linenr_T line,
5431 long len,
5432 int updtype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433{
5434 static buf_T *ml_upd_lastbuf = NULL;
5435 static linenr_T ml_upd_lastline;
5436 static linenr_T ml_upd_lastcurline;
5437 static int ml_upd_lastcurix;
5438
5439 linenr_T curline = ml_upd_lastcurline;
5440 int curix = ml_upd_lastcurix;
5441 long size;
5442 chunksize_T *curchnk;
5443 int rest;
5444 bhdr_T *hp;
5445 DATA_BL *dp;
5446
5447 if (buf->b_ml.ml_usedchunks == -1 || len == 0)
5448 return;
5449 if (buf->b_ml.ml_chunksize == NULL)
5450 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005451 buf->b_ml.ml_chunksize = ALLOC_MULT(chunksize_T, 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005452 if (buf->b_ml.ml_chunksize == NULL)
5453 {
5454 buf->b_ml.ml_usedchunks = -1;
5455 return;
5456 }
5457 buf->b_ml.ml_numchunks = 100;
5458 buf->b_ml.ml_usedchunks = 1;
5459 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
5460 buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1;
5461 }
5462
5463 if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1)
5464 {
5465 /*
5466 * First line in empty buffer from ml_flush_line() -- reset
5467 */
5468 buf->b_ml.ml_usedchunks = 1;
5469 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01005470 buf->b_ml.ml_chunksize[0].mlcs_totalsize = (long)buf->b_ml.ml_line_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471 return;
5472 }
5473
5474 /*
5475 * Find chunk that our line belongs to, curline will be at start of the
5476 * chunk.
5477 */
5478 if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1
5479 || updtype != ML_CHNK_ADDLINE)
5480 {
5481 for (curline = 1, curix = 0;
5482 curix < buf->b_ml.ml_usedchunks - 1
5483 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5484 curix++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 }
Bram Moolenaara9a8e042018-10-30 22:15:55 +01005487 else if (curix < buf->b_ml.ml_usedchunks - 1
5488 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005489 {
5490 /* Adjust cached curix & curline */
5491 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5492 curix++;
5493 }
5494 curchnk = buf->b_ml.ml_chunksize + curix;
5495
5496 if (updtype == ML_CHNK_DELLINE)
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00005497 len = -len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005498 curchnk->mlcs_totalsize += len;
5499 if (updtype == ML_CHNK_ADDLINE)
5500 {
5501 curchnk->mlcs_numlines++;
5502
5503 /* May resize here so we don't have to do it in both cases below */
5504 if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks)
5505 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005506 chunksize_T *t_chunksize = buf->b_ml.ml_chunksize;
5507
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2;
5509 buf->b_ml.ml_chunksize = (chunksize_T *)
5510 vim_realloc(buf->b_ml.ml_chunksize,
5511 sizeof(chunksize_T) * buf->b_ml.ml_numchunks);
5512 if (buf->b_ml.ml_chunksize == NULL)
5513 {
5514 /* Hmmmm, Give up on offset for this buffer */
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005515 vim_free(t_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005516 buf->b_ml.ml_usedchunks = -1;
5517 return;
5518 }
5519 }
5520
5521 if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL)
5522 {
5523 int count; /* number of entries in block */
5524 int idx;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005525 int end_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005526 int text_end;
5527 int linecnt;
5528
5529 mch_memmove(buf->b_ml.ml_chunksize + curix + 1,
5530 buf->b_ml.ml_chunksize + curix,
5531 (buf->b_ml.ml_usedchunks - curix) *
5532 sizeof(chunksize_T));
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00005533 /* Compute length of first half of lines in the split chunk */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005534 size = 0;
5535 linecnt = 0;
5536 while (curline < buf->b_ml.ml_line_count
5537 && linecnt < MLCS_MINL)
5538 {
5539 if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5540 {
5541 buf->b_ml.ml_usedchunks = -1;
5542 return;
5543 }
5544 dp = (DATA_BL *)(hp->bh_data);
5545 count = (long)(buf->b_ml.ml_locked_high) -
5546 (long)(buf->b_ml.ml_locked_low) + 1;
5547 idx = curline - buf->b_ml.ml_locked_low;
5548 curline = buf->b_ml.ml_locked_high + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005549
5550 // compute index of last line to use in this MEMLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005551 rest = count - idx;
5552 if (linecnt + rest > MLCS_MINL)
5553 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005554 end_idx = idx + MLCS_MINL - linecnt - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005555 linecnt = MLCS_MINL;
5556 }
5557 else
5558 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005559 end_idx = count - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 linecnt += rest;
5561 }
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005562#ifdef FEAT_TEXT_PROP
5563 if (buf->b_has_textprop)
5564 {
5565 int i;
5566
5567 // We cannot use the text pointers to get the text length,
5568 // the text prop info would also be counted. Go over the
5569 // lines.
5570 for (i = end_idx; i < idx; ++i)
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01005571 size += (int)STRLEN((char_u *)dp + (dp->db_index[i] & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005572 }
5573 else
5574#endif
5575 {
5576 if (idx == 0)/* first line in block, text at the end */
5577 text_end = dp->db_txt_end;
5578 else
5579 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
5580 size += text_end - ((dp->db_index[end_idx]) & DB_INDEX_MASK);
5581 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 }
5583 buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt;
5584 buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt;
5585 buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size;
5586 buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size;
5587 buf->b_ml.ml_usedchunks++;
5588 ml_upd_lastbuf = NULL; /* Force recalc of curix & curline */
5589 return;
5590 }
5591 else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL
5592 && curix == buf->b_ml.ml_usedchunks - 1
5593 && buf->b_ml.ml_line_count - line <= 1)
5594 {
5595 /*
5596 * We are in the last chunk and it is cheap to crate a new one
5597 * after this. Do it now to avoid the loop above later on
5598 */
5599 curchnk = buf->b_ml.ml_chunksize + curix + 1;
5600 buf->b_ml.ml_usedchunks++;
5601 if (line == buf->b_ml.ml_line_count)
5602 {
5603 curchnk->mlcs_numlines = 0;
5604 curchnk->mlcs_totalsize = 0;
5605 }
5606 else
5607 {
5608 /*
5609 * Line is just prior to last, move count for last
5610 * This is the common case when loading a new file
5611 */
5612 hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND);
5613 if (hp == NULL)
5614 {
5615 buf->b_ml.ml_usedchunks = -1;
5616 return;
5617 }
5618 dp = (DATA_BL *)(hp->bh_data);
5619 if (dp->db_line_count == 1)
5620 rest = dp->db_txt_end - dp->db_txt_start;
5621 else
5622 rest =
5623 ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK)
5624 - dp->db_txt_start;
5625 curchnk->mlcs_totalsize = rest;
5626 curchnk->mlcs_numlines = 1;
5627 curchnk[-1].mlcs_totalsize -= rest;
5628 curchnk[-1].mlcs_numlines -= 1;
5629 }
5630 }
5631 }
5632 else if (updtype == ML_CHNK_DELLINE)
5633 {
5634 curchnk->mlcs_numlines--;
5635 ml_upd_lastbuf = NULL; /* Force recalc of curix & curline */
5636 if (curix < (buf->b_ml.ml_usedchunks - 1)
5637 && (curchnk->mlcs_numlines + curchnk[1].mlcs_numlines)
5638 <= MLCS_MINL)
5639 {
5640 curix++;
5641 curchnk = buf->b_ml.ml_chunksize + curix;
5642 }
5643 else if (curix == 0 && curchnk->mlcs_numlines <= 0)
5644 {
5645 buf->b_ml.ml_usedchunks--;
5646 mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1,
5647 buf->b_ml.ml_usedchunks * sizeof(chunksize_T));
5648 return;
5649 }
5650 else if (curix == 0 || (curchnk->mlcs_numlines > 10
5651 && (curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines)
5652 > MLCS_MINL))
5653 {
5654 return;
5655 }
5656
5657 /* Collapse chunks */
5658 curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines;
5659 curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize;
5660 buf->b_ml.ml_usedchunks--;
5661 if (curix < buf->b_ml.ml_usedchunks)
5662 {
5663 mch_memmove(buf->b_ml.ml_chunksize + curix,
5664 buf->b_ml.ml_chunksize + curix + 1,
5665 (buf->b_ml.ml_usedchunks - curix) *
5666 sizeof(chunksize_T));
5667 }
5668 return;
5669 }
5670 ml_upd_lastbuf = buf;
5671 ml_upd_lastline = line;
5672 ml_upd_lastcurline = curline;
5673 ml_upd_lastcurix = curix;
5674}
5675
5676/*
5677 * Find offset for line or line with offset.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005678 * Find line with offset if "lnum" is 0; return remaining offset in offp
5679 * Find offset of line if "lnum" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 * return -1 if information is not available
5681 */
5682 long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005683ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005684{
5685 linenr_T curline;
5686 int curix;
5687 long size;
5688 bhdr_T *hp;
5689 DATA_BL *dp;
5690 int count; /* number of entries in block */
5691 int idx;
5692 int start_idx;
5693 int text_end;
5694 long offset;
5695 int len;
5696 int ffdos = (get_fileformat(buf) == EOL_DOS);
5697 int extra = 0;
5698
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005699 /* take care of cached line first */
5700 ml_flush_line(curbuf);
5701
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702 if (buf->b_ml.ml_usedchunks == -1
5703 || buf->b_ml.ml_chunksize == NULL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005704 || lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005705 return -1;
5706
5707 if (offp == NULL)
5708 offset = 0;
5709 else
5710 offset = *offp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005711 if (lnum == 0 && offset <= 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 return 1; /* Not a "find offset" and offset 0 _must_ be in line 1 */
5713 /*
5714 * Find the last chunk before the one containing our line. Last chunk is
5715 * special because it will never qualify
5716 */
5717 curline = 1;
5718 curix = size = 0;
5719 while (curix < buf->b_ml.ml_usedchunks - 1
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005720 && ((lnum != 0
5721 && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005722 || (offset != 0
5723 && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize
5724 + ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines)))
5725 {
5726 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5727 size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize;
5728 if (offset && ffdos)
5729 size += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5730 curix++;
5731 }
5732
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005733 while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 {
5735 if (curline > buf->b_ml.ml_line_count
5736 || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5737 return -1;
5738 dp = (DATA_BL *)(hp->bh_data);
5739 count = (long)(buf->b_ml.ml_locked_high) -
5740 (long)(buf->b_ml.ml_locked_low) + 1;
5741 start_idx = idx = curline - buf->b_ml.ml_locked_low;
5742 if (idx == 0)/* first line in block, text at the end */
5743 text_end = dp->db_txt_end;
5744 else
5745 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
5746 /* Compute index of last line to use in this MEMLINE */
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005747 if (lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005748 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005749 if (curline + (count - idx) >= lnum)
5750 idx += lnum - curline - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 else
5752 idx = count - 1;
5753 }
5754 else
5755 {
5756 extra = 0;
5757 while (offset >= size
5758 + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK)
5759 + ffdos)
5760 {
5761 if (ffdos)
5762 size++;
5763 if (idx == count - 1)
5764 {
5765 extra = 1;
5766 break;
5767 }
5768 idx++;
5769 }
5770 }
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005771#ifdef FEAT_TEXT_PROP
5772 if (buf->b_has_textprop)
5773 {
5774 int i;
5775
5776 // cannot use the db_index pointer, need to get the actual text
5777 // lengths.
5778 len = 0;
5779 for (i = start_idx; i <= idx; ++i)
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01005780 len += (int)STRLEN((char_u *)dp + ((dp->db_index[i]) & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005781 }
5782 else
5783#endif
5784 len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 size += len;
5786 if (offset != 0 && size >= offset)
5787 {
5788 if (size + ffdos == offset)
5789 *offp = 0;
5790 else if (idx == start_idx)
5791 *offp = offset - size + len;
5792 else
5793 *offp = offset - size + len
5794 - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK));
5795 curline += idx - start_idx + extra;
5796 if (curline > buf->b_ml.ml_line_count)
5797 return -1; /* exactly one byte beyond the end */
5798 return curline;
5799 }
5800 curline = buf->b_ml.ml_locked_high + 1;
5801 }
5802
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005803 if (lnum != 0)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005804 {
5805 /* Count extra CR characters. */
5806 if (ffdos)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005807 size += lnum - 1;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005808
Bram Moolenaar34d72d42015-07-17 14:18:08 +02005809 /* Don't count the last line break if 'noeol' and ('bin' or
5810 * 'nofixeol'). */
5811 if ((!buf->b_p_fixeol || buf->b_p_bin) && !buf->b_p_eol
Bram Moolenaarc26f7c62018-08-20 22:53:04 +02005812 && lnum > buf->b_ml.ml_line_count)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005813 size -= ffdos + 1;
5814 }
5815
Bram Moolenaar071d4272004-06-13 20:20:40 +00005816 return size;
5817}
5818
5819/*
5820 * Goto byte in buffer with offset 'cnt'.
5821 */
5822 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005823goto_byte(long cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005824{
5825 long boff = cnt;
5826 linenr_T lnum;
5827
5828 ml_flush_line(curbuf); /* cached line may be dirty */
5829 setpcmark();
5830 if (boff)
5831 --boff;
5832 lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff);
5833 if (lnum < 1) /* past the end */
5834 {
5835 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5836 curwin->w_curswant = MAXCOL;
5837 coladvance((colnr_T)MAXCOL);
5838 }
5839 else
5840 {
5841 curwin->w_cursor.lnum = lnum;
5842 curwin->w_cursor.col = (colnr_T)boff;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005843 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005844 curwin->w_set_curswant = TRUE;
5845 }
5846 check_cursor();
5847
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 /* Make sure the cursor is on the first byte of a multi-byte char. */
5849 if (has_mbyte)
5850 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005851}
5852#endif