blob: 4c4a1b24cb1972c7bf4436727adb403b1f3d4697 [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
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010010// for debugging
11// #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 Moolenaar4ba37b52019-12-04 21:57:43 +010047#ifndef UNIX // it's in os_unix.h for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000048# include <time.h>
49#endif
50
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000051#if defined(SASC) || defined(__amigaos4__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010052# include <proto/dos.h> // for Open() and Close()
Bram Moolenaar071d4272004-06-13 20:20:40 +000053#endif
54
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010055typedef 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
Bram Moolenaar071d4272004-06-13 20:20:40 +000059
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010060#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
66#define BLOCK0_ID1_C2 'd' // block 0 id 1 'cm' 2
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020067
68#if defined(FEAT_CRYPT)
69static int id1_codes[] = {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010070 BLOCK0_ID1_C0, // CRYPT_M_ZIP
71 BLOCK0_ID1_C1, // CRYPT_M_BF
72 BLOCK0_ID1_C2, // CRYPT_M_BF2
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020073};
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{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010081 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
Bram Moolenaar071d4272004-06-13 20:20:40 +000085};
86
87/*
88 * A pointer block contains a list of branches in the tree.
89 */
90struct pointer_block
91{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010092 short_u pb_id; // ID for pointer block: PTR_ID
93 short_u pb_count; // number of pointers in this block
94 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
Bram Moolenaar071d4272004-06-13 20:20:40 +000097};
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{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100108 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)
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100114 // followed by empty space up to db_txt_start
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100115 // followed by the text in the lines until
116 // end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000117};
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
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100130#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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100133#define B0_FNAME_SIZE_ORG 900 // what it was in older versions
134#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 Moolenaar4ba37b52019-12-04 21:57:43 +0100162 char_u b0_id[2]; // id for block 0: BLOCK0_ID0 and BLOCK0_ID1,
163 // BLOCK0_ID1_C0, BLOCK0_ID1_C1, etc.
164 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)
171 char_u b0_fname[B0_FNAME_SIZE_ORG]; // name of file being edited
172 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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000176};
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
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100198// 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.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000201#define B0_FF_MASK 3
202
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100203// Swap file is in directory of edited file. Used to find the file from
204// different mount points.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000205#define B0_SAME_DIR 4
206
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100207// The 'fileencoding' is at the end of b0_fname[], with a NUL in front of it.
208// When empty there is only the NUL.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000209#define B0_HAS_FENC 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100211#define STACK_INCR 5 // nr of entries added to ml_stack at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212
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 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100224#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
Bram Moolenaar071d4272004-06-13 20:20:40 +0000229
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100230// argument for ml_upd_block0()
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200231typedef enum {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100232 UB_FNAME = 0 // update timestamp and filename
233 , UB_SAME_DIR // update the B0_SAME_DIR flag
234 , UB_CRYPT // update crypt key
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200235} 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 char_u *findswapname(buf_T *, char_u **, char_u *);
247static void ml_flush_line(buf_T *);
248static bhdr_T *ml_new_data(memfile_T *, int, int);
249static bhdr_T *ml_new_ptr(memfile_T *);
250static bhdr_T *ml_find_line(buf_T *, linenr_T, int);
251static int ml_add_stack(buf_T *);
252static void ml_lineadd(buf_T *, int);
253static int b0_magic_wrong(ZERO_BL *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254#ifdef CHECK_INODE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100255static int fnamecmp_ino(char_u *, char_u *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100257static void long_to_char(long, char_u *);
258static long char_to_long(char_u *);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200259#ifdef FEAT_CRYPT
Bram Moolenaar8767f522016-07-01 17:17:39 +0200260static cryptstate_T *ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200261#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000262#ifdef FEAT_BYTEOFF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100263static void ml_updatechunk(buf_T *buf, long line, long len, int updtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264#endif
265
266/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000267 * Open a new memline for "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000268 *
Bram Moolenaar4770d092006-01-12 23:22:24 +0000269 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 */
271 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100272ml_open(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273{
274 memfile_T *mfp;
275 bhdr_T *hp = NULL;
276 ZERO_BL *b0p;
277 PTR_BL *pp;
278 DATA_BL *dp;
279
Bram Moolenaar4770d092006-01-12 23:22:24 +0000280 /*
281 * init fields in memline struct
282 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100283 buf->b_ml.ml_stack_size = 0; // no stack yet
284 buf->b_ml.ml_stack = NULL; // no stack yet
285 buf->b_ml.ml_stack_top = 0; // nothing in the stack
286 buf->b_ml.ml_locked = NULL; // no cached block
287 buf->b_ml.ml_line_lnum = 0; // no cached line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288#ifdef FEAT_BYTEOFF
Bram Moolenaar4770d092006-01-12 23:22:24 +0000289 buf->b_ml.ml_chunksize = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290#endif
291
Bram Moolenaare1004402020-10-24 20:49:43 +0200292 if (cmdmod.cmod_flags & CMOD_NOSWAPFILE)
Bram Moolenaar5803ae62014-03-23 16:04:02 +0100293 buf->b_p_swf = FALSE;
294
Bram Moolenaar4770d092006-01-12 23:22:24 +0000295 /*
296 * When 'updatecount' is non-zero swap file may be opened later.
297 */
298 if (p_uc && buf->b_p_swf)
299 buf->b_may_swap = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000300 else
Bram Moolenaar4770d092006-01-12 23:22:24 +0000301 buf->b_may_swap = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000302
Bram Moolenaar4770d092006-01-12 23:22:24 +0000303 /*
304 * Open the memfile. No swap file is created yet.
305 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 mfp = mf_open(NULL, 0);
307 if (mfp == NULL)
308 goto error;
309
Bram Moolenaar4770d092006-01-12 23:22:24 +0000310 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200311#ifdef FEAT_CRYPT
312 mfp->mf_buffer = buf;
313#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000314 buf->b_ml.ml_flags = ML_EMPTY;
315 buf->b_ml.ml_line_count = 1;
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000316#ifdef FEAT_LINEBREAK
317 curwin->w_nrwidth_line_count = 0;
318#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320/*
321 * fill block0 struct and write page 0
322 */
323 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
324 goto error;
325 if (hp->bh_bnum != 0)
326 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100327 iemsg(_("E298: Didn't get block nr 0?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328 goto error;
329 }
330 b0p = (ZERO_BL *)(hp->bh_data);
331
332 b0p->b0_id[0] = BLOCK0_ID0;
333 b0p->b0_id[1] = BLOCK0_ID1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000334 b0p->b0_magic_long = (long)B0_MAGIC_LONG;
335 b0p->b0_magic_int = (int)B0_MAGIC_INT;
336 b0p->b0_magic_short = (short)B0_MAGIC_SHORT;
337 b0p->b0_magic_char = B0_MAGIC_CHAR;
Bram Moolenaar22c10562018-05-26 17:35:27 +0200338 mch_memmove(b0p->b0_version, "VIM ", 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000339 STRNCPY(b0p->b0_version + 4, Version, 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000340 long_to_char((long)mfp->mf_page_size, b0p->b0_page_size);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000341
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000342#ifdef FEAT_SPELL
343 if (!buf->b_spell)
344#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000345 {
346 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
347 b0p->b0_flags = get_fileformat(buf) + 1;
348 set_b0_fname(b0p, buf);
349 (void)get_user_name(b0p->b0_uname, B0_UNAME_SIZE);
350 b0p->b0_uname[B0_UNAME_SIZE - 1] = NUL;
351 mch_get_host_name(b0p->b0_hname, B0_HNAME_SIZE);
352 b0p->b0_hname[B0_HNAME_SIZE - 1] = NUL;
353 long_to_char(mch_get_pid(), b0p->b0_pid);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200354#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200355 ml_set_b0_crypt(buf, b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200356#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000357 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000358
359 /*
360 * Always sync block number 0 to disk, so we can check the file name in
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200361 * the swap file in findswapname(). Don't do this for a help files or
362 * a spell buffer though.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000363 * Only works when there's a swapfile, otherwise it's done when the file
364 * is created.
365 */
366 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000367 if (!buf->b_help && !B_SPELL(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000368 (void)mf_sync(mfp, 0);
369
Bram Moolenaar4770d092006-01-12 23:22:24 +0000370 /*
371 * Fill in root pointer block and write page 1.
372 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000373 if ((hp = ml_new_ptr(mfp)) == NULL)
374 goto error;
375 if (hp->bh_bnum != 1)
376 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100377 iemsg(_("E298: Didn't get block nr 1?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000378 goto error;
379 }
380 pp = (PTR_BL *)(hp->bh_data);
381 pp->pb_count = 1;
382 pp->pb_pointer[0].pe_bnum = 2;
383 pp->pb_pointer[0].pe_page_count = 1;
384 pp->pb_pointer[0].pe_old_lnum = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100385 pp->pb_pointer[0].pe_line_count = 1; // line count after insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 mf_put(mfp, hp, TRUE, FALSE);
387
Bram Moolenaar4770d092006-01-12 23:22:24 +0000388 /*
389 * Allocate first data block and create an empty line 1.
390 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391 if ((hp = ml_new_data(mfp, FALSE, 1)) == NULL)
392 goto error;
393 if (hp->bh_bnum != 2)
394 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100395 iemsg(_("E298: Didn't get block nr 2?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000396 goto error;
397 }
398
399 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100400 dp->db_index[0] = --dp->db_txt_start; // at end of block
Bram Moolenaar071d4272004-06-13 20:20:40 +0000401 dp->db_free -= 1 + INDEX_SIZE;
402 dp->db_line_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100403 *((char_u *)dp + dp->db_txt_start) = NUL; // empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404
405 return OK;
406
407error:
408 if (mfp != NULL)
409 {
410 if (hp)
411 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100412 mf_close(mfp, TRUE); // will also free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000414 buf->b_ml.ml_mfp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000415 return FAIL;
416}
417
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200418#if defined(FEAT_CRYPT) || defined(PROTO)
419/*
Bram Moolenaar2be79502014-08-13 21:58:28 +0200420 * Prepare encryption for "buf" for the current key and method.
421 */
422 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100423ml_set_mfp_crypt(buf_T *buf)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200424{
425 if (*buf->b_p_key != NUL)
426 {
427 int method_nr = crypt_get_method_nr(buf);
428
429 if (method_nr > CRYPT_M_ZIP)
430 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100431 // Generate a seed and store it in the memfile.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200432 sha2_seed(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN, NULL, 0);
433 }
434 }
435}
436
437/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200438 * Prepare encryption for "buf" with block 0 "b0p".
439 */
440 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100441ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200442{
443 if (*buf->b_p_key == NUL)
444 b0p->b0_id[1] = BLOCK0_ID1;
445 else
446 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200447 int method_nr = crypt_get_method_nr(buf);
448
449 b0p->b0_id[1] = id1_codes[method_nr];
450 if (method_nr > CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200451 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100452 // Generate a seed and store it in block 0 and in the memfile.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200453 sha2_seed(&b0p->b0_seed, MF_SEED_LEN, NULL, 0);
454 mch_memmove(buf->b_ml.ml_mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
455 }
456 }
457}
458
459/*
460 * Called after the crypt key or 'cryptmethod' was changed for "buf".
461 * Will apply this to the swapfile.
462 * "old_key" is the previous key. It is equal to buf->b_p_key when
463 * 'cryptmethod' is changed.
Bram Moolenaar49771f42010-07-20 17:32:38 +0200464 * "old_cm" is the previous 'cryptmethod'. It is equal to the current
465 * 'cryptmethod' when 'key' is changed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200466 */
467 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100468ml_set_crypt_key(
469 buf_T *buf,
470 char_u *old_key,
471 char_u *old_cm)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200472{
473 memfile_T *mfp = buf->b_ml.ml_mfp;
474 bhdr_T *hp;
475 int page_count;
476 int idx;
477 long error;
478 infoptr_T *ip;
479 PTR_BL *pp;
480 DATA_BL *dp;
481 blocknr_T bnum;
482 int top;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200483 int old_method;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200484
Bram Moolenaar3832c462010-08-04 15:32:46 +0200485 if (mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100486 return; // no memfile yet, nothing to do
Bram Moolenaarbc563362015-06-09 18:35:25 +0200487 old_method = crypt_method_nr_from_name(old_cm);
488
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100489 // First make sure the swapfile is in a consistent state, using the old
490 // key and method.
Bram Moolenaarbc563362015-06-09 18:35:25 +0200491 {
492 char_u *new_key = buf->b_p_key;
493 char_u *new_buf_cm = buf->b_p_cm;
494
495 buf->b_p_key = old_key;
496 buf->b_p_cm = old_cm;
497 ml_preserve(buf, FALSE);
498 buf->b_p_key = new_key;
499 buf->b_p_cm = new_buf_cm;
500 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200501
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100502 // Set the key, method and seed to be used for reading, these must be the
503 // old values.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200504 mfp->mf_old_key = old_key;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200505 mfp->mf_old_cm = old_method;
506 if (old_method > 0 && *old_key != NUL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200507 mch_memmove(mfp->mf_old_seed, mfp->mf_seed, MF_SEED_LEN);
508
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100509 // Update block 0 with the crypt flag and may set a new seed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200510 ml_upd_block0(buf, UB_CRYPT);
511
512 if (mfp->mf_infile_count > 2)
513 {
514 /*
515 * Need to read back all data blocks from disk, decrypt them with the
516 * old key/method and mark them to be written. The algorithm is
517 * similar to what happens in ml_recover(), but we skip negative block
518 * numbers.
519 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100520 ml_flush_line(buf); // flush buffered line
521 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200522
523 hp = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100524 bnum = 1; // start with block 1
525 page_count = 1; // which is 1 page
526 idx = 0; // start with first index in block 1
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200527 error = 0;
528 buf->b_ml.ml_stack_top = 0;
Bram Moolenaard23a8232018-02-10 18:45:26 +0100529 VIM_CLEAR(buf->b_ml.ml_stack);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100530 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200531
532 for ( ; !got_int; line_breakcheck())
533 {
534 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100535 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200536
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100537 // get the block (pointer or data)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200538 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
539 {
540 if (bnum == 1)
541 break;
542 ++error;
543 }
544 else
545 {
546 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100547 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200548 {
549 if (pp->pb_count == 0)
550 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100551 // empty block?
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200552 ++error;
553 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100554 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200555 {
556 if (pp->pb_pointer[idx].pe_bnum < 0)
557 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100558 // Skip data block with negative block number.
559 // Should not happen, because of the ml_preserve()
560 // above. Get same block again for next index.
Bram Moolenaar4b7214e2019-01-03 21:55:32 +0100561 ++idx;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200562 continue;
563 }
564
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100565 // going one block deeper in the tree, new entry in
566 // stack
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200567 if ((top = ml_add_stack(buf)) < 0)
568 {
569 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100570 break; // out of memory
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200571 }
572 ip = &(buf->b_ml.ml_stack[top]);
573 ip->ip_bnum = bnum;
574 ip->ip_index = idx;
575
576 bnum = pp->pb_pointer[idx].pe_bnum;
577 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200578 idx = 0;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200579 continue;
580 }
581 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100582 else // not a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200583 {
584 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100585 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200586 ++error;
587 else
588 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100589 // It is a data block, need to write it back to disk.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200590 mf_put(mfp, hp, TRUE, FALSE);
591 hp = NULL;
592 }
593 }
594 }
595
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100596 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200597 break;
598
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100599 // go one block up in the tree
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200600 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
601 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100602 idx = ip->ip_index + 1; // go to next index
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200603 page_count = 1;
604 }
Bram Moolenaarbc563362015-06-09 18:35:25 +0200605 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100606 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +0100607
608 if (error > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100609 emsg(_("E843: Error while updating swap file crypt"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200610 }
611
612 mfp->mf_old_key = NULL;
613}
614#endif
615
Bram Moolenaar071d4272004-06-13 20:20:40 +0000616/*
617 * ml_setname() is called when the file name of "buf" has been changed.
618 * It may rename the swap file.
619 */
620 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100621ml_setname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000622{
623 int success = FALSE;
624 memfile_T *mfp;
625 char_u *fname;
626 char_u *dirp;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100627#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 char_u *p;
629#endif
630
631 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100632 if (mfp->mf_fd < 0) // there is no swap file yet
Bram Moolenaar071d4272004-06-13 20:20:40 +0000633 {
634 /*
635 * When 'updatecount' is 0 and 'noswapfile' there is no swap file.
636 * For help files we will make a swap file now.
637 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200638 if (p_uc != 0 && (cmdmod.cmod_flags & CMOD_NOSWAPFILE) == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100639 ml_open_file(buf); // create a swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640 return;
641 }
642
643 /*
644 * Try all directories in the 'directory' option.
645 */
646 dirp = p_dir;
647 for (;;)
648 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100649 if (*dirp == NUL) // tried all directories, fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000650 break;
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000651 fname = findswapname(buf, &dirp, mfp->mf_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100652 // alloc's fname
653 if (dirp == NULL) // out of memory
Bram Moolenaarf541c362011-10-26 11:44:18 +0200654 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100655 if (fname == NULL) // no file name found for this dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 continue;
657
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100658#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 /*
660 * Set full pathname for swap file now, because a ":!cd dir" may
661 * change directory without us knowing it.
662 */
663 p = FullName_save(fname, FALSE);
664 vim_free(fname);
665 fname = p;
666 if (fname == NULL)
667 continue;
668#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100669 // if the file name is the same we don't have to do anything
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670 if (fnamecmp(fname, mfp->mf_fname) == 0)
671 {
672 vim_free(fname);
673 success = TRUE;
674 break;
675 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100676 // need to close the swap file before renaming
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 if (mfp->mf_fd >= 0)
678 {
679 close(mfp->mf_fd);
680 mfp->mf_fd = -1;
681 }
682
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100683 // try to rename the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000684 if (vim_rename(mfp->mf_fname, fname) == 0)
685 {
686 success = TRUE;
687 vim_free(mfp->mf_fname);
688 mfp->mf_fname = fname;
689 vim_free(mfp->mf_ffname);
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100690#if defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100691 mfp->mf_ffname = NULL; // mf_fname is full pathname already
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692#else
693 mf_set_ffname(mfp);
694#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200695 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 break;
697 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100698 vim_free(fname); // this fname didn't work, try another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 }
700
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100701 if (mfp->mf_fd == -1) // need to (re)open the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 {
703 mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0);
704 if (mfp->mf_fd < 0)
705 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100706 // could not (re)open the swap file, what can we do????
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100707 emsg(_("E301: Oops, lost the swap file!!!"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708 return;
709 }
Bram Moolenaarf05da212009-11-17 16:13:15 +0000710#ifdef HAVE_FD_CLOEXEC
711 {
712 int fdflags = fcntl(mfp->mf_fd, F_GETFD);
713 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +0100714 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +0000715 }
716#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 }
718 if (!success)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100719 emsg(_("E302: Could not rename swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720}
721
722/*
723 * Open a file for the memfile for all buffers that are not readonly or have
724 * been modified.
725 * Used when 'updatecount' changes from zero to non-zero.
726 */
727 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100728ml_open_files(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000729{
730 buf_T *buf;
731
Bram Moolenaar29323592016-07-24 22:04:11 +0200732 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 if (!buf->b_p_ro || buf->b_changed)
734 ml_open_file(buf);
735}
736
737/*
738 * Open a swap file for an existing memfile, if there is no swap file yet.
739 * If we are unable to find a file name, mf_fname will be NULL
740 * and the memfile will be in memory only (no recovery possible).
741 */
742 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100743ml_open_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744{
745 memfile_T *mfp;
746 char_u *fname;
747 char_u *dirp;
748
749 mfp = buf->b_ml.ml_mfp;
Bram Moolenaare1004402020-10-24 20:49:43 +0200750 if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf
751 || (cmdmod.cmod_flags & CMOD_NOSWAPFILE))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100752 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +0000753
Bram Moolenaara1956f62006-03-12 22:18:00 +0000754#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100755 // For a spell buffer use a temp file name.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000756 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)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100760 (void)mf_open_file(mfp, fname); // consumes fname!
Bram Moolenaar4770d092006-01-12 23:22:24 +0000761 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 Moolenaar4ba37b52019-12-04 21:57:43 +0100774 // 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
776 // creation will fail and we will use another directory.
777 fname = findswapname(buf, &dirp, NULL); // allocates fname
Bram Moolenaarf541c362011-10-26 11:44:18 +0200778 if (dirp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100779 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000780 if (fname == NULL)
781 continue;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100782 if (mf_open_file(mfp, fname) == OK) // consumes fname!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000783 {
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 Moolenaar4ba37b52019-12-04 21:57:43 +0100793 // Flush block zero, so others can read it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000794 if (mf_sync(mfp, MFS_ZERO) == OK)
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000795 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100796 // 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.
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000799 mf_set_dirty(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 break;
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000801 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100802 // Writing block 0 failed: close the file and try another dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 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
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100816 // don't try to open a swap file again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000817 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{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100842 if (buf->b_ml.ml_mfp == NULL) // not open
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843 return;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100844 mf_close(buf->b_ml.ml_mfp, del_file); // close the .swp file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 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
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100853 // Reset the "recovered" flag, give the ATTENTION prompt the next time
854 // this buffer is loaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855 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
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100873 spell_delete_wordlist(); // delete the internal wordlist
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100874#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875#ifdef TEMPDIRNAMES
Bram Moolenaar4ba37b52019-12-04 21:57:43 +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))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100891 ml_close(buf, TRUE); // close all not-modified buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892}
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
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100937 // Possibly update the seed in the memfile before there is a block0.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200938 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
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100955 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 Moolenaar4ba37b52019-12-04 21:57:43 +0100976 // 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);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100999 // If there is no user name or it is too long, don't use "~/"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000 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 Moolenaar4ba37b52019-12-04 21:57:43 +01001033 // Also add the 'fileencoding' if there is room.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001034 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 Moolenaar4ba37b52019-12-04 21:57:43 +01001064 // 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.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001067 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
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001083#if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO_UPTIME)
1084# include <sys/sysinfo.h>
1085#endif
1086
1087/*
1088 * Return TRUE if the process with number "b0p->b0_pid" is still running.
1089 * "swap_fname" is the name of the swap file, if it's from before a reboot then
1090 * the result is FALSE;
1091 */
1092 static int
1093swapfile_process_running(ZERO_BL *b0p, char_u *swap_fname UNUSED)
1094{
1095#ifdef HAVE_SYSINFO_UPTIME
1096 stat_T st;
1097 struct sysinfo sinfo;
1098
1099 // If the system rebooted after when the swap file was written then the
1100 // process can't be running now.
1101 if (mch_stat((char *)swap_fname, &st) != -1
1102 && sysinfo(&sinfo) == 0
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001103 && st.st_mtime < time(NULL) - (
1104# ifdef FEAT_EVAL
1105 override_sysinfo_uptime >= 0 ? override_sysinfo_uptime :
1106# endif
1107 sinfo.uptime))
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001108 return FALSE;
1109#endif
1110 return mch_process_running(char_to_long(b0p->b0_pid));
1111}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001112
1113/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001114 * Try to recover curbuf from the .swp file.
Bram Moolenaar99499b12019-05-23 21:35:48 +02001115 * If "checkext" is TRUE, check the extension and detect whether it is
1116 * a swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001117 */
1118 void
Bram Moolenaar99499b12019-05-23 21:35:48 +02001119ml_recover(int checkext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120{
1121 buf_T *buf = NULL;
1122 memfile_T *mfp = NULL;
1123 char_u *fname;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001124 char_u *fname_used = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001125 bhdr_T *hp = NULL;
1126 ZERO_BL *b0p;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001127 int b0_ff;
1128 char_u *b0_fenc = NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001129#ifdef FEAT_CRYPT
1130 int b0_cm = -1;
1131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001132 PTR_BL *pp;
1133 DATA_BL *dp;
1134 infoptr_T *ip;
1135 blocknr_T bnum;
1136 int page_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001137 stat_T org_stat, swp_stat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 int len;
1139 int directly;
1140 linenr_T lnum;
1141 char_u *p;
1142 int i;
1143 long error;
1144 int cannot_open;
1145 linenr_T line_count;
1146 int has_error;
1147 int idx;
1148 int top;
1149 int txt_start;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001150 off_T size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 int called_from_main;
1152 int serious_error = TRUE;
1153 long mtime;
1154 int attr;
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001155 int orig_file_status = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156
1157 recoverymode = TRUE;
1158 called_from_main = (curbuf->b_ml.ml_mfp == NULL);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001159 attr = HL_ATTR(HLF_E);
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001160
1161 /*
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001162 * 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 +00001163 * Otherwise a search is done to find the swap file(s).
1164 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001165 fname = curbuf->b_fname;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001166 if (fname == NULL) // When there is no file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001167 fname = (char_u *)"";
1168 len = (int)STRLEN(fname);
Bram Moolenaar99499b12019-05-23 21:35:48 +02001169 if (checkext && len >= 4 &&
Bram Moolenaare60acc12011-05-10 16:41:25 +02001170#if defined(VMS)
Bram Moolenaar79518e22017-02-17 16:31:35 +01001171 STRNICMP(fname + len - 4, "_s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172#else
Bram Moolenaar79518e22017-02-17 16:31:35 +01001173 STRNICMP(fname + len - 4, ".s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001175 == 0
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001176 && vim_strchr((char_u *)"abcdefghijklmnopqrstuvw",
1177 TOLOWER_ASC(fname[len - 2])) != NULL
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001178 && ASCII_ISALPHA(fname[len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179 {
1180 directly = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001181 fname_used = vim_strsave(fname); // make a copy for mf_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001182 }
1183 else
1184 {
1185 directly = FALSE;
1186
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001187 // count the number of matching swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001188 len = recover_names(fname, FALSE, 0, NULL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001189 if (len == 0) // no swap files found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001191 semsg(_("E305: No swap file found for %s"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192 goto theend;
1193 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001194 if (len == 1) // one swap file found, use it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195 i = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001196 else // several swap files found, choose
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001198 // list the names of the swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001199 (void)recover_names(fname, TRUE, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 msg_putchar('\n');
Bram Moolenaar32526b32019-01-19 17:43:09 +01001201 msg_puts(_("Enter number of swap file to use (0 to quit): "));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001202 i = get_number(FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 if (i < 1 || i > len)
1204 goto theend;
1205 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001206 // get the swap file name that will be used
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001207 (void)recover_names(fname, FALSE, i, &fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001209 if (fname_used == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001210 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001212 // When called from main() still need to initialize storage structure
Bram Moolenaar4770d092006-01-12 23:22:24 +00001213 if (called_from_main && ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 getout(1);
1215
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001216 /*
1217 * Allocate a buffer structure for the swap file that is used for recovery.
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001218 * Only the memline and crypt information in it are really used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001219 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001220 buf = ALLOC_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 if (buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001224 /*
1225 * init fields in memline struct
1226 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001227 buf->b_ml.ml_stack_size = 0; // no stack yet
1228 buf->b_ml.ml_stack = NULL; // no stack yet
1229 buf->b_ml.ml_stack_top = 0; // nothing in the stack
1230 buf->b_ml.ml_line_lnum = 0; // no cached line
1231 buf->b_ml.ml_locked = NULL; // no locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232 buf->b_ml.ml_flags = 0;
Bram Moolenaar0fe849a2010-07-25 15:11:11 +02001233#ifdef FEAT_CRYPT
1234 buf->b_p_key = empty_option;
1235 buf->b_p_cm = empty_option;
1236#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001238 /*
1239 * open the memfile from the old swap file
1240 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001241 p = vim_strsave(fname_used); // save "fname_used" for the message:
1242 // mf_open() will consume "fname_used"!
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001243 mfp = mf_open(fname_used, O_RDONLY);
1244 fname_used = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 if (mfp == NULL || mfp->mf_fd < 0)
1246 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001247 if (fname_used != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001248 semsg(_("E306: Cannot open %s"), fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249 goto theend;
1250 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001252#ifdef FEAT_CRYPT
1253 mfp->mf_buffer = buf;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001254#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255
1256 /*
1257 * The page size set in mf_open() might be different from the page size
1258 * used in the swap file, we must get it from block 0. But to read block
1259 * 0 we need a page size. Use the minimal size for block 0 here, it will
1260 * be set to the real value below.
1261 */
1262 mfp->mf_page_size = MIN_SWAP_PAGE_SIZE;
1263
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001264 /*
1265 * try to read block 0
1266 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL)
1268 {
1269 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001270 msg_puts_attr(_("Unable to read block 0 from "), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001272 msg_puts_attr(_("\nMaybe no changes were made or Vim did not update the swap file."),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 attr | MSG_HIST);
1274 msg_end();
1275 goto theend;
1276 }
1277 b0p = (ZERO_BL *)(hp->bh_data);
1278 if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0)
1279 {
1280 msg_start();
1281 msg_outtrans_attr(mfp->mf_fname, MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001282 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001283 MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001284 msg_puts_attr(_("Use Vim version 3.0.\n"), MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 msg_end();
1286 goto theend;
1287 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001288 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001290 semsg(_("E307: %s does not look like a Vim swap file"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291 goto theend;
1292 }
1293 if (b0_magic_wrong(b0p))
1294 {
1295 msg_start();
1296 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001297#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001298 if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001299 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001300 attr | MSG_HIST);
1301 else
1302#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001303 msg_puts_attr(_(" cannot be used on this computer.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001305 msg_puts_attr(_("The file was created on "), attr | MSG_HIST);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001306 // avoid going past the end of a corrupted hostname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 b0p->b0_fname[0] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001308 msg_puts_attr((char *)b0p->b0_hname, attr | MSG_HIST);
1309 msg_puts_attr(_(",\nor the file has been damaged."), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 msg_end();
1311 goto theend;
1312 }
Bram Moolenaar1c536282007-04-26 15:21:56 +00001313
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001314#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001315 for (i = 0; i < (int)(sizeof(id1_codes) / sizeof(int)); ++i)
1316 if (id1_codes[i] == b0p->b0_id[1])
1317 b0_cm = i;
1318 if (b0_cm > 0)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001319 mch_memmove(mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001320 crypt_set_cm_option(buf, b0_cm < 0 ? 0 : b0_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001321#else
1322 if (b0p->b0_id[1] != BLOCK0_ID1)
1323 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001324 semsg(_("E833: %s is encrypted and this version of Vim does not support encryption"), mfp->mf_fname);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001325 goto theend;
1326 }
1327#endif
1328
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 /*
1330 * If we guessed the wrong page size, we have to recalculate the
1331 * highest block number in the file.
1332 */
1333 if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size))
1334 {
Bram Moolenaar1c536282007-04-26 15:21:56 +00001335 unsigned previous_page_size = mfp->mf_page_size;
1336
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size));
Bram Moolenaar1c536282007-04-26 15:21:56 +00001338 if (mfp->mf_page_size < previous_page_size)
1339 {
1340 msg_start();
1341 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001342 msg_puts_attr(_(" has been damaged (page size is smaller than minimum value).\n"),
Bram Moolenaar1c536282007-04-26 15:21:56 +00001343 attr | MSG_HIST);
1344 msg_end();
1345 goto theend;
1346 }
Bram Moolenaar8767f522016-07-01 17:17:39 +02001347 if ((size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001348 mfp->mf_blocknr_max = 0; // no file or empty file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001349 else
1350 mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size);
1351 mfp->mf_infile_count = mfp->mf_blocknr_max;
Bram Moolenaar1c536282007-04-26 15:21:56 +00001352
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001353 // need to reallocate the memory used to store the data
Bram Moolenaar1c536282007-04-26 15:21:56 +00001354 p = alloc(mfp->mf_page_size);
1355 if (p == NULL)
1356 goto theend;
1357 mch_memmove(p, hp->bh_data, previous_page_size);
1358 vim_free(hp->bh_data);
1359 hp->bh_data = p;
1360 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001361 }
1362
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001363 /*
1364 * If .swp file name given directly, use name from swap file for buffer.
1365 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001366 if (directly)
1367 {
1368 expand_env(b0p->b0_fname, NameBuff, MAXPATHL);
1369 if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL)
1370 goto theend;
1371 }
1372
1373 home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001374 smsg(_("Using swap file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001375
1376 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02001377 vim_strncpy(NameBuff, buf_spname(curbuf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 else
1379 home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001380 smsg(_("Original file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001381 msg_putchar('\n');
1382
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001383 /*
1384 * check date of swap file and original file
1385 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001386 mtime = char_to_long(b0p->b0_mtime);
1387 if (curbuf->b_ffname != NULL
1388 && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1
1389 && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1
1390 && org_stat.st_mtime > swp_stat.st_mtime)
1391 || org_stat.st_mtime != mtime))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001392 emsg(_("E308: Warning: Original file may have been changed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001393 out_flush();
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001394
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001395 // Get the 'fileformat' and 'fileencoding' from block zero.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001396 b0_ff = (b0p->b0_flags & B0_FF_MASK);
1397 if (b0p->b0_flags & B0_HAS_FENC)
1398 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001399 int fnsize = B0_FNAME_SIZE_NOCRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001400
1401#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001402 // Use the same size as in add_b0_fenc().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001403 if (b0p->b0_id[1] != BLOCK0_ID1)
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001404 fnsize = B0_FNAME_SIZE_CRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001405#endif
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001406 for (p = b0p->b0_fname + fnsize; p > b0p->b0_fname && p[-1] != NUL; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001407 ;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001408 b0_fenc = vim_strnsave(p, b0p->b0_fname + fnsize - p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001409 }
1410
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001411 mf_put(mfp, hp, FALSE, FALSE); // release block 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 hp = NULL;
1413
1414 /*
1415 * Now that we are sure that the file is going to be recovered, clear the
1416 * contents of the current buffer.
1417 */
1418 while (!(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001419 ml_delete((linenr_T)1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420
1421 /*
1422 * Try reading the original file to obtain the values of 'fileformat',
1423 * 'fileencoding', etc. Ignore errors. The text itself is not used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001424 * When the file is encrypted the user is asked to enter the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001425 */
1426 if (curbuf->b_ffname != NULL)
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001427 orig_file_status = readfile(curbuf->b_ffname, NULL, (linenr_T)0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001428 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001430#ifdef FEAT_CRYPT
1431 if (b0_cm >= 0)
1432 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001433 // Need to ask the user for the crypt key. If this fails we continue
1434 // without a key, will probably get garbage text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001435 if (*curbuf->b_p_key != NUL)
1436 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001437 smsg(_("Swap file is encrypted: \"%s\""), fname_used);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001438 msg_puts(_("\nIf you entered a new crypt key but did not write the text file,"));
1439 msg_puts(_("\nenter the new crypt key."));
1440 msg_puts(_("\nIf you wrote the text file after changing the crypt key press enter"));
1441 msg_puts(_("\nto use the same key for text file and swap file"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001442 }
1443 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001444 smsg(_(need_key_msg), fname_used);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001445 buf->b_p_key = crypt_get_key(FALSE, FALSE);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001446 if (buf->b_p_key == NULL)
1447 buf->b_p_key = curbuf->b_p_key;
1448 else if (*buf->b_p_key == NUL)
1449 {
1450 vim_free(buf->b_p_key);
1451 buf->b_p_key = curbuf->b_p_key;
1452 }
1453 if (buf->b_p_key == NULL)
1454 buf->b_p_key = empty_option;
1455 }
1456#endif
1457
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001458 // Use the 'fileformat' and 'fileencoding' as stored in the swap file.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001459 if (b0_ff != 0)
1460 set_fileformat(b0_ff - 1, OPT_LOCAL);
1461 if (b0_fenc != NULL)
1462 {
1463 set_option_value((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL);
1464 vim_free(b0_fenc);
1465 }
Bram Moolenaarc024b462019-06-08 18:07:21 +02001466 unchanged(curbuf, TRUE, TRUE);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001467
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001468 bnum = 1; // start with block 1
1469 page_count = 1; // which is 1 page
1470 lnum = 0; // append after line 0 in curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00001471 line_count = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001472 idx = 0; // start with first index in block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001473 error = 0;
1474 buf->b_ml.ml_stack_top = 0;
1475 buf->b_ml.ml_stack = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001476 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00001477
1478 if (curbuf->b_ffname == NULL)
1479 cannot_open = TRUE;
1480 else
1481 cannot_open = FALSE;
1482
1483 serious_error = FALSE;
1484 for ( ; !got_int; line_breakcheck())
1485 {
1486 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001487 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001488
1489 /*
1490 * get block
1491 */
1492 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
1493 {
1494 if (bnum == 1)
1495 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001496 semsg(_("E309: Unable to read block 1 from %s"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001497 goto theend;
1498 }
1499 ++error;
1500 ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"),
1501 (colnr_T)0, TRUE);
1502 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001503 else // there is a block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001504 {
1505 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001506 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001508 // check line count when using pointer block first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 if (idx == 0 && line_count != 0)
1510 {
1511 for (i = 0; i < (int)pp->pb_count; ++i)
1512 line_count -= pp->pb_pointer[i].pe_line_count;
1513 if (line_count != 0)
1514 {
1515 ++error;
1516 ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"),
1517 (colnr_T)0, TRUE);
1518 }
1519 }
1520
1521 if (pp->pb_count == 0)
1522 {
1523 ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"),
1524 (colnr_T)0, TRUE);
1525 ++error;
1526 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001527 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 {
1529 if (pp->pb_pointer[idx].pe_bnum < 0)
1530 {
1531 /*
1532 * Data block with negative block number.
1533 * Try to read lines from the original file.
1534 * This is slow, but it works.
1535 */
1536 if (!cannot_open)
1537 {
1538 line_count = pp->pb_pointer[idx].pe_line_count;
1539 if (readfile(curbuf->b_ffname, NULL, lnum,
1540 pp->pb_pointer[idx].pe_old_lnum - 1,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001541 line_count, NULL, 0) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001542 cannot_open = TRUE;
1543 else
1544 lnum += line_count;
1545 }
1546 if (cannot_open)
1547 {
1548 ++error;
1549 ml_append(lnum++, (char_u *)_("???LINES MISSING"),
1550 (colnr_T)0, TRUE);
1551 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001552 ++idx; // get same block again for next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001553 continue;
1554 }
1555
1556 /*
1557 * going one block deeper in the tree
1558 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001559 if ((top = ml_add_stack(buf)) < 0) // new entry in stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001560 {
1561 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001562 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 }
1564 ip = &(buf->b_ml.ml_stack[top]);
1565 ip->ip_bnum = bnum;
1566 ip->ip_index = idx;
1567
1568 bnum = pp->pb_pointer[idx].pe_bnum;
1569 line_count = pp->pb_pointer[idx].pe_line_count;
1570 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaar986a0032011-06-13 01:07:27 +02001571 idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 continue;
1573 }
1574 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001575 else // not a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001576 {
1577 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001578 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 {
1580 if (bnum == 1)
1581 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001582 semsg(_("E310: Block 1 ID wrong (%s not a .swp file?)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001583 mfp->mf_fname);
1584 goto theend;
1585 }
1586 ++error;
1587 ml_append(lnum++, (char_u *)_("???BLOCK MISSING"),
1588 (colnr_T)0, TRUE);
1589 }
1590 else
1591 {
1592 /*
1593 * it is a data block
1594 * Append all the lines in this block
1595 */
1596 has_error = FALSE;
1597 /*
1598 * check length of block
1599 * if wrong, use length in pointer block
1600 */
1601 if (page_count * mfp->mf_page_size != dp->db_txt_end)
1602 {
1603 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"),
1604 (colnr_T)0, TRUE);
1605 ++error;
1606 has_error = TRUE;
1607 dp->db_txt_end = page_count * mfp->mf_page_size;
1608 }
1609
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001610 // make sure there is a NUL at the end of the block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001611 *((char_u *)dp + dp->db_txt_end - 1) = NUL;
1612
1613 /*
1614 * check number of lines in block
1615 * if wrong, use count in data block
1616 */
1617 if (line_count != dp->db_line_count)
1618 {
1619 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"),
1620 (colnr_T)0, TRUE);
1621 ++error;
1622 has_error = TRUE;
1623 }
1624
1625 for (i = 0; i < dp->db_line_count; ++i)
1626 {
1627 txt_start = (dp->db_index[i] & DB_INDEX_MASK);
Bram Moolenaar740885b2009-11-03 14:33:17 +00001628 if (txt_start <= (int)HEADER_SIZE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 || txt_start >= (int)dp->db_txt_end)
1630 {
1631 p = (char_u *)"???";
1632 ++error;
1633 }
1634 else
1635 p = (char_u *)dp + txt_start;
1636 ml_append(lnum++, p, (colnr_T)0, TRUE);
1637 }
1638 if (has_error)
Bram Moolenaar740885b2009-11-03 14:33:17 +00001639 ml_append(lnum++, (char_u *)_("???END"),
1640 (colnr_T)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001641 }
1642 }
1643 }
1644
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001645 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaar071d4272004-06-13 20:20:40 +00001646 break;
1647
1648 /*
1649 * go one block up in the tree
1650 */
1651 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
1652 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001653 idx = ip->ip_index + 1; // go to next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001654 page_count = 1;
1655 }
1656
1657 /*
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001658 * Compare the buffer contents with the original file. When they differ
1659 * set the 'modified' flag.
1660 * Lines 1 - lnum are the new contents.
1661 * Lines lnum + 1 to ml_line_count are the original contents.
1662 * Line ml_line_count + 1 in the dummy empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 */
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001664 if (orig_file_status != OK || curbuf->b_ml.ml_line_count != lnum * 2 + 1)
1665 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001666 // Recovering an empty file results in two lines and the first line is
1667 // empty. Don't set the modified flag then.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001668 if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
1669 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001670 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001671 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001672 }
1673 }
1674 else
1675 {
1676 for (idx = 1; idx <= lnum; ++idx)
1677 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001678 // Need to copy one line, fetching the other one may flush it.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001679 p = vim_strsave(ml_get(idx));
1680 i = STRCMP(p, ml_get(idx + lnum));
1681 vim_free(p);
1682 if (i != 0)
1683 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001684 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001685 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001686 break;
1687 }
1688 }
1689 }
1690
1691 /*
1692 * Delete the lines from the original file and the dummy line from the
1693 * empty buffer. These will now be after the last line in the buffer.
1694 */
1695 while (curbuf->b_ml.ml_line_count > lnum
1696 && !(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001697 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001698 curbuf->b_flags |= BF_RECOVERED;
1699
1700 recoverymode = FALSE;
1701 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001702 emsg(_("E311: Recovery Interrupted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 else if (error)
1704 {
1705 ++no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001706 msg(">>>>>>>>>>>>>");
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001707 emsg(_("E312: Errors detected while recovering; look for lines starting with ???"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 --no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001709 msg(_("See \":help E312\" for more information."));
1710 msg(">>>>>>>>>>>>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001711 }
1712 else
1713 {
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001714 if (curbuf->b_changed)
1715 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001716 msg(_("Recovery completed. You should check if everything is OK."));
1717 msg_puts(_("\n(You might want to write out this file under another name\n"));
1718 msg_puts(_("and run diff with the original file to check for changes)"));
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001719 }
1720 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001721 msg(_("Recovery completed. Buffer contents equals file contents."));
Bram Moolenaarf8835082020-11-09 21:04:17 +01001722 msg_puts(_("\nYou may want to delete the .swp file now."));
1723#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001724 if (swapfile_process_running(b0p, fname_used))
Bram Moolenaarf8835082020-11-09 21:04:17 +01001725 {
1726 // Warn there could be an active Vim on the same file, the user may
1727 // want to kill it.
1728 msg_puts(_("\nNote: process STILL RUNNING: "));
1729 msg_outnum(char_to_long(b0p->b0_pid));
1730 }
1731#endif
1732 msg_puts("\n\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 cmdline_row = msg_row;
1734 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001735#ifdef FEAT_CRYPT
1736 if (*buf->b_p_key != NUL && STRCMP(curbuf->b_p_key, buf->b_p_key) != 0)
1737 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001738 msg_puts(_("Using crypt key from swap file for the text file.\n"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001739 set_option_value((char_u *)"key", 0L, buf->b_p_key, OPT_LOCAL);
1740 }
1741#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001742 redraw_curbuf_later(NOT_VALID);
1743
1744theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001745 vim_free(fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 recoverymode = FALSE;
1747 if (mfp != NULL)
1748 {
1749 if (hp != NULL)
1750 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001751 mf_close(mfp, FALSE); // will also vim_free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001752 }
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001753 if (buf != NULL)
1754 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001755#ifdef FEAT_CRYPT
1756 if (buf->b_p_key != curbuf->b_p_key)
1757 free_string_option(buf->b_p_key);
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001758 free_string_option(buf->b_p_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001759#endif
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001760 vim_free(buf->b_ml.ml_stack);
1761 vim_free(buf);
1762 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001763 if (serious_error && called_from_main)
1764 ml_close(curbuf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 else
1766 {
1767 apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf);
1768 apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf);
1769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001770 return;
1771}
1772
1773/*
1774 * Find the names of swap files in current directory and the directory given
1775 * with the 'directory' option.
1776 *
1777 * Used to:
1778 * - list the swap files for "vim -r"
1779 * - count the number of swap files when recovering
1780 * - list the swap files when recovering
1781 * - find the name of the n'th swap file when recovering
1782 */
1783 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001784recover_names(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001785 char_u *fname, // base for swap file name
1786 int list, // when TRUE, list the swap file names
1787 int nr, // when non-zero, return nr'th swap file name
1788 char_u **fname_out) // result when "nr" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001789{
1790 int num_names;
1791 char_u *(names[6]);
1792 char_u *tail;
1793 char_u *p;
1794 int num_files;
1795 int file_count = 0;
1796 char_u **files;
1797 int i;
1798 char_u *dirp;
1799 char_u *dir_name;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001800 char_u *fname_res = NULL;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001801#ifdef HAVE_READLINK
1802 char_u fname_buf[MAXPATHL];
Bram Moolenaar64354da2010-05-25 21:37:17 +02001803#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001804
Bram Moolenaar64354da2010-05-25 21:37:17 +02001805 if (fname != NULL)
1806 {
1807#ifdef HAVE_READLINK
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001808 // Expand symlink in the file name, because the swap file is created
1809 // with the actual file instead of with the symlink.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001810 if (resolve_symlink(fname, fname_buf) == OK)
1811 fname_res = fname_buf;
1812 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001813#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001814 fname_res = fname;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001815 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001816
1817 if (list)
1818 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001819 // use msg() to start the scrolling properly
Bram Moolenaar32526b32019-01-19 17:43:09 +01001820 msg(_("Swap files found:"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001821 msg_putchar('\n');
1822 }
1823
1824 /*
1825 * Do the loop for every directory in 'directory'.
1826 * First allocate some memory to put the directory name in.
1827 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001828 dir_name = alloc(STRLEN(p_dir) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001829 dirp = p_dir;
1830 while (dir_name != NULL && *dirp)
1831 {
1832 /*
1833 * Isolate a directory name from *dirp and put it in dir_name (we know
1834 * it is large enough, so use 31000 for length).
1835 * Advance dirp to next directory name.
1836 */
1837 (void)copy_option_part(&dirp, dir_name, 31000, ",");
1838
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001839 if (dir_name[0] == '.' && dir_name[1] == NUL) // check current dir
Bram Moolenaar071d4272004-06-13 20:20:40 +00001840 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001841 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 {
1843#ifdef VMS
1844 names[0] = vim_strsave((char_u *)"*_sw%");
1845#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001846 names[0] = vim_strsave((char_u *)"*.sw?");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001847#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001848#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001849 // For Unix names starting with a dot are special. MS-Windows
1850 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 names[1] = vim_strsave((char_u *)".*.sw?");
1852 names[2] = vim_strsave((char_u *)".sw?");
1853 num_names = 3;
1854#else
1855# ifdef VMS
1856 names[1] = vim_strsave((char_u *)".*_sw%");
1857 num_names = 2;
1858# else
1859 num_names = 1;
1860# endif
1861#endif
1862 }
1863 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001864 num_names = recov_file_names(names, fname_res, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001865 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001866 else // check directory dir_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001868 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869 {
1870#ifdef VMS
1871 names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE);
1872#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001874#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001875#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001876 // For Unix names starting with a dot are special. MS-Windows
1877 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
1879 names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
1880 num_names = 3;
1881#else
1882# ifdef VMS
1883 names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE);
1884 num_names = 2;
1885# else
1886 num_names = 1;
1887# endif
1888#endif
1889 }
1890 else
1891 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001892#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01001893 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01001894
1895 p = dir_name + len;
1896 if (after_pathsep(dir_name, p) && len > 1 && p[-1] == p[-2])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001898 // Ends with '//', Use Full path for swap name
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001899 tail = make_percent_swname(dir_name, fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 }
1901 else
1902#endif
1903 {
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001904 tail = gettail(fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 tail = concat_fnames(dir_name, tail, TRUE);
1906 }
1907 if (tail == NULL)
1908 num_names = 0;
1909 else
1910 {
1911 num_names = recov_file_names(names, tail, FALSE);
1912 vim_free(tail);
1913 }
1914 }
1915 }
1916
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02001917 // check for out-of-memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 for (i = 0; i < num_names; ++i)
1919 {
1920 if (names[i] == NULL)
1921 {
1922 for (i = 0; i < num_names; ++i)
1923 vim_free(names[i]);
1924 num_names = 0;
1925 }
1926 }
1927 if (num_names == 0)
1928 num_files = 0;
1929 else if (expand_wildcards(num_names, names, &num_files, &files,
Bram Moolenaar99499b12019-05-23 21:35:48 +02001930 EW_NOTENV|EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001931 num_files = 0;
1932
1933 /*
1934 * When no swap file found, wildcard expansion might have failed (e.g.
1935 * not able to execute the shell).
1936 * Try finding a swap file by simply adding ".swp" to the file name.
1937 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001938 if (*dirp == NUL && file_count + num_files == 0 && fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001940 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 char_u *swapname;
1942
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001943 swapname = modname(fname_res,
Bram Moolenaare60acc12011-05-10 16:41:25 +02001944#if defined(VMS)
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001945 (char_u *)"_swp", FALSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946#else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001947 (char_u *)".swp", TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001948#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001949 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001950 if (swapname != NULL)
1951 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001952 if (mch_stat((char *)swapname, &st) != -1) // It exists!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001954 files = ALLOC_ONE(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001955 if (files != NULL)
1956 {
1957 files[0] = swapname;
1958 swapname = NULL;
1959 num_files = 1;
1960 }
1961 }
1962 vim_free(swapname);
1963 }
1964 }
1965
1966 /*
1967 * remove swapfile name of the current buffer, it must be ignored
1968 */
1969 if (curbuf->b_ml.ml_mfp != NULL
1970 && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL)
1971 {
1972 for (i = 0; i < num_files; ++i)
Bram Moolenaar99499b12019-05-23 21:35:48 +02001973 // Do not expand wildcards, on windows would try to expand
1974 // "%tmp%" in "%tmp%file".
1975 if (fullpathcmp(p, files[i], TRUE, FALSE) & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02001977 // Remove the name from files[i]. Move further entries
1978 // down. When the array becomes empty free it here, since
1979 // FreeWild() won't be called below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001980 vim_free(files[i]);
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00001981 if (--num_files == 0)
1982 vim_free(files);
1983 else
1984 for ( ; i < num_files; ++i)
1985 files[i] = files[i + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986 }
1987 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00001988 if (nr > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001989 {
1990 file_count += num_files;
1991 if (nr <= file_count)
1992 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001993 *fname_out = vim_strsave(
1994 files[nr - 1 + num_files - file_count]);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001995 dirp = (char_u *)""; // stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 }
1997 }
1998 else if (list)
1999 {
2000 if (dir_name[0] == '.' && dir_name[1] == NUL)
2001 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002002 if (fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002003 msg_puts(_(" In current directory:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002004 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002005 msg_puts(_(" Using specified name:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 }
2007 else
2008 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002009 msg_puts(_(" In directory "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 msg_home_replace(dir_name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002011 msg_puts(":\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002012 }
2013
2014 if (num_files)
2015 {
2016 for (i = 0; i < num_files; ++i)
2017 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002018 // print the swap file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002019 msg_outnum((long)++file_count);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002020 msg_puts(". ");
2021 msg_puts((char *)gettail(files[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002022 msg_putchar('\n');
2023 (void)swapfile_info(files[i]);
2024 }
2025 }
2026 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002027 msg_puts(_(" -- none --\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 out_flush();
2029 }
2030 else
2031 file_count += num_files;
2032
2033 for (i = 0; i < num_names; ++i)
2034 vim_free(names[i]);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002035 if (num_files > 0)
2036 FreeWild(num_files, files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 }
2038 vim_free(dir_name);
2039 return file_count;
2040}
2041
Bram Moolenaar4f974752019-02-17 17:44:42 +01002042#if defined(UNIX) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043/*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002044 * Need _very_ long file names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002045 * Append the full path to name with path separators made into percent
2046 * signs, to dir. An unnamed buffer is handled as "" (<currentdir>/"")
2047 */
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002048 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002049make_percent_swname(char_u *dir, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050{
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002051 char_u *d = NULL, *s, *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002053 f = fix_fname(name != NULL ? name : (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002054 if (f != NULL)
2055 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002056 s = alloc(STRLEN(f) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 if (s != NULL)
2058 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002059 STRCPY(s, f);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002060 for (d = s; *d != NUL; MB_PTR_ADV(d))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002061 if (vim_ispathsep(*d))
2062 *d = '%';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063 d = concat_fnames(dir, s, TRUE);
2064 vim_free(s);
2065 }
2066 vim_free(f);
2067 }
2068 return d;
2069}
2070#endif
2071
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002072#if (defined(UNIX) || defined(VMS) || defined(MSWIN)) \
2073 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
2074# define HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075static int process_still_running;
2076#endif
2077
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002078#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002079/*
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002080 * Return information found in swapfile "fname" in dictionary "d".
2081 * This is used by the swapinfo() function.
2082 */
2083 void
2084get_b0_dict(char_u *fname, dict_T *d)
2085{
2086 int fd;
2087 struct block0 b0;
2088
2089 if ((fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
2090 {
2091 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
2092 {
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002093 if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002094 dict_add_string(d, "error", (char_u *)"Not a swap file");
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002095 else if (b0_magic_wrong(&b0))
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002096 dict_add_string(d, "error", (char_u *)"Magic number mismatch");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002097 else
2098 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002099 // we have swap information
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002100 dict_add_string_len(d, "version", b0.b0_version, 10);
2101 dict_add_string_len(d, "user", b0.b0_uname, B0_UNAME_SIZE);
2102 dict_add_string_len(d, "host", b0.b0_hname, B0_HNAME_SIZE);
2103 dict_add_string_len(d, "fname", b0.b0_fname, B0_FNAME_SIZE_ORG);
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002104
2105 dict_add_number(d, "pid", char_to_long(b0.b0_pid));
2106 dict_add_number(d, "mtime", char_to_long(b0.b0_mtime));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002107 dict_add_number(d, "dirty", b0.b0_dirty ? 1 : 0);
2108# ifdef CHECK_INODE
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002109 dict_add_number(d, "inode", char_to_long(b0.b0_ino));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002110# endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002111 }
2112 }
2113 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002114 dict_add_string(d, "error", (char_u *)"Cannot read file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002115 close(fd);
2116 }
2117 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002118 dict_add_string(d, "error", (char_u *)"Cannot open file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002119}
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002120#endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002121
2122/*
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002123 * Give information about an existing swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 * Returns timestamp (0 when unknown).
2125 */
2126 static time_t
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002127swapfile_info(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002128{
Bram Moolenaar8767f522016-07-01 17:17:39 +02002129 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002130 int fd;
2131 struct block0 b0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002132#ifdef UNIX
2133 char_u uname[B0_UNAME_SIZE];
2134#endif
2135
Bram Moolenaar63d25552019-05-10 21:28:38 +02002136 // print the swap file date
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137 if (mch_stat((char *)fname, &st) != -1)
2138 {
2139#ifdef UNIX
Bram Moolenaar63d25552019-05-10 21:28:38 +02002140 // print name of owner of the file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002141 if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK)
2142 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002143 msg_puts(_(" owned by: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 msg_outtrans(uname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002145 msg_puts(_(" dated: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002146 }
2147 else
2148#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002149 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02002150 msg_puts(get_ctime(st.st_mtime, TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 }
Bram Moolenaar63d25552019-05-10 21:28:38 +02002152 else
2153 st.st_mtime = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154
2155 /*
2156 * print the original file name
2157 */
2158 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2159 if (fd >= 0)
2160 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01002161 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 {
2163 if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0)
2164 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002165 msg_puts(_(" [from Vim version 3.0]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002167 else if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002168 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002169 msg_puts(_(" [does not look like a Vim swap file]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 }
2171 else
2172 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002173 msg_puts(_(" file name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174 if (b0.b0_fname[0] == NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002175 msg_puts(_("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002176 else
2177 msg_outtrans(b0.b0_fname);
2178
Bram Moolenaar32526b32019-01-19 17:43:09 +01002179 msg_puts(_("\n modified: "));
2180 msg_puts(b0.b0_dirty ? _("YES") : _("no"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002181
2182 if (*(b0.b0_uname) != NUL)
2183 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002184 msg_puts(_("\n user name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002185 msg_outtrans(b0.b0_uname);
2186 }
2187
2188 if (*(b0.b0_hname) != NUL)
2189 {
2190 if (*(b0.b0_uname) != NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002191 msg_puts(_(" host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002193 msg_puts(_("\n host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 msg_outtrans(b0.b0_hname);
2195 }
2196
2197 if (char_to_long(b0.b0_pid) != 0L)
2198 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002199 msg_puts(_("\n process ID: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 msg_outnum(char_to_long(b0.b0_pid));
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002201#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002202 if (swapfile_process_running(&b0, fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002203 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002204 msg_puts(_(" (STILL RUNNING)"));
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002205# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 process_still_running = TRUE;
2207# endif
2208 }
2209#endif
2210 }
2211
2212 if (b0_magic_wrong(&b0))
2213 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002214#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 if (STRNCMP(b0.b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002216 msg_puts(_("\n [not usable with this version of Vim]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002217 else
2218#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002219 msg_puts(_("\n [not usable on this computer]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 }
2221 }
2222 }
2223 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002224 msg_puts(_(" [cannot be read]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 close(fd);
2226 }
2227 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002228 msg_puts(_(" [cannot be opened]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 msg_putchar('\n');
2230
Bram Moolenaar63d25552019-05-10 21:28:38 +02002231 return st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232}
2233
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002234/*
2235 * Return TRUE if the swap file looks OK and there are no changes, thus it can
2236 * be safely deleted.
2237 */
2238 static time_t
2239swapfile_unchanged(char_u *fname)
2240{
2241 stat_T st;
2242 int fd;
2243 struct block0 b0;
2244 int ret = TRUE;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002245
2246 // must be able to stat the swap file
2247 if (mch_stat((char *)fname, &st) == -1)
2248 return FALSE;
2249
2250 // must be able to read the first block
2251 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2252 if (fd < 0)
2253 return FALSE;
2254 if (read_eintr(fd, &b0, sizeof(b0)) != sizeof(b0))
2255 {
2256 close(fd);
2257 return FALSE;
2258 }
2259
2260 // the ID and magic number must be correct
2261 if (ml_check_b0_id(&b0) == FAIL|| b0_magic_wrong(&b0))
2262 ret = FALSE;
2263
2264 // must be unchanged
2265 if (b0.b0_dirty)
2266 ret = FALSE;
2267
2268#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf8835082020-11-09 21:04:17 +01002269 // Host name must be known and must equal the current host name, otherwise
2270 // comparing pid is meaningless.
2271 if (*(b0.b0_hname) == NUL)
2272 {
2273 ret = FALSE;
2274 }
2275 else
2276 {
2277 char_u hostname[B0_HNAME_SIZE];
2278
2279 mch_get_host_name(hostname, B0_HNAME_SIZE);
2280 hostname[B0_HNAME_SIZE - 1] = NUL;
Bram Moolenaare79cdb62020-11-21 13:51:16 +01002281 b0.b0_hname[B0_HNAME_SIZE - 1] = NUL; // in case of corruption
Bram Moolenaarf8835082020-11-09 21:04:17 +01002282 if (STRICMP(b0.b0_hname, hostname) != 0)
2283 ret = FALSE;
2284 }
2285
Bram Moolenaar32aa1022019-11-02 22:54:41 +01002286 // process must be known and not be running
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002287 if (char_to_long(b0.b0_pid) == 0L || swapfile_process_running(&b0, fname))
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002288 ret = FALSE;
2289#endif
2290
Bram Moolenaarf8835082020-11-09 21:04:17 +01002291 // We do not check the user, it should be irrelevant for whether the swap
2292 // file is still useful.
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002293
2294 close(fd);
2295 return ret;
2296}
2297
Bram Moolenaar071d4272004-06-13 20:20:40 +00002298 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002299recov_file_names(char_u **names, char_u *path, int prepend_dot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002300{
2301 int num_names;
2302
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 /*
2304 * (Win32 and Win64) never short names, but do prepend a dot.
2305 * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both.
2306 * Only use the short name if it is different.
2307 */
2308 char_u *p;
2309 int i;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002310# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002311 int shortname = curbuf->b_shortname;
2312
2313 curbuf->b_shortname = FALSE;
2314# endif
2315
2316 num_names = 0;
2317
2318 /*
2319 * May also add the file name with a dot prepended, for swap file in same
2320 * dir as original file.
2321 */
2322 if (prepend_dot)
2323 {
2324 names[num_names] = modname(path, (char_u *)".sw?", TRUE);
2325 if (names[num_names] == NULL)
2326 goto end;
2327 ++num_names;
2328 }
2329
2330 /*
2331 * Form the normal swap file name pattern by appending ".sw?".
2332 */
2333#ifdef VMS
2334 names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE);
2335#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002336 names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337#endif
2338 if (names[num_names] == NULL)
2339 goto end;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002340 if (num_names >= 1) // check if we have the same name twice
Bram Moolenaar071d4272004-06-13 20:20:40 +00002341 {
2342 p = names[num_names - 1];
2343 i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]);
2344 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002345 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002346
2347 if (STRCMP(p, names[num_names]) != 0)
2348 ++num_names;
2349 else
2350 vim_free(names[num_names]);
2351 }
2352 else
2353 ++num_names;
2354
Bram Moolenaar4f974752019-02-17 17:44:42 +01002355# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 /*
2357 * Also try with 'shortname' set, in case the file is on a DOS filesystem.
2358 */
2359 curbuf->b_shortname = TRUE;
2360#ifdef VMS
2361 names[num_names] = modname(path, (char_u *)"_sw%", FALSE);
2362#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363 names[num_names] = modname(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002364#endif
2365 if (names[num_names] == NULL)
2366 goto end;
2367
2368 /*
2369 * Remove the one from 'shortname', if it's the same as with 'noshortname'.
2370 */
2371 p = names[num_names];
2372 i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]);
2373 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002374 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002375 if (STRCMP(names[num_names - 1], p) == 0)
2376 vim_free(names[num_names]);
2377 else
2378 ++num_names;
2379# endif
2380
2381end:
Bram Moolenaar4f974752019-02-17 17:44:42 +01002382# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 curbuf->b_shortname = shortname;
2384# endif
2385
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 return num_names;
2387}
2388
2389/*
2390 * sync all memlines
2391 *
2392 * If 'check_file' is TRUE, check if original file exists and was not changed.
2393 * If 'check_char' is TRUE, stop syncing when character becomes available, but
2394 * always sync at least one block.
2395 */
2396 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002397ml_sync_all(int check_file, int check_char)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002398{
2399 buf_T *buf;
Bram Moolenaar8767f522016-07-01 17:17:39 +02002400 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401
Bram Moolenaar29323592016-07-24 22:04:11 +02002402 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 {
2404 if (buf->b_ml.ml_mfp == NULL || buf->b_ml.ml_mfp->mf_fname == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002405 continue; // no file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002407 ml_flush_line(buf); // flush buffered line
2408 // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH);
2410 if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp)
2411 && buf->b_ffname != NULL)
2412 {
2413 /*
2414 * If the original file does not exist anymore or has been changed
2415 * call ml_preserve() to get rid of all negative numbered blocks.
2416 */
2417 if (mch_stat((char *)buf->b_ffname, &st) == -1
2418 || st.st_mtime != buf->b_mtime_read
Bram Moolenaar914703b2010-05-31 21:59:46 +02002419 || st.st_size != buf->b_orig_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002420 {
2421 ml_preserve(buf, FALSE);
2422 did_check_timestamps = FALSE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002423 need_check_timestamps = TRUE; // give message later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 }
2425 }
2426 if (buf->b_ml.ml_mfp->mf_dirty)
2427 {
2428 (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0)
2429 | (bufIsChanged(buf) ? MFS_FLUSH : 0));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002430 if (check_char && ui_char_avail()) // character available now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 break;
2432 }
2433 }
2434}
2435
2436/*
2437 * sync one buffer, including negative blocks
2438 *
2439 * after this all the blocks are in the swap file
2440 *
2441 * Used for the :preserve command and when the original file has been
2442 * changed or deleted.
2443 *
2444 * when message is TRUE the success of preserving is reported
2445 */
2446 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002447ml_preserve(buf_T *buf, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002448{
2449 bhdr_T *hp;
2450 linenr_T lnum;
2451 memfile_T *mfp = buf->b_ml.ml_mfp;
2452 int status;
2453 int got_int_save = got_int;
2454
2455 if (mfp == NULL || mfp->mf_fname == NULL)
2456 {
2457 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002458 emsg(_("E313: Cannot preserve, there is no swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459 return;
2460 }
2461
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002462 // We only want to stop when interrupted here, not when interrupted
2463 // before.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002464 got_int = FALSE;
2465
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002466 ml_flush_line(buf); // flush buffered line
2467 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002468 status = mf_sync(mfp, MFS_ALL | MFS_FLUSH);
2469
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002470 // stack is invalid after mf_sync(.., MFS_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 buf->b_ml.ml_stack_top = 0;
2472
2473 /*
2474 * Some of the data blocks may have been changed from negative to
2475 * positive block number. In that case the pointer blocks need to be
2476 * updated.
2477 *
2478 * We don't know in which pointer block the references are, so we visit
2479 * all data blocks until there are no more translations to be done (or
2480 * we hit the end of the file, which can only happen in case a write fails,
2481 * e.g. when file system if full).
2482 * ml_find_line() does the work by translating the negative block numbers
2483 * when getting the first line of each data block.
2484 */
2485 if (mf_need_trans(mfp) && !got_int)
2486 {
2487 lnum = 1;
2488 while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count)
2489 {
2490 hp = ml_find_line(buf, lnum, ML_FIND);
2491 if (hp == NULL)
2492 {
2493 status = FAIL;
2494 goto theend;
2495 }
2496 CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum");
2497 lnum = buf->b_ml.ml_locked_high + 1;
2498 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002499 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
2500 // sync the updated pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002501 if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL)
2502 status = FAIL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002503 buf->b_ml.ml_stack_top = 0; // stack is invalid now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002504 }
2505theend:
2506 got_int |= got_int_save;
2507
2508 if (message)
2509 {
2510 if (status == OK)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002511 msg(_("File preserved"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002512 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002513 emsg(_("E314: Preserve failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002514 }
2515}
2516
2517/*
2518 * NOTE: The pointer returned by the ml_get_*() functions only remains valid
2519 * until the next call!
2520 * line1 = ml_get(1);
2521 * line2 = ml_get(2); // line1 is now invalid!
2522 * Make a copy of the line if necessary.
2523 */
2524/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002525 * Return a pointer to a (read-only copy of a) line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 *
2527 * On failure an error message is given and IObuff is returned (to avoid
2528 * having to check for error everywhere).
2529 */
2530 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002531ml_get(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532{
2533 return ml_get_buf(curbuf, lnum, FALSE);
2534}
2535
2536/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002537 * Return pointer to position "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 */
2539 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002540ml_get_pos(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541{
2542 return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col);
2543}
2544
2545/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002546 * Return pointer to cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002547 */
2548 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002549ml_get_curline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002550{
2551 return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE);
2552}
2553
2554/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002555 * Return pointer to cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002556 */
2557 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002558ml_get_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002559{
2560 return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) +
2561 curwin->w_cursor.col);
2562}
2563
2564/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002565 * Return a pointer to a line in a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00002566 *
2567 * "will_change": if TRUE mark the buffer dirty (chars in the line will be
2568 * changed)
2569 */
2570 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002571ml_get_buf(
2572 buf_T *buf,
2573 linenr_T lnum,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002574 int will_change) // line will be changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575{
Bram Moolenaarad40f022007-02-13 03:01:39 +00002576 bhdr_T *hp;
2577 DATA_BL *dp;
Bram Moolenaarad40f022007-02-13 03:01:39 +00002578 static int recursive = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002579
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002580 if (lnum > buf->b_ml.ml_line_count) // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002582 if (recursive == 0)
2583 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002584 // Avoid giving this message for a recursive call, may happen when
2585 // the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002586 ++recursive;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002587 siemsg(_("E315: ml_get: invalid lnum: %ld"), lnum);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002588 --recursive;
2589 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590errorret:
2591 STRCPY(IObuff, "???");
Bram Moolenaaradfde112019-05-25 22:11:45 +02002592 buf->b_ml.ml_line_len = 4;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002593 return IObuff;
2594 }
Bram Moolenaaradfde112019-05-25 22:11:45 +02002595 if (lnum <= 0) // pretend line 0 is line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002596 lnum = 1;
2597
Bram Moolenaaradfde112019-05-25 22:11:45 +02002598 if (buf->b_ml.ml_mfp == NULL) // there are no lines
2599 {
2600 buf->b_ml.ml_line_len = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 return (char_u *)"";
Bram Moolenaaradfde112019-05-25 22:11:45 +02002602 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603
Bram Moolenaar37d619f2010-03-10 14:46:26 +01002604 /*
2605 * See if it is the same line as requested last time.
2606 * Otherwise may need to flush last used line.
2607 * Don't use the last used line when 'swapfile' is reset, need to load all
2608 * blocks.
2609 */
Bram Moolenaar47b8b152007-02-07 02:41:57 +00002610 if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002612 unsigned start, end;
2613 colnr_T len;
2614 int idx;
2615
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616 ml_flush_line(buf);
2617
2618 /*
2619 * Find the data block containing the line.
2620 * This also fills the stack with the blocks from the root to the data
2621 * block and releases any locked block.
2622 */
2623 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
2624 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002625 if (recursive == 0)
2626 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002627 // Avoid giving this message for a recursive call, may happen
2628 // when the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002629 ++recursive;
Bram Moolenaarcb868932019-10-26 20:56:21 +02002630 get_trans_bufname(buf);
2631 shorten_dir(NameBuff);
2632 siemsg(_("E316: ml_get: cannot find line %ld in buffer %d %s"),
2633 lnum, buf->b_fnum, NameBuff);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002634 --recursive;
2635 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 goto errorret;
2637 }
2638
2639 dp = (DATA_BL *)(hp->bh_data);
2640
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002641 idx = lnum - buf->b_ml.ml_locked_low;
2642 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
2643 // The text ends where the previous line starts. The first line ends
2644 // at the end of the block.
2645 if (idx == 0)
2646 end = dp->db_txt_end;
2647 else
2648 end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
2649 len = end - start;
2650
2651 buf->b_ml.ml_line_ptr = (char_u *)dp + start;
2652 buf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002653 buf->b_ml.ml_line_lnum = lnum;
2654 buf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
2655 }
2656 if (will_change)
2657 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
2658
2659 return buf->b_ml.ml_line_ptr;
2660}
2661
2662/*
2663 * Check if a line that was just obtained by a call to ml_get
2664 * is in allocated memory.
2665 */
2666 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002667ml_line_alloced(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668{
2669 return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY);
2670}
2671
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002672#ifdef FEAT_PROP_POPUP
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002673/*
2674 * Add text properties that continue from the previous line.
2675 */
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002676 static void
2677add_text_props_for_append(
2678 buf_T *buf,
2679 linenr_T lnum,
2680 char_u **line,
2681 int *len,
2682 char_u **tofree)
2683{
2684 int round;
2685 int new_prop_count = 0;
2686 int count;
2687 int n;
2688 char_u *props;
Bram Moolenaarea781452019-09-04 18:53:12 +02002689 int new_len = 0; // init for gcc
Bram Moolenaar8f13d822020-09-12 21:04:23 +02002690 char_u *new_line = NULL;
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002691 textprop_T prop;
2692
2693 // Make two rounds:
2694 // 1. calculate the extra space needed
2695 // 2. allocate the space and fill it
2696 for (round = 1; round <= 2; ++round)
2697 {
2698 if (round == 2)
2699 {
2700 if (new_prop_count == 0)
2701 return; // nothing to do
2702 new_len = *len + new_prop_count * sizeof(textprop_T);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002703 new_line = alloc(new_len);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002704 if (new_line == NULL)
2705 return;
2706 mch_memmove(new_line, *line, *len);
2707 new_prop_count = 0;
2708 }
2709
2710 // Get the line above to find any props that continue in the next
2711 // line.
2712 count = get_text_props(buf, lnum, &props, FALSE);
2713 for (n = 0; n < count; ++n)
2714 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002715 mch_memmove(&prop, props + n * sizeof(textprop_T),
2716 sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002717 if (prop.tp_flags & TP_FLAG_CONT_NEXT)
2718 {
2719 if (round == 2)
2720 {
2721 prop.tp_flags |= TP_FLAG_CONT_PREV;
2722 prop.tp_col = 1;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002723 prop.tp_len = *len; // not exactly the right length
2724 mch_memmove(new_line + *len + new_prop_count
2725 * sizeof(textprop_T), &prop, sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002726 }
2727 ++new_prop_count;
2728 }
2729 }
2730 }
2731 *line = new_line;
2732 *tofree = new_line;
2733 *len = new_len;
2734}
2735#endif
2736
Bram Moolenaar071d4272004-06-13 20:20:40 +00002737 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002738ml_append_int(
2739 buf_T *buf,
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002740 linenr_T lnum, // append after this line (can be 0)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002741 char_u *line_arg, // text of the new line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002742 colnr_T len_arg, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002743 int flags) // ML_APPEND_ flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002744{
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002745 char_u *line = line_arg;
2746 colnr_T len = len_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002747 int i;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002748 int line_count; // number of indexes in current block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 int offset;
2750 int from, to;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002751 int space_needed; // space needed for new line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002752 int page_size;
2753 int page_count;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002754 int db_idx; // index for lnum in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002755 bhdr_T *hp;
2756 memfile_T *mfp;
2757 DATA_BL *dp;
2758 PTR_BL *pp;
2759 infoptr_T *ip;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002760#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002761 char_u *tofree = NULL;
2762#endif
2763 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002764
Bram Moolenaar071d4272004-06-13 20:20:40 +00002765 if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002766 return FAIL; // lnum out of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00002767
2768 if (lowest_marked && lowest_marked > lnum)
2769 lowest_marked = lnum + 1;
2770
2771 if (len == 0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002772 len = (colnr_T)STRLEN(line) + 1; // space needed for the text
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002773
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002774#ifdef FEAT_PROP_POPUP
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002775 if (curbuf->b_has_textprop && lnum > 0 && !(flags & ML_APPEND_UNDO))
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002776 // Add text properties that continue from the previous line.
2777 add_text_props_for_append(buf, lnum, &line, &len, &tofree);
2778#endif
2779
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002780 space_needed = len + INDEX_SIZE; // space needed for text + index
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781
2782 mfp = buf->b_ml.ml_mfp;
2783 page_size = mfp->mf_page_size;
2784
2785/*
2786 * find the data block containing the previous line
2787 * This also fills the stack with the blocks from the root to the data block
2788 * This also releases any locked block.
2789 */
2790 if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum,
2791 ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002792 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793
2794 buf->b_ml.ml_flags &= ~ML_EMPTY;
2795
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002796 if (lnum == 0) // got line one instead, correct db_idx
2797 db_idx = -1; // careful, it is negative!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002798 else
2799 db_idx = lnum - buf->b_ml.ml_locked_low;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002800 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002801 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2802
2803 dp = (DATA_BL *)(hp->bh_data);
2804
2805/*
2806 * If
2807 * - there is not enough room in the current block
2808 * - appending to the last line in the block
2809 * - not appending to the last line in the file
2810 * insert in front of the next block.
2811 */
2812 if ((int)dp->db_free < space_needed && db_idx == line_count - 1
2813 && lnum < buf->b_ml.ml_line_count)
2814 {
2815 /*
2816 * Now that the line is not going to be inserted in the block that we
2817 * expected, the line count has to be adjusted in the pointer blocks
2818 * by using ml_locked_lineadd.
2819 */
2820 --(buf->b_ml.ml_locked_lineadd);
2821 --(buf->b_ml.ml_locked_high);
2822 if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002823 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002825 db_idx = -1; // careful, it is negative!
2826 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002827 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2828 CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1");
2829
2830 dp = (DATA_BL *)(hp->bh_data);
2831 }
2832
2833 ++buf->b_ml.ml_line_count;
2834
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002835 if ((int)dp->db_free >= space_needed) // enough room in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002836 {
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002837 /*
2838 * Insert the new line in an existing data block, or in the data block
2839 * allocated above.
2840 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002841 dp->db_txt_start -= len;
2842 dp->db_free -= space_needed;
2843 ++(dp->db_line_count);
2844
2845 /*
2846 * move the text of the lines that follow to the front
2847 * adjust the indexes of the lines that follow
2848 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002849 if (line_count > db_idx + 1) // if there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 {
2851 /*
2852 * Offset is the start of the previous line.
2853 * This will become the character just after the new line.
2854 */
2855 if (db_idx < 0)
2856 offset = dp->db_txt_end;
2857 else
2858 offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK);
2859 mch_memmove((char *)dp + dp->db_txt_start,
2860 (char *)dp + dp->db_txt_start + len,
2861 (size_t)(offset - (dp->db_txt_start + len)));
2862 for (i = line_count - 1; i > db_idx; --i)
2863 dp->db_index[i + 1] = dp->db_index[i] - len;
2864 dp->db_index[db_idx + 1] = offset - len;
2865 }
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002866 else
2867 // add line at the end (which is the start of the text)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 dp->db_index[db_idx + 1] = dp->db_txt_start;
2869
2870 /*
2871 * copy the text into the block
2872 */
2873 mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002874 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 dp->db_index[db_idx + 1] |= DB_MARKED;
2876
2877 /*
2878 * Mark the block dirty.
2879 */
2880 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002881 if (!(flags & ML_APPEND_NEW))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002882 buf->b_ml.ml_flags |= ML_LOCKED_POS;
2883 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002884 else // not enough space in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002885 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 long line_count_left, line_count_right;
2887 int page_count_left, page_count_right;
2888 bhdr_T *hp_left;
2889 bhdr_T *hp_right;
2890 bhdr_T *hp_new;
2891 int lines_moved;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002892 int data_moved = 0; // init to shut up gcc
2893 int total_moved = 0; // init to shut up gcc
Bram Moolenaar071d4272004-06-13 20:20:40 +00002894 DATA_BL *dp_right, *dp_left;
2895 int stack_idx;
2896 int in_left;
2897 int lineadd;
2898 blocknr_T bnum_left, bnum_right;
2899 linenr_T lnum_left, lnum_right;
2900 int pb_idx;
2901 PTR_BL *pp_new;
2902
2903 /*
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002904 * There is not enough room, we have to create a new data block and
2905 * copy some lines into it.
2906 * Then we have to insert an entry in the pointer block.
2907 * If this pointer block also is full, we go up another block, and so
2908 * on, up to the root if necessary.
2909 * The line counts in the pointer blocks have already been adjusted by
2910 * ml_find_line().
2911 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 * We are going to allocate a new data block. Depending on the
2913 * situation it will be put to the left or right of the existing
2914 * block. If possible we put the new line in the left block and move
2915 * the lines after it to the right block. Otherwise the new line is
2916 * also put in the right block. This method is more efficient when
2917 * inserting a lot of lines at one place.
2918 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002919 if (db_idx < 0) // left block is new, right block is existing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920 {
2921 lines_moved = 0;
2922 in_left = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002923 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002924 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002925 else // left block is existing, right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002926 {
2927 lines_moved = line_count - db_idx - 1;
2928 if (lines_moved == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002929 in_left = FALSE; // put new line in right block
2930 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002931 else
2932 {
2933 data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) -
2934 dp->db_txt_start;
2935 total_moved = data_moved + lines_moved * INDEX_SIZE;
2936 if ((int)dp->db_free + total_moved >= space_needed)
2937 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002938 in_left = TRUE; // put new line in left block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 space_needed = total_moved;
2940 }
2941 else
2942 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002943 in_left = FALSE; // put new line in right block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002944 space_needed += total_moved;
2945 }
2946 }
2947 }
2948
2949 page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002950 if ((hp_new = ml_new_data(mfp, flags & ML_APPEND_NEW, page_count))
2951 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002952 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002953 // correct line counts in pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 --(buf->b_ml.ml_locked_lineadd);
2955 --(buf->b_ml.ml_locked_high);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002956 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002957 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002958 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959 {
2960 hp_left = hp_new;
2961 hp_right = hp;
2962 line_count_left = 0;
2963 line_count_right = line_count;
2964 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002965 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 {
2967 hp_left = hp;
2968 hp_right = hp_new;
2969 line_count_left = line_count;
2970 line_count_right = 0;
2971 }
2972 dp_right = (DATA_BL *)(hp_right->bh_data);
2973 dp_left = (DATA_BL *)(hp_left->bh_data);
2974 bnum_left = hp_left->bh_bnum;
2975 bnum_right = hp_right->bh_bnum;
2976 page_count_left = hp_left->bh_page_count;
2977 page_count_right = hp_right->bh_page_count;
2978
2979 /*
2980 * May move the new line into the right/new block.
2981 */
2982 if (!in_left)
2983 {
2984 dp_right->db_txt_start -= len;
2985 dp_right->db_free -= len + INDEX_SIZE;
2986 dp_right->db_index[0] = dp_right->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002987 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 dp_right->db_index[0] |= DB_MARKED;
2989
2990 mch_memmove((char *)dp_right + dp_right->db_txt_start,
2991 line, (size_t)len);
2992 ++line_count_right;
2993 }
2994 /*
2995 * may move lines from the left/old block to the right/new one.
2996 */
2997 if (lines_moved)
2998 {
2999 /*
3000 */
3001 dp_right->db_txt_start -= data_moved;
3002 dp_right->db_free -= total_moved;
3003 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3004 (char *)dp_left + dp_left->db_txt_start,
3005 (size_t)data_moved);
3006 offset = dp_right->db_txt_start - dp_left->db_txt_start;
3007 dp_left->db_txt_start += data_moved;
3008 dp_left->db_free += total_moved;
3009
3010 /*
3011 * update indexes in the new block
3012 */
3013 for (to = line_count_right, from = db_idx + 1;
3014 from < line_count_left; ++from, ++to)
3015 dp_right->db_index[to] = dp->db_index[from] + offset;
3016 line_count_right += lines_moved;
3017 line_count_left -= lines_moved;
3018 }
3019
3020 /*
3021 * May move the new line into the left (old or new) block.
3022 */
3023 if (in_left)
3024 {
3025 dp_left->db_txt_start -= len;
3026 dp_left->db_free -= len + INDEX_SIZE;
3027 dp_left->db_index[line_count_left] = dp_left->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003028 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 dp_left->db_index[line_count_left] |= DB_MARKED;
3030 mch_memmove((char *)dp_left + dp_left->db_txt_start,
3031 line, (size_t)len);
3032 ++line_count_left;
3033 }
3034
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003035 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003036 {
3037 lnum_left = lnum + 1;
3038 lnum_right = 0;
3039 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003040 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003041 {
3042 lnum_left = 0;
3043 if (in_left)
3044 lnum_right = lnum + 2;
3045 else
3046 lnum_right = lnum + 1;
3047 }
3048 dp_left->db_line_count = line_count_left;
3049 dp_right->db_line_count = line_count_right;
3050
3051 /*
3052 * release the two data blocks
3053 * The new one (hp_new) already has a correct blocknumber.
3054 * The old one (hp, in ml_locked) gets a positive blocknumber if
3055 * we changed it and we are not editing a new file.
3056 */
3057 if (lines_moved || in_left)
3058 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003059 if (!(flags & ML_APPEND_NEW) && db_idx >= 0 && in_left)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003060 buf->b_ml.ml_flags |= ML_LOCKED_POS;
3061 mf_put(mfp, hp_new, TRUE, FALSE);
3062
3063 /*
3064 * flush the old data block
3065 * set ml_locked_lineadd to 0, because the updating of the
3066 * pointer blocks is done below
3067 */
3068 lineadd = buf->b_ml.ml_locked_lineadd;
3069 buf->b_ml.ml_locked_lineadd = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003070 ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003071
3072 /*
3073 * update pointer blocks for the new data block
3074 */
3075 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3076 --stack_idx)
3077 {
3078 ip = &(buf->b_ml.ml_stack[stack_idx]);
3079 pb_idx = ip->ip_index;
3080 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003081 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003082 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 if (pp->pb_id != PTR_ID)
3084 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003085 iemsg(_("E317: pointer block id wrong 3"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003086 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003087 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003088 }
3089 /*
3090 * TODO: If the pointer block is full and we are adding at the end
3091 * try to insert in front of the next block
3092 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003093 // block not full, add one entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094 if (pp->pb_count < pp->pb_count_max)
3095 {
3096 if (pb_idx + 1 < (int)pp->pb_count)
3097 mch_memmove(&pp->pb_pointer[pb_idx + 2],
3098 &pp->pb_pointer[pb_idx + 1],
3099 (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN));
3100 ++pp->pb_count;
3101 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3102 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3103 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3104 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3105 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3106 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3107
3108 if (lnum_left != 0)
3109 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3110 if (lnum_right != 0)
3111 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3112
3113 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003114 buf->b_ml.ml_stack_top = stack_idx + 1; // truncate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115
3116 if (lineadd)
3117 {
3118 --(buf->b_ml.ml_stack_top);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003119 // fix line count for rest of blocks in the stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003120 ml_lineadd(buf, lineadd);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003121 // fix stack itself
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
3123 lineadd;
3124 ++(buf->b_ml.ml_stack_top);
3125 }
3126
3127 /*
3128 * We are finished, break the loop here.
3129 */
3130 break;
3131 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003132 else // pointer block full
Bram Moolenaar071d4272004-06-13 20:20:40 +00003133 {
3134 /*
3135 * split the pointer block
3136 * allocate a new pointer block
3137 * move some of the pointer into the new block
3138 * prepare for updating the parent block
3139 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003140 for (;;) // do this twice when splitting block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003141 {
3142 hp_new = ml_new_ptr(mfp);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003143 if (hp_new == NULL) // TODO: try to fix tree
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003144 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 pp_new = (PTR_BL *)(hp_new->bh_data);
3146
3147 if (hp->bh_bnum != 1)
3148 break;
3149
3150 /*
3151 * if block 1 becomes full the tree is given an extra level
3152 * The pointers from block 1 are moved into the new block.
3153 * block 1 is updated to point to the new block
3154 * then continue to split the new block
3155 */
3156 mch_memmove(pp_new, pp, (size_t)page_size);
3157 pp->pb_count = 1;
3158 pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum;
3159 pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count;
3160 pp->pb_pointer[0].pe_old_lnum = 1;
3161 pp->pb_pointer[0].pe_page_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003162 mf_put(mfp, hp, TRUE, FALSE); // release block 1
3163 hp = hp_new; // new block is to be split
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 pp = pp_new;
3165 CHECK(stack_idx != 0, _("stack_idx should be 0"));
3166 ip->ip_index = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003167 ++stack_idx; // do block 1 again later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 }
3169 /*
3170 * move the pointers after the current one to the new block
3171 * If there are none, the new entry will be in the new block.
3172 */
3173 total_moved = pp->pb_count - pb_idx - 1;
3174 if (total_moved)
3175 {
3176 mch_memmove(&pp_new->pb_pointer[0],
3177 &pp->pb_pointer[pb_idx + 1],
3178 (size_t)(total_moved) * sizeof(PTR_EN));
3179 pp_new->pb_count = total_moved;
3180 pp->pb_count -= total_moved - 1;
3181 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3182 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3183 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3184 if (lnum_right)
3185 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3186 }
3187 else
3188 {
3189 pp_new->pb_count = 1;
3190 pp_new->pb_pointer[0].pe_bnum = bnum_right;
3191 pp_new->pb_pointer[0].pe_line_count = line_count_right;
3192 pp_new->pb_pointer[0].pe_page_count = page_count_right;
3193 pp_new->pb_pointer[0].pe_old_lnum = lnum_right;
3194 }
3195 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3196 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3197 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3198 if (lnum_left)
3199 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3200 lnum_left = 0;
3201 lnum_right = 0;
3202
3203 /*
3204 * recompute line counts
3205 */
3206 line_count_right = 0;
3207 for (i = 0; i < (int)pp_new->pb_count; ++i)
3208 line_count_right += pp_new->pb_pointer[i].pe_line_count;
3209 line_count_left = 0;
3210 for (i = 0; i < (int)pp->pb_count; ++i)
3211 line_count_left += pp->pb_pointer[i].pe_line_count;
3212
3213 bnum_left = hp->bh_bnum;
3214 bnum_right = hp_new->bh_bnum;
3215 page_count_left = 1;
3216 page_count_right = 1;
3217 mf_put(mfp, hp, TRUE, FALSE);
3218 mf_put(mfp, hp_new, TRUE, FALSE);
3219 }
3220 }
3221
3222 /*
3223 * Safety check: fallen out of for loop?
3224 */
3225 if (stack_idx < 0)
3226 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003227 iemsg(_("E318: Updated too many blocks?"));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003228 buf->b_ml.ml_stack_top = 0; // invalidate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 }
3230 }
3231
3232#ifdef FEAT_BYTEOFF
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003233 // The line was inserted below 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003234 ml_updatechunk(buf, lnum + 1, (long)len, ML_CHNK_ADDLINE);
3235#endif
3236#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003237 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003238 {
3239 if (STRLEN(line) > 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003240 netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line));
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003241 netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003242 (char_u *)"\n", 1);
3243 }
3244#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003245#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003246 if (buf->b_write_to_channel)
3247 channel_write_new_lines(buf);
3248#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003249 ret = OK;
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003250
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003251theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003252#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003253 vim_free(tofree);
3254#endif
3255 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256}
3257
3258/*
Bram Moolenaar250e3112019-07-15 23:02:14 +02003259 * Flush any pending change and call ml_append_int()
3260 */
3261 static int
3262ml_append_flush(
3263 buf_T *buf,
3264 linenr_T lnum, // append after this line (can be 0)
3265 char_u *line, // text of the new line
3266 colnr_T len, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003267 int flags) // ML_APPEND_ flags
Bram Moolenaar250e3112019-07-15 23:02:14 +02003268{
3269 if (lnum > buf->b_ml.ml_line_count)
3270 return FAIL; // lnum out of range
3271
3272 if (buf->b_ml.ml_line_lnum != 0)
3273 // This may also invoke ml_append_int().
3274 ml_flush_line(buf);
3275
3276#ifdef FEAT_EVAL
3277 // When inserting above recorded changes: flush the changes before changing
3278 // the text. Then flush the cached line, it may become invalid.
3279 may_invoke_listeners(buf, lnum + 1, lnum + 1, 1);
3280 if (buf->b_ml.ml_line_lnum != 0)
3281 ml_flush_line(buf);
3282#endif
3283
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003284 return ml_append_int(buf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003285}
3286
3287/*
3288 * Append a line after lnum (may be 0 to insert a line in front of the file).
3289 * "line" does not need to be allocated, but can't be another line in a
3290 * buffer, unlocking may make it invalid.
3291 *
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003292 * "newfile": TRUE when starting to edit a new file, meaning that pe_old_lnum
Bram Moolenaar250e3112019-07-15 23:02:14 +02003293 * will be set for recovery
3294 * Check: The caller of this function should probably also call
3295 * appended_lines().
3296 *
3297 * return FAIL for failure, OK otherwise
3298 */
3299 int
3300ml_append(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003301 linenr_T lnum, // append after this line (can be 0)
3302 char_u *line, // text of the new line
3303 colnr_T len, // length of new line, including NUL, or 0
3304 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003305{
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003306 return ml_append_flags(lnum, line, len, newfile ? ML_APPEND_NEW : 0);
3307}
3308
3309 int
3310ml_append_flags(
3311 linenr_T lnum, // append after this line (can be 0)
3312 char_u *line, // text of the new line
3313 colnr_T len, // length of new line, including NUL, or 0
3314 int flags) // ML_APPEND_ values
3315{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003316 // When starting up, we might still need to create the memfile
Bram Moolenaar250e3112019-07-15 23:02:14 +02003317 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
3318 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003319 return ml_append_flush(curbuf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003320}
3321
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003322
Bram Moolenaar250e3112019-07-15 23:02:14 +02003323#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(PROTO)
3324/*
3325 * Like ml_append() but for an arbitrary buffer. The buffer must already have
3326 * a memline.
3327 */
3328 int
3329ml_append_buf(
3330 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003331 linenr_T lnum, // append after this line (can be 0)
3332 char_u *line, // text of the new line
3333 colnr_T len, // length of new line, including NUL, or 0
3334 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003335{
3336 if (buf->b_ml.ml_mfp == NULL)
3337 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003338 return ml_append_flush(buf, lnum, line, len, newfile ? ML_APPEND_NEW : 0);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003339}
3340#endif
3341
3342/*
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003343 * Replace line "lnum", with buffering, in current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003344 *
Bram Moolenaar1056d982006-03-09 22:37:52 +00003345 * If "copy" is TRUE, make a copy of the line, otherwise the line has been
Bram Moolenaar071d4272004-06-13 20:20:40 +00003346 * copied to allocated memory already.
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003347 * If "copy" is FALSE the "line" may be freed to add text properties!
3348 * Do not use it after calling ml_replace().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349 *
3350 * Check: The caller of this function should probably also call
3351 * changed_lines(), unless update_screen(NOT_VALID) is used.
3352 *
3353 * return FAIL for failure, OK otherwise
3354 */
3355 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003356ml_replace(linenr_T lnum, char_u *line, int copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003357{
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003358 colnr_T len = -1;
3359
3360 if (line != NULL)
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003361 len = (colnr_T)STRLEN(line);
Bram Moolenaarccae4672019-01-04 15:09:57 +01003362 return ml_replace_len(lnum, line, len, FALSE, copy);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003363}
3364
Bram Moolenaarccae4672019-01-04 15:09:57 +01003365/*
3366 * Replace a line for the current buffer. Like ml_replace() with:
3367 * "len_arg" is the length of the text, excluding NUL.
3368 * If "has_props" is TRUE then "line_arg" includes the text properties and
3369 * "len_arg" includes the NUL of the text.
3370 */
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003371 int
Bram Moolenaarccae4672019-01-04 15:09:57 +01003372ml_replace_len(
3373 linenr_T lnum,
3374 char_u *line_arg,
3375 colnr_T len_arg,
3376 int has_props,
3377 int copy)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003378{
3379 char_u *line = line_arg;
3380 colnr_T len = len_arg;
3381
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003382 if (line == NULL) // just checking...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003383 return FAIL;
3384
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003385 // When starting up, we might still need to create the memfile
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003386 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003387 return FAIL;
3388
Bram Moolenaarccae4672019-01-04 15:09:57 +01003389 if (!has_props)
3390 ++len; // include the NUL after the text
3391 if (copy)
3392 {
3393 // copy the line to allocated memory
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003394#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003395 if (has_props)
3396 line = vim_memsave(line, len);
3397 else
3398#endif
3399 line = vim_strnsave(line, len - 1);
3400 if (line == NULL)
3401 return FAIL;
3402 }
3403
Bram Moolenaar071d4272004-06-13 20:20:40 +00003404#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003405 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 {
3407 netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum)));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003408 netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003409 }
3410#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003411 if (curbuf->b_ml.ml_line_lnum != lnum)
3412 {
3413 // another line is buffered, flush it
3414 ml_flush_line(curbuf);
Bram Moolenaarca79a5f2018-12-13 23:16:36 +01003415 curbuf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003416
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003417#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003418 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003419 // Need to fetch the old line to copy over any text properties.
3420 ml_get_buf(curbuf, lnum, TRUE);
3421#endif
3422 }
3423
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003424#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003425 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003426 {
3427 size_t oldtextlen = STRLEN(curbuf->b_ml.ml_line_ptr) + 1;
3428
3429 if (oldtextlen < (size_t)curbuf->b_ml.ml_line_len)
3430 {
3431 char_u *newline;
3432 size_t textproplen = curbuf->b_ml.ml_line_len - oldtextlen;
3433
3434 // Need to copy over text properties, stored after the text.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003435 newline = alloc(len + (int)textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003436 if (newline != NULL)
3437 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01003438 mch_memmove(newline, line, len);
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02003439 mch_memmove(newline + len, curbuf->b_ml.ml_line_ptr
3440 + oldtextlen, textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003441 vim_free(line);
3442 line = newline;
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003443 len += (colnr_T)textproplen;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003444 }
3445 }
3446 }
3447#endif
3448
Bram Moolenaarccae4672019-01-04 15:09:57 +01003449 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) // same line allocated
3450 vim_free(curbuf->b_ml.ml_line_ptr); // free it
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003451
Bram Moolenaar071d4272004-06-13 20:20:40 +00003452 curbuf->b_ml.ml_line_ptr = line;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003453 curbuf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003454 curbuf->b_ml.ml_line_lnum = lnum;
3455 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
3456
3457 return OK;
3458}
3459
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003460#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003461/*
3462 * Adjust text properties in line "lnum" for a deleted line.
3463 * When "above" is true this is the line above the deleted line.
3464 * "del_props" are the properties of the deleted line.
3465 */
3466 static void
3467adjust_text_props_for_delete(
3468 buf_T *buf,
3469 linenr_T lnum,
3470 char_u *del_props,
3471 int del_props_len,
3472 int above)
3473{
3474 int did_get_line = FALSE;
3475 int done_del;
3476 int done_this;
3477 textprop_T prop_del;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003478 bhdr_T *hp;
3479 DATA_BL *dp;
3480 int idx;
3481 int line_start;
3482 long line_size;
3483 int this_props_len;
3484 char_u *text;
3485 size_t textlen;
3486 int found;
3487
3488 for (done_del = 0; done_del < del_props_len; done_del += sizeof(textprop_T))
3489 {
3490 mch_memmove(&prop_del, del_props + done_del, sizeof(textprop_T));
3491 if ((above && (prop_del.tp_flags & TP_FLAG_CONT_PREV)
3492 && !(prop_del.tp_flags & TP_FLAG_CONT_NEXT))
3493 || (!above && (prop_del.tp_flags & TP_FLAG_CONT_NEXT)
3494 && !(prop_del.tp_flags & TP_FLAG_CONT_PREV)))
3495 {
3496 if (!did_get_line)
3497 {
3498 did_get_line = TRUE;
3499 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
3500 return;
3501
3502 dp = (DATA_BL *)(hp->bh_data);
3503 idx = lnum - buf->b_ml.ml_locked_low;
3504 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3505 if (idx == 0) // first line in block, text at the end
3506 line_size = dp->db_txt_end - line_start;
3507 else
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003508 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK)
3509 - line_start;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003510 text = (char_u *)dp + line_start;
3511 textlen = STRLEN(text) + 1;
3512 if ((long)textlen >= line_size)
3513 {
3514 if (above)
3515 internal_error("no text property above deleted line");
3516 else
3517 internal_error("no text property below deleted line");
3518 return;
3519 }
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003520 this_props_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003521 }
3522
3523 found = FALSE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003524 for (done_this = 0; done_this < this_props_len;
3525 done_this += sizeof(textprop_T))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003526 {
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003527 int flag = above ? TP_FLAG_CONT_NEXT
3528 : TP_FLAG_CONT_PREV;
3529 textprop_T prop_this;
3530
3531 mch_memmove(&prop_this, text + textlen + done_del,
3532 sizeof(textprop_T));
3533 if ((prop_this.tp_flags & flag)
3534 && prop_del.tp_id == prop_this.tp_id
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003535 && prop_del.tp_type == prop_this.tp_type)
3536 {
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003537 found = TRUE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003538 prop_this.tp_flags &= ~flag;
3539 mch_memmove(text + textlen + done_del, &prop_this,
3540 sizeof(textprop_T));
3541 break;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003542 }
3543 }
3544 if (!found)
3545 {
3546 if (above)
3547 internal_error("text property above deleted line not found");
3548 else
3549 internal_error("text property below deleted line not found");
3550 }
3551
3552 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3553 }
3554 }
3555}
3556#endif
3557
Bram Moolenaar071d4272004-06-13 20:20:40 +00003558/*
Bram Moolenaar4033c552017-09-16 20:54:51 +02003559 * Delete line "lnum" in the current buffer.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003560 * When "flags" has ML_DEL_MESSAGE may give a "No lines in buffer" message.
3561 * When "flags" has ML_DEL_UNDO this is called from undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003562 *
3563 * return FAIL for failure, OK otherwise
3564 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003565 static int
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003566ml_delete_int(buf_T *buf, linenr_T lnum, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567{
3568 bhdr_T *hp;
3569 memfile_T *mfp;
3570 DATA_BL *dp;
3571 PTR_BL *pp;
3572 infoptr_T *ip;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003573 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003574 int idx;
3575 int stack_idx;
3576 int text_start;
3577 int line_start;
3578 long line_size;
3579 int i;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003580 int ret = FAIL;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003581#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003582 char_u *textprop_save = NULL;
3583 int textprop_save_len;
3584#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585
Bram Moolenaar071d4272004-06-13 20:20:40 +00003586 if (lowest_marked && lowest_marked > lnum)
3587 lowest_marked--;
3588
3589/*
3590 * If the file becomes empty the last line is replaced by an empty line.
3591 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003592 if (buf->b_ml.ml_line_count == 1) // file becomes empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003593 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003594 if ((flags & ML_DEL_MESSAGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595#ifdef FEAT_NETBEANS_INTG
3596 && !netbeansSuppressNoLines
3597#endif
3598 )
Bram Moolenaar238a5642006-02-21 22:12:05 +00003599 set_keep_msg((char_u *)_(no_lines_msg), 0);
3600
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003601 // FEAT_BYTEOFF already handled in there, don't worry 'bout it below
Bram Moolenaar071d4272004-06-13 20:20:40 +00003602 i = ml_replace((linenr_T)1, (char_u *)"", TRUE);
3603 buf->b_ml.ml_flags |= ML_EMPTY;
3604
3605 return i;
3606 }
3607
3608/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003609 * Find the data block containing the line.
3610 * This also fills the stack with the blocks from the root to the data block.
3611 * This also releases any locked block..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003612 */
3613 mfp = buf->b_ml.ml_mfp;
3614 if (mfp == NULL)
3615 return FAIL;
3616
3617 if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL)
3618 return FAIL;
3619
3620 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003621 // compute line count before the delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003622 count = (long)(buf->b_ml.ml_locked_high)
3623 - (long)(buf->b_ml.ml_locked_low) + 2;
3624 idx = lnum - buf->b_ml.ml_locked_low;
3625
3626 --buf->b_ml.ml_line_count;
3627
3628 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003629 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003630 line_size = dp->db_txt_end - line_start;
3631 else
3632 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start;
3633
3634#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003635 if (netbeans_active())
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003636 netbeans_removed(buf, lnum, 0, (long)line_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003638#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003639 // If there are text properties, make a copy, so that we can update
3640 // properties in preceding and following lines.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003641 if (buf->b_has_textprop && !(flags & ML_DEL_UNDO))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003642 {
3643 size_t textlen = STRLEN((char_u *)dp + line_start) + 1;
3644
3645 if ((long)textlen < line_size)
3646 {
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003647 textprop_save_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003648 textprop_save = vim_memsave((char_u *)dp + line_start + textlen,
3649 textprop_save_len);
3650 }
3651 }
3652#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653
3654/*
3655 * special case: If there is only one line in the data block it becomes empty.
3656 * Then we have to remove the entry, pointing to this data block, from the
3657 * pointer block. If this pointer block also becomes empty, we go up another
3658 * block, and so on, up to the root if necessary.
3659 * The line counts in the pointer blocks have already been adjusted by
3660 * ml_find_line().
3661 */
3662 if (count == 1)
3663 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003664 mf_free(mfp, hp); // free the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003665 buf->b_ml.ml_locked = NULL;
3666
Bram Moolenaare60acc12011-05-10 16:41:25 +02003667 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3668 --stack_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003669 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003670 buf->b_ml.ml_stack_top = 0; // stack is invalid when failing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003671 ip = &(buf->b_ml.ml_stack[stack_idx]);
3672 idx = ip->ip_index;
3673 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003674 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003675 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676 if (pp->pb_id != PTR_ID)
3677 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003678 iemsg(_("E317: pointer block id wrong 4"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003680 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 }
3682 count = --(pp->pb_count);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003683 if (count == 0) // the pointer block becomes empty!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003684 mf_free(mfp, hp);
3685 else
3686 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003687 if (count != idx) // move entries after the deleted one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1],
3689 (size_t)(count - idx) * sizeof(PTR_EN));
3690 mf_put(mfp, hp, TRUE, FALSE);
3691
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003692 buf->b_ml.ml_stack_top = stack_idx; // truncate stack
3693 // fix line count for rest of blocks in the stack
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003694 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695 {
3696 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
3697 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003698 buf->b_ml.ml_locked_lineadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 }
3700 ++(buf->b_ml.ml_stack_top);
3701
3702 break;
3703 }
3704 }
3705 CHECK(stack_idx < 0, _("deleted block 1?"));
3706 }
3707 else
3708 {
3709 /*
3710 * delete the text by moving the next lines forwards
3711 */
3712 text_start = dp->db_txt_start;
3713 mch_memmove((char *)dp + text_start + line_size,
3714 (char *)dp + text_start, (size_t)(line_start - text_start));
3715
3716 /*
3717 * delete the index by moving the next indexes backwards
3718 * Adjust the indexes for the text movement.
3719 */
3720 for (i = idx; i < count - 1; ++i)
3721 dp->db_index[i] = dp->db_index[i + 1] + line_size;
3722
3723 dp->db_free += line_size + INDEX_SIZE;
3724 dp->db_txt_start += line_size;
3725 --(dp->db_line_count);
3726
3727 /*
3728 * mark the block dirty and make sure it is in the file (for recovery)
3729 */
3730 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3731 }
3732
3733#ifdef FEAT_BYTEOFF
3734 ml_updatechunk(buf, lnum, line_size, ML_CHNK_DELLINE);
3735#endif
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003736 ret = OK;
3737
3738theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003739#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003740 if (textprop_save != NULL)
3741 {
3742 // Adjust text properties in the line above and below.
3743 if (lnum > 1)
3744 adjust_text_props_for_delete(buf, lnum - 1, textprop_save, textprop_save_len, TRUE);
3745 if (lnum <= buf->b_ml.ml_line_count)
3746 adjust_text_props_for_delete(buf, lnum, textprop_save, textprop_save_len, FALSE);
3747 }
3748 vim_free(textprop_save);
3749#endif
3750 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003751}
3752
3753/*
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003754 * Delete line "lnum" in the current buffer.
3755 * When "message" is TRUE may give a "No lines in buffer" message.
3756 *
3757 * Check: The caller of this function should probably also call
3758 * deleted_lines() after this.
3759 *
3760 * return FAIL for failure, OK otherwise
3761 */
3762 int
Bram Moolenaarca70c072020-05-30 20:30:46 +02003763ml_delete(linenr_T lnum)
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003764{
Bram Moolenaarca70c072020-05-30 20:30:46 +02003765 return ml_delete_flags(lnum, 0);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003766}
3767
3768/*
3769 * Like ml_delete() but using flags (see ml_delete_int()).
3770 */
3771 int
3772ml_delete_flags(linenr_T lnum, int flags)
3773{
3774 ml_flush_line(curbuf);
3775 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
3776 return FAIL;
3777
3778#ifdef FEAT_EVAL
3779 // When inserting above recorded changes: flush the changes before changing
3780 // the text.
3781 may_invoke_listeners(curbuf, lnum, lnum + 1, -1);
3782#endif
3783
3784 return ml_delete_int(curbuf, lnum, flags);
3785}
3786
3787/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003788 * set the DB_MARKED flag for line 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003789 */
3790 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003791ml_setmarked(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003792{
3793 bhdr_T *hp;
3794 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003795 // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count
3797 || curbuf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003798 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799
3800 if (lowest_marked == 0 || lowest_marked > lnum)
3801 lowest_marked = lnum;
3802
3803 /*
3804 * find the data block containing the line
3805 * This also fills the stack with the blocks from the root to the data block
3806 * This also releases any locked block.
3807 */
3808 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003809 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810
3811 dp = (DATA_BL *)(hp->bh_data);
3812 dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED;
3813 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3814}
3815
3816/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003817 * find the first line with its DB_MARKED flag set
Bram Moolenaar071d4272004-06-13 20:20:40 +00003818 */
3819 linenr_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003820ml_firstmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821{
3822 bhdr_T *hp;
3823 DATA_BL *dp;
3824 linenr_T lnum;
3825 int i;
3826
3827 if (curbuf->b_ml.ml_mfp == NULL)
3828 return (linenr_T) 0;
3829
3830 /*
3831 * The search starts with lowest_marked line. This is the last line where
3832 * a mark was found, adjusted by inserting/deleting lines.
3833 */
3834 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3835 {
3836 /*
3837 * Find the data block containing the line.
3838 * This also fills the stack with the blocks from the root to the data
3839 * block This also releases any locked block.
3840 */
3841 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003842 return (linenr_T)0; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003843
3844 dp = (DATA_BL *)(hp->bh_data);
3845
3846 for (i = lnum - curbuf->b_ml.ml_locked_low;
3847 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3848 if ((dp->db_index[i]) & DB_MARKED)
3849 {
3850 (dp->db_index[i]) &= DB_INDEX_MASK;
3851 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3852 lowest_marked = lnum + 1;
3853 return lnum;
3854 }
3855 }
3856
3857 return (linenr_T) 0;
3858}
3859
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860/*
3861 * clear all DB_MARKED flags
3862 */
3863 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003864ml_clearmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003865{
3866 bhdr_T *hp;
3867 DATA_BL *dp;
3868 linenr_T lnum;
3869 int i;
3870
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003871 if (curbuf->b_ml.ml_mfp == NULL) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872 return;
3873
3874 /*
3875 * The search starts with line lowest_marked.
3876 */
3877 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3878 {
3879 /*
3880 * Find the data block containing the line.
3881 * This also fills the stack with the blocks from the root to the data
3882 * block and releases any locked block.
3883 */
3884 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003885 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003886
3887 dp = (DATA_BL *)(hp->bh_data);
3888
3889 for (i = lnum - curbuf->b_ml.ml_locked_low;
3890 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3891 if ((dp->db_index[i]) & DB_MARKED)
3892 {
3893 (dp->db_index[i]) &= DB_INDEX_MASK;
3894 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3895 }
3896 }
3897
3898 lowest_marked = 0;
3899 return;
3900}
3901
3902/*
3903 * flush ml_line if necessary
3904 */
3905 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003906ml_flush_line(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003907{
3908 bhdr_T *hp;
3909 DATA_BL *dp;
3910 linenr_T lnum;
3911 char_u *new_line;
3912 char_u *old_line;
3913 colnr_T new_len;
3914 int old_len;
3915 int extra;
3916 int idx;
3917 int start;
3918 int count;
3919 int i;
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003920 static int entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003921
3922 if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003923 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003924
3925 if (buf->b_ml.ml_flags & ML_LINE_DIRTY)
3926 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003927 // This code doesn't work recursively, but Netbeans may call back here
3928 // when obtaining the cursor position.
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003929 if (entered)
3930 return;
3931 entered = TRUE;
3932
Bram Moolenaar071d4272004-06-13 20:20:40 +00003933 lnum = buf->b_ml.ml_line_lnum;
3934 new_line = buf->b_ml.ml_line_ptr;
3935
3936 hp = ml_find_line(buf, lnum, ML_FIND);
3937 if (hp == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003938 siemsg(_("E320: Cannot find line %ld"), lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 else
3940 {
3941 dp = (DATA_BL *)(hp->bh_data);
3942 idx = lnum - buf->b_ml.ml_locked_low;
3943 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3944 old_line = (char_u *)dp + start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003945 if (idx == 0) // line is last in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003946 old_len = dp->db_txt_end - start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003947 else // text of previous line follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00003948 old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003949 new_len = buf->b_ml.ml_line_len;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003950 extra = new_len - old_len; // negative if lines gets smaller
Bram Moolenaar071d4272004-06-13 20:20:40 +00003951
3952 /*
3953 * if new line fits in data block, replace directly
3954 */
3955 if ((int)dp->db_free >= extra)
3956 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003957 // if the length changes and there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003958 count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1;
3959 if (extra != 0 && idx < count - 1)
3960 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003961 // move text of following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 mch_memmove((char *)dp + dp->db_txt_start - extra,
3963 (char *)dp + dp->db_txt_start,
3964 (size_t)(start - dp->db_txt_start));
3965
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003966 // adjust pointers of this and following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003967 for (i = idx + 1; i < count; ++i)
3968 dp->db_index[i] -= extra;
3969 }
3970 dp->db_index[idx] -= extra;
3971
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003972 // adjust free space
Bram Moolenaar071d4272004-06-13 20:20:40 +00003973 dp->db_free -= extra;
3974 dp->db_txt_start -= extra;
3975
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003976 // copy new line into the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 mch_memmove(old_line - extra, new_line, (size_t)new_len);
3978 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3979#ifdef FEAT_BYTEOFF
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003980 // The else case is already covered by the insert and delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE);
3982#endif
3983 }
3984 else
3985 {
3986 /*
3987 * Cannot do it in one data block: Delete and append.
3988 * Append first, because ml_delete_int() cannot delete the
3989 * last line in a buffer, which causes trouble for a buffer
3990 * that has only one line.
3991 * Don't forget to copy the mark!
3992 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003993 // How about handling errors???
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003994 (void)ml_append_int(buf, lnum, new_line, new_len,
3995 (dp->db_index[idx] & DB_MARKED) ? ML_APPEND_MARK : 0);
3996 (void)ml_delete_int(buf, lnum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003997 }
3998 }
3999 vim_free(new_line);
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004000
4001 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004002 }
4003
4004 buf->b_ml.ml_line_lnum = 0;
4005}
4006
4007/*
4008 * create a new, empty, data block
4009 */
4010 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004011ml_new_data(memfile_T *mfp, int negative, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012{
4013 bhdr_T *hp;
4014 DATA_BL *dp;
4015
4016 if ((hp = mf_new(mfp, negative, page_count)) == NULL)
4017 return NULL;
4018
4019 dp = (DATA_BL *)(hp->bh_data);
4020 dp->db_id = DATA_ID;
4021 dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size;
4022 dp->db_free = dp->db_txt_start - HEADER_SIZE;
4023 dp->db_line_count = 0;
4024
4025 return hp;
4026}
4027
4028/*
4029 * create a new, empty, pointer block
4030 */
4031 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004032ml_new_ptr(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004033{
4034 bhdr_T *hp;
4035 PTR_BL *pp;
4036
4037 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
4038 return NULL;
4039
4040 pp = (PTR_BL *)(hp->bh_data);
4041 pp->pb_id = PTR_ID;
4042 pp->pb_count = 0;
Bram Moolenaar20a825a2010-05-31 21:27:30 +02004043 pp->pb_count_max = (short_u)((mfp->mf_page_size - sizeof(PTR_BL))
4044 / sizeof(PTR_EN) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004045
4046 return hp;
4047}
4048
4049/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01004050 * Lookup line 'lnum' in a memline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004051 *
4052 * action: if ML_DELETE or ML_INSERT the line count is updated while searching
4053 * if ML_FLUSH only flush a locked block
4054 * if ML_FIND just find the line
4055 *
4056 * If the block was found it is locked and put in ml_locked.
4057 * The stack is updated to lead to the locked block. The ip_high field in
4058 * the stack is updated to reflect the last line in the block AFTER the
4059 * insert or delete, also if the pointer block has not been updated yet. But
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004060 * if ml_locked != NULL ml_locked_lineadd must be added to ip_high.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004061 *
4062 * return: NULL for failure, pointer to block header otherwise
4063 */
4064 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004065ml_find_line(buf_T *buf, linenr_T lnum, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066{
4067 DATA_BL *dp;
4068 PTR_BL *pp;
4069 infoptr_T *ip;
4070 bhdr_T *hp;
4071 memfile_T *mfp;
4072 linenr_T t;
4073 blocknr_T bnum, bnum2;
4074 int dirty;
4075 linenr_T low, high;
4076 int top;
4077 int page_count;
4078 int idx;
4079
4080 mfp = buf->b_ml.ml_mfp;
4081
4082 /*
4083 * If there is a locked block check if the wanted line is in it.
4084 * If not, flush and release the locked block.
4085 * Don't do this for ML_INSERT_SAME, because the stack need to be updated.
4086 * Don't do this for ML_FLUSH, because we want to flush the locked block.
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004087 * Don't do this when 'swapfile' is reset, we want to load all the blocks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 */
4089 if (buf->b_ml.ml_locked)
4090 {
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004091 if (ML_SIMPLE(action)
4092 && buf->b_ml.ml_locked_low <= lnum
4093 && buf->b_ml.ml_locked_high >= lnum
4094 && !mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004095 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004096 // remember to update pointer blocks and stack later
Bram Moolenaar071d4272004-06-13 20:20:40 +00004097 if (action == ML_INSERT)
4098 {
4099 ++(buf->b_ml.ml_locked_lineadd);
4100 ++(buf->b_ml.ml_locked_high);
4101 }
4102 else if (action == ML_DELETE)
4103 {
4104 --(buf->b_ml.ml_locked_lineadd);
4105 --(buf->b_ml.ml_locked_high);
4106 }
4107 return (buf->b_ml.ml_locked);
4108 }
4109
4110 mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY,
4111 buf->b_ml.ml_flags & ML_LOCKED_POS);
4112 buf->b_ml.ml_locked = NULL;
4113
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004114 /*
4115 * If lines have been added or deleted in the locked block, need to
4116 * update the line count in pointer blocks.
4117 */
4118 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004119 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
4120 }
4121
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004122 if (action == ML_FLUSH) // nothing else to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004123 return NULL;
4124
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004125 bnum = 1; // start at the root of the tree
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 page_count = 1;
4127 low = 1;
4128 high = buf->b_ml.ml_line_count;
4129
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004130 if (action == ML_FIND) // first try stack entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131 {
4132 for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top)
4133 {
4134 ip = &(buf->b_ml.ml_stack[top]);
4135 if (ip->ip_low <= lnum && ip->ip_high >= lnum)
4136 {
4137 bnum = ip->ip_bnum;
4138 low = ip->ip_low;
4139 high = ip->ip_high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004140 buf->b_ml.ml_stack_top = top; // truncate stack at prev entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141 break;
4142 }
4143 }
4144 if (top < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004145 buf->b_ml.ml_stack_top = 0; // not found, start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004147 else // ML_DELETE or ML_INSERT
4148 buf->b_ml.ml_stack_top = 0; // start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004149
4150/*
4151 * search downwards in the tree until a data block is found
4152 */
4153 for (;;)
4154 {
4155 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
4156 goto error_noblock;
4157
4158 /*
4159 * update high for insert/delete
4160 */
4161 if (action == ML_INSERT)
4162 ++high;
4163 else if (action == ML_DELETE)
4164 --high;
4165
4166 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004167 if (dp->db_id == DATA_ID) // data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 {
4169 buf->b_ml.ml_locked = hp;
4170 buf->b_ml.ml_locked_low = low;
4171 buf->b_ml.ml_locked_high = high;
4172 buf->b_ml.ml_locked_lineadd = 0;
4173 buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS);
4174 return hp;
4175 }
4176
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004177 pp = (PTR_BL *)(dp); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004178 if (pp->pb_id != PTR_ID)
4179 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004180 iemsg(_("E317: pointer block id wrong"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181 goto error_block;
4182 }
4183
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004184 if ((top = ml_add_stack(buf)) < 0) // add new entry to stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00004185 goto error_block;
4186 ip = &(buf->b_ml.ml_stack[top]);
4187 ip->ip_bnum = bnum;
4188 ip->ip_low = low;
4189 ip->ip_high = high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004190 ip->ip_index = -1; // index not known yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191
4192 dirty = FALSE;
4193 for (idx = 0; idx < (int)pp->pb_count; ++idx)
4194 {
4195 t = pp->pb_pointer[idx].pe_line_count;
4196 CHECK(t == 0, _("pe_line_count is zero"));
4197 if ((low += t) > lnum)
4198 {
4199 ip->ip_index = idx;
4200 bnum = pp->pb_pointer[idx].pe_bnum;
4201 page_count = pp->pb_pointer[idx].pe_page_count;
4202 high = low - 1;
4203 low -= t;
4204
4205 /*
4206 * a negative block number may have been changed
4207 */
4208 if (bnum < 0)
4209 {
4210 bnum2 = mf_trans_del(mfp, bnum);
4211 if (bnum != bnum2)
4212 {
4213 bnum = bnum2;
4214 pp->pb_pointer[idx].pe_bnum = bnum;
4215 dirty = TRUE;
4216 }
4217 }
4218
4219 break;
4220 }
4221 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004222 if (idx >= (int)pp->pb_count) // past the end: something wrong!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004223 {
4224 if (lnum > buf->b_ml.ml_line_count)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004225 siemsg(_("E322: line number out of range: %ld past the end"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 lnum - buf->b_ml.ml_line_count);
4227
4228 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004229 siemsg(_("E323: line count wrong in block %ld"), bnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004230 goto error_block;
4231 }
4232 if (action == ML_DELETE)
4233 {
4234 pp->pb_pointer[idx].pe_line_count--;
4235 dirty = TRUE;
4236 }
4237 else if (action == ML_INSERT)
4238 {
4239 pp->pb_pointer[idx].pe_line_count++;
4240 dirty = TRUE;
4241 }
4242 mf_put(mfp, hp, dirty, FALSE);
4243 }
4244
4245error_block:
4246 mf_put(mfp, hp, FALSE, FALSE);
4247error_noblock:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004248 /*
4249 * If action is ML_DELETE or ML_INSERT we have to correct the tree for
4250 * the incremented/decremented line counts, because there won't be a line
4251 * inserted/deleted after all.
4252 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 if (action == ML_DELETE)
4254 ml_lineadd(buf, 1);
4255 else if (action == ML_INSERT)
4256 ml_lineadd(buf, -1);
4257 buf->b_ml.ml_stack_top = 0;
4258 return NULL;
4259}
4260
4261/*
4262 * add an entry to the info pointer stack
4263 *
4264 * return -1 for failure, number of the new entry otherwise
4265 */
4266 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004267ml_add_stack(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004268{
4269 int top;
4270 infoptr_T *newstack;
4271
4272 top = buf->b_ml.ml_stack_top;
4273
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004274 // may have to increase the stack size
Bram Moolenaar071d4272004-06-13 20:20:40 +00004275 if (top == buf->b_ml.ml_stack_size)
4276 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004277 CHECK(top > 0, _("Stack size increases")); // more than 5 levels???
Bram Moolenaar071d4272004-06-13 20:20:40 +00004278
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004279 newstack = ALLOC_MULT(infoptr_T, buf->b_ml.ml_stack_size + STACK_INCR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 if (newstack == NULL)
4281 return -1;
Bram Moolenaarfbd302f2015-08-08 18:23:46 +02004282 if (top > 0)
4283 mch_memmove(newstack, buf->b_ml.ml_stack,
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004284 (size_t)top * sizeof(infoptr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004285 vim_free(buf->b_ml.ml_stack);
4286 buf->b_ml.ml_stack = newstack;
4287 buf->b_ml.ml_stack_size += STACK_INCR;
4288 }
4289
4290 buf->b_ml.ml_stack_top++;
4291 return top;
4292}
4293
4294/*
4295 * Update the pointer blocks on the stack for inserted/deleted lines.
4296 * The stack itself is also updated.
4297 *
4298 * When a insert/delete line action fails, the line is not inserted/deleted,
4299 * but the pointer blocks have already been updated. That is fixed here by
4300 * walking through the stack.
4301 *
4302 * Count is the number of lines added, negative if lines have been deleted.
4303 */
4304 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004305ml_lineadd(buf_T *buf, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306{
4307 int idx;
4308 infoptr_T *ip;
4309 PTR_BL *pp;
4310 memfile_T *mfp = buf->b_ml.ml_mfp;
4311 bhdr_T *hp;
4312
4313 for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx)
4314 {
4315 ip = &(buf->b_ml.ml_stack[idx]);
4316 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
4317 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004318 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 if (pp->pb_id != PTR_ID)
4320 {
4321 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004322 iemsg(_("E317: pointer block id wrong 2"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 break;
4324 }
4325 pp->pb_pointer[ip->ip_index].pe_line_count += count;
4326 ip->ip_high += count;
4327 mf_put(mfp, hp, TRUE, FALSE);
4328 }
4329}
4330
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004331#if defined(HAVE_READLINK) || defined(PROTO)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004332/*
4333 * Resolve a symlink in the last component of a file name.
4334 * Note that f_resolve() does it for every part of the path, we don't do that
4335 * here.
4336 * If it worked returns OK and the resolved link in "buf[MAXPATHL]".
4337 * Otherwise returns FAIL.
4338 */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004339 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004340resolve_symlink(char_u *fname, char_u *buf)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004341{
4342 char_u tmp[MAXPATHL];
4343 int ret;
4344 int depth = 0;
4345
4346 if (fname == NULL)
4347 return FAIL;
4348
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004349 // Put the result so far in tmp[], starting with the original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004350 vim_strncpy(tmp, fname, MAXPATHL - 1);
4351
4352 for (;;)
4353 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004354 // Limit symlink depth to 100, catch recursive loops.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004355 if (++depth == 100)
4356 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004357 semsg(_("E773: Symlink loop for \"%s\""), fname);
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004358 return FAIL;
4359 }
4360
4361 ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1);
4362 if (ret <= 0)
4363 {
Bram Moolenaarcc984262005-12-23 22:19:46 +00004364 if (errno == EINVAL || errno == ENOENT)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004365 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004366 // Found non-symlink or not existing file, stop here.
4367 // When at the first level use the unmodified name, skip the
4368 // call to vim_FullName().
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004369 if (depth == 1)
4370 return FAIL;
4371
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004372 // Use the resolved name in tmp[].
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004373 break;
4374 }
4375
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004376 // There must be some error reading links, use original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004377 return FAIL;
4378 }
4379 buf[ret] = NUL;
4380
4381 /*
4382 * Check whether the symlink is relative or absolute.
4383 * If it's relative, build a new path based on the directory
4384 * portion of the filename (if any) and the path the symlink
4385 * points to.
4386 */
4387 if (mch_isFullName(buf))
4388 STRCPY(tmp, buf);
4389 else
4390 {
4391 char_u *tail;
4392
4393 tail = gettail(tmp);
4394 if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL)
4395 return FAIL;
4396 STRCPY(tail, buf);
4397 }
4398 }
4399
4400 /*
4401 * Try to resolve the full name of the file so that the swapfile name will
4402 * be consistent even when opening a relative symlink from different
4403 * working directories.
4404 */
4405 return vim_FullName(tmp, buf, MAXPATHL, TRUE);
4406}
4407#endif
4408
Bram Moolenaar071d4272004-06-13 20:20:40 +00004409/*
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004410 * Make swap file name out of the file name and a directory name.
4411 * Returns pointer to allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004412 */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004413 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004414makeswapname(
4415 char_u *fname,
4416 char_u *ffname UNUSED,
4417 buf_T *buf,
4418 char_u *dir_name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004419{
4420 char_u *r, *s;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02004421 char_u *fname_res = fname;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004422#ifdef HAVE_READLINK
4423 char_u fname_buf[MAXPATHL];
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004424
4425 // Expand symlink in the file name, so that we put the swap file with the
4426 // actual file instead of with the symlink.
4427 if (resolve_symlink(fname, fname_buf) == OK)
4428 fname_res = fname_buf;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004429#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004430
Bram Moolenaar4f974752019-02-17 17:44:42 +01004431#if defined(UNIX) || defined(MSWIN) // Need _very_ long file names
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01004432 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01004433
4434 s = dir_name + len;
4435 if (after_pathsep(dir_name, s) && len > 1 && s[-1] == s[-2])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004436 { // Ends with '//', Use Full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004437 r = NULL;
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004438 if ((s = make_percent_swname(dir_name, fname_res)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 {
4440 r = modname(s, (char_u *)".swp", FALSE);
4441 vim_free(s);
4442 }
4443 return r;
4444 }
4445#endif
4446
4447 r = buf_modname(
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 (buf->b_p_sn || buf->b_shortname),
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004449 fname_res,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004450 (char_u *)
Bram Moolenaare60acc12011-05-10 16:41:25 +02004451#if defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004452 "_swp",
4453#else
4454 ".swp",
4455#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004456 // Prepend a '.' to the swap file name for the current directory.
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004457 dir_name[0] == '.' && dir_name[1] == NUL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004458 if (r == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004459 return NULL;
4460
4461 s = get_file_in_dir(r, dir_name);
4462 vim_free(r);
4463 return s;
4464}
4465
4466/*
4467 * Get file name to use for swap file or backup file.
4468 * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir'
4469 * option "dname".
4470 * - If "dname" is ".", return "fname" (swap file in dir of file).
4471 * - If "dname" starts with "./", insert "dname" in "fname" (swap file
4472 * relative to dir of file).
4473 * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific
4474 * dir).
4475 *
4476 * The return value is an allocated string and can be NULL.
4477 */
4478 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004479get_file_in_dir(
4480 char_u *fname,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004481 char_u *dname) // don't use "dirname", it is a global for Alpha
Bram Moolenaar071d4272004-06-13 20:20:40 +00004482{
4483 char_u *t;
4484 char_u *tail;
4485 char_u *retval;
4486 int save_char;
4487
4488 tail = gettail(fname);
4489
4490 if (dname[0] == '.' && dname[1] == NUL)
4491 retval = vim_strsave(fname);
4492 else if (dname[0] == '.' && vim_ispathsep(dname[1]))
4493 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004494 if (tail == fname) // no path before file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 retval = concat_fnames(dname + 2, tail, TRUE);
4496 else
4497 {
4498 save_char = *tail;
4499 *tail = NUL;
4500 t = concat_fnames(fname, dname + 2, TRUE);
4501 *tail = save_char;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004502 if (t == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004503 retval = NULL;
4504 else
4505 {
4506 retval = concat_fnames(t, tail, TRUE);
4507 vim_free(t);
4508 }
4509 }
4510 }
4511 else
4512 retval = concat_fnames(dname, tail, TRUE);
4513
Bram Moolenaar4f974752019-02-17 17:44:42 +01004514#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004515 if (retval != NULL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004516 for (t = gettail(retval); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004517 if (*t == ':')
4518 *t = '%';
4519#endif
4520
Bram Moolenaar071d4272004-06-13 20:20:40 +00004521 return retval;
4522}
4523
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004524/*
4525 * Print the ATTENTION message: info about an existing swap file.
4526 */
4527 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004528attention_message(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004529 buf_T *buf, // buffer being edited
4530 char_u *fname) // swap file name
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004531{
Bram Moolenaar8767f522016-07-01 17:17:39 +02004532 stat_T st;
Bram Moolenaar63d25552019-05-10 21:28:38 +02004533 time_t swap_mtime;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004534
4535 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004536 (void)emsg(_("E325: ATTENTION"));
Bram Moolenaar32526b32019-01-19 17:43:09 +01004537 msg_puts(_("\nFound a swap file by the name \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004538 msg_home_replace(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004539 msg_puts("\"\n");
Bram Moolenaar63d25552019-05-10 21:28:38 +02004540 swap_mtime = swapfile_info(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004541 msg_puts(_("While opening file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004542 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004543 msg_puts("\"\n");
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004544 if (mch_stat((char *)buf->b_fname, &st) == -1)
4545 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004546 msg_puts(_(" CANNOT BE FOUND"));
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004547 }
4548 else
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004549 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004550 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02004551 msg_puts(get_ctime(st.st_mtime, TRUE));
4552 if (swap_mtime != 0 && st.st_mtime > swap_mtime)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004553 msg_puts(_(" NEWER than swap file!\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004554 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004555 // Some of these messages are long to allow translation to
4556 // other languages.
Bram Moolenaar32526b32019-01-19 17:43:09 +01004557 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"));
4558 msg_puts(_("(2) An edit session for this file crashed.\n"));
4559 msg_puts(_(" If this is the case, use \":recover\" or \"vim -r "));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004560 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004561 msg_puts(_("\"\n to recover the changes (see \":help recovery\").\n"));
4562 msg_puts(_(" If you did this already, delete the swap file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004563 msg_outtrans(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004564 msg_puts(_("\"\n to avoid this message.\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004565 cmdline_row = msg_row;
4566 --no_wait_return;
4567}
4568
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004569#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004570/*
4571 * Trigger the SwapExists autocommands.
4572 * Returns a value for equivalent to do_dialog() (see below):
4573 * 0: still need to ask for a choice
4574 * 1: open read-only
4575 * 2: edit anyway
4576 * 3: recover
4577 * 4: delete it
4578 * 5: quit
4579 * 6: abort
4580 */
4581 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004582do_swapexists(buf_T *buf, char_u *fname)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004583{
4584 set_vim_var_string(VV_SWAPNAME, fname, -1);
4585 set_vim_var_string(VV_SWAPCHOICE, NULL, -1);
4586
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004587 // Trigger SwapExists autocommands with <afile> set to the file being
4588 // edited. Disallow changing directory here.
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004589 ++allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004590 apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL);
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004591 --allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004592
4593 set_vim_var_string(VV_SWAPNAME, NULL, -1);
4594
4595 switch (*get_vim_var_str(VV_SWAPCHOICE))
4596 {
4597 case 'o': return 1;
4598 case 'e': return 2;
4599 case 'r': return 3;
4600 case 'd': return 4;
4601 case 'q': return 5;
4602 case 'a': return 6;
4603 }
4604
4605 return 0;
4606}
4607#endif
4608
Bram Moolenaar071d4272004-06-13 20:20:40 +00004609/*
4610 * Find out what name to use for the swap file for buffer 'buf'.
4611 *
4612 * Several names are tried to find one that does not exist
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004613 * Returns the name in allocated memory or NULL.
Bram Moolenaarf541c362011-10-26 11:44:18 +02004614 * When out of memory "dirp" is set to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004615 *
4616 * Note: If BASENAMELEN is not correct, you will get error messages for
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004617 * not being able to open the swap or undo file
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004618 * Note: May trigger SwapExists autocmd, pointers may change!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004619 */
4620 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004621findswapname(
4622 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004623 char_u **dirp, // pointer to list of directories
4624 char_u *old_fname) // don't give warning for this file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004625{
4626 char_u *fname;
4627 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004628 char_u *dir_name;
4629#ifdef AMIGA
4630 BPTR fh;
4631#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004632 int r;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004633 char_u *buf_fname = buf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004634
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004635#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636# define CREATE_DUMMY_FILE
4637 FILE *dummyfd = NULL;
4638
Bram Moolenaar4f974752019-02-17 17:44:42 +01004639# ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004640 if (buf_fname != NULL && !mch_isFullName(buf_fname)
4641 && vim_strchr(gettail(buf_fname), ':'))
4642 {
4643 char_u *t;
4644
4645 buf_fname = vim_strsave(buf_fname);
4646 if (buf_fname == NULL)
4647 buf_fname = buf->b_fname;
4648 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004649 for (t = gettail(buf_fname); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004650 if (*t == ':')
4651 *t = '%';
4652 }
4653# endif
4654
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004655 /*
4656 * If we start editing a new file, e.g. "test.doc", which resides on an
4657 * MSDOS compatible filesystem, it is possible that the file
4658 * "test.doc.swp" which we create will be exactly the same file. To avoid
4659 * this problem we temporarily create "test.doc". Don't do this when the
4660 * check below for a 8.3 file name is used.
4661 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004662 if (!(buf->b_p_sn || buf->b_shortname) && buf_fname != NULL
4663 && mch_getperm(buf_fname) < 0)
4664 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665#endif
4666
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004667 /*
4668 * Isolate a directory name from *dirp and put it in dir_name.
4669 * First allocate some memory to put the directory name in.
4670 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004671 dir_name = alloc(STRLEN(*dirp) + 1);
Bram Moolenaarf541c362011-10-26 11:44:18 +02004672 if (dir_name == NULL)
4673 *dirp = NULL;
4674 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 (void)copy_option_part(dirp, dir_name, 31000, ",");
4676
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004677 /*
4678 * we try different names until we find one that does not exist yet
4679 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004680 if (dir_name == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681 fname = NULL;
4682 else
Bram Moolenaar69c35002013-11-04 02:54:12 +01004683 fname = makeswapname(buf_fname, buf->b_ffname, buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684
4685 for (;;)
4686 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004687 if (fname == NULL) // must be out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004689 if ((n = (int)STRLEN(fname)) == 0) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01004691 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692 break;
4693 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004694#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004695/*
4696 * Some systems have a MS-DOS compatible filesystem that use 8.3 character
4697 * file names. If this is the first try and the swap file name does not fit in
4698 * 8.3, detect if this is the case, set shortname and try again.
4699 */
4700 if (fname[n - 2] == 'w' && fname[n - 1] == 'p'
4701 && !(buf->b_p_sn || buf->b_shortname))
4702 {
4703 char_u *tail;
4704 char_u *fname2;
Bram Moolenaar8767f522016-07-01 17:17:39 +02004705 stat_T s1, s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004706 int f1, f2;
4707 int created1 = FALSE, created2 = FALSE;
4708 int same = FALSE;
4709
4710 /*
4711 * Check if swapfile name does not fit in 8.3:
4712 * It either contains two dots, is longer than 8 chars, or starts
4713 * with a dot.
4714 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004715 tail = gettail(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004716 if ( vim_strchr(tail, '.') != NULL
4717 || STRLEN(tail) > (size_t)8
4718 || *gettail(fname) == '.')
4719 {
4720 fname2 = alloc(n + 2);
4721 if (fname2 != NULL)
4722 {
4723 STRCPY(fname2, fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004724 // if fname == "xx.xx.swp", fname2 = "xx.xx.swx"
4725 // if fname == ".xx.swp", fname2 = ".xx.swpx"
4726 // if fname == "123456789.swp", fname2 = "12345678x.swp"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004727 if (vim_strchr(tail, '.') != NULL)
4728 fname2[n - 1] = 'x';
4729 else if (*gettail(fname) == '.')
4730 {
4731 fname2[n] = 'x';
4732 fname2[n + 1] = NUL;
4733 }
4734 else
4735 fname2[n - 5] += 1;
4736 /*
4737 * may need to create the files to be able to use mch_stat()
4738 */
4739 f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4740 if (f1 < 0)
4741 {
4742 f1 = mch_open_rw((char *)fname,
4743 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 created1 = TRUE;
4745 }
4746 if (f1 >= 0)
4747 {
4748 f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0);
4749 if (f2 < 0)
4750 {
4751 f2 = mch_open_rw((char *)fname2,
4752 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
4753 created2 = TRUE;
4754 }
4755 if (f2 >= 0)
4756 {
4757 /*
4758 * Both files exist now. If mch_stat() returns the
4759 * same device and inode they are the same file.
4760 */
4761 if (mch_fstat(f1, &s1) != -1
4762 && mch_fstat(f2, &s2) != -1
4763 && s1.st_dev == s2.st_dev
4764 && s1.st_ino == s2.st_ino)
4765 same = TRUE;
4766 close(f2);
4767 if (created2)
4768 mch_remove(fname2);
4769 }
4770 close(f1);
4771 if (created1)
4772 mch_remove(fname);
4773 }
4774 vim_free(fname2);
4775 if (same)
4776 {
4777 buf->b_shortname = TRUE;
4778 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004779 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004780 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004781 continue; // try again with b_shortname set
Bram Moolenaar071d4272004-06-13 20:20:40 +00004782 }
4783 }
4784 }
4785 }
4786#endif
4787 /*
4788 * check if the swapfile already exists
4789 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004790 if (mch_getperm(fname) < 0) // it does not exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004791 {
4792#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02004793 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004794
4795 /*
4796 * Extra security check: When a swap file is a symbolic link, this
4797 * is most likely a symlink attack.
4798 */
4799 if (mch_lstat((char *)fname, &sb) < 0)
4800#else
4801# ifdef AMIGA
4802 fh = Open((UBYTE *)fname, (long)MODE_NEWFILE);
4803 /*
4804 * on the Amiga mch_getperm() will return -1 when the file exists
4805 * but is being used by another program. This happens if you edit
4806 * a file twice.
4807 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004808 if (fh != (BPTR)NULL) // can open file, OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 {
4810 Close(fh);
4811 mch_remove(fname);
4812 break;
4813 }
4814 if (IoErr() != ERROR_OBJECT_IN_USE
4815 && IoErr() != ERROR_OBJECT_EXISTS)
4816# endif
4817#endif
4818 break;
4819 }
4820
4821 /*
4822 * A file name equal to old_fname is OK to use.
4823 */
4824 if (old_fname != NULL && fnamecmp(fname, old_fname) == 0)
4825 break;
4826
4827 /*
4828 * get here when file already exists
4829 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004830 if (fname[n - 2] == 'w' && fname[n - 1] == 'p') // first try
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004832 /*
4833 * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp
4834 * and file.doc are the same file. To guess if this problem is
4835 * present try if file.doc.swx exists. If it does, we set
4836 * buf->b_shortname and try file_doc.swp (dots replaced by
4837 * underscores for this file), and try again. If it doesn't we
4838 * assume that "file.doc.swp" already exists.
4839 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004840 if (!(buf->b_p_sn || buf->b_shortname)) // not tried yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004841 {
4842 fname[n - 1] = 'x';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004843 r = mch_getperm(fname); // try "file.swx"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004844 fname[n - 1] = 'p';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004845 if (r >= 0) // "file.swx" seems to exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 {
4847 buf->b_shortname = TRUE;
4848 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004849 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004850 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004851 continue; // try again with '.' replaced with '_'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 }
4853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004854 /*
4855 * If we get here the ".swp" file really exists.
4856 * Give an error message, unless recovering, no file name, we are
4857 * viewing a help file or when the path of the file is different
4858 * (happens when all .swp files are in one directory).
4859 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004860 if (!recoverymode && buf_fname != NULL
Bram Moolenaar2debf1c2019-08-04 20:44:19 +02004861 && !buf->b_help
4862 && !(buf->b_flags & (BF_DUMMY | BF_NO_SEA)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 {
4864 int fd;
4865 struct block0 b0;
4866 int differ = FALSE;
4867
4868 /*
4869 * Try to read block 0 from the swap file to get the original
4870 * file name (and inode number).
4871 */
4872 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4873 if (fd >= 0)
4874 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004875 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004876 {
4877 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004878 * If the swapfile has the same directory as the
4879 * buffer don't compare the directory names, they can
4880 * have a different mountpoint.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004882 if (b0.b0_flags & B0_SAME_DIR)
4883 {
4884 if (fnamecmp(gettail(buf->b_ffname),
4885 gettail(b0.b0_fname)) != 0
4886 || !same_directory(fname, buf->b_ffname))
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004887 {
4888#ifdef CHECK_INODE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004889 // Symlinks may point to the same file even
4890 // when the name differs, need to check the
4891 // inode too.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004892 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
4893 if (fnamecmp_ino(buf->b_ffname, NameBuff,
4894 char_to_long(b0.b0_ino)))
4895#endif
4896 differ = TRUE;
4897 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004898 }
4899 else
4900 {
4901 /*
4902 * The name in the swap file may be
4903 * "~user/path/file". Expand it first.
4904 */
4905 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906#ifdef CHECK_INODE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004907 if (fnamecmp_ino(buf->b_ffname, NameBuff,
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004908 char_to_long(b0.b0_ino)))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004909 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910#else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004911 if (fnamecmp(NameBuff, buf->b_ffname) != 0)
4912 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004913#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004914 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 }
4916 close(fd);
4917 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004918
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004919 // give the ATTENTION message when there is an old swap file
4920 // for the current file, and the buffer was not recovered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004921 if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED)
4922 && vim_strchr(p_shm, SHM_ATTENTION) == NULL)
4923 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004924 int choice = 0;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004925 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004926#ifdef CREATE_DUMMY_FILE
4927 int did_use_dummy = FALSE;
4928
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004929 // Avoid getting a warning for the file being created
4930 // outside of Vim, it was created at the start of this
4931 // function. Delete the file now, because Vim might exit
4932 // here if the window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933 if (dummyfd != NULL)
4934 {
4935 fclose(dummyfd);
4936 dummyfd = NULL;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004937 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004938 did_use_dummy = TRUE;
4939 }
4940#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02004942#ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00004943 process_still_running = FALSE;
4944#endif
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004945 // It's safe to delete the swap file if all these are true:
4946 // - the edited file exists
4947 // - the swap file has no changes and looks OK
4948 if (mch_stat((char *)buf->b_fname, &st) == 0
4949 && swapfile_unchanged(fname))
4950 {
4951 choice = 4;
4952 if (p_verbose > 0)
4953 verb_msg(_("Found a swap file that is not useful, deleting it"));
4954 }
4955
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004956#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004957 /*
4958 * If there is an SwapExists autocommand and we can handle
4959 * the response, trigger it. It may return 0 to ask the
4960 * user anyway.
4961 */
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004962 if (choice == 0
4963 && swap_exists_action != SEA_NONE
Bram Moolenaar69c35002013-11-04 02:54:12 +01004964 && has_autocmd(EVENT_SWAPEXISTS, buf_fname, buf))
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004965 choice = do_swapexists(buf, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004967 if (choice == 0)
4968#endif
4969 {
4970#ifdef FEAT_GUI
Bram Moolenaar798184c2018-10-07 20:48:39 +02004971 // If we are supposed to start the GUI but it wasn't
4972 // completely started yet, start it now. This makes
4973 // the messages displayed in the Vim window when
4974 // loading a session from the .gvimrc file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004975 if (gui.starting && !gui.in_use)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02004976 gui_start(NULL);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004977#endif
Bram Moolenaar798184c2018-10-07 20:48:39 +02004978 // Show info about the existing swap file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004979 attention_message(buf, fname);
4980
Bram Moolenaar798184c2018-10-07 20:48:39 +02004981 // We don't want a 'q' typed at the more-prompt
4982 // interrupt loading a file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004983 got_int = FALSE;
Bram Moolenaar798184c2018-10-07 20:48:39 +02004984
4985 // If vimrc has "simalt ~x" we don't want it to
4986 // interfere with the prompt here.
Bram Moolenaar6a2633b2018-10-07 23:16:36 +02004987 flush_buffers(FLUSH_TYPEAHEAD);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004988 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989
4990#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004991 if (swap_exists_action != SEA_NONE && choice == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004992 {
4993 char_u *name;
4994
Bram Moolenaar964b3742019-05-24 18:54:09 +02004995 name = alloc(STRLEN(fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004996 + STRLEN(_("Swap file \""))
Bram Moolenaar964b3742019-05-24 18:54:09 +02004997 + STRLEN(_("\" already exists!")) + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 if (name != NULL)
4999 {
5000 STRCPY(name, _("Swap file \""));
5001 home_replace(NULL, fname, name + STRLEN(name),
5002 1000, TRUE);
5003 STRCAT(name, _("\" already exists!"));
5004 }
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005005 choice = do_dialog(VIM_WARNING,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006 (char_u *)_("VIM - ATTENTION"),
5007 name == NULL
5008 ? (char_u *)_("Swap file already exists!")
5009 : name,
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005010# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005011 process_still_running
5012 ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") :
5013# endif
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005014 (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 +00005015
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005016# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005017 if (process_still_running && choice >= 4)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005018 choice++; // Skip missing "Delete it" button
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005019# endif
5020 vim_free(name);
5021
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005022 // pretend screen didn't scroll, need redraw anyway
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005023 msg_scrolled = 0;
5024 redraw_all_later(NOT_VALID);
5025 }
5026#endif
5027
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005028 if (choice > 0)
5029 {
5030 switch (choice)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031 {
5032 case 1:
5033 buf->b_p_ro = TRUE;
5034 break;
5035 case 2:
5036 break;
5037 case 3:
5038 swap_exists_action = SEA_RECOVER;
5039 break;
5040 case 4:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005041 mch_remove(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005042 break;
5043 case 5:
5044 swap_exists_action = SEA_QUIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045 break;
5046 case 6:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005047 swap_exists_action = SEA_QUIT;
5048 got_int = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005049 break;
5050 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005052 // If the file was deleted this fname can be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005053 if (mch_getperm(fname) < 0)
5054 break;
5055 }
5056 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005058 msg_puts("\n");
Bram Moolenaar4770d092006-01-12 23:22:24 +00005059 if (msg_silent == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005060 // call wait_return() later
Bram Moolenaar4770d092006-01-12 23:22:24 +00005061 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 }
5063
5064#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005065 // Going to try another name, need the dummy file again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005066 if (did_use_dummy)
Bram Moolenaar69c35002013-11-04 02:54:12 +01005067 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005068#endif
5069 }
5070 }
5071 }
5072
5073 /*
5074 * Change the ".swp" extension to find another file that can be used.
5075 * First decrement the last char: ".swo", ".swn", etc.
5076 * If that still isn't enough decrement the last but one char: ".svz"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005077 * Can happen when editing many "No Name" buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005079 if (fname[n - 1] == 'a') // ".s?a"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005081 if (fname[n - 2] == 'a') // ".saa": tried enough, give up
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005083 emsg(_("E326: Too many swap files found"));
Bram Moolenaard23a8232018-02-10 18:45:26 +01005084 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005085 break;
5086 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005087 --fname[n - 2]; // ".svz", ".suz", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005088 fname[n - 1] = 'z' + 1;
5089 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005090 --fname[n - 1]; // ".swo", ".swn", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005091 }
5092
5093 vim_free(dir_name);
5094#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005095 if (dummyfd != NULL) // file has been created temporarily
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 {
5097 fclose(dummyfd);
Bram Moolenaar69c35002013-11-04 02:54:12 +01005098 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099 }
5100#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005101#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01005102 if (buf_fname != buf->b_fname)
5103 vim_free(buf_fname);
5104#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 return fname;
5106}
5107
5108 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005109b0_magic_wrong(ZERO_BL *b0p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110{
5111 return (b0p->b0_magic_long != (long)B0_MAGIC_LONG
5112 || b0p->b0_magic_int != (int)B0_MAGIC_INT
5113 || b0p->b0_magic_short != (short)B0_MAGIC_SHORT
5114 || b0p->b0_magic_char != B0_MAGIC_CHAR);
5115}
5116
5117#ifdef CHECK_INODE
5118/*
5119 * Compare current file name with file name from swap file.
5120 * Try to use inode numbers when possible.
5121 * Return non-zero when files are different.
5122 *
5123 * When comparing file names a few things have to be taken into consideration:
5124 * - When working over a network the full path of a file depends on the host.
5125 * We check the inode number if possible. It is not 100% reliable though,
5126 * because the device number cannot be used over a network.
5127 * - When a file does not exist yet (editing a new file) there is no inode
5128 * number.
5129 * - The file name in a swap file may not be valid on the current host. The
5130 * "~user" form is used whenever possible to avoid this.
5131 *
5132 * This is getting complicated, let's make a table:
5133 *
5134 * ino_c ino_s fname_c fname_s differ =
5135 *
5136 * both files exist -> compare inode numbers:
5137 * != 0 != 0 X X ino_c != ino_s
5138 *
5139 * inode number(s) unknown, file names available -> compare file names
5140 * == 0 X OK OK fname_c != fname_s
5141 * X == 0 OK OK fname_c != fname_s
5142 *
5143 * current file doesn't exist, file for swap file exist, file name(s) not
5144 * available -> probably different
5145 * == 0 != 0 FAIL X TRUE
5146 * == 0 != 0 X FAIL TRUE
5147 *
5148 * current file exists, inode for swap unknown, file name(s) not
5149 * available -> probably different
5150 * != 0 == 0 FAIL X TRUE
5151 * != 0 == 0 X FAIL TRUE
5152 *
5153 * current file doesn't exist, inode for swap unknown, one file name not
5154 * available -> probably different
5155 * == 0 == 0 FAIL OK TRUE
5156 * == 0 == 0 OK FAIL TRUE
5157 *
5158 * current file doesn't exist, inode for swap unknown, both file names not
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005159 * available -> compare file names
5160 * == 0 == 0 FAIL FAIL fname_c != fname_s
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 *
5162 * Note that when the ino_t is 64 bits, only the last 32 will be used. This
5163 * can't be changed without making the block 0 incompatible with 32 bit
5164 * versions.
5165 */
5166
5167 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005168fnamecmp_ino(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005169 char_u *fname_c, // current file name
5170 char_u *fname_s, // file name from swap file
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005171 long ino_block0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005172{
Bram Moolenaar8767f522016-07-01 17:17:39 +02005173 stat_T st;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005174 ino_t ino_c = 0; // ino of current file
5175 ino_t ino_s; // ino of file from swap file
5176 char_u buf_c[MAXPATHL]; // full path of fname_c
5177 char_u buf_s[MAXPATHL]; // full path of fname_s
5178 int retval_c; // flag: buf_c valid
5179 int retval_s; // flag: buf_s valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00005180
5181 if (mch_stat((char *)fname_c, &st) == 0)
5182 ino_c = (ino_t)st.st_ino;
5183
5184 /*
5185 * First we try to get the inode from the file name, because the inode in
5186 * the swap file may be outdated. If that fails (e.g. this path is not
5187 * valid on this machine), use the inode from block 0.
5188 */
5189 if (mch_stat((char *)fname_s, &st) == 0)
5190 ino_s = (ino_t)st.st_ino;
5191 else
5192 ino_s = (ino_t)ino_block0;
5193
5194 if (ino_c && ino_s)
5195 return (ino_c != ino_s);
5196
5197 /*
5198 * One of the inode numbers is unknown, try a forced vim_FullName() and
5199 * compare the file names.
5200 */
5201 retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE);
5202 retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE);
5203 if (retval_c == OK && retval_s == OK)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005204 return STRCMP(buf_c, buf_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205
5206 /*
5207 * Can't compare inodes or file names, guess that the files are different,
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005208 * unless both appear not to exist at all, then compare with the file name
5209 * in the swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005210 */
5211 if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005212 return STRCMP(fname_c, fname_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005213 return TRUE;
5214}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005215#endif // CHECK_INODE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216
5217/*
5218 * Move a long integer into a four byte character array.
5219 * Used for machine independency in block zero.
5220 */
5221 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005222long_to_char(long n, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005223{
5224 s[0] = (char_u)(n & 0xff);
5225 n = (unsigned)n >> 8;
5226 s[1] = (char_u)(n & 0xff);
5227 n = (unsigned)n >> 8;
5228 s[2] = (char_u)(n & 0xff);
5229 n = (unsigned)n >> 8;
5230 s[3] = (char_u)(n & 0xff);
5231}
5232
5233 static long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005234char_to_long(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235{
5236 long retval;
5237
5238 retval = s[3];
5239 retval <<= 8;
5240 retval |= s[2];
5241 retval <<= 8;
5242 retval |= s[1];
5243 retval <<= 8;
5244 retval |= s[0];
5245
5246 return retval;
5247}
5248
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005249/*
5250 * Set the flags in the first block of the swap file:
5251 * - file is modified or not: buf->b_changed
5252 * - 'fileformat'
5253 * - 'fileencoding'
5254 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005255 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005256ml_setflags(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005257{
5258 bhdr_T *hp;
5259 ZERO_BL *b0p;
5260
5261 if (!buf->b_ml.ml_mfp)
5262 return;
5263 for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
5264 {
5265 if (hp->bh_bnum == 0)
5266 {
5267 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005268 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
5269 b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK)
5270 | (get_fileformat(buf) + 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005271 add_b0_fenc(b0p, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272 hp->bh_flags |= BH_DIRTY;
5273 mf_sync(buf->b_ml.ml_mfp, MFS_ZERO);
5274 break;
5275 }
5276 }
5277}
5278
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005279#if defined(FEAT_CRYPT) || defined(PROTO)
5280/*
5281 * If "data" points to a data block encrypt the text in it and return a copy
5282 * in allocated memory. Return NULL when out of memory.
5283 * Otherwise return "data".
5284 */
5285 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005286ml_encrypt_data(
5287 memfile_T *mfp,
5288 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005289 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005290 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005291{
5292 DATA_BL *dp = (DATA_BL *)data;
5293 char_u *head_end;
5294 char_u *text_start;
5295 char_u *new_data;
5296 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005297 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005298
5299 if (dp->db_id != DATA_ID)
5300 return data;
5301
Bram Moolenaarbc563362015-06-09 18:35:25 +02005302 state = ml_crypt_prepare(mfp, offset, FALSE);
5303 if (state == NULL)
5304 return data;
5305
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005306 new_data = alloc(size);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005307 if (new_data == NULL)
5308 return NULL;
5309 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5310 text_start = (char_u *)dp + dp->db_txt_start;
5311 text_len = size - dp->db_txt_start;
5312
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005313 // Copy the header and the text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005314 mch_memmove(new_data, dp, head_end - (char_u *)dp);
5315
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005316 // Encrypt the text.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005317 crypt_encode(state, text_start, text_len, new_data + dp->db_txt_start);
5318 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005319
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005320 // Clear the gap.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005321 if (head_end < text_start)
5322 vim_memset(new_data + (head_end - data), 0, text_start - head_end);
5323
5324 return new_data;
5325}
5326
5327/*
Bram Moolenaarbc563362015-06-09 18:35:25 +02005328 * Decrypt the text in "data" if it points to an encrypted data block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005329 */
5330 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005331ml_decrypt_data(
5332 memfile_T *mfp,
5333 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005334 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005335 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005336{
5337 DATA_BL *dp = (DATA_BL *)data;
5338 char_u *head_end;
5339 char_u *text_start;
5340 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005341 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005342
5343 if (dp->db_id == DATA_ID)
5344 {
5345 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5346 text_start = (char_u *)dp + dp->db_txt_start;
5347 text_len = dp->db_txt_end - dp->db_txt_start;
5348
5349 if (head_end > text_start || dp->db_txt_start > size
5350 || dp->db_txt_end > size)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005351 return; // data was messed up
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005352
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005353 state = ml_crypt_prepare(mfp, offset, TRUE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005354 if (state != NULL)
5355 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005356 // Decrypt the text in place.
Bram Moolenaarbc563362015-06-09 18:35:25 +02005357 crypt_decode_inplace(state, text_start, text_len);
5358 crypt_free_state(state);
5359 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005360 }
5361}
5362
5363/*
5364 * Prepare for encryption/decryption, using the key, seed and offset.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005365 * Return an allocated cryptstate_T *.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005366 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005367 static cryptstate_T *
Bram Moolenaar8767f522016-07-01 17:17:39 +02005368ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005369{
5370 buf_T *buf = mfp->mf_buffer;
5371 char_u salt[50];
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005372 int method_nr;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005373 char_u *key;
5374 char_u *seed;
5375
5376 if (reading && mfp->mf_old_key != NULL)
5377 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005378 // Reading back blocks with the previous key/method/seed.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005379 method_nr = mfp->mf_old_cm;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005380 key = mfp->mf_old_key;
5381 seed = mfp->mf_old_seed;
5382 }
5383 else
5384 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005385 method_nr = crypt_get_method_nr(buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005386 key = buf->b_p_key;
5387 seed = mfp->mf_seed;
5388 }
Bram Moolenaarbc563362015-06-09 18:35:25 +02005389 if (*key == NUL)
5390 return NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005391
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005392 if (method_nr == CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005393 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005394 // For PKzip: Append the offset to the key, so that we use a different
5395 // key for every block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005396 vim_snprintf((char *)salt, sizeof(salt), "%s%ld", key, (long)offset);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005397 return crypt_create(method_nr, salt, NULL, 0, NULL, 0);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005398 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005399
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005400 // Using blowfish or better: add salt and seed. We use the byte offset
5401 // of the block for the salt.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005402 vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
5403 return crypt_create(method_nr, key, salt, (int)STRLEN(salt),
5404 seed, MF_SEED_LEN);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005405}
5406
5407#endif
5408
5409
Bram Moolenaar071d4272004-06-13 20:20:40 +00005410#if defined(FEAT_BYTEOFF) || defined(PROTO)
5411
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005412#define MLCS_MAXL 800 // max no of lines in chunk
5413#define MLCS_MINL 400 // should be half of MLCS_MAXL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005414
5415/*
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02005416 * Keep information for finding byte offset of a line, updtype may be one of:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005417 * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it
5418 * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called.
5419 * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it
5420 * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity.
5421 */
5422 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005423ml_updatechunk(
5424 buf_T *buf,
5425 linenr_T line,
5426 long len,
5427 int updtype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005428{
5429 static buf_T *ml_upd_lastbuf = NULL;
5430 static linenr_T ml_upd_lastline;
5431 static linenr_T ml_upd_lastcurline;
5432 static int ml_upd_lastcurix;
5433
5434 linenr_T curline = ml_upd_lastcurline;
5435 int curix = ml_upd_lastcurix;
5436 long size;
5437 chunksize_T *curchnk;
5438 int rest;
5439 bhdr_T *hp;
5440 DATA_BL *dp;
5441
5442 if (buf->b_ml.ml_usedchunks == -1 || len == 0)
5443 return;
5444 if (buf->b_ml.ml_chunksize == NULL)
5445 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005446 buf->b_ml.ml_chunksize = ALLOC_MULT(chunksize_T, 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005447 if (buf->b_ml.ml_chunksize == NULL)
5448 {
5449 buf->b_ml.ml_usedchunks = -1;
5450 return;
5451 }
5452 buf->b_ml.ml_numchunks = 100;
5453 buf->b_ml.ml_usedchunks = 1;
5454 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
5455 buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1;
5456 }
5457
5458 if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1)
5459 {
5460 /*
5461 * First line in empty buffer from ml_flush_line() -- reset
5462 */
5463 buf->b_ml.ml_usedchunks = 1;
5464 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01005465 buf->b_ml.ml_chunksize[0].mlcs_totalsize = (long)buf->b_ml.ml_line_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005466 return;
5467 }
5468
5469 /*
5470 * Find chunk that our line belongs to, curline will be at start of the
5471 * chunk.
5472 */
5473 if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1
5474 || updtype != ML_CHNK_ADDLINE)
5475 {
5476 for (curline = 1, curix = 0;
5477 curix < buf->b_ml.ml_usedchunks - 1
5478 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5479 curix++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005481 }
Bram Moolenaara9a8e042018-10-30 22:15:55 +01005482 else if (curix < buf->b_ml.ml_usedchunks - 1
5483 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005484 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005485 // Adjust cached curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005486 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5487 curix++;
5488 }
5489 curchnk = buf->b_ml.ml_chunksize + curix;
5490
5491 if (updtype == ML_CHNK_DELLINE)
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00005492 len = -len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005493 curchnk->mlcs_totalsize += len;
5494 if (updtype == ML_CHNK_ADDLINE)
5495 {
5496 curchnk->mlcs_numlines++;
5497
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005498 // May resize here so we don't have to do it in both cases below
Bram Moolenaar071d4272004-06-13 20:20:40 +00005499 if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks)
5500 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005501 chunksize_T *t_chunksize = buf->b_ml.ml_chunksize;
5502
Bram Moolenaar071d4272004-06-13 20:20:40 +00005503 buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2;
Bram Moolenaar51b6eb42020-08-22 15:19:18 +02005504 buf->b_ml.ml_chunksize = vim_realloc(buf->b_ml.ml_chunksize,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005505 sizeof(chunksize_T) * buf->b_ml.ml_numchunks);
5506 if (buf->b_ml.ml_chunksize == NULL)
5507 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005508 // Hmmmm, Give up on offset for this buffer
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005509 vim_free(t_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005510 buf->b_ml.ml_usedchunks = -1;
5511 return;
5512 }
5513 }
5514
5515 if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL)
5516 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005517 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005518 int idx;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005519 int end_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005520 int text_end;
5521 int linecnt;
5522
5523 mch_memmove(buf->b_ml.ml_chunksize + curix + 1,
5524 buf->b_ml.ml_chunksize + curix,
5525 (buf->b_ml.ml_usedchunks - curix) *
5526 sizeof(chunksize_T));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005527 // Compute length of first half of lines in the split chunk
Bram Moolenaar071d4272004-06-13 20:20:40 +00005528 size = 0;
5529 linecnt = 0;
5530 while (curline < buf->b_ml.ml_line_count
5531 && linecnt < MLCS_MINL)
5532 {
5533 if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5534 {
5535 buf->b_ml.ml_usedchunks = -1;
5536 return;
5537 }
5538 dp = (DATA_BL *)(hp->bh_data);
5539 count = (long)(buf->b_ml.ml_locked_high) -
5540 (long)(buf->b_ml.ml_locked_low) + 1;
5541 idx = curline - buf->b_ml.ml_locked_low;
5542 curline = buf->b_ml.ml_locked_high + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005543
5544 // compute index of last line to use in this MEMLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005545 rest = count - idx;
5546 if (linecnt + rest > MLCS_MINL)
5547 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005548 end_idx = idx + MLCS_MINL - linecnt - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005549 linecnt = MLCS_MINL;
5550 }
5551 else
5552 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005553 end_idx = count - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005554 linecnt += rest;
5555 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005556#ifdef FEAT_PROP_POPUP
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005557 if (buf->b_has_textprop)
5558 {
5559 int i;
5560
5561 // We cannot use the text pointers to get the text length,
5562 // the text prop info would also be counted. Go over the
5563 // lines.
5564 for (i = end_idx; i < idx; ++i)
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01005565 size += (int)STRLEN((char_u *)dp + (dp->db_index[i] & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005566 }
5567 else
5568#endif
5569 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005570 if (idx == 0)// first line in block, text at the end
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005571 text_end = dp->db_txt_end;
5572 else
5573 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
5574 size += text_end - ((dp->db_index[end_idx]) & DB_INDEX_MASK);
5575 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 }
5577 buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt;
5578 buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt;
5579 buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size;
5580 buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size;
5581 buf->b_ml.ml_usedchunks++;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005582 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005583 return;
5584 }
5585 else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL
5586 && curix == buf->b_ml.ml_usedchunks - 1
5587 && buf->b_ml.ml_line_count - line <= 1)
5588 {
5589 /*
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005590 * We are in the last chunk and it is cheap to create a new one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005591 * after this. Do it now to avoid the loop above later on
5592 */
5593 curchnk = buf->b_ml.ml_chunksize + curix + 1;
5594 buf->b_ml.ml_usedchunks++;
5595 if (line == buf->b_ml.ml_line_count)
5596 {
5597 curchnk->mlcs_numlines = 0;
5598 curchnk->mlcs_totalsize = 0;
5599 }
5600 else
5601 {
5602 /*
5603 * Line is just prior to last, move count for last
5604 * This is the common case when loading a new file
5605 */
5606 hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND);
5607 if (hp == NULL)
5608 {
5609 buf->b_ml.ml_usedchunks = -1;
5610 return;
5611 }
5612 dp = (DATA_BL *)(hp->bh_data);
5613 if (dp->db_line_count == 1)
5614 rest = dp->db_txt_end - dp->db_txt_start;
5615 else
5616 rest =
5617 ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK)
5618 - dp->db_txt_start;
5619 curchnk->mlcs_totalsize = rest;
5620 curchnk->mlcs_numlines = 1;
5621 curchnk[-1].mlcs_totalsize -= rest;
5622 curchnk[-1].mlcs_numlines -= 1;
5623 }
5624 }
5625 }
5626 else if (updtype == ML_CHNK_DELLINE)
5627 {
5628 curchnk->mlcs_numlines--;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005629 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 if (curix < (buf->b_ml.ml_usedchunks - 1)
5631 && (curchnk->mlcs_numlines + curchnk[1].mlcs_numlines)
5632 <= MLCS_MINL)
5633 {
5634 curix++;
5635 curchnk = buf->b_ml.ml_chunksize + curix;
5636 }
5637 else if (curix == 0 && curchnk->mlcs_numlines <= 0)
5638 {
5639 buf->b_ml.ml_usedchunks--;
5640 mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1,
5641 buf->b_ml.ml_usedchunks * sizeof(chunksize_T));
5642 return;
5643 }
5644 else if (curix == 0 || (curchnk->mlcs_numlines > 10
5645 && (curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines)
5646 > MLCS_MINL))
5647 {
5648 return;
5649 }
5650
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005651 // Collapse chunks
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines;
5653 curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize;
5654 buf->b_ml.ml_usedchunks--;
5655 if (curix < buf->b_ml.ml_usedchunks)
5656 {
5657 mch_memmove(buf->b_ml.ml_chunksize + curix,
5658 buf->b_ml.ml_chunksize + curix + 1,
5659 (buf->b_ml.ml_usedchunks - curix) *
5660 sizeof(chunksize_T));
5661 }
5662 return;
5663 }
5664 ml_upd_lastbuf = buf;
5665 ml_upd_lastline = line;
5666 ml_upd_lastcurline = curline;
5667 ml_upd_lastcurix = curix;
5668}
5669
5670/*
5671 * Find offset for line or line with offset.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005672 * Find line with offset if "lnum" is 0; return remaining offset in offp
5673 * Find offset of line if "lnum" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005674 * return -1 if information is not available
5675 */
5676 long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005677ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678{
5679 linenr_T curline;
5680 int curix;
5681 long size;
5682 bhdr_T *hp;
5683 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005684 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 int idx;
5686 int start_idx;
5687 int text_end;
5688 long offset;
5689 int len;
5690 int ffdos = (get_fileformat(buf) == EOL_DOS);
5691 int extra = 0;
5692
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005693 // take care of cached line first
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005694 ml_flush_line(curbuf);
5695
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696 if (buf->b_ml.ml_usedchunks == -1
5697 || buf->b_ml.ml_chunksize == NULL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005698 || lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005699 return -1;
5700
5701 if (offp == NULL)
5702 offset = 0;
5703 else
5704 offset = *offp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005705 if (lnum == 0 && offset <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005706 return 1; // Not a "find offset" and offset 0 _must_ be in line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005707 /*
5708 * Find the last chunk before the one containing our line. Last chunk is
5709 * special because it will never qualify
5710 */
5711 curline = 1;
5712 curix = size = 0;
5713 while (curix < buf->b_ml.ml_usedchunks - 1
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005714 && ((lnum != 0
5715 && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005716 || (offset != 0
5717 && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize
5718 + ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines)))
5719 {
5720 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5721 size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize;
5722 if (offset && ffdos)
5723 size += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5724 curix++;
5725 }
5726
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005727 while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005728 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005729#ifdef FEAT_PROP_POPUP
5730 size_t textprop_total = 0;
5731#endif
5732
Bram Moolenaar071d4272004-06-13 20:20:40 +00005733 if (curline > buf->b_ml.ml_line_count
5734 || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5735 return -1;
5736 dp = (DATA_BL *)(hp->bh_data);
5737 count = (long)(buf->b_ml.ml_locked_high) -
5738 (long)(buf->b_ml.ml_locked_low) + 1;
5739 start_idx = idx = curline - buf->b_ml.ml_locked_low;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005740 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 text_end = dp->db_txt_end;
5742 else
5743 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005744 // Compute index of last line to use in this MEMLINE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005745 if (lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005747 if (curline + (count - idx) >= lnum)
5748 idx += lnum - curline - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005749 else
5750 idx = count - 1;
5751 }
5752 else
5753 {
5754 extra = 0;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005755 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756 {
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005757#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005758 size_t textprop_size = 0;
5759
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005760 if (buf->b_has_textprop)
5761 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005762 char_u *l1, *l2;
5763
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005764 // compensate for the extra bytes taken by textprops
5765 l1 = (char_u *)dp + ((dp->db_index[idx]) & DB_INDEX_MASK);
5766 l2 = (char_u *)dp + (idx == 0 ? dp->db_txt_end
5767 : ((dp->db_index[idx - 1]) & DB_INDEX_MASK));
5768 textprop_size = (l2 - l1) - (STRLEN(l1) + 1);
5769 }
5770#endif
5771 if (!(offset >= size
5772 + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK)
5773#ifdef FEAT_PROP_POPUP
Bram Moolenaar94b6fb72020-01-17 21:00:59 +01005774 - (long)(textprop_total + textprop_size)
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005775#endif
5776 + ffdos))
5777 break;
5778
Bram Moolenaar071d4272004-06-13 20:20:40 +00005779 if (ffdos)
5780 size++;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005781#ifdef FEAT_PROP_POPUP
5782 textprop_total += textprop_size;
5783#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 if (idx == count - 1)
5785 {
5786 extra = 1;
5787 break;
5788 }
5789 idx++;
5790 }
5791 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005792#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005793 if (buf->b_has_textprop && lnum != 0)
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005794 {
5795 int i;
5796
5797 // cannot use the db_index pointer, need to get the actual text
5798 // lengths.
5799 len = 0;
5800 for (i = start_idx; i <= idx; ++i)
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005801 {
5802 char_u *p = (char_u *)dp + ((dp->db_index[i]) & DB_INDEX_MASK);
5803 len += (int)STRLEN(p) + 1;
5804 }
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005805 }
5806 else
5807#endif
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005808 len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK)
5809#ifdef FEAT_PROP_POPUP
5810 - (long)textprop_total
5811#endif
5812 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 size += len;
5814 if (offset != 0 && size >= offset)
5815 {
5816 if (size + ffdos == offset)
5817 *offp = 0;
5818 else if (idx == start_idx)
5819 *offp = offset - size + len;
5820 else
5821 *offp = offset - size + len
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005822 - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK))
5823#ifdef FEAT_PROP_POPUP
5824 + (long)textprop_total
5825#endif
5826 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 curline += idx - start_idx + extra;
5828 if (curline > buf->b_ml.ml_line_count)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005829 return -1; // exactly one byte beyond the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005830 return curline;
5831 }
5832 curline = buf->b_ml.ml_locked_high + 1;
5833 }
5834
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005835 if (lnum != 0)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005836 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005837 // Count extra CR characters.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005838 if (ffdos)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005839 size += lnum - 1;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005840
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005841 // Don't count the last line break if 'noeol' and ('bin' or
5842 // 'nofixeol').
Bram Moolenaar34d72d42015-07-17 14:18:08 +02005843 if ((!buf->b_p_fixeol || buf->b_p_bin) && !buf->b_p_eol
Bram Moolenaarc26f7c62018-08-20 22:53:04 +02005844 && lnum > buf->b_ml.ml_line_count)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005845 size -= ffdos + 1;
5846 }
5847
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 return size;
5849}
5850
5851/*
5852 * Goto byte in buffer with offset 'cnt'.
5853 */
5854 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005855goto_byte(long cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856{
5857 long boff = cnt;
5858 linenr_T lnum;
5859
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005860 ml_flush_line(curbuf); // cached line may be dirty
Bram Moolenaar071d4272004-06-13 20:20:40 +00005861 setpcmark();
5862 if (boff)
5863 --boff;
5864 lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005865 if (lnum < 1) // past the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866 {
5867 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5868 curwin->w_curswant = MAXCOL;
5869 coladvance((colnr_T)MAXCOL);
5870 }
5871 else
5872 {
5873 curwin->w_cursor.lnum = lnum;
5874 curwin->w_cursor.col = (colnr_T)boff;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005875 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 curwin->w_set_curswant = TRUE;
5877 }
5878 check_cursor();
5879
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005880 // Make sure the cursor is on the first byte of a multi-byte char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005881 if (has_mbyte)
5882 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005883}
5884#endif