blob: 3b09a7dd4975a0f05ed97252daa0f919b04e0a70 [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
Christian Brabandtf573c6e2021-06-20 14:02:16 +020051// for randombytes_buf
52#ifdef FEAT_SODIUM
53# include <sodium.h>
54#endif
55
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000056#if defined(SASC) || defined(__amigaos4__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010057# include <proto/dos.h> // for Open() and Close()
Bram Moolenaar071d4272004-06-13 20:20:40 +000058#endif
59
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010060typedef struct block0 ZERO_BL; // contents of the first block
61typedef struct pointer_block PTR_BL; // contents of a pointer block
62typedef struct data_block DATA_BL; // contents of a data block
63typedef struct pointer_entry PTR_EN; // block/line-count pair
Bram Moolenaar071d4272004-06-13 20:20:40 +000064
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010065#define DATA_ID (('d' << 8) + 'a') // data block id
66#define PTR_ID (('p' << 8) + 't') // pointer block id
67#define BLOCK0_ID0 'b' // block 0 id 0
68#define BLOCK0_ID1 '0' // block 0 id 1
69#define BLOCK0_ID1_C0 'c' // block 0 id 1 'cm' 0
70#define BLOCK0_ID1_C1 'C' // block 0 id 1 'cm' 1
71#define BLOCK0_ID1_C2 'd' // block 0 id 1 'cm' 2
Christian Brabandtf573c6e2021-06-20 14:02:16 +020072#define BLOCK0_ID1_C3 'S' // block 0 id 1 'cm' 3 - but not actually used
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020073
74#if defined(FEAT_CRYPT)
75static int id1_codes[] = {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010076 BLOCK0_ID1_C0, // CRYPT_M_ZIP
77 BLOCK0_ID1_C1, // CRYPT_M_BF
78 BLOCK0_ID1_C2, // CRYPT_M_BF2
Christian Brabandtf573c6e2021-06-20 14:02:16 +020079 BLOCK0_ID1_C3, // CRYPT_M_SOD - Unused!
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020080};
81#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000082
83/*
84 * pointer to a block, used in a pointer block
85 */
86struct pointer_entry
87{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010088 blocknr_T pe_bnum; // block number
89 linenr_T pe_line_count; // number of lines in this branch
90 linenr_T pe_old_lnum; // lnum for this block (for recovery)
91 int pe_page_count; // number of pages in block pe_bnum
Bram Moolenaar071d4272004-06-13 20:20:40 +000092};
93
94/*
95 * A pointer block contains a list of branches in the tree.
96 */
97struct pointer_block
98{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010099 short_u pb_id; // ID for pointer block: PTR_ID
100 short_u pb_count; // number of pointers in this block
101 short_u pb_count_max; // maximum value for pb_count
102 PTR_EN pb_pointer[1]; // list of pointers to blocks (actually longer)
103 // followed by empty space until end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104};
105
106/*
107 * A data block is a leaf in the tree.
108 *
109 * The text of the lines is at the end of the block. The text of the first line
110 * in the block is put at the end, the text of the second line in front of it,
111 * etc. Thus the order of the lines is the opposite of the line number.
112 */
113struct data_block
114{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100115 short_u db_id; // ID for data block: DATA_ID
116 unsigned db_free; // free space available
117 unsigned db_txt_start; // byte where text starts
118 unsigned db_txt_end; // byte just after data block
119 linenr_T db_line_count; // number of lines in this block
120 unsigned db_index[1]; // index for start of line (actually bigger)
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100121 // followed by empty space up to db_txt_start
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100122 // followed by the text in the lines until
123 // end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000124};
125
126/*
127 * The low bits of db_index hold the actual index. The topmost bit is
128 * used for the global command to be able to mark a line.
129 * This method is not clean, but otherwise there would be at least one extra
130 * byte used for each line.
131 * The mark has to be in this place to keep it with the correct line when other
132 * lines are inserted or deleted.
133 */
134#define DB_MARKED ((unsigned)1 << ((sizeof(unsigned) * 8) - 1))
135#define DB_INDEX_MASK (~DB_MARKED)
136
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100137#define INDEX_SIZE (sizeof(unsigned)) // size of one db_index entry
138#define HEADER_SIZE (sizeof(DATA_BL) - INDEX_SIZE) // size of data block header
Bram Moolenaar071d4272004-06-13 20:20:40 +0000139
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100140#define B0_FNAME_SIZE_ORG 900 // what it was in older versions
141#define B0_FNAME_SIZE_NOCRYPT 898 // 2 bytes used for other things
142#define B0_FNAME_SIZE_CRYPT 890 // 10 bytes used for other things
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000143#define B0_UNAME_SIZE 40
144#define B0_HNAME_SIZE 40
Bram Moolenaar071d4272004-06-13 20:20:40 +0000145/*
146 * Restrict the numbers to 32 bits, otherwise most compilers will complain.
147 * This won't detect a 64 bit machine that only swaps a byte in the top 32
148 * bits, but that is crazy anyway.
149 */
150#define B0_MAGIC_LONG 0x30313233L
151#define B0_MAGIC_INT 0x20212223L
152#define B0_MAGIC_SHORT 0x10111213L
153#define B0_MAGIC_CHAR 0x55
154
155/*
156 * Block zero holds all info about the swap file.
157 *
158 * NOTE: DEFINITION OF BLOCK 0 SHOULD NOT CHANGE! It would make all existing
159 * swap files unusable!
160 *
161 * If size of block0 changes anyway, adjust MIN_SWAP_PAGE_SIZE in vim.h!!
162 *
Bram Moolenaarbae0c162007-05-10 19:30:25 +0000163 * This block is built up of single bytes, to make it portable across
Bram Moolenaar071d4272004-06-13 20:20:40 +0000164 * different machines. b0_magic_* is used to check the byte order and size of
165 * variables, because the rest of the swap file is not portable.
166 */
167struct block0
168{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100169 char_u b0_id[2]; // id for block 0: BLOCK0_ID0 and BLOCK0_ID1,
170 // BLOCK0_ID1_C0, BLOCK0_ID1_C1, etc.
171 char_u b0_version[10]; // Vim version string
172 char_u b0_page_size[4];// number of bytes per page
173 char_u b0_mtime[4]; // last modification time of file
174 char_u b0_ino[4]; // inode of b0_fname
175 char_u b0_pid[4]; // process id of creator (or 0)
176 char_u b0_uname[B0_UNAME_SIZE]; // name of user (uid if no name)
177 char_u b0_hname[B0_HNAME_SIZE]; // host name (if it has a name)
178 char_u b0_fname[B0_FNAME_SIZE_ORG]; // name of file being edited
179 long b0_magic_long; // check for byte order of long
180 int b0_magic_int; // check for byte order of int
181 short b0_magic_short; // check for byte order of short
182 char_u b0_magic_char; // check for last char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000183};
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000184
185/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000186 * Note: b0_dirty and b0_flags are put at the end of the file name. For very
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000187 * long file names in older versions of Vim they are invalid.
188 * The 'fileencoding' comes before b0_flags, with a NUL in front. But only
189 * when there is room, for very long file names it's omitted.
190 */
191#define B0_DIRTY 0x55
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200192#define b0_dirty b0_fname[B0_FNAME_SIZE_ORG - 1]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000193
194/*
195 * The b0_flags field is new in Vim 7.0.
196 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200197#define b0_flags b0_fname[B0_FNAME_SIZE_ORG - 2]
198
199/*
200 * Crypt seed goes here, 8 bytes. New in Vim 7.3.
201 * Without encryption these bytes may be used for 'fenc'.
202 */
203#define b0_seed b0_fname[B0_FNAME_SIZE_ORG - 2 - MF_SEED_LEN]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000204
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100205// The lowest two bits contain the fileformat. Zero means it's not set
206// (compatible with Vim 6.x), otherwise it's EOL_UNIX + 1, EOL_DOS + 1 or
207// EOL_MAC + 1.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000208#define B0_FF_MASK 3
209
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100210// Swap file is in directory of edited file. Used to find the file from
211// different mount points.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000212#define B0_SAME_DIR 4
213
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100214// The 'fileencoding' is at the end of b0_fname[], with a NUL in front of it.
215// When empty there is only the NUL.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000216#define B0_HAS_FENC 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100218#define STACK_INCR 5 // nr of entries added to ml_stack at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +0000219
220/*
221 * The line number where the first mark may be is remembered.
222 * If it is 0 there are no marks at all.
223 * (always used for the current buffer only, no buffer change possible while
224 * executing a global command).
225 */
226static linenr_T lowest_marked = 0;
227
228/*
229 * arguments for ml_find_line()
230 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100231#define ML_DELETE 0x11 // delete line
232#define ML_INSERT 0x12 // insert line
233#define ML_FIND 0x13 // just find the line
234#define ML_FLUSH 0x02 // flush locked block
235#define ML_SIMPLE(x) (x & 0x10) // DEL, INS or FIND
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100237// argument for ml_upd_block0()
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200238typedef enum {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100239 UB_FNAME = 0 // update timestamp and filename
240 , UB_SAME_DIR // update the B0_SAME_DIR flag
241 , UB_CRYPT // update crypt key
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200242} upd_block0_T;
243
244#ifdef FEAT_CRYPT
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100245static void ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200246#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100247static void ml_upd_block0(buf_T *buf, upd_block0_T what);
248static void set_b0_fname(ZERO_BL *, buf_T *buf);
249static void set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100250static void add_b0_fenc(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100251static time_t swapfile_info(char_u *);
252static int recov_file_names(char_u **, char_u *, int prepend_dot);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100253static char_u *findswapname(buf_T *, char_u **, char_u *);
254static void ml_flush_line(buf_T *);
255static bhdr_T *ml_new_data(memfile_T *, int, int);
256static bhdr_T *ml_new_ptr(memfile_T *);
257static bhdr_T *ml_find_line(buf_T *, linenr_T, int);
258static int ml_add_stack(buf_T *);
259static void ml_lineadd(buf_T *, int);
260static int b0_magic_wrong(ZERO_BL *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261#ifdef CHECK_INODE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100262static int fnamecmp_ino(char_u *, char_u *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000263#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100264static void long_to_char(long, char_u *);
265static long char_to_long(char_u *);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200266#ifdef FEAT_CRYPT
Bram Moolenaar8767f522016-07-01 17:17:39 +0200267static cryptstate_T *ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200268#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269#ifdef FEAT_BYTEOFF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100270static void ml_updatechunk(buf_T *buf, long line, long len, int updtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000271#endif
272
273/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000274 * Open a new memline for "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 *
Bram Moolenaar4770d092006-01-12 23:22:24 +0000276 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277 */
278 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100279ml_open(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280{
281 memfile_T *mfp;
282 bhdr_T *hp = NULL;
283 ZERO_BL *b0p;
284 PTR_BL *pp;
285 DATA_BL *dp;
286
Bram Moolenaar4770d092006-01-12 23:22:24 +0000287 /*
288 * init fields in memline struct
289 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100290 buf->b_ml.ml_stack_size = 0; // no stack yet
291 buf->b_ml.ml_stack = NULL; // no stack yet
292 buf->b_ml.ml_stack_top = 0; // nothing in the stack
293 buf->b_ml.ml_locked = NULL; // no cached block
294 buf->b_ml.ml_line_lnum = 0; // no cached line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000295#ifdef FEAT_BYTEOFF
Bram Moolenaar4770d092006-01-12 23:22:24 +0000296 buf->b_ml.ml_chunksize = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000297#endif
298
Bram Moolenaare1004402020-10-24 20:49:43 +0200299 if (cmdmod.cmod_flags & CMOD_NOSWAPFILE)
Bram Moolenaar5803ae62014-03-23 16:04:02 +0100300 buf->b_p_swf = FALSE;
301
Bram Moolenaar4770d092006-01-12 23:22:24 +0000302 /*
303 * When 'updatecount' is non-zero swap file may be opened later.
304 */
305 if (p_uc && buf->b_p_swf)
306 buf->b_may_swap = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000307 else
Bram Moolenaar4770d092006-01-12 23:22:24 +0000308 buf->b_may_swap = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309
Bram Moolenaar4770d092006-01-12 23:22:24 +0000310 /*
311 * Open the memfile. No swap file is created yet.
312 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313 mfp = mf_open(NULL, 0);
314 if (mfp == NULL)
315 goto error;
316
Bram Moolenaar4770d092006-01-12 23:22:24 +0000317 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200318#ifdef FEAT_CRYPT
319 mfp->mf_buffer = buf;
320#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000321 buf->b_ml.ml_flags = ML_EMPTY;
322 buf->b_ml.ml_line_count = 1;
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000323#ifdef FEAT_LINEBREAK
324 curwin->w_nrwidth_line_count = 0;
325#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327/*
328 * fill block0 struct and write page 0
329 */
330 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
331 goto error;
332 if (hp->bh_bnum != 0)
333 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100334 iemsg(_("E298: Didn't get block nr 0?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000335 goto error;
336 }
337 b0p = (ZERO_BL *)(hp->bh_data);
338
339 b0p->b0_id[0] = BLOCK0_ID0;
340 b0p->b0_id[1] = BLOCK0_ID1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000341 b0p->b0_magic_long = (long)B0_MAGIC_LONG;
342 b0p->b0_magic_int = (int)B0_MAGIC_INT;
343 b0p->b0_magic_short = (short)B0_MAGIC_SHORT;
344 b0p->b0_magic_char = B0_MAGIC_CHAR;
Bram Moolenaar22c10562018-05-26 17:35:27 +0200345 mch_memmove(b0p->b0_version, "VIM ", 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346 STRNCPY(b0p->b0_version + 4, Version, 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 long_to_char((long)mfp->mf_page_size, b0p->b0_page_size);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000348
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000349#ifdef FEAT_SPELL
350 if (!buf->b_spell)
351#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000352 {
353 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
354 b0p->b0_flags = get_fileformat(buf) + 1;
355 set_b0_fname(b0p, buf);
356 (void)get_user_name(b0p->b0_uname, B0_UNAME_SIZE);
357 b0p->b0_uname[B0_UNAME_SIZE - 1] = NUL;
358 mch_get_host_name(b0p->b0_hname, B0_HNAME_SIZE);
359 b0p->b0_hname[B0_HNAME_SIZE - 1] = NUL;
360 long_to_char(mch_get_pid(), b0p->b0_pid);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200361#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200362 ml_set_b0_crypt(buf, b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200363#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000364 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000365
366 /*
367 * Always sync block number 0 to disk, so we can check the file name in
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200368 * the swap file in findswapname(). Don't do this for a help files or
369 * a spell buffer though.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000370 * Only works when there's a swapfile, otherwise it's done when the file
371 * is created.
372 */
373 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000374 if (!buf->b_help && !B_SPELL(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000375 (void)mf_sync(mfp, 0);
376
Bram Moolenaar4770d092006-01-12 23:22:24 +0000377 /*
378 * Fill in root pointer block and write page 1.
379 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000380 if ((hp = ml_new_ptr(mfp)) == NULL)
381 goto error;
382 if (hp->bh_bnum != 1)
383 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100384 iemsg(_("E298: Didn't get block nr 1?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000385 goto error;
386 }
387 pp = (PTR_BL *)(hp->bh_data);
388 pp->pb_count = 1;
389 pp->pb_pointer[0].pe_bnum = 2;
390 pp->pb_pointer[0].pe_page_count = 1;
391 pp->pb_pointer[0].pe_old_lnum = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100392 pp->pb_pointer[0].pe_line_count = 1; // line count after insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000393 mf_put(mfp, hp, TRUE, FALSE);
394
Bram Moolenaar4770d092006-01-12 23:22:24 +0000395 /*
396 * Allocate first data block and create an empty line 1.
397 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000398 if ((hp = ml_new_data(mfp, FALSE, 1)) == NULL)
399 goto error;
400 if (hp->bh_bnum != 2)
401 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100402 iemsg(_("E298: Didn't get block nr 2?"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000403 goto error;
404 }
405
406 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100407 dp->db_index[0] = --dp->db_txt_start; // at end of block
Bram Moolenaar071d4272004-06-13 20:20:40 +0000408 dp->db_free -= 1 + INDEX_SIZE;
409 dp->db_line_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100410 *((char_u *)dp + dp->db_txt_start) = NUL; // empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000411
412 return OK;
413
414error:
415 if (mfp != NULL)
416 {
417 if (hp)
418 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100419 mf_close(mfp, TRUE); // will also free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000420 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000421 buf->b_ml.ml_mfp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000422 return FAIL;
423}
424
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200425#if defined(FEAT_CRYPT) || defined(PROTO)
426/*
Bram Moolenaar2be79502014-08-13 21:58:28 +0200427 * Prepare encryption for "buf" for the current key and method.
428 */
429 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100430ml_set_mfp_crypt(buf_T *buf)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200431{
432 if (*buf->b_p_key != NUL)
433 {
434 int method_nr = crypt_get_method_nr(buf);
435
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200436 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200437 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100438 // Generate a seed and store it in the memfile.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200439 sha2_seed(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN, NULL, 0);
440 }
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200441#ifdef FEAT_SODIUM
442 else if (method_nr == CRYPT_M_SOD)
443 randombytes_buf(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN);
444 #endif
Bram Moolenaar2be79502014-08-13 21:58:28 +0200445 }
446}
447
448/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200449 * Prepare encryption for "buf" with block 0 "b0p".
450 */
451 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100452ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200453{
454 if (*buf->b_p_key == NUL)
455 b0p->b0_id[1] = BLOCK0_ID1;
456 else
457 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200458 int method_nr = crypt_get_method_nr(buf);
459
460 b0p->b0_id[1] = id1_codes[method_nr];
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200461 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200462 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100463 // Generate a seed and store it in block 0 and in the memfile.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200464 sha2_seed(&b0p->b0_seed, MF_SEED_LEN, NULL, 0);
465 mch_memmove(buf->b_ml.ml_mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
466 }
467 }
468}
469
470/*
471 * Called after the crypt key or 'cryptmethod' was changed for "buf".
472 * Will apply this to the swapfile.
473 * "old_key" is the previous key. It is equal to buf->b_p_key when
474 * 'cryptmethod' is changed.
Bram Moolenaar49771f42010-07-20 17:32:38 +0200475 * "old_cm" is the previous 'cryptmethod'. It is equal to the current
476 * 'cryptmethod' when 'key' is changed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200477 */
478 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100479ml_set_crypt_key(
480 buf_T *buf,
481 char_u *old_key,
482 char_u *old_cm)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200483{
484 memfile_T *mfp = buf->b_ml.ml_mfp;
485 bhdr_T *hp;
486 int page_count;
487 int idx;
488 long error;
489 infoptr_T *ip;
490 PTR_BL *pp;
491 DATA_BL *dp;
492 blocknr_T bnum;
493 int top;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200494 int old_method;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200495
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200496 if (mfp == NULL || mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100497 return; // no memfile yet, nothing to do
Bram Moolenaarbc563362015-06-09 18:35:25 +0200498 old_method = crypt_method_nr_from_name(old_cm);
499
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200500 if (old_method == CRYPT_M_SOD || crypt_get_method_nr(buf) == CRYPT_M_SOD)
501 {
502 // close the swapfile
503 mf_close_file(buf, TRUE);
504 buf->b_p_swf = FALSE;
505 return;
506 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100507 // First make sure the swapfile is in a consistent state, using the old
508 // key and method.
Bram Moolenaarbc563362015-06-09 18:35:25 +0200509 {
510 char_u *new_key = buf->b_p_key;
511 char_u *new_buf_cm = buf->b_p_cm;
512
513 buf->b_p_key = old_key;
514 buf->b_p_cm = old_cm;
515 ml_preserve(buf, FALSE);
516 buf->b_p_key = new_key;
517 buf->b_p_cm = new_buf_cm;
518 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200519
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100520 // Set the key, method and seed to be used for reading, these must be the
521 // old values.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200522 mfp->mf_old_key = old_key;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200523 mfp->mf_old_cm = old_method;
524 if (old_method > 0 && *old_key != NUL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200525 mch_memmove(mfp->mf_old_seed, mfp->mf_seed, MF_SEED_LEN);
526
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100527 // Update block 0 with the crypt flag and may set a new seed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200528 ml_upd_block0(buf, UB_CRYPT);
529
530 if (mfp->mf_infile_count > 2)
531 {
532 /*
533 * Need to read back all data blocks from disk, decrypt them with the
534 * old key/method and mark them to be written. The algorithm is
535 * similar to what happens in ml_recover(), but we skip negative block
536 * numbers.
537 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100538 ml_flush_line(buf); // flush buffered line
539 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200540
541 hp = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100542 bnum = 1; // start with block 1
543 page_count = 1; // which is 1 page
544 idx = 0; // start with first index in block 1
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200545 error = 0;
546 buf->b_ml.ml_stack_top = 0;
Bram Moolenaard23a8232018-02-10 18:45:26 +0100547 VIM_CLEAR(buf->b_ml.ml_stack);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100548 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200549
550 for ( ; !got_int; line_breakcheck())
551 {
552 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100553 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200554
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100555 // get the block (pointer or data)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200556 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
557 {
558 if (bnum == 1)
559 break;
560 ++error;
561 }
562 else
563 {
564 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100565 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200566 {
567 if (pp->pb_count == 0)
568 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100569 // empty block?
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200570 ++error;
571 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100572 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200573 {
574 if (pp->pb_pointer[idx].pe_bnum < 0)
575 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100576 // Skip data block with negative block number.
577 // Should not happen, because of the ml_preserve()
578 // above. Get same block again for next index.
Bram Moolenaar4b7214e2019-01-03 21:55:32 +0100579 ++idx;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200580 continue;
581 }
582
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100583 // going one block deeper in the tree, new entry in
584 // stack
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200585 if ((top = ml_add_stack(buf)) < 0)
586 {
587 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100588 break; // out of memory
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200589 }
590 ip = &(buf->b_ml.ml_stack[top]);
591 ip->ip_bnum = bnum;
592 ip->ip_index = idx;
593
594 bnum = pp->pb_pointer[idx].pe_bnum;
595 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200596 idx = 0;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200597 continue;
598 }
599 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100600 else // not a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200601 {
602 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100603 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200604 ++error;
605 else
606 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100607 // It is a data block, need to write it back to disk.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200608 mf_put(mfp, hp, TRUE, FALSE);
609 hp = NULL;
610 }
611 }
612 }
613
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100614 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200615 break;
616
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100617 // go one block up in the tree
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200618 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
619 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100620 idx = ip->ip_index + 1; // go to next index
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200621 page_count = 1;
622 }
Bram Moolenaarbc563362015-06-09 18:35:25 +0200623 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100624 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +0100625
626 if (error > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100627 emsg(_("E843: Error while updating swap file crypt"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200628 }
629
630 mfp->mf_old_key = NULL;
631}
632#endif
633
Bram Moolenaar071d4272004-06-13 20:20:40 +0000634/*
635 * ml_setname() is called when the file name of "buf" has been changed.
636 * It may rename the swap file.
637 */
638 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100639ml_setname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000640{
641 int success = FALSE;
642 memfile_T *mfp;
643 char_u *fname;
644 char_u *dirp;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100645#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000646 char_u *p;
647#endif
648
649 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100650 if (mfp->mf_fd < 0) // there is no swap file yet
Bram Moolenaar071d4272004-06-13 20:20:40 +0000651 {
652 /*
653 * When 'updatecount' is 0 and 'noswapfile' there is no swap file.
654 * For help files we will make a swap file now.
655 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200656 if (p_uc != 0 && (cmdmod.cmod_flags & CMOD_NOSWAPFILE) == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100657 ml_open_file(buf); // create a swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000658 return;
659 }
660
661 /*
662 * Try all directories in the 'directory' option.
663 */
664 dirp = p_dir;
665 for (;;)
666 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100667 if (*dirp == NUL) // tried all directories, fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 break;
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000669 fname = findswapname(buf, &dirp, mfp->mf_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100670 // alloc's fname
671 if (dirp == NULL) // out of memory
Bram Moolenaarf541c362011-10-26 11:44:18 +0200672 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100673 if (fname == NULL) // no file name found for this dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 continue;
675
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100676#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000677 /*
678 * Set full pathname for swap file now, because a ":!cd dir" may
679 * change directory without us knowing it.
680 */
681 p = FullName_save(fname, FALSE);
682 vim_free(fname);
683 fname = p;
684 if (fname == NULL)
685 continue;
686#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100687 // if the file name is the same we don't have to do anything
Bram Moolenaar071d4272004-06-13 20:20:40 +0000688 if (fnamecmp(fname, mfp->mf_fname) == 0)
689 {
690 vim_free(fname);
691 success = TRUE;
692 break;
693 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100694 // need to close the swap file before renaming
Bram Moolenaar071d4272004-06-13 20:20:40 +0000695 if (mfp->mf_fd >= 0)
696 {
697 close(mfp->mf_fd);
698 mfp->mf_fd = -1;
699 }
700
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100701 // try to rename the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000702 if (vim_rename(mfp->mf_fname, fname) == 0)
703 {
704 success = TRUE;
705 vim_free(mfp->mf_fname);
706 mfp->mf_fname = fname;
707 vim_free(mfp->mf_ffname);
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100708#if defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100709 mfp->mf_ffname = NULL; // mf_fname is full pathname already
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710#else
711 mf_set_ffname(mfp);
712#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200713 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 break;
715 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100716 vim_free(fname); // this fname didn't work, try another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 }
718
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100719 if (mfp->mf_fd == -1) // need to (re)open the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000720 {
721 mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0);
722 if (mfp->mf_fd < 0)
723 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100724 // could not (re)open the swap file, what can we do????
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100725 emsg(_("E301: Oops, lost the swap file!!!"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000726 return;
727 }
Bram Moolenaarf05da212009-11-17 16:13:15 +0000728#ifdef HAVE_FD_CLOEXEC
729 {
730 int fdflags = fcntl(mfp->mf_fd, F_GETFD);
731 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +0100732 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +0000733 }
734#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735 }
736 if (!success)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100737 emsg(_("E302: Could not rename swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000738}
739
740/*
741 * Open a file for the memfile for all buffers that are not readonly or have
742 * been modified.
743 * Used when 'updatecount' changes from zero to non-zero.
744 */
745 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100746ml_open_files(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000747{
748 buf_T *buf;
749
Bram Moolenaar29323592016-07-24 22:04:11 +0200750 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000751 if (!buf->b_p_ro || buf->b_changed)
752 ml_open_file(buf);
753}
754
755/*
756 * Open a swap file for an existing memfile, if there is no swap file yet.
757 * If we are unable to find a file name, mf_fname will be NULL
758 * and the memfile will be in memory only (no recovery possible).
759 */
760 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100761ml_open_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000762{
763 memfile_T *mfp;
764 char_u *fname;
765 char_u *dirp;
766
767 mfp = buf->b_ml.ml_mfp;
Bram Moolenaare1004402020-10-24 20:49:43 +0200768 if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf
769 || (cmdmod.cmod_flags & CMOD_NOSWAPFILE))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100770 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +0000771
Bram Moolenaara1956f62006-03-12 22:18:00 +0000772#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100773 // For a spell buffer use a temp file name.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000774 if (buf->b_spell)
775 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +0200776 fname = vim_tempname('s', FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000777 if (fname != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100778 (void)mf_open_file(mfp, fname); // consumes fname!
Bram Moolenaar4770d092006-01-12 23:22:24 +0000779 buf->b_may_swap = FALSE;
780 return;
781 }
782#endif
783
Bram Moolenaar071d4272004-06-13 20:20:40 +0000784 /*
785 * Try all directories in 'directory' option.
786 */
787 dirp = p_dir;
788 for (;;)
789 {
790 if (*dirp == NUL)
791 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100792 // There is a small chance that between choosing the swap file name
793 // and creating it, another Vim creates the file. In that case the
794 // creation will fail and we will use another directory.
795 fname = findswapname(buf, &dirp, NULL); // allocates fname
Bram Moolenaarf541c362011-10-26 11:44:18 +0200796 if (dirp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100797 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 if (fname == NULL)
799 continue;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100800 if (mf_open_file(mfp, fname) == OK) // consumes fname!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100802#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000803 /*
804 * set full pathname for swap file now, because a ":!cd dir" may
805 * change directory without us knowing it.
806 */
807 mf_fullname(mfp);
808#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200809 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000810
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100811 // Flush block zero, so others can read it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000812 if (mf_sync(mfp, MFS_ZERO) == OK)
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000813 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100814 // Mark all blocks that should be in the swapfile as dirty.
815 // Needed for when the 'swapfile' option was reset, so that
816 // the swap file was deleted, and then on again.
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000817 mf_set_dirty(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 break;
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000819 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100820 // Writing block 0 failed: close the file and try another dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000821 mf_close_file(buf, FALSE);
822 }
823 }
824
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200825 if (*p_dir != NUL && mfp->mf_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 {
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200827 need_wait_return = TRUE; // call wait_return later
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100829 (void)semsg(_("E303: Unable to open swap file for \"%s\", recovery impossible"),
Bram Moolenaare1704ba2012-10-03 18:25:00 +0200830 buf_spname(buf) != NULL ? buf_spname(buf) : buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 --no_wait_return;
832 }
833
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100834 // don't try to open a swap file again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000835 buf->b_may_swap = FALSE;
836}
837
838/*
839 * If still need to create a swap file, and starting to edit a not-readonly
840 * file, or reading into an existing buffer, create a swap file now.
841 */
842 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100843check_need_swap(
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200844 int newfile) // reading file into new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845{
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200846 int old_msg_silent = msg_silent; // might be reset by an E325 message
847
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848 if (curbuf->b_may_swap && (!curbuf->b_p_ro || !newfile))
849 ml_open_file(curbuf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200850 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000851}
852
853/*
854 * Close memline for buffer 'buf'.
855 * If 'del_file' is TRUE, delete the swap file
856 */
857 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100858ml_close(buf_T *buf, int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100860 if (buf->b_ml.ml_mfp == NULL) // not open
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 return;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100862 mf_close(buf->b_ml.ml_mfp, del_file); // close the .swp file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 if (buf->b_ml.ml_line_lnum != 0 && (buf->b_ml.ml_flags & ML_LINE_DIRTY))
864 vim_free(buf->b_ml.ml_line_ptr);
865 vim_free(buf->b_ml.ml_stack);
866#ifdef FEAT_BYTEOFF
Bram Moolenaard23a8232018-02-10 18:45:26 +0100867 VIM_CLEAR(buf->b_ml.ml_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000868#endif
869 buf->b_ml.ml_mfp = NULL;
870
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100871 // Reset the "recovered" flag, give the ATTENTION prompt the next time
872 // this buffer is loaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000873 buf->b_flags &= ~BF_RECOVERED;
874}
875
876/*
877 * Close all existing memlines and memfiles.
878 * Only used when exiting.
879 * When 'del_file' is TRUE, delete the memfiles.
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000880 * But don't delete files that were ":preserve"d when we are POSIX compatible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881 */
882 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100883ml_close_all(int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884{
885 buf_T *buf;
886
Bram Moolenaar29323592016-07-24 22:04:11 +0200887 FOR_ALL_BUFFERS(buf)
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000888 ml_close(buf, del_file && ((buf->b_flags & BF_PRESERVED) == 0
889 || vim_strchr(p_cpo, CPO_PRESERVE) == NULL));
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100890#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100891 spell_delete_wordlist(); // delete the internal wordlist
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100892#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893#ifdef TEMPDIRNAMES
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100894 vim_deltempdir(); // delete created temp directory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895#endif
896}
897
898/*
899 * Close all memfiles for not modified buffers.
900 * Only use just before exiting!
901 */
902 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100903ml_close_notmod(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904{
905 buf_T *buf;
906
Bram Moolenaar29323592016-07-24 22:04:11 +0200907 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908 if (!bufIsChanged(buf))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100909 ml_close(buf, TRUE); // close all not-modified buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000910}
911
912/*
913 * Update the timestamp in the .swp file.
914 * Used when the file has been written.
915 */
916 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100917ml_timestamp(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000918{
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200919 ml_upd_block0(buf, UB_FNAME);
920}
921
922/*
923 * Return FAIL when the ID of "b0p" is wrong.
924 */
925 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100926ml_check_b0_id(ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200927{
928 if (b0p->b0_id[0] != BLOCK0_ID0
929 || (b0p->b0_id[1] != BLOCK0_ID1
930 && b0p->b0_id[1] != BLOCK0_ID1_C0
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200931 && b0p->b0_id[1] != BLOCK0_ID1_C1
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200932 && b0p->b0_id[1] != BLOCK0_ID1_C2
933 && b0p->b0_id[1] != BLOCK0_ID1_C3)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200934 )
935 return FAIL;
936 return OK;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000937}
938
939/*
940 * Update the timestamp or the B0_SAME_DIR flag of the .swp file.
941 */
942 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100943ml_upd_block0(buf_T *buf, upd_block0_T what)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000944{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000945 memfile_T *mfp;
946 bhdr_T *hp;
947 ZERO_BL *b0p;
948
949 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200950 if (mfp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 return;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200952 hp = mf_get(mfp, (blocknr_T)0, 1);
953 if (hp == NULL)
954 {
955#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100956 // Possibly update the seed in the memfile before there is a block0.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200957 if (what == UB_CRYPT)
958 ml_set_mfp_crypt(buf);
959#endif
960 return;
961 }
962
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200964 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100965 iemsg(_("E304: ml_upd_block0(): Didn't get block 0??"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000966 else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000967 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200968 if (what == UB_FNAME)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000969 set_b0_fname(b0p, buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200970#ifdef FEAT_CRYPT
971 else if (what == UB_CRYPT)
972 ml_set_b0_crypt(buf, b0p);
973#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100974 else // what == UB_SAME_DIR
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000975 set_b0_dir_flag(b0p, buf);
976 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000977 mf_put(mfp, hp, TRUE, FALSE);
978}
979
980/*
981 * Write file name and timestamp into block 0 of a swap file.
982 * Also set buf->b_mtime.
983 * Don't use NameBuff[]!!!
984 */
985 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100986set_b0_fname(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987{
Bram Moolenaar8767f522016-07-01 17:17:39 +0200988 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989
990 if (buf->b_ffname == NULL)
991 b0p->b0_fname[0] = NUL;
992 else
993 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100994#if defined(MSWIN) || defined(AMIGA)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100995 // Systems that cannot translate "~user" back into a path: copy the
996 // file name unmodified. Do use slashes instead of backslashes for
997 // portability.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200998 vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000999# ifdef BACKSLASH_IN_FILENAME
1000 forward_slash(b0p->b0_fname);
1001# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001002#else
1003 size_t flen, ulen;
1004 char_u uname[B0_UNAME_SIZE];
1005
1006 /*
1007 * For a file under the home directory of the current user, we try to
1008 * replace the home directory path with "~user". This helps when
1009 * editing the same file on different machines over a network.
1010 * First replace home dir path with "~/" with home_replace().
1011 * Then insert the user name to get "~user/".
1012 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001013 home_replace(NULL, buf->b_ffname, b0p->b0_fname,
1014 B0_FNAME_SIZE_CRYPT, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001015 if (b0p->b0_fname[0] == '~')
1016 {
1017 flen = STRLEN(b0p->b0_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001018 // If there is no user name or it is too long, don't use "~/"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001019 if (get_user_name(uname, B0_UNAME_SIZE) == FAIL
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001020 || (ulen = STRLEN(uname)) + flen > B0_FNAME_SIZE_CRYPT - 1)
1021 vim_strncpy(b0p->b0_fname, buf->b_ffname,
1022 B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001023 else
1024 {
1025 mch_memmove(b0p->b0_fname + ulen + 1, b0p->b0_fname + 1, flen);
1026 mch_memmove(b0p->b0_fname + 1, uname, ulen);
1027 }
1028 }
1029#endif
1030 if (mch_stat((char *)buf->b_ffname, &st) >= 0)
1031 {
1032 long_to_char((long)st.st_mtime, b0p->b0_mtime);
1033#ifdef CHECK_INODE
1034 long_to_char((long)st.st_ino, b0p->b0_ino);
1035#endif
1036 buf_store_time(buf, &st, buf->b_ffname);
1037 buf->b_mtime_read = buf->b_mtime;
1038 }
1039 else
1040 {
1041 long_to_char(0L, b0p->b0_mtime);
1042#ifdef CHECK_INODE
1043 long_to_char(0L, b0p->b0_ino);
1044#endif
1045 buf->b_mtime = 0;
1046 buf->b_mtime_read = 0;
1047 buf->b_orig_size = 0;
1048 buf->b_orig_mode = 0;
1049 }
1050 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001051
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001052 // Also add the 'fileencoding' if there is room.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001053 add_b0_fenc(b0p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054}
1055
1056/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001057 * Update the B0_SAME_DIR flag of the swap file. It's set if the file and the
1058 * swapfile for "buf" are in the same directory.
1059 * This is fail safe: if we are not sure the directories are equal the flag is
1060 * not set.
1061 */
1062 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001063set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001064{
1065 if (same_directory(buf->b_ml.ml_mfp->mf_fname, buf->b_ffname))
1066 b0p->b0_flags |= B0_SAME_DIR;
1067 else
1068 b0p->b0_flags &= ~B0_SAME_DIR;
1069}
1070
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001071/*
1072 * When there is room, add the 'fileencoding' to block zero.
1073 */
1074 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001075add_b0_fenc(
1076 ZERO_BL *b0p,
1077 buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001078{
1079 int n;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001080 int size = B0_FNAME_SIZE_NOCRYPT;
1081
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001082#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001083 // Without encryption use the same offset as in Vim 7.2 to be compatible.
1084 // With encryption it's OK to move elsewhere, the swap file is not
1085 // compatible anyway.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001086 if (*buf->b_p_key != NUL)
1087 size = B0_FNAME_SIZE_CRYPT;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001088#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001089
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001090 n = (int)STRLEN(buf->b_p_fenc);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001091 if ((int)STRLEN(b0p->b0_fname) + n + 1 > size)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001092 b0p->b0_flags &= ~B0_HAS_FENC;
1093 else
1094 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001095 mch_memmove((char *)b0p->b0_fname + size - n,
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001096 (char *)buf->b_p_fenc, (size_t)n);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001097 *(b0p->b0_fname + size - n - 1) = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001098 b0p->b0_flags |= B0_HAS_FENC;
1099 }
1100}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001101
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001102#if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO_UPTIME)
1103# include <sys/sysinfo.h>
1104#endif
1105
1106/*
1107 * Return TRUE if the process with number "b0p->b0_pid" is still running.
1108 * "swap_fname" is the name of the swap file, if it's from before a reboot then
1109 * the result is FALSE;
1110 */
1111 static int
1112swapfile_process_running(ZERO_BL *b0p, char_u *swap_fname UNUSED)
1113{
1114#ifdef HAVE_SYSINFO_UPTIME
1115 stat_T st;
1116 struct sysinfo sinfo;
1117
1118 // If the system rebooted after when the swap file was written then the
1119 // process can't be running now.
1120 if (mch_stat((char *)swap_fname, &st) != -1
1121 && sysinfo(&sinfo) == 0
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001122 && st.st_mtime < time(NULL) - (
1123# ifdef FEAT_EVAL
1124 override_sysinfo_uptime >= 0 ? override_sysinfo_uptime :
1125# endif
1126 sinfo.uptime))
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001127 return FALSE;
1128#endif
1129 return mch_process_running(char_to_long(b0p->b0_pid));
1130}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001131
1132/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001133 * Try to recover curbuf from the .swp file.
Bram Moolenaar99499b12019-05-23 21:35:48 +02001134 * If "checkext" is TRUE, check the extension and detect whether it is
1135 * a swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001136 */
1137 void
Bram Moolenaar99499b12019-05-23 21:35:48 +02001138ml_recover(int checkext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139{
1140 buf_T *buf = NULL;
1141 memfile_T *mfp = NULL;
1142 char_u *fname;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001143 char_u *fname_used = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001144 bhdr_T *hp = NULL;
1145 ZERO_BL *b0p;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001146 int b0_ff;
1147 char_u *b0_fenc = NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001148#ifdef FEAT_CRYPT
1149 int b0_cm = -1;
1150#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001151 PTR_BL *pp;
1152 DATA_BL *dp;
1153 infoptr_T *ip;
1154 blocknr_T bnum;
1155 int page_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001156 stat_T org_stat, swp_stat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001157 int len;
1158 int directly;
1159 linenr_T lnum;
1160 char_u *p;
1161 int i;
1162 long error;
1163 int cannot_open;
1164 linenr_T line_count;
1165 int has_error;
1166 int idx;
1167 int top;
1168 int txt_start;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001169 off_T size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 int called_from_main;
1171 int serious_error = TRUE;
1172 long mtime;
1173 int attr;
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001174 int orig_file_status = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001175
1176 recoverymode = TRUE;
1177 called_from_main = (curbuf->b_ml.ml_mfp == NULL);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001178 attr = HL_ATTR(HLF_E);
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001179
1180 /*
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001181 * 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 +00001182 * Otherwise a search is done to find the swap file(s).
1183 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001184 fname = curbuf->b_fname;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001185 if (fname == NULL) // When there is no file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 fname = (char_u *)"";
1187 len = (int)STRLEN(fname);
Bram Moolenaar99499b12019-05-23 21:35:48 +02001188 if (checkext && len >= 4 &&
Bram Moolenaare60acc12011-05-10 16:41:25 +02001189#if defined(VMS)
Bram Moolenaar79518e22017-02-17 16:31:35 +01001190 STRNICMP(fname + len - 4, "_s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191#else
Bram Moolenaar79518e22017-02-17 16:31:35 +01001192 STRNICMP(fname + len - 4, ".s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001194 == 0
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001195 && vim_strchr((char_u *)"abcdefghijklmnopqrstuvw",
1196 TOLOWER_ASC(fname[len - 2])) != NULL
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001197 && ASCII_ISALPHA(fname[len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001198 {
1199 directly = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001200 fname_used = vim_strsave(fname); // make a copy for mf_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 }
1202 else
1203 {
1204 directly = FALSE;
1205
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001206 // count the number of matching swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001207 len = recover_names(fname, FALSE, 0, NULL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001208 if (len == 0) // no swap files found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001209 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001210 semsg(_("E305: No swap file found for %s"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 goto theend;
1212 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001213 if (len == 1) // one swap file found, use it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 i = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001215 else // several swap files found, choose
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001217 // list the names of the swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001218 (void)recover_names(fname, TRUE, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 msg_putchar('\n');
Bram Moolenaar32526b32019-01-19 17:43:09 +01001220 msg_puts(_("Enter number of swap file to use (0 to quit): "));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001221 i = get_number(FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 if (i < 1 || i > len)
1223 goto theend;
1224 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001225 // get the swap file name that will be used
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001226 (void)recover_names(fname, FALSE, i, &fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001228 if (fname_used == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001229 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001231 // When called from main() still need to initialize storage structure
Bram Moolenaar4770d092006-01-12 23:22:24 +00001232 if (called_from_main && ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 getout(1);
1234
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001235 /*
1236 * Allocate a buffer structure for the swap file that is used for recovery.
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001237 * Only the memline and crypt information in it are really used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001238 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001239 buf = ALLOC_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001240 if (buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001241 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001243 /*
1244 * init fields in memline struct
1245 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001246 buf->b_ml.ml_stack_size = 0; // no stack yet
1247 buf->b_ml.ml_stack = NULL; // no stack yet
1248 buf->b_ml.ml_stack_top = 0; // nothing in the stack
1249 buf->b_ml.ml_line_lnum = 0; // no cached line
1250 buf->b_ml.ml_locked = NULL; // no locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001251 buf->b_ml.ml_flags = 0;
Bram Moolenaar0fe849a2010-07-25 15:11:11 +02001252#ifdef FEAT_CRYPT
1253 buf->b_p_key = empty_option;
1254 buf->b_p_cm = empty_option;
1255#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001256
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001257 /*
1258 * open the memfile from the old swap file
1259 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001260 p = vim_strsave(fname_used); // save "fname_used" for the message:
1261 // mf_open() will consume "fname_used"!
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001262 mfp = mf_open(fname_used, O_RDONLY);
1263 fname_used = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001264 if (mfp == NULL || mfp->mf_fd < 0)
1265 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001266 if (fname_used != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001267 semsg(_("E306: Cannot open %s"), fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 goto theend;
1269 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001271#ifdef FEAT_CRYPT
1272 mfp->mf_buffer = buf;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001273#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274
1275 /*
1276 * The page size set in mf_open() might be different from the page size
1277 * used in the swap file, we must get it from block 0. But to read block
1278 * 0 we need a page size. Use the minimal size for block 0 here, it will
1279 * be set to the real value below.
1280 */
1281 mfp->mf_page_size = MIN_SWAP_PAGE_SIZE;
1282
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001283 /*
1284 * try to read block 0
1285 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001286 if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL)
1287 {
1288 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001289 msg_puts_attr(_("Unable to read block 0 from "), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001291 msg_puts_attr(_("\nMaybe no changes were made or Vim did not update the swap file."),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 attr | MSG_HIST);
1293 msg_end();
1294 goto theend;
1295 }
1296 b0p = (ZERO_BL *)(hp->bh_data);
1297 if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0)
1298 {
1299 msg_start();
1300 msg_outtrans_attr(mfp->mf_fname, MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001301 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001302 MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001303 msg_puts_attr(_("Use Vim version 3.0.\n"), MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 msg_end();
1305 goto theend;
1306 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001307 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001309 semsg(_("E307: %s does not look like a Vim swap file"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 goto theend;
1311 }
1312 if (b0_magic_wrong(b0p))
1313 {
1314 msg_start();
1315 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001316#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001317 if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001318 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 attr | MSG_HIST);
1320 else
1321#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001322 msg_puts_attr(_(" cannot be used on this computer.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001324 msg_puts_attr(_("The file was created on "), attr | MSG_HIST);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001325 // avoid going past the end of a corrupted hostname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 b0p->b0_fname[0] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001327 msg_puts_attr((char *)b0p->b0_hname, attr | MSG_HIST);
1328 msg_puts_attr(_(",\nor the file has been damaged."), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 msg_end();
1330 goto theend;
1331 }
Bram Moolenaar1c536282007-04-26 15:21:56 +00001332
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001333#ifdef FEAT_CRYPT
K.Takataeeec2542021-06-02 13:28:16 +02001334 for (i = 0; i < (int)ARRAY_LENGTH(id1_codes); ++i)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001335 if (id1_codes[i] == b0p->b0_id[1])
1336 b0_cm = i;
1337 if (b0_cm > 0)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001338 mch_memmove(mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001339 crypt_set_cm_option(buf, b0_cm < 0 ? 0 : b0_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001340#else
1341 if (b0p->b0_id[1] != BLOCK0_ID1)
1342 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001343 semsg(_("E833: %s is encrypted and this version of Vim does not support encryption"), mfp->mf_fname);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001344 goto theend;
1345 }
1346#endif
1347
Bram Moolenaar071d4272004-06-13 20:20:40 +00001348 /*
1349 * If we guessed the wrong page size, we have to recalculate the
1350 * highest block number in the file.
1351 */
1352 if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size))
1353 {
Bram Moolenaar1c536282007-04-26 15:21:56 +00001354 unsigned previous_page_size = mfp->mf_page_size;
1355
Bram Moolenaar071d4272004-06-13 20:20:40 +00001356 mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size));
Bram Moolenaar1c536282007-04-26 15:21:56 +00001357 if (mfp->mf_page_size < previous_page_size)
1358 {
1359 msg_start();
1360 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001361 msg_puts_attr(_(" has been damaged (page size is smaller than minimum value).\n"),
Bram Moolenaar1c536282007-04-26 15:21:56 +00001362 attr | MSG_HIST);
1363 msg_end();
1364 goto theend;
1365 }
Bram Moolenaar8767f522016-07-01 17:17:39 +02001366 if ((size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001367 mfp->mf_blocknr_max = 0; // no file or empty file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001368 else
1369 mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size);
1370 mfp->mf_infile_count = mfp->mf_blocknr_max;
Bram Moolenaar1c536282007-04-26 15:21:56 +00001371
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001372 // need to reallocate the memory used to store the data
Bram Moolenaar1c536282007-04-26 15:21:56 +00001373 p = alloc(mfp->mf_page_size);
1374 if (p == NULL)
1375 goto theend;
1376 mch_memmove(p, hp->bh_data, previous_page_size);
1377 vim_free(hp->bh_data);
1378 hp->bh_data = p;
1379 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001380 }
1381
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001382 /*
1383 * If .swp file name given directly, use name from swap file for buffer.
1384 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 if (directly)
1386 {
1387 expand_env(b0p->b0_fname, NameBuff, MAXPATHL);
1388 if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL)
1389 goto theend;
1390 }
1391
1392 home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001393 smsg(_("Using swap file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001394
1395 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02001396 vim_strncpy(NameBuff, buf_spname(curbuf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 else
1398 home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001399 smsg(_("Original file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 msg_putchar('\n');
1401
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001402 /*
1403 * check date of swap file and original file
1404 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001405 mtime = char_to_long(b0p->b0_mtime);
1406 if (curbuf->b_ffname != NULL
1407 && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1
1408 && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1
1409 && org_stat.st_mtime > swp_stat.st_mtime)
1410 || org_stat.st_mtime != mtime))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001411 emsg(_("E308: Warning: Original file may have been changed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001412 out_flush();
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001413
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001414 // Get the 'fileformat' and 'fileencoding' from block zero.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001415 b0_ff = (b0p->b0_flags & B0_FF_MASK);
1416 if (b0p->b0_flags & B0_HAS_FENC)
1417 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001418 int fnsize = B0_FNAME_SIZE_NOCRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001419
1420#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001421 // Use the same size as in add_b0_fenc().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001422 if (b0p->b0_id[1] != BLOCK0_ID1)
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001423 fnsize = B0_FNAME_SIZE_CRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001424#endif
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001425 for (p = b0p->b0_fname + fnsize; p > b0p->b0_fname && p[-1] != NUL; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001426 ;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001427 b0_fenc = vim_strnsave(p, b0p->b0_fname + fnsize - p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001428 }
1429
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001430 mf_put(mfp, hp, FALSE, FALSE); // release block 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001431 hp = NULL;
1432
1433 /*
1434 * Now that we are sure that the file is going to be recovered, clear the
1435 * contents of the current buffer.
1436 */
1437 while (!(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001438 ml_delete((linenr_T)1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001439
1440 /*
1441 * Try reading the original file to obtain the values of 'fileformat',
1442 * 'fileencoding', etc. Ignore errors. The text itself is not used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001443 * When the file is encrypted the user is asked to enter the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001444 */
1445 if (curbuf->b_ffname != NULL)
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001446 orig_file_status = readfile(curbuf->b_ffname, NULL, (linenr_T)0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001449#ifdef FEAT_CRYPT
1450 if (b0_cm >= 0)
1451 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001452 // Need to ask the user for the crypt key. If this fails we continue
1453 // without a key, will probably get garbage text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001454 if (*curbuf->b_p_key != NUL)
1455 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001456 smsg(_("Swap file is encrypted: \"%s\""), fname_used);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001457 msg_puts(_("\nIf you entered a new crypt key but did not write the text file,"));
1458 msg_puts(_("\nenter the new crypt key."));
1459 msg_puts(_("\nIf you wrote the text file after changing the crypt key press enter"));
1460 msg_puts(_("\nto use the same key for text file and swap file"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001461 }
1462 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001463 smsg(_(need_key_msg), fname_used);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001464 buf->b_p_key = crypt_get_key(FALSE, FALSE);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001465 if (buf->b_p_key == NULL)
1466 buf->b_p_key = curbuf->b_p_key;
1467 else if (*buf->b_p_key == NUL)
1468 {
1469 vim_free(buf->b_p_key);
1470 buf->b_p_key = curbuf->b_p_key;
1471 }
1472 if (buf->b_p_key == NULL)
1473 buf->b_p_key = empty_option;
1474 }
1475#endif
1476
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001477 // Use the 'fileformat' and 'fileencoding' as stored in the swap file.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001478 if (b0_ff != 0)
1479 set_fileformat(b0_ff - 1, OPT_LOCAL);
1480 if (b0_fenc != NULL)
1481 {
1482 set_option_value((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL);
1483 vim_free(b0_fenc);
1484 }
Bram Moolenaarc024b462019-06-08 18:07:21 +02001485 unchanged(curbuf, TRUE, TRUE);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001486
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001487 bnum = 1; // start with block 1
1488 page_count = 1; // which is 1 page
1489 lnum = 0; // append after line 0 in curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00001490 line_count = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001491 idx = 0; // start with first index in block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 error = 0;
1493 buf->b_ml.ml_stack_top = 0;
1494 buf->b_ml.ml_stack = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001495 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496
1497 if (curbuf->b_ffname == NULL)
1498 cannot_open = TRUE;
1499 else
1500 cannot_open = FALSE;
1501
1502 serious_error = FALSE;
1503 for ( ; !got_int; line_breakcheck())
1504 {
1505 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001506 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507
1508 /*
1509 * get block
1510 */
1511 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
1512 {
1513 if (bnum == 1)
1514 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001515 semsg(_("E309: Unable to read block 1 from %s"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 goto theend;
1517 }
1518 ++error;
1519 ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"),
1520 (colnr_T)0, TRUE);
1521 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001522 else // there is a block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001523 {
1524 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001525 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001527 // check line count when using pointer block first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 if (idx == 0 && line_count != 0)
1529 {
1530 for (i = 0; i < (int)pp->pb_count; ++i)
1531 line_count -= pp->pb_pointer[i].pe_line_count;
1532 if (line_count != 0)
1533 {
1534 ++error;
1535 ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"),
1536 (colnr_T)0, TRUE);
1537 }
1538 }
1539
1540 if (pp->pb_count == 0)
1541 {
1542 ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"),
1543 (colnr_T)0, TRUE);
1544 ++error;
1545 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001546 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaar071d4272004-06-13 20:20:40 +00001547 {
1548 if (pp->pb_pointer[idx].pe_bnum < 0)
1549 {
1550 /*
1551 * Data block with negative block number.
1552 * Try to read lines from the original file.
1553 * This is slow, but it works.
1554 */
1555 if (!cannot_open)
1556 {
1557 line_count = pp->pb_pointer[idx].pe_line_count;
1558 if (readfile(curbuf->b_ffname, NULL, lnum,
1559 pp->pb_pointer[idx].pe_old_lnum - 1,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001560 line_count, NULL, 0) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001561 cannot_open = TRUE;
1562 else
1563 lnum += line_count;
1564 }
1565 if (cannot_open)
1566 {
1567 ++error;
1568 ml_append(lnum++, (char_u *)_("???LINES MISSING"),
1569 (colnr_T)0, TRUE);
1570 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001571 ++idx; // get same block again for next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001572 continue;
1573 }
1574
1575 /*
1576 * going one block deeper in the tree
1577 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001578 if ((top = ml_add_stack(buf)) < 0) // new entry in stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 {
1580 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001581 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 }
1583 ip = &(buf->b_ml.ml_stack[top]);
1584 ip->ip_bnum = bnum;
1585 ip->ip_index = idx;
1586
1587 bnum = pp->pb_pointer[idx].pe_bnum;
1588 line_count = pp->pb_pointer[idx].pe_line_count;
1589 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaar986a0032011-06-13 01:07:27 +02001590 idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001591 continue;
1592 }
1593 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001594 else // not a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001595 {
1596 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001597 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 {
1599 if (bnum == 1)
1600 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001601 semsg(_("E310: Block 1 ID wrong (%s not a .swp file?)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001602 mfp->mf_fname);
1603 goto theend;
1604 }
1605 ++error;
1606 ml_append(lnum++, (char_u *)_("???BLOCK MISSING"),
1607 (colnr_T)0, TRUE);
1608 }
1609 else
1610 {
1611 /*
1612 * it is a data block
1613 * Append all the lines in this block
1614 */
1615 has_error = FALSE;
1616 /*
1617 * check length of block
1618 * if wrong, use length in pointer block
1619 */
1620 if (page_count * mfp->mf_page_size != dp->db_txt_end)
1621 {
1622 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"),
1623 (colnr_T)0, TRUE);
1624 ++error;
1625 has_error = TRUE;
1626 dp->db_txt_end = page_count * mfp->mf_page_size;
1627 }
1628
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001629 // make sure there is a NUL at the end of the block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001630 *((char_u *)dp + dp->db_txt_end - 1) = NUL;
1631
1632 /*
1633 * check number of lines in block
1634 * if wrong, use count in data block
1635 */
1636 if (line_count != dp->db_line_count)
1637 {
1638 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"),
1639 (colnr_T)0, TRUE);
1640 ++error;
1641 has_error = TRUE;
1642 }
1643
1644 for (i = 0; i < dp->db_line_count; ++i)
1645 {
1646 txt_start = (dp->db_index[i] & DB_INDEX_MASK);
Bram Moolenaar740885b2009-11-03 14:33:17 +00001647 if (txt_start <= (int)HEADER_SIZE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 || txt_start >= (int)dp->db_txt_end)
1649 {
1650 p = (char_u *)"???";
1651 ++error;
1652 }
1653 else
1654 p = (char_u *)dp + txt_start;
1655 ml_append(lnum++, p, (colnr_T)0, TRUE);
1656 }
1657 if (has_error)
Bram Moolenaar740885b2009-11-03 14:33:17 +00001658 ml_append(lnum++, (char_u *)_("???END"),
1659 (colnr_T)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001660 }
1661 }
1662 }
1663
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001664 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 break;
1666
1667 /*
1668 * go one block up in the tree
1669 */
1670 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
1671 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001672 idx = ip->ip_index + 1; // go to next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001673 page_count = 1;
1674 }
1675
1676 /*
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001677 * Compare the buffer contents with the original file. When they differ
1678 * set the 'modified' flag.
1679 * Lines 1 - lnum are the new contents.
1680 * Lines lnum + 1 to ml_line_count are the original contents.
1681 * Line ml_line_count + 1 in the dummy empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001682 */
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001683 if (orig_file_status != OK || curbuf->b_ml.ml_line_count != lnum * 2 + 1)
1684 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001685 // Recovering an empty file results in two lines and the first line is
1686 // empty. Don't set the modified flag then.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001687 if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
1688 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001689 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001690 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001691 }
1692 }
1693 else
1694 {
1695 for (idx = 1; idx <= lnum; ++idx)
1696 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001697 // Need to copy one line, fetching the other one may flush it.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001698 p = vim_strsave(ml_get(idx));
1699 i = STRCMP(p, ml_get(idx + lnum));
1700 vim_free(p);
1701 if (i != 0)
1702 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001703 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001704 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001705 break;
1706 }
1707 }
1708 }
1709
1710 /*
1711 * Delete the lines from the original file and the dummy line from the
1712 * empty buffer. These will now be after the last line in the buffer.
1713 */
1714 while (curbuf->b_ml.ml_line_count > lnum
1715 && !(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001716 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001717 curbuf->b_flags |= BF_RECOVERED;
Bram Moolenaare3f50ad2021-06-09 12:33:40 +02001718 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719
1720 recoverymode = FALSE;
1721 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001722 emsg(_("E311: Recovery Interrupted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001723 else if (error)
1724 {
1725 ++no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001726 msg(">>>>>>>>>>>>>");
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001727 emsg(_("E312: Errors detected while recovering; look for lines starting with ???"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001728 --no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001729 msg(_("See \":help E312\" for more information."));
1730 msg(">>>>>>>>>>>>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 }
1732 else
1733 {
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001734 if (curbuf->b_changed)
1735 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001736 msg(_("Recovery completed. You should check if everything is OK."));
1737 msg_puts(_("\n(You might want to write out this file under another name\n"));
1738 msg_puts(_("and run diff with the original file to check for changes)"));
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001739 }
1740 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001741 msg(_("Recovery completed. Buffer contents equals file contents."));
Bram Moolenaarf8835082020-11-09 21:04:17 +01001742 msg_puts(_("\nYou may want to delete the .swp file now."));
1743#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001744 if (swapfile_process_running(b0p, fname_used))
Bram Moolenaarf8835082020-11-09 21:04:17 +01001745 {
1746 // Warn there could be an active Vim on the same file, the user may
1747 // want to kill it.
1748 msg_puts(_("\nNote: process STILL RUNNING: "));
1749 msg_outnum(char_to_long(b0p->b0_pid));
1750 }
1751#endif
1752 msg_puts("\n\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001753 cmdline_row = msg_row;
1754 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001755#ifdef FEAT_CRYPT
1756 if (*buf->b_p_key != NUL && STRCMP(curbuf->b_p_key, buf->b_p_key) != 0)
1757 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001758 msg_puts(_("Using crypt key from swap file for the text file.\n"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001759 set_option_value((char_u *)"key", 0L, buf->b_p_key, OPT_LOCAL);
1760 }
1761#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001762 redraw_curbuf_later(NOT_VALID);
1763
1764theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001765 vim_free(fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001766 recoverymode = FALSE;
1767 if (mfp != NULL)
1768 {
1769 if (hp != NULL)
1770 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001771 mf_close(mfp, FALSE); // will also vim_free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001772 }
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001773 if (buf != NULL)
1774 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001775#ifdef FEAT_CRYPT
1776 if (buf->b_p_key != curbuf->b_p_key)
1777 free_string_option(buf->b_p_key);
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001778 free_string_option(buf->b_p_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001779#endif
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001780 vim_free(buf->b_ml.ml_stack);
1781 vim_free(buf);
1782 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001783 if (serious_error && called_from_main)
1784 ml_close(curbuf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 else
1786 {
1787 apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf);
1788 apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf);
1789 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 return;
1791}
1792
1793/*
1794 * Find the names of swap files in current directory and the directory given
1795 * with the 'directory' option.
1796 *
1797 * Used to:
1798 * - list the swap files for "vim -r"
1799 * - count the number of swap files when recovering
1800 * - list the swap files when recovering
1801 * - find the name of the n'th swap file when recovering
1802 */
1803 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001804recover_names(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001805 char_u *fname, // base for swap file name
1806 int list, // when TRUE, list the swap file names
1807 int nr, // when non-zero, return nr'th swap file name
1808 char_u **fname_out) // result when "nr" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001809{
1810 int num_names;
1811 char_u *(names[6]);
1812 char_u *tail;
1813 char_u *p;
1814 int num_files;
1815 int file_count = 0;
1816 char_u **files;
1817 int i;
1818 char_u *dirp;
1819 char_u *dir_name;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001820 char_u *fname_res = NULL;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001821#ifdef HAVE_READLINK
1822 char_u fname_buf[MAXPATHL];
Bram Moolenaar64354da2010-05-25 21:37:17 +02001823#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001824
Bram Moolenaar64354da2010-05-25 21:37:17 +02001825 if (fname != NULL)
1826 {
1827#ifdef HAVE_READLINK
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001828 // Expand symlink in the file name, because the swap file is created
1829 // with the actual file instead of with the symlink.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001830 if (resolve_symlink(fname, fname_buf) == OK)
1831 fname_res = fname_buf;
1832 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001833#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001834 fname_res = fname;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001835 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836
1837 if (list)
1838 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001839 // use msg() to start the scrolling properly
Bram Moolenaar32526b32019-01-19 17:43:09 +01001840 msg(_("Swap files found:"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001841 msg_putchar('\n');
1842 }
1843
1844 /*
1845 * Do the loop for every directory in 'directory'.
1846 * First allocate some memory to put the directory name in.
1847 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001848 dir_name = alloc(STRLEN(p_dir) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 dirp = p_dir;
1850 while (dir_name != NULL && *dirp)
1851 {
1852 /*
1853 * Isolate a directory name from *dirp and put it in dir_name (we know
1854 * it is large enough, so use 31000 for length).
1855 * Advance dirp to next directory name.
1856 */
1857 (void)copy_option_part(&dirp, dir_name, 31000, ",");
1858
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001859 if (dir_name[0] == '.' && dir_name[1] == NUL) // check current dir
Bram Moolenaar071d4272004-06-13 20:20:40 +00001860 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001861 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 {
1863#ifdef VMS
1864 names[0] = vim_strsave((char_u *)"*_sw%");
1865#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 names[0] = vim_strsave((char_u *)"*.sw?");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001868#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001869 // For Unix names starting with a dot are special. MS-Windows
1870 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001871 names[1] = vim_strsave((char_u *)".*.sw?");
1872 names[2] = vim_strsave((char_u *)".sw?");
1873 num_names = 3;
1874#else
1875# ifdef VMS
1876 names[1] = vim_strsave((char_u *)".*_sw%");
1877 num_names = 2;
1878# else
1879 num_names = 1;
1880# endif
1881#endif
1882 }
1883 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001884 num_names = recov_file_names(names, fname_res, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001886 else // check directory dir_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001888 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 {
1890#ifdef VMS
1891 names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE);
1892#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001893 names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001895#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001896 // For Unix names starting with a dot are special. MS-Windows
1897 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001898 names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
1899 names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
1900 num_names = 3;
1901#else
1902# ifdef VMS
1903 names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE);
1904 num_names = 2;
1905# else
1906 num_names = 1;
1907# endif
1908#endif
1909 }
1910 else
1911 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001912#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01001913 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01001914
1915 p = dir_name + len;
1916 if (after_pathsep(dir_name, p) && len > 1 && p[-1] == p[-2])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001917 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001918 // Ends with '//', Use Full path for swap name
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001919 tail = make_percent_swname(dir_name, fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001920 }
1921 else
1922#endif
1923 {
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001924 tail = gettail(fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001925 tail = concat_fnames(dir_name, tail, TRUE);
1926 }
1927 if (tail == NULL)
1928 num_names = 0;
1929 else
1930 {
1931 num_names = recov_file_names(names, tail, FALSE);
1932 vim_free(tail);
1933 }
1934 }
1935 }
1936
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02001937 // check for out-of-memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 for (i = 0; i < num_names; ++i)
1939 {
1940 if (names[i] == NULL)
1941 {
1942 for (i = 0; i < num_names; ++i)
1943 vim_free(names[i]);
1944 num_names = 0;
1945 }
1946 }
1947 if (num_names == 0)
1948 num_files = 0;
1949 else if (expand_wildcards(num_names, names, &num_files, &files,
Bram Moolenaar99499b12019-05-23 21:35:48 +02001950 EW_NOTENV|EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001951 num_files = 0;
1952
1953 /*
1954 * When no swap file found, wildcard expansion might have failed (e.g.
1955 * not able to execute the shell).
1956 * Try finding a swap file by simply adding ".swp" to the file name.
1957 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001958 if (*dirp == NUL && file_count + num_files == 0 && fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001959 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001960 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 char_u *swapname;
1962
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001963 swapname = modname(fname_res,
Bram Moolenaare60acc12011-05-10 16:41:25 +02001964#if defined(VMS)
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001965 (char_u *)"_swp", FALSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001966#else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001967 (char_u *)".swp", TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001969 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970 if (swapname != NULL)
1971 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001972 if (mch_stat((char *)swapname, &st) != -1) // It exists!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001974 files = ALLOC_ONE(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 if (files != NULL)
1976 {
1977 files[0] = swapname;
1978 swapname = NULL;
1979 num_files = 1;
1980 }
1981 }
1982 vim_free(swapname);
1983 }
1984 }
1985
1986 /*
1987 * remove swapfile name of the current buffer, it must be ignored
1988 */
1989 if (curbuf->b_ml.ml_mfp != NULL
1990 && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL)
1991 {
1992 for (i = 0; i < num_files; ++i)
Bram Moolenaar99499b12019-05-23 21:35:48 +02001993 // Do not expand wildcards, on windows would try to expand
1994 // "%tmp%" in "%tmp%file".
1995 if (fullpathcmp(p, files[i], TRUE, FALSE) & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001996 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02001997 // Remove the name from files[i]. Move further entries
1998 // down. When the array becomes empty free it here, since
1999 // FreeWild() won't be called below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002000 vim_free(files[i]);
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00002001 if (--num_files == 0)
2002 vim_free(files);
2003 else
2004 for ( ; i < num_files; ++i)
2005 files[i] = files[i + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002006 }
2007 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002008 if (nr > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 {
2010 file_count += num_files;
2011 if (nr <= file_count)
2012 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002013 *fname_out = vim_strsave(
2014 files[nr - 1 + num_files - file_count]);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002015 dirp = (char_u *)""; // stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 }
2017 }
2018 else if (list)
2019 {
2020 if (dir_name[0] == '.' && dir_name[1] == NUL)
2021 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002022 if (fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002023 msg_puts(_(" In current directory:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002024 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002025 msg_puts(_(" Using specified name:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 }
2027 else
2028 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002029 msg_puts(_(" In directory "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002030 msg_home_replace(dir_name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002031 msg_puts(":\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 }
2033
2034 if (num_files)
2035 {
2036 for (i = 0; i < num_files; ++i)
2037 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002038 // print the swap file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 msg_outnum((long)++file_count);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002040 msg_puts(". ");
2041 msg_puts((char *)gettail(files[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002042 msg_putchar('\n');
2043 (void)swapfile_info(files[i]);
2044 }
2045 }
2046 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002047 msg_puts(_(" -- none --\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002048 out_flush();
2049 }
2050 else
2051 file_count += num_files;
2052
2053 for (i = 0; i < num_names; ++i)
2054 vim_free(names[i]);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002055 if (num_files > 0)
2056 FreeWild(num_files, files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 }
2058 vim_free(dir_name);
2059 return file_count;
2060}
2061
Bram Moolenaar4f974752019-02-17 17:44:42 +01002062#if defined(UNIX) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002063/*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002064 * Need _very_ long file names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065 * Append the full path to name with path separators made into percent
2066 * signs, to dir. An unnamed buffer is handled as "" (<currentdir>/"")
2067 */
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002068 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002069make_percent_swname(char_u *dir, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002070{
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002071 char_u *d = NULL, *s, *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002072
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002073 f = fix_fname(name != NULL ? name : (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 if (f != NULL)
2075 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002076 s = alloc(STRLEN(f) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002077 if (s != NULL)
2078 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002079 STRCPY(s, f);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002080 for (d = s; *d != NUL; MB_PTR_ADV(d))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002081 if (vim_ispathsep(*d))
2082 *d = '%';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002083 d = concat_fnames(dir, s, TRUE);
2084 vim_free(s);
2085 }
2086 vim_free(f);
2087 }
2088 return d;
2089}
2090#endif
2091
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002092#if (defined(UNIX) || defined(VMS) || defined(MSWIN)) \
2093 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
2094# define HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002095static int process_still_running;
2096#endif
2097
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002098#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099/*
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002100 * Return information found in swapfile "fname" in dictionary "d".
2101 * This is used by the swapinfo() function.
2102 */
2103 void
2104get_b0_dict(char_u *fname, dict_T *d)
2105{
2106 int fd;
2107 struct block0 b0;
2108
2109 if ((fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
2110 {
2111 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
2112 {
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002113 if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002114 dict_add_string(d, "error", (char_u *)"Not a swap file");
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002115 else if (b0_magic_wrong(&b0))
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002116 dict_add_string(d, "error", (char_u *)"Magic number mismatch");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002117 else
2118 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002119 // we have swap information
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002120 dict_add_string_len(d, "version", b0.b0_version, 10);
2121 dict_add_string_len(d, "user", b0.b0_uname, B0_UNAME_SIZE);
2122 dict_add_string_len(d, "host", b0.b0_hname, B0_HNAME_SIZE);
2123 dict_add_string_len(d, "fname", b0.b0_fname, B0_FNAME_SIZE_ORG);
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002124
2125 dict_add_number(d, "pid", char_to_long(b0.b0_pid));
2126 dict_add_number(d, "mtime", char_to_long(b0.b0_mtime));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002127 dict_add_number(d, "dirty", b0.b0_dirty ? 1 : 0);
2128# ifdef CHECK_INODE
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002129 dict_add_number(d, "inode", char_to_long(b0.b0_ino));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002130# endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002131 }
2132 }
2133 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002134 dict_add_string(d, "error", (char_u *)"Cannot read file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002135 close(fd);
2136 }
2137 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002138 dict_add_string(d, "error", (char_u *)"Cannot open file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002139}
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002140#endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002141
2142/*
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002143 * Give information about an existing swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002144 * Returns timestamp (0 when unknown).
2145 */
2146 static time_t
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002147swapfile_info(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002148{
Bram Moolenaar8767f522016-07-01 17:17:39 +02002149 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 int fd;
2151 struct block0 b0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002152#ifdef UNIX
2153 char_u uname[B0_UNAME_SIZE];
2154#endif
2155
Bram Moolenaar63d25552019-05-10 21:28:38 +02002156 // print the swap file date
Bram Moolenaar071d4272004-06-13 20:20:40 +00002157 if (mch_stat((char *)fname, &st) != -1)
2158 {
2159#ifdef UNIX
Bram Moolenaar63d25552019-05-10 21:28:38 +02002160 // print name of owner of the file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002161 if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK)
2162 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002163 msg_puts(_(" owned by: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002164 msg_outtrans(uname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002165 msg_puts(_(" dated: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002166 }
2167 else
2168#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002169 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02002170 msg_puts(get_ctime(st.st_mtime, TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002171 }
Bram Moolenaar63d25552019-05-10 21:28:38 +02002172 else
2173 st.st_mtime = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002174
2175 /*
2176 * print the original file name
2177 */
2178 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2179 if (fd >= 0)
2180 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01002181 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 {
2183 if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0)
2184 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002185 msg_puts(_(" [from Vim version 3.0]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002187 else if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002189 msg_puts(_(" [does not look like a Vim swap file]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190 }
2191 else
2192 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002193 msg_puts(_(" file name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 if (b0.b0_fname[0] == NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002195 msg_puts(_("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 else
2197 msg_outtrans(b0.b0_fname);
2198
Bram Moolenaar32526b32019-01-19 17:43:09 +01002199 msg_puts(_("\n modified: "));
2200 msg_puts(b0.b0_dirty ? _("YES") : _("no"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002201
2202 if (*(b0.b0_uname) != NUL)
2203 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002204 msg_puts(_("\n user name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002205 msg_outtrans(b0.b0_uname);
2206 }
2207
2208 if (*(b0.b0_hname) != NUL)
2209 {
2210 if (*(b0.b0_uname) != NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002211 msg_puts(_(" host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002213 msg_puts(_("\n host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002214 msg_outtrans(b0.b0_hname);
2215 }
2216
2217 if (char_to_long(b0.b0_pid) != 0L)
2218 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002219 msg_puts(_("\n process ID: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 msg_outnum(char_to_long(b0.b0_pid));
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002221#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002222 if (swapfile_process_running(&b0, fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002223 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002224 msg_puts(_(" (STILL RUNNING)"));
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002225# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 process_still_running = TRUE;
2227# endif
2228 }
2229#endif
2230 }
2231
2232 if (b0_magic_wrong(&b0))
2233 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002234#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002235 if (STRNCMP(b0.b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002236 msg_puts(_("\n [not usable with this version of Vim]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002237 else
2238#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002239 msg_puts(_("\n [not usable on this computer]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002240 }
2241 }
2242 }
2243 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002244 msg_puts(_(" [cannot be read]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002245 close(fd);
2246 }
2247 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002248 msg_puts(_(" [cannot be opened]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002249 msg_putchar('\n');
2250
Bram Moolenaar63d25552019-05-10 21:28:38 +02002251 return st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252}
2253
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002254/*
2255 * Return TRUE if the swap file looks OK and there are no changes, thus it can
2256 * be safely deleted.
2257 */
2258 static time_t
2259swapfile_unchanged(char_u *fname)
2260{
2261 stat_T st;
2262 int fd;
2263 struct block0 b0;
2264 int ret = TRUE;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002265
2266 // must be able to stat the swap file
2267 if (mch_stat((char *)fname, &st) == -1)
2268 return FALSE;
2269
2270 // must be able to read the first block
2271 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2272 if (fd < 0)
2273 return FALSE;
2274 if (read_eintr(fd, &b0, sizeof(b0)) != sizeof(b0))
2275 {
2276 close(fd);
2277 return FALSE;
2278 }
2279
2280 // the ID and magic number must be correct
2281 if (ml_check_b0_id(&b0) == FAIL|| b0_magic_wrong(&b0))
2282 ret = FALSE;
2283
2284 // must be unchanged
2285 if (b0.b0_dirty)
2286 ret = FALSE;
2287
2288#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf8835082020-11-09 21:04:17 +01002289 // Host name must be known and must equal the current host name, otherwise
2290 // comparing pid is meaningless.
2291 if (*(b0.b0_hname) == NUL)
2292 {
2293 ret = FALSE;
2294 }
2295 else
2296 {
2297 char_u hostname[B0_HNAME_SIZE];
2298
2299 mch_get_host_name(hostname, B0_HNAME_SIZE);
2300 hostname[B0_HNAME_SIZE - 1] = NUL;
Bram Moolenaare79cdb62020-11-21 13:51:16 +01002301 b0.b0_hname[B0_HNAME_SIZE - 1] = NUL; // in case of corruption
Bram Moolenaarf8835082020-11-09 21:04:17 +01002302 if (STRICMP(b0.b0_hname, hostname) != 0)
2303 ret = FALSE;
2304 }
2305
Bram Moolenaar32aa1022019-11-02 22:54:41 +01002306 // process must be known and not be running
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002307 if (char_to_long(b0.b0_pid) == 0L || swapfile_process_running(&b0, fname))
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002308 ret = FALSE;
2309#endif
2310
Bram Moolenaarf8835082020-11-09 21:04:17 +01002311 // We do not check the user, it should be irrelevant for whether the swap
2312 // file is still useful.
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002313
2314 close(fd);
2315 return ret;
2316}
2317
Bram Moolenaar071d4272004-06-13 20:20:40 +00002318 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002319recov_file_names(char_u **names, char_u *path, int prepend_dot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320{
2321 int num_names;
2322
Bram Moolenaar071d4272004-06-13 20:20:40 +00002323 /*
2324 * (Win32 and Win64) never short names, but do prepend a dot.
2325 * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both.
2326 * Only use the short name if it is different.
2327 */
2328 char_u *p;
2329 int i;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002330# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002331 int shortname = curbuf->b_shortname;
2332
2333 curbuf->b_shortname = FALSE;
2334# endif
2335
2336 num_names = 0;
2337
2338 /*
2339 * May also add the file name with a dot prepended, for swap file in same
2340 * dir as original file.
2341 */
2342 if (prepend_dot)
2343 {
2344 names[num_names] = modname(path, (char_u *)".sw?", TRUE);
2345 if (names[num_names] == NULL)
2346 goto end;
2347 ++num_names;
2348 }
2349
2350 /*
2351 * Form the normal swap file name pattern by appending ".sw?".
2352 */
2353#ifdef VMS
2354 names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE);
2355#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357#endif
2358 if (names[num_names] == NULL)
2359 goto end;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002360 if (num_names >= 1) // check if we have the same name twice
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 {
2362 p = names[num_names - 1];
2363 i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]);
2364 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002365 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002366
2367 if (STRCMP(p, names[num_names]) != 0)
2368 ++num_names;
2369 else
2370 vim_free(names[num_names]);
2371 }
2372 else
2373 ++num_names;
2374
Bram Moolenaar4f974752019-02-17 17:44:42 +01002375# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002376 /*
2377 * Also try with 'shortname' set, in case the file is on a DOS filesystem.
2378 */
2379 curbuf->b_shortname = TRUE;
2380#ifdef VMS
2381 names[num_names] = modname(path, (char_u *)"_sw%", FALSE);
2382#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002383 names[num_names] = modname(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384#endif
2385 if (names[num_names] == NULL)
2386 goto end;
2387
2388 /*
2389 * Remove the one from 'shortname', if it's the same as with 'noshortname'.
2390 */
2391 p = names[num_names];
2392 i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]);
2393 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002394 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395 if (STRCMP(names[num_names - 1], p) == 0)
2396 vim_free(names[num_names]);
2397 else
2398 ++num_names;
2399# endif
2400
2401end:
Bram Moolenaar4f974752019-02-17 17:44:42 +01002402# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002403 curbuf->b_shortname = shortname;
2404# endif
2405
Bram Moolenaar071d4272004-06-13 20:20:40 +00002406 return num_names;
2407}
2408
2409/*
2410 * sync all memlines
2411 *
2412 * If 'check_file' is TRUE, check if original file exists and was not changed.
2413 * If 'check_char' is TRUE, stop syncing when character becomes available, but
2414 * always sync at least one block.
2415 */
2416 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002417ml_sync_all(int check_file, int check_char)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002418{
2419 buf_T *buf;
Bram Moolenaar8767f522016-07-01 17:17:39 +02002420 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421
Bram Moolenaar29323592016-07-24 22:04:11 +02002422 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002423 {
Christian Brabandtf573c6e2021-06-20 14:02:16 +02002424 if (buf->b_ml.ml_mfp == NULL
2425 || buf->b_ml.ml_mfp->mf_fname == NULL
2426 || buf->b_ml.ml_mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002427 continue; // no file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002428
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002429 ml_flush_line(buf); // flush buffered line
2430 // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002431 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH);
2432 if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp)
2433 && buf->b_ffname != NULL)
2434 {
2435 /*
2436 * If the original file does not exist anymore or has been changed
2437 * call ml_preserve() to get rid of all negative numbered blocks.
2438 */
2439 if (mch_stat((char *)buf->b_ffname, &st) == -1
2440 || st.st_mtime != buf->b_mtime_read
Bram Moolenaar914703b2010-05-31 21:59:46 +02002441 || st.st_size != buf->b_orig_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002442 {
2443 ml_preserve(buf, FALSE);
2444 did_check_timestamps = FALSE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002445 need_check_timestamps = TRUE; // give message later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 }
2447 }
2448 if (buf->b_ml.ml_mfp->mf_dirty)
2449 {
2450 (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0)
2451 | (bufIsChanged(buf) ? MFS_FLUSH : 0));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002452 if (check_char && ui_char_avail()) // character available now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002453 break;
2454 }
2455 }
2456}
2457
2458/*
2459 * sync one buffer, including negative blocks
2460 *
2461 * after this all the blocks are in the swap file
2462 *
2463 * Used for the :preserve command and when the original file has been
2464 * changed or deleted.
2465 *
2466 * when message is TRUE the success of preserving is reported
2467 */
2468 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002469ml_preserve(buf_T *buf, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002470{
2471 bhdr_T *hp;
2472 linenr_T lnum;
2473 memfile_T *mfp = buf->b_ml.ml_mfp;
2474 int status;
2475 int got_int_save = got_int;
2476
2477 if (mfp == NULL || mfp->mf_fname == NULL)
2478 {
2479 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002480 emsg(_("E313: Cannot preserve, there is no swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002481 return;
2482 }
2483
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002484 // We only want to stop when interrupted here, not when interrupted
2485 // before.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486 got_int = FALSE;
2487
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002488 ml_flush_line(buf); // flush buffered line
2489 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 status = mf_sync(mfp, MFS_ALL | MFS_FLUSH);
2491
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002492 // stack is invalid after mf_sync(.., MFS_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002493 buf->b_ml.ml_stack_top = 0;
2494
2495 /*
2496 * Some of the data blocks may have been changed from negative to
2497 * positive block number. In that case the pointer blocks need to be
2498 * updated.
2499 *
2500 * We don't know in which pointer block the references are, so we visit
2501 * all data blocks until there are no more translations to be done (or
2502 * we hit the end of the file, which can only happen in case a write fails,
2503 * e.g. when file system if full).
2504 * ml_find_line() does the work by translating the negative block numbers
2505 * when getting the first line of each data block.
2506 */
2507 if (mf_need_trans(mfp) && !got_int)
2508 {
2509 lnum = 1;
2510 while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count)
2511 {
2512 hp = ml_find_line(buf, lnum, ML_FIND);
2513 if (hp == NULL)
2514 {
2515 status = FAIL;
2516 goto theend;
2517 }
2518 CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum");
2519 lnum = buf->b_ml.ml_locked_high + 1;
2520 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002521 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
2522 // sync the updated pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002523 if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL)
2524 status = FAIL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002525 buf->b_ml.ml_stack_top = 0; // stack is invalid now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002526 }
2527theend:
2528 got_int |= got_int_save;
2529
2530 if (message)
2531 {
2532 if (status == OK)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002533 msg(_("File preserved"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002535 emsg(_("E314: Preserve failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002536 }
2537}
2538
2539/*
2540 * NOTE: The pointer returned by the ml_get_*() functions only remains valid
2541 * until the next call!
2542 * line1 = ml_get(1);
2543 * line2 = ml_get(2); // line1 is now invalid!
2544 * Make a copy of the line if necessary.
2545 */
2546/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002547 * Return a pointer to a (read-only copy of a) line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002548 *
2549 * On failure an error message is given and IObuff is returned (to avoid
2550 * having to check for error everywhere).
2551 */
2552 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002553ml_get(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002554{
2555 return ml_get_buf(curbuf, lnum, FALSE);
2556}
2557
2558/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002559 * Return pointer to position "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002560 */
2561 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002562ml_get_pos(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563{
2564 return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col);
2565}
2566
2567/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002568 * Return pointer to cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 */
2570 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002571ml_get_curline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572{
2573 return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE);
2574}
2575
2576/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002577 * Return pointer to cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 */
2579 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002580ml_get_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581{
2582 return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) +
2583 curwin->w_cursor.col);
2584}
2585
2586/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002587 * Return a pointer to a line in a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00002588 *
2589 * "will_change": if TRUE mark the buffer dirty (chars in the line will be
2590 * changed)
2591 */
2592 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002593ml_get_buf(
2594 buf_T *buf,
2595 linenr_T lnum,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002596 int will_change) // line will be changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597{
Bram Moolenaarad40f022007-02-13 03:01:39 +00002598 bhdr_T *hp;
2599 DATA_BL *dp;
Bram Moolenaarad40f022007-02-13 03:01:39 +00002600 static int recursive = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002602 if (lnum > buf->b_ml.ml_line_count) // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002603 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002604 if (recursive == 0)
2605 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002606 // Avoid giving this message for a recursive call, may happen when
2607 // the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002608 ++recursive;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002609 siemsg(_("E315: ml_get: invalid lnum: %ld"), lnum);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002610 --recursive;
2611 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002612errorret:
2613 STRCPY(IObuff, "???");
Bram Moolenaaradfde112019-05-25 22:11:45 +02002614 buf->b_ml.ml_line_len = 4;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002615 return IObuff;
2616 }
Bram Moolenaaradfde112019-05-25 22:11:45 +02002617 if (lnum <= 0) // pretend line 0 is line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002618 lnum = 1;
2619
Bram Moolenaaradfde112019-05-25 22:11:45 +02002620 if (buf->b_ml.ml_mfp == NULL) // there are no lines
2621 {
2622 buf->b_ml.ml_line_len = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002623 return (char_u *)"";
Bram Moolenaaradfde112019-05-25 22:11:45 +02002624 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625
Bram Moolenaar37d619f2010-03-10 14:46:26 +01002626 /*
2627 * See if it is the same line as requested last time.
2628 * Otherwise may need to flush last used line.
2629 * Don't use the last used line when 'swapfile' is reset, need to load all
2630 * blocks.
2631 */
Bram Moolenaar47b8b152007-02-07 02:41:57 +00002632 if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002633 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002634 unsigned start, end;
2635 colnr_T len;
2636 int idx;
2637
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638 ml_flush_line(buf);
2639
2640 /*
2641 * Find the data block containing the line.
2642 * This also fills the stack with the blocks from the root to the data
2643 * block and releases any locked block.
2644 */
2645 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
2646 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002647 if (recursive == 0)
2648 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002649 // Avoid giving this message for a recursive call, may happen
2650 // when the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002651 ++recursive;
Bram Moolenaarcb868932019-10-26 20:56:21 +02002652 get_trans_bufname(buf);
2653 shorten_dir(NameBuff);
2654 siemsg(_("E316: ml_get: cannot find line %ld in buffer %d %s"),
2655 lnum, buf->b_fnum, NameBuff);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002656 --recursive;
2657 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002658 goto errorret;
2659 }
2660
2661 dp = (DATA_BL *)(hp->bh_data);
2662
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002663 idx = lnum - buf->b_ml.ml_locked_low;
2664 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
2665 // The text ends where the previous line starts. The first line ends
2666 // at the end of the block.
2667 if (idx == 0)
2668 end = dp->db_txt_end;
2669 else
2670 end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
2671 len = end - start;
2672
2673 buf->b_ml.ml_line_ptr = (char_u *)dp + start;
2674 buf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 buf->b_ml.ml_line_lnum = lnum;
2676 buf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
2677 }
2678 if (will_change)
2679 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
2680
2681 return buf->b_ml.ml_line_ptr;
2682}
2683
2684/*
2685 * Check if a line that was just obtained by a call to ml_get
2686 * is in allocated memory.
2687 */
2688 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002689ml_line_alloced(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690{
2691 return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY);
2692}
2693
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002694#ifdef FEAT_PROP_POPUP
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002695/*
2696 * Add text properties that continue from the previous line.
2697 */
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002698 static void
2699add_text_props_for_append(
2700 buf_T *buf,
2701 linenr_T lnum,
2702 char_u **line,
2703 int *len,
2704 char_u **tofree)
2705{
2706 int round;
2707 int new_prop_count = 0;
2708 int count;
2709 int n;
2710 char_u *props;
Bram Moolenaarea781452019-09-04 18:53:12 +02002711 int new_len = 0; // init for gcc
Bram Moolenaar8f13d822020-09-12 21:04:23 +02002712 char_u *new_line = NULL;
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002713 textprop_T prop;
2714
2715 // Make two rounds:
2716 // 1. calculate the extra space needed
2717 // 2. allocate the space and fill it
2718 for (round = 1; round <= 2; ++round)
2719 {
2720 if (round == 2)
2721 {
2722 if (new_prop_count == 0)
2723 return; // nothing to do
2724 new_len = *len + new_prop_count * sizeof(textprop_T);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002725 new_line = alloc(new_len);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002726 if (new_line == NULL)
2727 return;
2728 mch_memmove(new_line, *line, *len);
2729 new_prop_count = 0;
2730 }
2731
2732 // Get the line above to find any props that continue in the next
2733 // line.
2734 count = get_text_props(buf, lnum, &props, FALSE);
2735 for (n = 0; n < count; ++n)
2736 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002737 mch_memmove(&prop, props + n * sizeof(textprop_T),
2738 sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002739 if (prop.tp_flags & TP_FLAG_CONT_NEXT)
2740 {
2741 if (round == 2)
2742 {
2743 prop.tp_flags |= TP_FLAG_CONT_PREV;
2744 prop.tp_col = 1;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002745 prop.tp_len = *len; // not exactly the right length
2746 mch_memmove(new_line + *len + new_prop_count
2747 * sizeof(textprop_T), &prop, sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002748 }
2749 ++new_prop_count;
2750 }
2751 }
2752 }
2753 *line = new_line;
2754 *tofree = new_line;
2755 *len = new_len;
2756}
2757#endif
2758
Bram Moolenaar071d4272004-06-13 20:20:40 +00002759 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002760ml_append_int(
2761 buf_T *buf,
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002762 linenr_T lnum, // append after this line (can be 0)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002763 char_u *line_arg, // text of the new line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002764 colnr_T len_arg, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002765 int flags) // ML_APPEND_ flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002766{
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002767 char_u *line = line_arg;
2768 colnr_T len = len_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002769 int i;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002770 int line_count; // number of indexes in current block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002771 int offset;
2772 int from, to;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002773 int space_needed; // space needed for new line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002774 int page_size;
2775 int page_count;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002776 int db_idx; // index for lnum in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002777 bhdr_T *hp;
2778 memfile_T *mfp;
2779 DATA_BL *dp;
2780 PTR_BL *pp;
2781 infoptr_T *ip;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002782#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002783 char_u *tofree = NULL;
2784#endif
2785 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002786
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002788 return FAIL; // lnum out of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00002789
2790 if (lowest_marked && lowest_marked > lnum)
2791 lowest_marked = lnum + 1;
2792
2793 if (len == 0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002794 len = (colnr_T)STRLEN(line) + 1; // space needed for the text
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002795
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002796#ifdef FEAT_PROP_POPUP
Bram Moolenaar840f91f2021-05-26 22:32:10 +02002797 if (curbuf->b_has_textprop && lnum > 0
2798 && !(flags & (ML_APPEND_UNDO | ML_APPEND_NOPROP)))
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002799 // Add text properties that continue from the previous line.
2800 add_text_props_for_append(buf, lnum, &line, &len, &tofree);
2801#endif
2802
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002803 space_needed = len + INDEX_SIZE; // space needed for text + index
Bram Moolenaar071d4272004-06-13 20:20:40 +00002804
2805 mfp = buf->b_ml.ml_mfp;
2806 page_size = mfp->mf_page_size;
2807
2808/*
2809 * find the data block containing the previous line
2810 * This also fills the stack with the blocks from the root to the data block
2811 * This also releases any locked block.
2812 */
2813 if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum,
2814 ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002815 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002816
2817 buf->b_ml.ml_flags &= ~ML_EMPTY;
2818
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002819 if (lnum == 0) // got line one instead, correct db_idx
2820 db_idx = -1; // careful, it is negative!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002821 else
2822 db_idx = lnum - buf->b_ml.ml_locked_low;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002823 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002824 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2825
2826 dp = (DATA_BL *)(hp->bh_data);
2827
2828/*
2829 * If
2830 * - there is not enough room in the current block
2831 * - appending to the last line in the block
2832 * - not appending to the last line in the file
2833 * insert in front of the next block.
2834 */
2835 if ((int)dp->db_free < space_needed && db_idx == line_count - 1
2836 && lnum < buf->b_ml.ml_line_count)
2837 {
2838 /*
2839 * Now that the line is not going to be inserted in the block that we
2840 * expected, the line count has to be adjusted in the pointer blocks
2841 * by using ml_locked_lineadd.
2842 */
2843 --(buf->b_ml.ml_locked_lineadd);
2844 --(buf->b_ml.ml_locked_high);
2845 if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002846 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002847
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002848 db_idx = -1; // careful, it is negative!
2849 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002850 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2851 CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1");
2852
2853 dp = (DATA_BL *)(hp->bh_data);
2854 }
2855
2856 ++buf->b_ml.ml_line_count;
2857
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002858 if ((int)dp->db_free >= space_needed) // enough room in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002859 {
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002860 /*
2861 * Insert the new line in an existing data block, or in the data block
2862 * allocated above.
2863 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002864 dp->db_txt_start -= len;
2865 dp->db_free -= space_needed;
2866 ++(dp->db_line_count);
2867
2868 /*
2869 * move the text of the lines that follow to the front
2870 * adjust the indexes of the lines that follow
2871 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002872 if (line_count > db_idx + 1) // if there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002873 {
2874 /*
2875 * Offset is the start of the previous line.
2876 * This will become the character just after the new line.
2877 */
2878 if (db_idx < 0)
2879 offset = dp->db_txt_end;
2880 else
2881 offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK);
2882 mch_memmove((char *)dp + dp->db_txt_start,
2883 (char *)dp + dp->db_txt_start + len,
2884 (size_t)(offset - (dp->db_txt_start + len)));
2885 for (i = line_count - 1; i > db_idx; --i)
2886 dp->db_index[i + 1] = dp->db_index[i] - len;
2887 dp->db_index[db_idx + 1] = offset - len;
2888 }
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002889 else
2890 // add line at the end (which is the start of the text)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 dp->db_index[db_idx + 1] = dp->db_txt_start;
2892
2893 /*
2894 * copy the text into the block
2895 */
2896 mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002897 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002898 dp->db_index[db_idx + 1] |= DB_MARKED;
2899
2900 /*
2901 * Mark the block dirty.
2902 */
2903 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002904 if (!(flags & ML_APPEND_NEW))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002905 buf->b_ml.ml_flags |= ML_LOCKED_POS;
2906 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002907 else // not enough space in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002908 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 long line_count_left, line_count_right;
2910 int page_count_left, page_count_right;
2911 bhdr_T *hp_left;
2912 bhdr_T *hp_right;
2913 bhdr_T *hp_new;
2914 int lines_moved;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002915 int data_moved = 0; // init to shut up gcc
2916 int total_moved = 0; // init to shut up gcc
Bram Moolenaar071d4272004-06-13 20:20:40 +00002917 DATA_BL *dp_right, *dp_left;
2918 int stack_idx;
2919 int in_left;
2920 int lineadd;
2921 blocknr_T bnum_left, bnum_right;
2922 linenr_T lnum_left, lnum_right;
2923 int pb_idx;
2924 PTR_BL *pp_new;
2925
2926 /*
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002927 * There is not enough room, we have to create a new data block and
2928 * copy some lines into it.
2929 * Then we have to insert an entry in the pointer block.
2930 * If this pointer block also is full, we go up another block, and so
2931 * on, up to the root if necessary.
2932 * The line counts in the pointer blocks have already been adjusted by
2933 * ml_find_line().
2934 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00002935 * We are going to allocate a new data block. Depending on the
2936 * situation it will be put to the left or right of the existing
2937 * block. If possible we put the new line in the left block and move
2938 * the lines after it to the right block. Otherwise the new line is
2939 * also put in the right block. This method is more efficient when
2940 * inserting a lot of lines at one place.
2941 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002942 if (db_idx < 0) // left block is new, right block is existing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002943 {
2944 lines_moved = 0;
2945 in_left = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002946 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002948 else // left block is existing, right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002949 {
2950 lines_moved = line_count - db_idx - 1;
2951 if (lines_moved == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002952 in_left = FALSE; // put new line in right block
2953 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002954 else
2955 {
2956 data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) -
2957 dp->db_txt_start;
2958 total_moved = data_moved + lines_moved * INDEX_SIZE;
2959 if ((int)dp->db_free + total_moved >= space_needed)
2960 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002961 in_left = TRUE; // put new line in left block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 space_needed = total_moved;
2963 }
2964 else
2965 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002966 in_left = FALSE; // put new line in right block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 space_needed += total_moved;
2968 }
2969 }
2970 }
2971
2972 page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002973 if ((hp_new = ml_new_data(mfp, flags & ML_APPEND_NEW, page_count))
2974 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002976 // correct line counts in pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 --(buf->b_ml.ml_locked_lineadd);
2978 --(buf->b_ml.ml_locked_high);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002979 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002981 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002982 {
2983 hp_left = hp_new;
2984 hp_right = hp;
2985 line_count_left = 0;
2986 line_count_right = line_count;
2987 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002988 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 {
2990 hp_left = hp;
2991 hp_right = hp_new;
2992 line_count_left = line_count;
2993 line_count_right = 0;
2994 }
2995 dp_right = (DATA_BL *)(hp_right->bh_data);
2996 dp_left = (DATA_BL *)(hp_left->bh_data);
2997 bnum_left = hp_left->bh_bnum;
2998 bnum_right = hp_right->bh_bnum;
2999 page_count_left = hp_left->bh_page_count;
3000 page_count_right = hp_right->bh_page_count;
3001
3002 /*
3003 * May move the new line into the right/new block.
3004 */
3005 if (!in_left)
3006 {
3007 dp_right->db_txt_start -= len;
3008 dp_right->db_free -= len + INDEX_SIZE;
3009 dp_right->db_index[0] = dp_right->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003010 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003011 dp_right->db_index[0] |= DB_MARKED;
3012
3013 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3014 line, (size_t)len);
3015 ++line_count_right;
3016 }
3017 /*
3018 * may move lines from the left/old block to the right/new one.
3019 */
3020 if (lines_moved)
3021 {
3022 /*
3023 */
3024 dp_right->db_txt_start -= data_moved;
3025 dp_right->db_free -= total_moved;
3026 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3027 (char *)dp_left + dp_left->db_txt_start,
3028 (size_t)data_moved);
3029 offset = dp_right->db_txt_start - dp_left->db_txt_start;
3030 dp_left->db_txt_start += data_moved;
3031 dp_left->db_free += total_moved;
3032
3033 /*
3034 * update indexes in the new block
3035 */
3036 for (to = line_count_right, from = db_idx + 1;
3037 from < line_count_left; ++from, ++to)
3038 dp_right->db_index[to] = dp->db_index[from] + offset;
3039 line_count_right += lines_moved;
3040 line_count_left -= lines_moved;
3041 }
3042
3043 /*
3044 * May move the new line into the left (old or new) block.
3045 */
3046 if (in_left)
3047 {
3048 dp_left->db_txt_start -= len;
3049 dp_left->db_free -= len + INDEX_SIZE;
3050 dp_left->db_index[line_count_left] = dp_left->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003051 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003052 dp_left->db_index[line_count_left] |= DB_MARKED;
3053 mch_memmove((char *)dp_left + dp_left->db_txt_start,
3054 line, (size_t)len);
3055 ++line_count_left;
3056 }
3057
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003058 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 {
3060 lnum_left = lnum + 1;
3061 lnum_right = 0;
3062 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003063 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003064 {
3065 lnum_left = 0;
3066 if (in_left)
3067 lnum_right = lnum + 2;
3068 else
3069 lnum_right = lnum + 1;
3070 }
3071 dp_left->db_line_count = line_count_left;
3072 dp_right->db_line_count = line_count_right;
3073
3074 /*
3075 * release the two data blocks
3076 * The new one (hp_new) already has a correct blocknumber.
3077 * The old one (hp, in ml_locked) gets a positive blocknumber if
3078 * we changed it and we are not editing a new file.
3079 */
3080 if (lines_moved || in_left)
3081 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003082 if (!(flags & ML_APPEND_NEW) && db_idx >= 0 && in_left)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 buf->b_ml.ml_flags |= ML_LOCKED_POS;
3084 mf_put(mfp, hp_new, TRUE, FALSE);
3085
3086 /*
3087 * flush the old data block
3088 * set ml_locked_lineadd to 0, because the updating of the
3089 * pointer blocks is done below
3090 */
3091 lineadd = buf->b_ml.ml_locked_lineadd;
3092 buf->b_ml.ml_locked_lineadd = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003093 ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003094
3095 /*
3096 * update pointer blocks for the new data block
3097 */
3098 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3099 --stack_idx)
3100 {
3101 ip = &(buf->b_ml.ml_stack[stack_idx]);
3102 pb_idx = ip->ip_index;
3103 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003104 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003105 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003106 if (pp->pb_id != PTR_ID)
3107 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003108 iemsg(_("E317: pointer block id wrong 3"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003109 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003110 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003111 }
3112 /*
3113 * TODO: If the pointer block is full and we are adding at the end
3114 * try to insert in front of the next block
3115 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003116 // block not full, add one entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003117 if (pp->pb_count < pp->pb_count_max)
3118 {
3119 if (pb_idx + 1 < (int)pp->pb_count)
3120 mch_memmove(&pp->pb_pointer[pb_idx + 2],
3121 &pp->pb_pointer[pb_idx + 1],
3122 (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN));
3123 ++pp->pb_count;
3124 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3125 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3126 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3127 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3128 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3129 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3130
3131 if (lnum_left != 0)
3132 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3133 if (lnum_right != 0)
3134 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3135
3136 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003137 buf->b_ml.ml_stack_top = stack_idx + 1; // truncate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138
3139 if (lineadd)
3140 {
3141 --(buf->b_ml.ml_stack_top);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003142 // fix line count for rest of blocks in the stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 ml_lineadd(buf, lineadd);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003144 // fix stack itself
Bram Moolenaar071d4272004-06-13 20:20:40 +00003145 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
3146 lineadd;
3147 ++(buf->b_ml.ml_stack_top);
3148 }
3149
3150 /*
3151 * We are finished, break the loop here.
3152 */
3153 break;
3154 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003155 else // pointer block full
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 {
3157 /*
3158 * split the pointer block
3159 * allocate a new pointer block
3160 * move some of the pointer into the new block
3161 * prepare for updating the parent block
3162 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003163 for (;;) // do this twice when splitting block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003164 {
3165 hp_new = ml_new_ptr(mfp);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003166 if (hp_new == NULL) // TODO: try to fix tree
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003167 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 pp_new = (PTR_BL *)(hp_new->bh_data);
3169
3170 if (hp->bh_bnum != 1)
3171 break;
3172
3173 /*
3174 * if block 1 becomes full the tree is given an extra level
3175 * The pointers from block 1 are moved into the new block.
3176 * block 1 is updated to point to the new block
3177 * then continue to split the new block
3178 */
3179 mch_memmove(pp_new, pp, (size_t)page_size);
3180 pp->pb_count = 1;
3181 pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum;
3182 pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count;
3183 pp->pb_pointer[0].pe_old_lnum = 1;
3184 pp->pb_pointer[0].pe_page_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003185 mf_put(mfp, hp, TRUE, FALSE); // release block 1
3186 hp = hp_new; // new block is to be split
Bram Moolenaar071d4272004-06-13 20:20:40 +00003187 pp = pp_new;
3188 CHECK(stack_idx != 0, _("stack_idx should be 0"));
3189 ip->ip_index = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003190 ++stack_idx; // do block 1 again later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 }
3192 /*
3193 * move the pointers after the current one to the new block
3194 * If there are none, the new entry will be in the new block.
3195 */
3196 total_moved = pp->pb_count - pb_idx - 1;
3197 if (total_moved)
3198 {
3199 mch_memmove(&pp_new->pb_pointer[0],
3200 &pp->pb_pointer[pb_idx + 1],
3201 (size_t)(total_moved) * sizeof(PTR_EN));
3202 pp_new->pb_count = total_moved;
3203 pp->pb_count -= total_moved - 1;
3204 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3205 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3206 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3207 if (lnum_right)
3208 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3209 }
3210 else
3211 {
3212 pp_new->pb_count = 1;
3213 pp_new->pb_pointer[0].pe_bnum = bnum_right;
3214 pp_new->pb_pointer[0].pe_line_count = line_count_right;
3215 pp_new->pb_pointer[0].pe_page_count = page_count_right;
3216 pp_new->pb_pointer[0].pe_old_lnum = lnum_right;
3217 }
3218 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3219 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3220 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3221 if (lnum_left)
3222 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3223 lnum_left = 0;
3224 lnum_right = 0;
3225
3226 /*
3227 * recompute line counts
3228 */
3229 line_count_right = 0;
3230 for (i = 0; i < (int)pp_new->pb_count; ++i)
3231 line_count_right += pp_new->pb_pointer[i].pe_line_count;
3232 line_count_left = 0;
3233 for (i = 0; i < (int)pp->pb_count; ++i)
3234 line_count_left += pp->pb_pointer[i].pe_line_count;
3235
3236 bnum_left = hp->bh_bnum;
3237 bnum_right = hp_new->bh_bnum;
3238 page_count_left = 1;
3239 page_count_right = 1;
3240 mf_put(mfp, hp, TRUE, FALSE);
3241 mf_put(mfp, hp_new, TRUE, FALSE);
3242 }
3243 }
3244
3245 /*
3246 * Safety check: fallen out of for loop?
3247 */
3248 if (stack_idx < 0)
3249 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003250 iemsg(_("E318: Updated too many blocks?"));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003251 buf->b_ml.ml_stack_top = 0; // invalidate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252 }
3253 }
3254
3255#ifdef FEAT_BYTEOFF
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003256 // The line was inserted below 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 ml_updatechunk(buf, lnum + 1, (long)len, ML_CHNK_ADDLINE);
3258#endif
3259#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003260 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 {
3262 if (STRLEN(line) > 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003263 netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line));
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003264 netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 (char_u *)"\n", 1);
3266 }
3267#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003268#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003269 if (buf->b_write_to_channel)
3270 channel_write_new_lines(buf);
3271#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003272 ret = OK;
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003273
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003274theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003275#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003276 vim_free(tofree);
3277#endif
3278 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003279}
3280
3281/*
Bram Moolenaar250e3112019-07-15 23:02:14 +02003282 * Flush any pending change and call ml_append_int()
3283 */
3284 static int
3285ml_append_flush(
3286 buf_T *buf,
3287 linenr_T lnum, // append after this line (can be 0)
3288 char_u *line, // text of the new line
3289 colnr_T len, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003290 int flags) // ML_APPEND_ flags
Bram Moolenaar250e3112019-07-15 23:02:14 +02003291{
3292 if (lnum > buf->b_ml.ml_line_count)
3293 return FAIL; // lnum out of range
3294
3295 if (buf->b_ml.ml_line_lnum != 0)
3296 // This may also invoke ml_append_int().
3297 ml_flush_line(buf);
3298
3299#ifdef FEAT_EVAL
3300 // When inserting above recorded changes: flush the changes before changing
3301 // the text. Then flush the cached line, it may become invalid.
3302 may_invoke_listeners(buf, lnum + 1, lnum + 1, 1);
3303 if (buf->b_ml.ml_line_lnum != 0)
3304 ml_flush_line(buf);
3305#endif
3306
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003307 return ml_append_int(buf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003308}
3309
3310/*
3311 * Append a line after lnum (may be 0 to insert a line in front of the file).
3312 * "line" does not need to be allocated, but can't be another line in a
3313 * buffer, unlocking may make it invalid.
3314 *
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003315 * "newfile": TRUE when starting to edit a new file, meaning that pe_old_lnum
Bram Moolenaar250e3112019-07-15 23:02:14 +02003316 * will be set for recovery
3317 * Check: The caller of this function should probably also call
3318 * appended_lines().
3319 *
3320 * return FAIL for failure, OK otherwise
3321 */
3322 int
3323ml_append(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003324 linenr_T lnum, // append after this line (can be 0)
3325 char_u *line, // text of the new line
3326 colnr_T len, // length of new line, including NUL, or 0
3327 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003328{
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003329 return ml_append_flags(lnum, line, len, newfile ? ML_APPEND_NEW : 0);
3330}
3331
3332 int
3333ml_append_flags(
3334 linenr_T lnum, // append after this line (can be 0)
3335 char_u *line, // text of the new line
3336 colnr_T len, // length of new line, including NUL, or 0
3337 int flags) // ML_APPEND_ values
3338{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003339 // When starting up, we might still need to create the memfile
Bram Moolenaar250e3112019-07-15 23:02:14 +02003340 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
3341 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003342 return ml_append_flush(curbuf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003343}
3344
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003345
Bram Moolenaar250e3112019-07-15 23:02:14 +02003346#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(PROTO)
3347/*
3348 * Like ml_append() but for an arbitrary buffer. The buffer must already have
3349 * a memline.
3350 */
3351 int
3352ml_append_buf(
3353 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003354 linenr_T lnum, // append after this line (can be 0)
3355 char_u *line, // text of the new line
3356 colnr_T len, // length of new line, including NUL, or 0
3357 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003358{
3359 if (buf->b_ml.ml_mfp == NULL)
3360 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003361 return ml_append_flush(buf, lnum, line, len, newfile ? ML_APPEND_NEW : 0);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003362}
3363#endif
3364
3365/*
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003366 * Replace line "lnum", with buffering, in current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003367 *
Bram Moolenaar1056d982006-03-09 22:37:52 +00003368 * If "copy" is TRUE, make a copy of the line, otherwise the line has been
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369 * copied to allocated memory already.
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003370 * If "copy" is FALSE the "line" may be freed to add text properties!
3371 * Do not use it after calling ml_replace().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003372 *
3373 * Check: The caller of this function should probably also call
3374 * changed_lines(), unless update_screen(NOT_VALID) is used.
3375 *
3376 * return FAIL for failure, OK otherwise
3377 */
3378 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003379ml_replace(linenr_T lnum, char_u *line, int copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003380{
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003381 colnr_T len = -1;
3382
3383 if (line != NULL)
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003384 len = (colnr_T)STRLEN(line);
Bram Moolenaarccae4672019-01-04 15:09:57 +01003385 return ml_replace_len(lnum, line, len, FALSE, copy);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003386}
3387
Bram Moolenaarccae4672019-01-04 15:09:57 +01003388/*
3389 * Replace a line for the current buffer. Like ml_replace() with:
3390 * "len_arg" is the length of the text, excluding NUL.
3391 * If "has_props" is TRUE then "line_arg" includes the text properties and
3392 * "len_arg" includes the NUL of the text.
3393 */
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003394 int
Bram Moolenaarccae4672019-01-04 15:09:57 +01003395ml_replace_len(
3396 linenr_T lnum,
3397 char_u *line_arg,
3398 colnr_T len_arg,
3399 int has_props,
3400 int copy)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003401{
3402 char_u *line = line_arg;
3403 colnr_T len = len_arg;
3404
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003405 if (line == NULL) // just checking...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003406 return FAIL;
3407
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003408 // When starting up, we might still need to create the memfile
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003409 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003410 return FAIL;
3411
Bram Moolenaarccae4672019-01-04 15:09:57 +01003412 if (!has_props)
3413 ++len; // include the NUL after the text
3414 if (copy)
3415 {
3416 // copy the line to allocated memory
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003417#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003418 if (has_props)
3419 line = vim_memsave(line, len);
3420 else
3421#endif
3422 line = vim_strnsave(line, len - 1);
3423 if (line == NULL)
3424 return FAIL;
3425 }
3426
Bram Moolenaar071d4272004-06-13 20:20:40 +00003427#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003428 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 {
3430 netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum)));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003431 netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003432 }
3433#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003434 if (curbuf->b_ml.ml_line_lnum != lnum)
3435 {
3436 // another line is buffered, flush it
3437 ml_flush_line(curbuf);
Bram Moolenaarca79a5f2018-12-13 23:16:36 +01003438 curbuf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003439
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003440#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003441 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003442 // Need to fetch the old line to copy over any text properties.
3443 ml_get_buf(curbuf, lnum, TRUE);
3444#endif
3445 }
3446
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003447#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003448 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003449 {
3450 size_t oldtextlen = STRLEN(curbuf->b_ml.ml_line_ptr) + 1;
3451
3452 if (oldtextlen < (size_t)curbuf->b_ml.ml_line_len)
3453 {
3454 char_u *newline;
3455 size_t textproplen = curbuf->b_ml.ml_line_len - oldtextlen;
3456
3457 // Need to copy over text properties, stored after the text.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003458 newline = alloc(len + (int)textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003459 if (newline != NULL)
3460 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01003461 mch_memmove(newline, line, len);
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02003462 mch_memmove(newline + len, curbuf->b_ml.ml_line_ptr
3463 + oldtextlen, textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003464 vim_free(line);
3465 line = newline;
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003466 len += (colnr_T)textproplen;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003467 }
3468 }
3469 }
3470#endif
3471
Bram Moolenaarccae4672019-01-04 15:09:57 +01003472 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) // same line allocated
3473 vim_free(curbuf->b_ml.ml_line_ptr); // free it
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003474
Bram Moolenaar071d4272004-06-13 20:20:40 +00003475 curbuf->b_ml.ml_line_ptr = line;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003476 curbuf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003477 curbuf->b_ml.ml_line_lnum = lnum;
3478 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
3479
3480 return OK;
3481}
3482
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003483#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003484/*
3485 * Adjust text properties in line "lnum" for a deleted line.
3486 * When "above" is true this is the line above the deleted line.
3487 * "del_props" are the properties of the deleted line.
3488 */
3489 static void
3490adjust_text_props_for_delete(
3491 buf_T *buf,
3492 linenr_T lnum,
3493 char_u *del_props,
3494 int del_props_len,
3495 int above)
3496{
3497 int did_get_line = FALSE;
3498 int done_del;
3499 int done_this;
3500 textprop_T prop_del;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003501 bhdr_T *hp;
3502 DATA_BL *dp;
3503 int idx;
3504 int line_start;
3505 long line_size;
3506 int this_props_len;
3507 char_u *text;
3508 size_t textlen;
3509 int found;
3510
3511 for (done_del = 0; done_del < del_props_len; done_del += sizeof(textprop_T))
3512 {
3513 mch_memmove(&prop_del, del_props + done_del, sizeof(textprop_T));
3514 if ((above && (prop_del.tp_flags & TP_FLAG_CONT_PREV)
3515 && !(prop_del.tp_flags & TP_FLAG_CONT_NEXT))
3516 || (!above && (prop_del.tp_flags & TP_FLAG_CONT_NEXT)
3517 && !(prop_del.tp_flags & TP_FLAG_CONT_PREV)))
3518 {
3519 if (!did_get_line)
3520 {
3521 did_get_line = TRUE;
3522 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
3523 return;
3524
3525 dp = (DATA_BL *)(hp->bh_data);
3526 idx = lnum - buf->b_ml.ml_locked_low;
3527 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3528 if (idx == 0) // first line in block, text at the end
3529 line_size = dp->db_txt_end - line_start;
3530 else
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003531 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK)
3532 - line_start;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003533 text = (char_u *)dp + line_start;
3534 textlen = STRLEN(text) + 1;
3535 if ((long)textlen >= line_size)
3536 {
3537 if (above)
3538 internal_error("no text property above deleted line");
3539 else
3540 internal_error("no text property below deleted line");
3541 return;
3542 }
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003543 this_props_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003544 }
3545
3546 found = FALSE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003547 for (done_this = 0; done_this < this_props_len;
3548 done_this += sizeof(textprop_T))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003549 {
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003550 int flag = above ? TP_FLAG_CONT_NEXT
3551 : TP_FLAG_CONT_PREV;
3552 textprop_T prop_this;
3553
3554 mch_memmove(&prop_this, text + textlen + done_del,
3555 sizeof(textprop_T));
3556 if ((prop_this.tp_flags & flag)
3557 && prop_del.tp_id == prop_this.tp_id
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003558 && prop_del.tp_type == prop_this.tp_type)
3559 {
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003560 found = TRUE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003561 prop_this.tp_flags &= ~flag;
3562 mch_memmove(text + textlen + done_del, &prop_this,
3563 sizeof(textprop_T));
3564 break;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003565 }
3566 }
3567 if (!found)
3568 {
3569 if (above)
3570 internal_error("text property above deleted line not found");
3571 else
3572 internal_error("text property below deleted line not found");
3573 }
3574
3575 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3576 }
3577 }
3578}
3579#endif
3580
Bram Moolenaar071d4272004-06-13 20:20:40 +00003581/*
Bram Moolenaar4033c552017-09-16 20:54:51 +02003582 * Delete line "lnum" in the current buffer.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003583 * When "flags" has ML_DEL_MESSAGE may give a "No lines in buffer" message.
3584 * When "flags" has ML_DEL_UNDO this is called from undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003585 *
3586 * return FAIL for failure, OK otherwise
3587 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003588 static int
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003589ml_delete_int(buf_T *buf, linenr_T lnum, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003590{
3591 bhdr_T *hp;
3592 memfile_T *mfp;
3593 DATA_BL *dp;
3594 PTR_BL *pp;
3595 infoptr_T *ip;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003596 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 int idx;
3598 int stack_idx;
3599 int text_start;
3600 int line_start;
3601 long line_size;
3602 int i;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003603 int ret = FAIL;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003604#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003605 char_u *textprop_save = NULL;
3606 int textprop_save_len;
3607#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003608
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609 if (lowest_marked && lowest_marked > lnum)
3610 lowest_marked--;
3611
3612/*
3613 * If the file becomes empty the last line is replaced by an empty line.
3614 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003615 if (buf->b_ml.ml_line_count == 1) // file becomes empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003617 if ((flags & ML_DEL_MESSAGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618#ifdef FEAT_NETBEANS_INTG
3619 && !netbeansSuppressNoLines
3620#endif
3621 )
Bram Moolenaar238a5642006-02-21 22:12:05 +00003622 set_keep_msg((char_u *)_(no_lines_msg), 0);
3623
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003624 // FEAT_BYTEOFF already handled in there, don't worry 'bout it below
Bram Moolenaar071d4272004-06-13 20:20:40 +00003625 i = ml_replace((linenr_T)1, (char_u *)"", TRUE);
3626 buf->b_ml.ml_flags |= ML_EMPTY;
3627
3628 return i;
3629 }
3630
3631/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003632 * Find the data block containing the line.
3633 * This also fills the stack with the blocks from the root to the data block.
3634 * This also releases any locked block..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 */
3636 mfp = buf->b_ml.ml_mfp;
3637 if (mfp == NULL)
3638 return FAIL;
3639
3640 if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL)
3641 return FAIL;
3642
3643 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003644 // compute line count before the delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645 count = (long)(buf->b_ml.ml_locked_high)
3646 - (long)(buf->b_ml.ml_locked_low) + 2;
3647 idx = lnum - buf->b_ml.ml_locked_low;
3648
3649 --buf->b_ml.ml_line_count;
3650
3651 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003652 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003653 line_size = dp->db_txt_end - line_start;
3654 else
3655 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start;
3656
3657#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003658 if (netbeans_active())
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003659 netbeans_removed(buf, lnum, 0, (long)line_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003660#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003661#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003662 // If there are text properties, make a copy, so that we can update
3663 // properties in preceding and following lines.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003664 if (buf->b_has_textprop && !(flags & ML_DEL_UNDO))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003665 {
3666 size_t textlen = STRLEN((char_u *)dp + line_start) + 1;
3667
3668 if ((long)textlen < line_size)
3669 {
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003670 textprop_save_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003671 textprop_save = vim_memsave((char_u *)dp + line_start + textlen,
3672 textprop_save_len);
3673 }
3674 }
3675#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003676
3677/*
3678 * special case: If there is only one line in the data block it becomes empty.
3679 * Then we have to remove the entry, pointing to this data block, from the
3680 * pointer block. If this pointer block also becomes empty, we go up another
3681 * block, and so on, up to the root if necessary.
3682 * The line counts in the pointer blocks have already been adjusted by
3683 * ml_find_line().
3684 */
3685 if (count == 1)
3686 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003687 mf_free(mfp, hp); // free the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003688 buf->b_ml.ml_locked = NULL;
3689
Bram Moolenaare60acc12011-05-10 16:41:25 +02003690 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3691 --stack_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003692 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003693 buf->b_ml.ml_stack_top = 0; // stack is invalid when failing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003694 ip = &(buf->b_ml.ml_stack[stack_idx]);
3695 idx = ip->ip_index;
3696 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003697 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003698 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003699 if (pp->pb_id != PTR_ID)
3700 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003701 iemsg(_("E317: pointer block id wrong 4"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003703 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 }
3705 count = --(pp->pb_count);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003706 if (count == 0) // the pointer block becomes empty!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 mf_free(mfp, hp);
3708 else
3709 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003710 if (count != idx) // move entries after the deleted one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1],
3712 (size_t)(count - idx) * sizeof(PTR_EN));
3713 mf_put(mfp, hp, TRUE, FALSE);
3714
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003715 buf->b_ml.ml_stack_top = stack_idx; // truncate stack
3716 // fix line count for rest of blocks in the stack
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003717 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 {
3719 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
3720 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003721 buf->b_ml.ml_locked_lineadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003722 }
3723 ++(buf->b_ml.ml_stack_top);
3724
3725 break;
3726 }
3727 }
3728 CHECK(stack_idx < 0, _("deleted block 1?"));
3729 }
3730 else
3731 {
3732 /*
3733 * delete the text by moving the next lines forwards
3734 */
3735 text_start = dp->db_txt_start;
3736 mch_memmove((char *)dp + text_start + line_size,
3737 (char *)dp + text_start, (size_t)(line_start - text_start));
3738
3739 /*
3740 * delete the index by moving the next indexes backwards
3741 * Adjust the indexes for the text movement.
3742 */
3743 for (i = idx; i < count - 1; ++i)
3744 dp->db_index[i] = dp->db_index[i + 1] + line_size;
3745
3746 dp->db_free += line_size + INDEX_SIZE;
3747 dp->db_txt_start += line_size;
3748 --(dp->db_line_count);
3749
3750 /*
3751 * mark the block dirty and make sure it is in the file (for recovery)
3752 */
3753 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3754 }
3755
3756#ifdef FEAT_BYTEOFF
3757 ml_updatechunk(buf, lnum, line_size, ML_CHNK_DELLINE);
3758#endif
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003759 ret = OK;
3760
3761theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003762#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003763 if (textprop_save != NULL)
3764 {
3765 // Adjust text properties in the line above and below.
3766 if (lnum > 1)
3767 adjust_text_props_for_delete(buf, lnum - 1, textprop_save, textprop_save_len, TRUE);
3768 if (lnum <= buf->b_ml.ml_line_count)
3769 adjust_text_props_for_delete(buf, lnum, textprop_save, textprop_save_len, FALSE);
3770 }
3771 vim_free(textprop_save);
3772#endif
3773 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003774}
3775
3776/*
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003777 * Delete line "lnum" in the current buffer.
3778 * When "message" is TRUE may give a "No lines in buffer" message.
3779 *
3780 * Check: The caller of this function should probably also call
3781 * deleted_lines() after this.
3782 *
3783 * return FAIL for failure, OK otherwise
3784 */
3785 int
Bram Moolenaarca70c072020-05-30 20:30:46 +02003786ml_delete(linenr_T lnum)
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003787{
Bram Moolenaarca70c072020-05-30 20:30:46 +02003788 return ml_delete_flags(lnum, 0);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003789}
3790
3791/*
3792 * Like ml_delete() but using flags (see ml_delete_int()).
3793 */
3794 int
3795ml_delete_flags(linenr_T lnum, int flags)
3796{
3797 ml_flush_line(curbuf);
3798 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
3799 return FAIL;
3800
3801#ifdef FEAT_EVAL
3802 // When inserting above recorded changes: flush the changes before changing
3803 // the text.
3804 may_invoke_listeners(curbuf, lnum, lnum + 1, -1);
3805#endif
3806
3807 return ml_delete_int(curbuf, lnum, flags);
3808}
3809
3810/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003811 * set the DB_MARKED flag for line 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003812 */
3813 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003814ml_setmarked(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003815{
3816 bhdr_T *hp;
3817 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003818 // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003819 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count
3820 || curbuf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003821 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003822
3823 if (lowest_marked == 0 || lowest_marked > lnum)
3824 lowest_marked = lnum;
3825
3826 /*
3827 * find the data block containing the line
3828 * This also fills the stack with the blocks from the root to the data block
3829 * This also releases any locked block.
3830 */
3831 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003832 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833
3834 dp = (DATA_BL *)(hp->bh_data);
3835 dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED;
3836 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3837}
3838
3839/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003840 * find the first line with its DB_MARKED flag set
Bram Moolenaar071d4272004-06-13 20:20:40 +00003841 */
3842 linenr_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003843ml_firstmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844{
3845 bhdr_T *hp;
3846 DATA_BL *dp;
3847 linenr_T lnum;
3848 int i;
3849
3850 if (curbuf->b_ml.ml_mfp == NULL)
3851 return (linenr_T) 0;
3852
3853 /*
3854 * The search starts with lowest_marked line. This is the last line where
3855 * a mark was found, adjusted by inserting/deleting lines.
3856 */
3857 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3858 {
3859 /*
3860 * Find the data block containing the line.
3861 * This also fills the stack with the blocks from the root to the data
3862 * block This also releases any locked block.
3863 */
3864 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003865 return (linenr_T)0; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866
3867 dp = (DATA_BL *)(hp->bh_data);
3868
3869 for (i = lnum - curbuf->b_ml.ml_locked_low;
3870 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3871 if ((dp->db_index[i]) & DB_MARKED)
3872 {
3873 (dp->db_index[i]) &= DB_INDEX_MASK;
3874 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3875 lowest_marked = lnum + 1;
3876 return lnum;
3877 }
3878 }
3879
3880 return (linenr_T) 0;
3881}
3882
Bram Moolenaar071d4272004-06-13 20:20:40 +00003883/*
3884 * clear all DB_MARKED flags
3885 */
3886 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003887ml_clearmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003888{
3889 bhdr_T *hp;
3890 DATA_BL *dp;
3891 linenr_T lnum;
3892 int i;
3893
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003894 if (curbuf->b_ml.ml_mfp == NULL) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003895 return;
3896
3897 /*
3898 * The search starts with line lowest_marked.
3899 */
3900 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3901 {
3902 /*
3903 * Find the data block containing the line.
3904 * This also fills the stack with the blocks from the root to the data
3905 * block and releases any locked block.
3906 */
3907 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003908 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003909
3910 dp = (DATA_BL *)(hp->bh_data);
3911
3912 for (i = lnum - curbuf->b_ml.ml_locked_low;
3913 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3914 if ((dp->db_index[i]) & DB_MARKED)
3915 {
3916 (dp->db_index[i]) &= DB_INDEX_MASK;
3917 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3918 }
3919 }
3920
3921 lowest_marked = 0;
3922 return;
3923}
3924
3925/*
3926 * flush ml_line if necessary
3927 */
3928 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003929ml_flush_line(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003930{
3931 bhdr_T *hp;
3932 DATA_BL *dp;
3933 linenr_T lnum;
3934 char_u *new_line;
3935 char_u *old_line;
3936 colnr_T new_len;
3937 int old_len;
3938 int extra;
3939 int idx;
3940 int start;
3941 int count;
3942 int i;
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003943 static int entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003944
3945 if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003946 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947
3948 if (buf->b_ml.ml_flags & ML_LINE_DIRTY)
3949 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003950 // This code doesn't work recursively, but Netbeans may call back here
3951 // when obtaining the cursor position.
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003952 if (entered)
3953 return;
3954 entered = TRUE;
3955
Bram Moolenaar071d4272004-06-13 20:20:40 +00003956 lnum = buf->b_ml.ml_line_lnum;
3957 new_line = buf->b_ml.ml_line_ptr;
3958
3959 hp = ml_find_line(buf, lnum, ML_FIND);
3960 if (hp == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003961 siemsg(_("E320: Cannot find line %ld"), lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962 else
3963 {
3964 dp = (DATA_BL *)(hp->bh_data);
3965 idx = lnum - buf->b_ml.ml_locked_low;
3966 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3967 old_line = (char_u *)dp + start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003968 if (idx == 0) // line is last in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969 old_len = dp->db_txt_end - start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003970 else // text of previous line follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003972 new_len = buf->b_ml.ml_line_len;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003973 extra = new_len - old_len; // negative if lines gets smaller
Bram Moolenaar071d4272004-06-13 20:20:40 +00003974
3975 /*
3976 * if new line fits in data block, replace directly
3977 */
3978 if ((int)dp->db_free >= extra)
3979 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003980 // if the length changes and there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981 count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1;
3982 if (extra != 0 && idx < count - 1)
3983 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003984 // move text of following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003985 mch_memmove((char *)dp + dp->db_txt_start - extra,
3986 (char *)dp + dp->db_txt_start,
3987 (size_t)(start - dp->db_txt_start));
3988
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003989 // adjust pointers of this and following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003990 for (i = idx + 1; i < count; ++i)
3991 dp->db_index[i] -= extra;
3992 }
3993 dp->db_index[idx] -= extra;
3994
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003995 // adjust free space
Bram Moolenaar071d4272004-06-13 20:20:40 +00003996 dp->db_free -= extra;
3997 dp->db_txt_start -= extra;
3998
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003999 // copy new line into the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004000 mch_memmove(old_line - extra, new_line, (size_t)new_len);
4001 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
4002#ifdef FEAT_BYTEOFF
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004003 // The else case is already covered by the insert and delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00004004 ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE);
4005#endif
4006 }
4007 else
4008 {
4009 /*
4010 * Cannot do it in one data block: Delete and append.
4011 * Append first, because ml_delete_int() cannot delete the
4012 * last line in a buffer, which causes trouble for a buffer
4013 * that has only one line.
4014 * Don't forget to copy the mark!
4015 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004016 // How about handling errors???
Bram Moolenaara9d4b842020-05-30 14:46:52 +02004017 (void)ml_append_int(buf, lnum, new_line, new_len,
Bram Moolenaar840f91f2021-05-26 22:32:10 +02004018 ((dp->db_index[idx] & DB_MARKED) ? ML_APPEND_MARK : 0)
4019#ifdef FEAT_PROP_POPUP
4020 | ML_APPEND_NOPROP
4021#endif
4022 );
Bram Moolenaara9d4b842020-05-30 14:46:52 +02004023 (void)ml_delete_int(buf, lnum, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004024 }
4025 }
4026 vim_free(new_line);
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004027
4028 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029 }
4030
4031 buf->b_ml.ml_line_lnum = 0;
4032}
4033
4034/*
4035 * create a new, empty, data block
4036 */
4037 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004038ml_new_data(memfile_T *mfp, int negative, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004039{
4040 bhdr_T *hp;
4041 DATA_BL *dp;
4042
4043 if ((hp = mf_new(mfp, negative, page_count)) == NULL)
4044 return NULL;
4045
4046 dp = (DATA_BL *)(hp->bh_data);
4047 dp->db_id = DATA_ID;
4048 dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size;
4049 dp->db_free = dp->db_txt_start - HEADER_SIZE;
4050 dp->db_line_count = 0;
4051
4052 return hp;
4053}
4054
4055/*
4056 * create a new, empty, pointer block
4057 */
4058 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004059ml_new_ptr(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004060{
4061 bhdr_T *hp;
4062 PTR_BL *pp;
4063
4064 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
4065 return NULL;
4066
4067 pp = (PTR_BL *)(hp->bh_data);
4068 pp->pb_id = PTR_ID;
4069 pp->pb_count = 0;
Bram Moolenaar20a825a2010-05-31 21:27:30 +02004070 pp->pb_count_max = (short_u)((mfp->mf_page_size - sizeof(PTR_BL))
4071 / sizeof(PTR_EN) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004072
4073 return hp;
4074}
4075
4076/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01004077 * Lookup line 'lnum' in a memline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004078 *
4079 * action: if ML_DELETE or ML_INSERT the line count is updated while searching
4080 * if ML_FLUSH only flush a locked block
4081 * if ML_FIND just find the line
4082 *
4083 * If the block was found it is locked and put in ml_locked.
4084 * The stack is updated to lead to the locked block. The ip_high field in
4085 * the stack is updated to reflect the last line in the block AFTER the
4086 * insert or delete, also if the pointer block has not been updated yet. But
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004087 * if ml_locked != NULL ml_locked_lineadd must be added to ip_high.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004088 *
4089 * return: NULL for failure, pointer to block header otherwise
4090 */
4091 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004092ml_find_line(buf_T *buf, linenr_T lnum, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004093{
4094 DATA_BL *dp;
4095 PTR_BL *pp;
4096 infoptr_T *ip;
4097 bhdr_T *hp;
4098 memfile_T *mfp;
4099 linenr_T t;
4100 blocknr_T bnum, bnum2;
4101 int dirty;
4102 linenr_T low, high;
4103 int top;
4104 int page_count;
4105 int idx;
4106
4107 mfp = buf->b_ml.ml_mfp;
4108
4109 /*
4110 * If there is a locked block check if the wanted line is in it.
4111 * If not, flush and release the locked block.
4112 * Don't do this for ML_INSERT_SAME, because the stack need to be updated.
4113 * Don't do this for ML_FLUSH, because we want to flush the locked block.
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004114 * Don't do this when 'swapfile' is reset, we want to load all the blocks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004115 */
4116 if (buf->b_ml.ml_locked)
4117 {
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004118 if (ML_SIMPLE(action)
4119 && buf->b_ml.ml_locked_low <= lnum
4120 && buf->b_ml.ml_locked_high >= lnum
4121 && !mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004123 // remember to update pointer blocks and stack later
Bram Moolenaar071d4272004-06-13 20:20:40 +00004124 if (action == ML_INSERT)
4125 {
4126 ++(buf->b_ml.ml_locked_lineadd);
4127 ++(buf->b_ml.ml_locked_high);
4128 }
4129 else if (action == ML_DELETE)
4130 {
4131 --(buf->b_ml.ml_locked_lineadd);
4132 --(buf->b_ml.ml_locked_high);
4133 }
4134 return (buf->b_ml.ml_locked);
4135 }
4136
4137 mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY,
4138 buf->b_ml.ml_flags & ML_LOCKED_POS);
4139 buf->b_ml.ml_locked = NULL;
4140
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004141 /*
4142 * If lines have been added or deleted in the locked block, need to
4143 * update the line count in pointer blocks.
4144 */
4145 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004146 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
4147 }
4148
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004149 if (action == ML_FLUSH) // nothing else to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004150 return NULL;
4151
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004152 bnum = 1; // start at the root of the tree
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 page_count = 1;
4154 low = 1;
4155 high = buf->b_ml.ml_line_count;
4156
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004157 if (action == ML_FIND) // first try stack entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00004158 {
4159 for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top)
4160 {
4161 ip = &(buf->b_ml.ml_stack[top]);
4162 if (ip->ip_low <= lnum && ip->ip_high >= lnum)
4163 {
4164 bnum = ip->ip_bnum;
4165 low = ip->ip_low;
4166 high = ip->ip_high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004167 buf->b_ml.ml_stack_top = top; // truncate stack at prev entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 break;
4169 }
4170 }
4171 if (top < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004172 buf->b_ml.ml_stack_top = 0; // not found, start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004174 else // ML_DELETE or ML_INSERT
4175 buf->b_ml.ml_stack_top = 0; // start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004176
4177/*
4178 * search downwards in the tree until a data block is found
4179 */
4180 for (;;)
4181 {
4182 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
4183 goto error_noblock;
4184
4185 /*
4186 * update high for insert/delete
4187 */
4188 if (action == ML_INSERT)
4189 ++high;
4190 else if (action == ML_DELETE)
4191 --high;
4192
4193 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004194 if (dp->db_id == DATA_ID) // data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004195 {
4196 buf->b_ml.ml_locked = hp;
4197 buf->b_ml.ml_locked_low = low;
4198 buf->b_ml.ml_locked_high = high;
4199 buf->b_ml.ml_locked_lineadd = 0;
4200 buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS);
4201 return hp;
4202 }
4203
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004204 pp = (PTR_BL *)(dp); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205 if (pp->pb_id != PTR_ID)
4206 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004207 iemsg(_("E317: pointer block id wrong"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004208 goto error_block;
4209 }
4210
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004211 if ((top = ml_add_stack(buf)) < 0) // add new entry to stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00004212 goto error_block;
4213 ip = &(buf->b_ml.ml_stack[top]);
4214 ip->ip_bnum = bnum;
4215 ip->ip_low = low;
4216 ip->ip_high = high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004217 ip->ip_index = -1; // index not known yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004218
4219 dirty = FALSE;
4220 for (idx = 0; idx < (int)pp->pb_count; ++idx)
4221 {
4222 t = pp->pb_pointer[idx].pe_line_count;
4223 CHECK(t == 0, _("pe_line_count is zero"));
4224 if ((low += t) > lnum)
4225 {
4226 ip->ip_index = idx;
4227 bnum = pp->pb_pointer[idx].pe_bnum;
4228 page_count = pp->pb_pointer[idx].pe_page_count;
4229 high = low - 1;
4230 low -= t;
4231
4232 /*
4233 * a negative block number may have been changed
4234 */
4235 if (bnum < 0)
4236 {
4237 bnum2 = mf_trans_del(mfp, bnum);
4238 if (bnum != bnum2)
4239 {
4240 bnum = bnum2;
4241 pp->pb_pointer[idx].pe_bnum = bnum;
4242 dirty = TRUE;
4243 }
4244 }
4245
4246 break;
4247 }
4248 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004249 if (idx >= (int)pp->pb_count) // past the end: something wrong!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 {
4251 if (lnum > buf->b_ml.ml_line_count)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004252 siemsg(_("E322: line number out of range: %ld past the end"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004253 lnum - buf->b_ml.ml_line_count);
4254
4255 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004256 siemsg(_("E323: line count wrong in block %ld"), bnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 goto error_block;
4258 }
4259 if (action == ML_DELETE)
4260 {
4261 pp->pb_pointer[idx].pe_line_count--;
4262 dirty = TRUE;
4263 }
4264 else if (action == ML_INSERT)
4265 {
4266 pp->pb_pointer[idx].pe_line_count++;
4267 dirty = TRUE;
4268 }
4269 mf_put(mfp, hp, dirty, FALSE);
4270 }
4271
4272error_block:
4273 mf_put(mfp, hp, FALSE, FALSE);
4274error_noblock:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004275 /*
4276 * If action is ML_DELETE or ML_INSERT we have to correct the tree for
4277 * the incremented/decremented line counts, because there won't be a line
4278 * inserted/deleted after all.
4279 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004280 if (action == ML_DELETE)
4281 ml_lineadd(buf, 1);
4282 else if (action == ML_INSERT)
4283 ml_lineadd(buf, -1);
4284 buf->b_ml.ml_stack_top = 0;
4285 return NULL;
4286}
4287
4288/*
4289 * add an entry to the info pointer stack
4290 *
4291 * return -1 for failure, number of the new entry otherwise
4292 */
4293 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004294ml_add_stack(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295{
4296 int top;
4297 infoptr_T *newstack;
4298
4299 top = buf->b_ml.ml_stack_top;
4300
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004301 // may have to increase the stack size
Bram Moolenaar071d4272004-06-13 20:20:40 +00004302 if (top == buf->b_ml.ml_stack_size)
4303 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004304 CHECK(top > 0, _("Stack size increases")); // more than 5 levels???
Bram Moolenaar071d4272004-06-13 20:20:40 +00004305
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004306 newstack = ALLOC_MULT(infoptr_T, buf->b_ml.ml_stack_size + STACK_INCR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004307 if (newstack == NULL)
4308 return -1;
Bram Moolenaarfbd302f2015-08-08 18:23:46 +02004309 if (top > 0)
4310 mch_memmove(newstack, buf->b_ml.ml_stack,
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004311 (size_t)top * sizeof(infoptr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004312 vim_free(buf->b_ml.ml_stack);
4313 buf->b_ml.ml_stack = newstack;
4314 buf->b_ml.ml_stack_size += STACK_INCR;
4315 }
4316
4317 buf->b_ml.ml_stack_top++;
4318 return top;
4319}
4320
4321/*
4322 * Update the pointer blocks on the stack for inserted/deleted lines.
4323 * The stack itself is also updated.
4324 *
4325 * When a insert/delete line action fails, the line is not inserted/deleted,
4326 * but the pointer blocks have already been updated. That is fixed here by
4327 * walking through the stack.
4328 *
4329 * Count is the number of lines added, negative if lines have been deleted.
4330 */
4331 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004332ml_lineadd(buf_T *buf, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333{
4334 int idx;
4335 infoptr_T *ip;
4336 PTR_BL *pp;
4337 memfile_T *mfp = buf->b_ml.ml_mfp;
4338 bhdr_T *hp;
4339
4340 for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx)
4341 {
4342 ip = &(buf->b_ml.ml_stack[idx]);
4343 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
4344 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004345 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 if (pp->pb_id != PTR_ID)
4347 {
4348 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004349 iemsg(_("E317: pointer block id wrong 2"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 break;
4351 }
4352 pp->pb_pointer[ip->ip_index].pe_line_count += count;
4353 ip->ip_high += count;
4354 mf_put(mfp, hp, TRUE, FALSE);
4355 }
4356}
4357
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004358#if defined(HAVE_READLINK) || defined(PROTO)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004359/*
4360 * Resolve a symlink in the last component of a file name.
4361 * Note that f_resolve() does it for every part of the path, we don't do that
4362 * here.
4363 * If it worked returns OK and the resolved link in "buf[MAXPATHL]".
4364 * Otherwise returns FAIL.
4365 */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004366 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004367resolve_symlink(char_u *fname, char_u *buf)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004368{
4369 char_u tmp[MAXPATHL];
4370 int ret;
4371 int depth = 0;
4372
4373 if (fname == NULL)
4374 return FAIL;
4375
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004376 // Put the result so far in tmp[], starting with the original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004377 vim_strncpy(tmp, fname, MAXPATHL - 1);
4378
4379 for (;;)
4380 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004381 // Limit symlink depth to 100, catch recursive loops.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004382 if (++depth == 100)
4383 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004384 semsg(_("E773: Symlink loop for \"%s\""), fname);
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004385 return FAIL;
4386 }
4387
4388 ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1);
4389 if (ret <= 0)
4390 {
Bram Moolenaarcc984262005-12-23 22:19:46 +00004391 if (errno == EINVAL || errno == ENOENT)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004392 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004393 // Found non-symlink or not existing file, stop here.
4394 // When at the first level use the unmodified name, skip the
4395 // call to vim_FullName().
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004396 if (depth == 1)
4397 return FAIL;
4398
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004399 // Use the resolved name in tmp[].
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004400 break;
4401 }
4402
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004403 // There must be some error reading links, use original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004404 return FAIL;
4405 }
4406 buf[ret] = NUL;
4407
4408 /*
4409 * Check whether the symlink is relative or absolute.
4410 * If it's relative, build a new path based on the directory
4411 * portion of the filename (if any) and the path the symlink
4412 * points to.
4413 */
4414 if (mch_isFullName(buf))
4415 STRCPY(tmp, buf);
4416 else
4417 {
4418 char_u *tail;
4419
4420 tail = gettail(tmp);
4421 if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL)
4422 return FAIL;
4423 STRCPY(tail, buf);
4424 }
4425 }
4426
4427 /*
4428 * Try to resolve the full name of the file so that the swapfile name will
4429 * be consistent even when opening a relative symlink from different
4430 * working directories.
4431 */
4432 return vim_FullName(tmp, buf, MAXPATHL, TRUE);
4433}
4434#endif
4435
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436/*
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004437 * Make swap file name out of the file name and a directory name.
4438 * Returns pointer to allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004439 */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004440 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004441makeswapname(
4442 char_u *fname,
4443 char_u *ffname UNUSED,
4444 buf_T *buf,
4445 char_u *dir_name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446{
4447 char_u *r, *s;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02004448 char_u *fname_res = fname;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004449#ifdef HAVE_READLINK
4450 char_u fname_buf[MAXPATHL];
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004451
4452 // Expand symlink in the file name, so that we put the swap file with the
4453 // actual file instead of with the symlink.
4454 if (resolve_symlink(fname, fname_buf) == OK)
4455 fname_res = fname_buf;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004456#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457
Bram Moolenaar4f974752019-02-17 17:44:42 +01004458#if defined(UNIX) || defined(MSWIN) // Need _very_ long file names
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01004459 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01004460
4461 s = dir_name + len;
4462 if (after_pathsep(dir_name, s) && len > 1 && s[-1] == s[-2])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004463 { // Ends with '//', Use Full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004464 r = NULL;
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004465 if ((s = make_percent_swname(dir_name, fname_res)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004466 {
4467 r = modname(s, (char_u *)".swp", FALSE);
4468 vim_free(s);
4469 }
4470 return r;
4471 }
4472#endif
4473
4474 r = buf_modname(
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475 (buf->b_p_sn || buf->b_shortname),
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004476 fname_res,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 (char_u *)
Bram Moolenaare60acc12011-05-10 16:41:25 +02004478#if defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004479 "_swp",
4480#else
4481 ".swp",
4482#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004483 // Prepend a '.' to the swap file name for the current directory.
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004484 dir_name[0] == '.' && dir_name[1] == NUL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004485 if (r == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486 return NULL;
4487
4488 s = get_file_in_dir(r, dir_name);
4489 vim_free(r);
4490 return s;
4491}
4492
4493/*
4494 * Get file name to use for swap file or backup file.
4495 * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir'
4496 * option "dname".
4497 * - If "dname" is ".", return "fname" (swap file in dir of file).
4498 * - If "dname" starts with "./", insert "dname" in "fname" (swap file
4499 * relative to dir of file).
4500 * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific
4501 * dir).
4502 *
4503 * The return value is an allocated string and can be NULL.
4504 */
4505 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004506get_file_in_dir(
4507 char_u *fname,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004508 char_u *dname) // don't use "dirname", it is a global for Alpha
Bram Moolenaar071d4272004-06-13 20:20:40 +00004509{
4510 char_u *t;
4511 char_u *tail;
4512 char_u *retval;
4513 int save_char;
4514
4515 tail = gettail(fname);
4516
4517 if (dname[0] == '.' && dname[1] == NUL)
4518 retval = vim_strsave(fname);
4519 else if (dname[0] == '.' && vim_ispathsep(dname[1]))
4520 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004521 if (tail == fname) // no path before file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004522 retval = concat_fnames(dname + 2, tail, TRUE);
4523 else
4524 {
4525 save_char = *tail;
4526 *tail = NUL;
4527 t = concat_fnames(fname, dname + 2, TRUE);
4528 *tail = save_char;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004529 if (t == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004530 retval = NULL;
4531 else
4532 {
4533 retval = concat_fnames(t, tail, TRUE);
4534 vim_free(t);
4535 }
4536 }
4537 }
4538 else
4539 retval = concat_fnames(dname, tail, TRUE);
4540
Bram Moolenaar4f974752019-02-17 17:44:42 +01004541#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004542 if (retval != NULL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004543 for (t = gettail(retval); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004544 if (*t == ':')
4545 *t = '%';
4546#endif
4547
Bram Moolenaar071d4272004-06-13 20:20:40 +00004548 return retval;
4549}
4550
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004551/*
4552 * Print the ATTENTION message: info about an existing swap file.
4553 */
4554 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004555attention_message(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004556 buf_T *buf, // buffer being edited
4557 char_u *fname) // swap file name
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004558{
Bram Moolenaar8767f522016-07-01 17:17:39 +02004559 stat_T st;
Bram Moolenaar63d25552019-05-10 21:28:38 +02004560 time_t swap_mtime;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004561
4562 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004563 (void)emsg(_("E325: ATTENTION"));
Bram Moolenaar32526b32019-01-19 17:43:09 +01004564 msg_puts(_("\nFound a swap file by the name \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004565 msg_home_replace(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004566 msg_puts("\"\n");
Bram Moolenaar63d25552019-05-10 21:28:38 +02004567 swap_mtime = swapfile_info(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004568 msg_puts(_("While opening file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004569 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004570 msg_puts("\"\n");
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004571 if (mch_stat((char *)buf->b_fname, &st) == -1)
4572 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004573 msg_puts(_(" CANNOT BE FOUND"));
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004574 }
4575 else
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004576 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004577 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02004578 msg_puts(get_ctime(st.st_mtime, TRUE));
4579 if (swap_mtime != 0 && st.st_mtime > swap_mtime)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004580 msg_puts(_(" NEWER than swap file!\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004581 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004582 // Some of these messages are long to allow translation to
4583 // other languages.
Bram Moolenaar32526b32019-01-19 17:43:09 +01004584 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"));
4585 msg_puts(_("(2) An edit session for this file crashed.\n"));
4586 msg_puts(_(" If this is the case, use \":recover\" or \"vim -r "));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004587 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004588 msg_puts(_("\"\n to recover the changes (see \":help recovery\").\n"));
4589 msg_puts(_(" If you did this already, delete the swap file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004590 msg_outtrans(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004591 msg_puts(_("\"\n to avoid this message.\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004592 cmdline_row = msg_row;
4593 --no_wait_return;
4594}
4595
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004596#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004597/*
4598 * Trigger the SwapExists autocommands.
4599 * Returns a value for equivalent to do_dialog() (see below):
4600 * 0: still need to ask for a choice
4601 * 1: open read-only
4602 * 2: edit anyway
4603 * 3: recover
4604 * 4: delete it
4605 * 5: quit
4606 * 6: abort
4607 */
4608 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004609do_swapexists(buf_T *buf, char_u *fname)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004610{
4611 set_vim_var_string(VV_SWAPNAME, fname, -1);
4612 set_vim_var_string(VV_SWAPCHOICE, NULL, -1);
4613
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004614 // Trigger SwapExists autocommands with <afile> set to the file being
4615 // edited. Disallow changing directory here.
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004616 ++allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004617 apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL);
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004618 --allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004619
4620 set_vim_var_string(VV_SWAPNAME, NULL, -1);
4621
4622 switch (*get_vim_var_str(VV_SWAPCHOICE))
4623 {
4624 case 'o': return 1;
4625 case 'e': return 2;
4626 case 'r': return 3;
4627 case 'd': return 4;
4628 case 'q': return 5;
4629 case 'a': return 6;
4630 }
4631
4632 return 0;
4633}
4634#endif
4635
Bram Moolenaar071d4272004-06-13 20:20:40 +00004636/*
4637 * Find out what name to use for the swap file for buffer 'buf'.
4638 *
4639 * Several names are tried to find one that does not exist
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004640 * Returns the name in allocated memory or NULL.
Bram Moolenaarf541c362011-10-26 11:44:18 +02004641 * When out of memory "dirp" is set to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004642 *
4643 * Note: If BASENAMELEN is not correct, you will get error messages for
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004644 * not being able to open the swap or undo file
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004645 * Note: May trigger SwapExists autocmd, pointers may change!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004646 */
4647 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004648findswapname(
4649 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004650 char_u **dirp, // pointer to list of directories
4651 char_u *old_fname) // don't give warning for this file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004652{
4653 char_u *fname;
4654 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004655 char_u *dir_name;
4656#ifdef AMIGA
4657 BPTR fh;
4658#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 int r;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004660 char_u *buf_fname = buf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004661
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004662#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663# define CREATE_DUMMY_FILE
4664 FILE *dummyfd = NULL;
4665
Bram Moolenaar4f974752019-02-17 17:44:42 +01004666# ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004667 if (buf_fname != NULL && !mch_isFullName(buf_fname)
4668 && vim_strchr(gettail(buf_fname), ':'))
4669 {
4670 char_u *t;
4671
4672 buf_fname = vim_strsave(buf_fname);
4673 if (buf_fname == NULL)
4674 buf_fname = buf->b_fname;
4675 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004676 for (t = gettail(buf_fname); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004677 if (*t == ':')
4678 *t = '%';
4679 }
4680# endif
4681
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004682 /*
4683 * If we start editing a new file, e.g. "test.doc", which resides on an
4684 * MSDOS compatible filesystem, it is possible that the file
4685 * "test.doc.swp" which we create will be exactly the same file. To avoid
4686 * this problem we temporarily create "test.doc". Don't do this when the
4687 * check below for a 8.3 file name is used.
4688 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004689 if (!(buf->b_p_sn || buf->b_shortname) && buf_fname != NULL
4690 && mch_getperm(buf_fname) < 0)
4691 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692#endif
4693
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004694 /*
4695 * Isolate a directory name from *dirp and put it in dir_name.
4696 * First allocate some memory to put the directory name in.
4697 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004698 dir_name = alloc(STRLEN(*dirp) + 1);
Bram Moolenaarf541c362011-10-26 11:44:18 +02004699 if (dir_name == NULL)
4700 *dirp = NULL;
4701 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004702 (void)copy_option_part(dirp, dir_name, 31000, ",");
4703
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004704 /*
4705 * we try different names until we find one that does not exist yet
4706 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004707 if (dir_name == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004708 fname = NULL;
4709 else
Bram Moolenaar69c35002013-11-04 02:54:12 +01004710 fname = makeswapname(buf_fname, buf->b_ffname, buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004711
4712 for (;;)
4713 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004714 if (fname == NULL) // must be out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004715 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004716 if ((n = (int)STRLEN(fname)) == 0) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00004717 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01004718 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004719 break;
4720 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004721#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004722/*
4723 * Some systems have a MS-DOS compatible filesystem that use 8.3 character
4724 * file names. If this is the first try and the swap file name does not fit in
4725 * 8.3, detect if this is the case, set shortname and try again.
4726 */
4727 if (fname[n - 2] == 'w' && fname[n - 1] == 'p'
4728 && !(buf->b_p_sn || buf->b_shortname))
4729 {
4730 char_u *tail;
4731 char_u *fname2;
Bram Moolenaar8767f522016-07-01 17:17:39 +02004732 stat_T s1, s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004733 int f1, f2;
4734 int created1 = FALSE, created2 = FALSE;
4735 int same = FALSE;
4736
4737 /*
4738 * Check if swapfile name does not fit in 8.3:
4739 * It either contains two dots, is longer than 8 chars, or starts
4740 * with a dot.
4741 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004742 tail = gettail(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004743 if ( vim_strchr(tail, '.') != NULL
4744 || STRLEN(tail) > (size_t)8
4745 || *gettail(fname) == '.')
4746 {
4747 fname2 = alloc(n + 2);
4748 if (fname2 != NULL)
4749 {
4750 STRCPY(fname2, fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004751 // if fname == "xx.xx.swp", fname2 = "xx.xx.swx"
4752 // if fname == ".xx.swp", fname2 = ".xx.swpx"
4753 // if fname == "123456789.swp", fname2 = "12345678x.swp"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004754 if (vim_strchr(tail, '.') != NULL)
4755 fname2[n - 1] = 'x';
4756 else if (*gettail(fname) == '.')
4757 {
4758 fname2[n] = 'x';
4759 fname2[n + 1] = NUL;
4760 }
4761 else
4762 fname2[n - 5] += 1;
4763 /*
4764 * may need to create the files to be able to use mch_stat()
4765 */
4766 f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4767 if (f1 < 0)
4768 {
4769 f1 = mch_open_rw((char *)fname,
4770 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 created1 = TRUE;
4772 }
4773 if (f1 >= 0)
4774 {
4775 f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0);
4776 if (f2 < 0)
4777 {
4778 f2 = mch_open_rw((char *)fname2,
4779 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
4780 created2 = TRUE;
4781 }
4782 if (f2 >= 0)
4783 {
4784 /*
4785 * Both files exist now. If mch_stat() returns the
4786 * same device and inode they are the same file.
4787 */
4788 if (mch_fstat(f1, &s1) != -1
4789 && mch_fstat(f2, &s2) != -1
4790 && s1.st_dev == s2.st_dev
4791 && s1.st_ino == s2.st_ino)
4792 same = TRUE;
4793 close(f2);
4794 if (created2)
4795 mch_remove(fname2);
4796 }
4797 close(f1);
4798 if (created1)
4799 mch_remove(fname);
4800 }
4801 vim_free(fname2);
4802 if (same)
4803 {
4804 buf->b_shortname = TRUE;
4805 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004806 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004807 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004808 continue; // try again with b_shortname set
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 }
4810 }
4811 }
4812 }
4813#endif
4814 /*
4815 * check if the swapfile already exists
4816 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004817 if (mch_getperm(fname) < 0) // it does not exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004818 {
4819#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02004820 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004821
4822 /*
4823 * Extra security check: When a swap file is a symbolic link, this
4824 * is most likely a symlink attack.
4825 */
4826 if (mch_lstat((char *)fname, &sb) < 0)
4827#else
4828# ifdef AMIGA
4829 fh = Open((UBYTE *)fname, (long)MODE_NEWFILE);
4830 /*
4831 * on the Amiga mch_getperm() will return -1 when the file exists
4832 * but is being used by another program. This happens if you edit
4833 * a file twice.
4834 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004835 if (fh != (BPTR)NULL) // can open file, OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836 {
4837 Close(fh);
4838 mch_remove(fname);
4839 break;
4840 }
4841 if (IoErr() != ERROR_OBJECT_IN_USE
4842 && IoErr() != ERROR_OBJECT_EXISTS)
4843# endif
4844#endif
4845 break;
4846 }
4847
4848 /*
4849 * A file name equal to old_fname is OK to use.
4850 */
4851 if (old_fname != NULL && fnamecmp(fname, old_fname) == 0)
4852 break;
4853
4854 /*
4855 * get here when file already exists
4856 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004857 if (fname[n - 2] == 'w' && fname[n - 1] == 'p') // first try
Bram Moolenaar071d4272004-06-13 20:20:40 +00004858 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 /*
4860 * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp
4861 * and file.doc are the same file. To guess if this problem is
4862 * present try if file.doc.swx exists. If it does, we set
4863 * buf->b_shortname and try file_doc.swp (dots replaced by
4864 * underscores for this file), and try again. If it doesn't we
4865 * assume that "file.doc.swp" already exists.
4866 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004867 if (!(buf->b_p_sn || buf->b_shortname)) // not tried yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 {
4869 fname[n - 1] = 'x';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004870 r = mch_getperm(fname); // try "file.swx"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004871 fname[n - 1] = 'p';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004872 if (r >= 0) // "file.swx" seems to exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004873 {
4874 buf->b_shortname = TRUE;
4875 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004876 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004877 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004878 continue; // try again with '.' replaced with '_'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004879 }
4880 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004881 /*
4882 * If we get here the ".swp" file really exists.
4883 * Give an error message, unless recovering, no file name, we are
4884 * viewing a help file or when the path of the file is different
4885 * (happens when all .swp files are in one directory).
4886 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004887 if (!recoverymode && buf_fname != NULL
Bram Moolenaar2debf1c2019-08-04 20:44:19 +02004888 && !buf->b_help
4889 && !(buf->b_flags & (BF_DUMMY | BF_NO_SEA)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004890 {
4891 int fd;
4892 struct block0 b0;
4893 int differ = FALSE;
4894
4895 /*
4896 * Try to read block 0 from the swap file to get the original
4897 * file name (and inode number).
4898 */
4899 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4900 if (fd >= 0)
4901 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004902 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004903 {
4904 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004905 * If the swapfile has the same directory as the
4906 * buffer don't compare the directory names, they can
4907 * have a different mountpoint.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004909 if (b0.b0_flags & B0_SAME_DIR)
4910 {
4911 if (fnamecmp(gettail(buf->b_ffname),
4912 gettail(b0.b0_fname)) != 0
4913 || !same_directory(fname, buf->b_ffname))
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004914 {
4915#ifdef CHECK_INODE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004916 // Symlinks may point to the same file even
4917 // when the name differs, need to check the
4918 // inode too.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004919 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
4920 if (fnamecmp_ino(buf->b_ffname, NameBuff,
4921 char_to_long(b0.b0_ino)))
4922#endif
4923 differ = TRUE;
4924 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004925 }
4926 else
4927 {
4928 /*
4929 * The name in the swap file may be
4930 * "~user/path/file". Expand it first.
4931 */
4932 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004933#ifdef CHECK_INODE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004934 if (fnamecmp_ino(buf->b_ffname, NameBuff,
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004935 char_to_long(b0.b0_ino)))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004936 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937#else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004938 if (fnamecmp(NameBuff, buf->b_ffname) != 0)
4939 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004940#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004941 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004942 }
4943 close(fd);
4944 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004945
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004946 // give the ATTENTION message when there is an old swap file
4947 // for the current file, and the buffer was not recovered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004948 if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED)
4949 && vim_strchr(p_shm, SHM_ATTENTION) == NULL)
4950 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004951 int choice = 0;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004952 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953#ifdef CREATE_DUMMY_FILE
4954 int did_use_dummy = FALSE;
4955
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004956 // Avoid getting a warning for the file being created
4957 // outside of Vim, it was created at the start of this
4958 // function. Delete the file now, because Vim might exit
4959 // here if the window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004960 if (dummyfd != NULL)
4961 {
4962 fclose(dummyfd);
4963 dummyfd = NULL;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004964 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965 did_use_dummy = TRUE;
4966 }
4967#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004968
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02004969#ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00004970 process_still_running = FALSE;
4971#endif
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004972 // It's safe to delete the swap file if all these are true:
4973 // - the edited file exists
4974 // - the swap file has no changes and looks OK
4975 if (mch_stat((char *)buf->b_fname, &st) == 0
4976 && swapfile_unchanged(fname))
4977 {
4978 choice = 4;
4979 if (p_verbose > 0)
4980 verb_msg(_("Found a swap file that is not useful, deleting it"));
4981 }
4982
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004983#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004984 /*
4985 * If there is an SwapExists autocommand and we can handle
4986 * the response, trigger it. It may return 0 to ask the
4987 * user anyway.
4988 */
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004989 if (choice == 0
4990 && swap_exists_action != SEA_NONE
Bram Moolenaar69c35002013-11-04 02:54:12 +01004991 && has_autocmd(EVENT_SWAPEXISTS, buf_fname, buf))
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004992 choice = do_swapexists(buf, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004994 if (choice == 0)
4995#endif
4996 {
4997#ifdef FEAT_GUI
Bram Moolenaar798184c2018-10-07 20:48:39 +02004998 // If we are supposed to start the GUI but it wasn't
4999 // completely started yet, start it now. This makes
5000 // the messages displayed in the Vim window when
5001 // loading a session from the .gvimrc file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005002 if (gui.starting && !gui.in_use)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005003 gui_start(NULL);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005004#endif
Bram Moolenaar798184c2018-10-07 20:48:39 +02005005 // Show info about the existing swap file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005006 attention_message(buf, fname);
5007
Bram Moolenaar798184c2018-10-07 20:48:39 +02005008 // We don't want a 'q' typed at the more-prompt
5009 // interrupt loading a file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005010 got_int = FALSE;
Bram Moolenaar798184c2018-10-07 20:48:39 +02005011
5012 // If vimrc has "simalt ~x" we don't want it to
5013 // interfere with the prompt here.
Bram Moolenaar6a2633b2018-10-07 23:16:36 +02005014 flush_buffers(FLUSH_TYPEAHEAD);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005015 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005016
5017#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005018 if (swap_exists_action != SEA_NONE && choice == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005019 {
5020 char_u *name;
5021
Bram Moolenaar964b3742019-05-24 18:54:09 +02005022 name = alloc(STRLEN(fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 + STRLEN(_("Swap file \""))
Bram Moolenaar964b3742019-05-24 18:54:09 +02005024 + STRLEN(_("\" already exists!")) + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 if (name != NULL)
5026 {
5027 STRCPY(name, _("Swap file \""));
5028 home_replace(NULL, fname, name + STRLEN(name),
5029 1000, TRUE);
5030 STRCAT(name, _("\" already exists!"));
5031 }
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005032 choice = do_dialog(VIM_WARNING,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005033 (char_u *)_("VIM - ATTENTION"),
5034 name == NULL
5035 ? (char_u *)_("Swap file already exists!")
5036 : name,
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005037# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005038 process_still_running
5039 ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") :
5040# endif
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005041 (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 +00005042
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005043# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005044 if (process_still_running && choice >= 4)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005045 choice++; // Skip missing "Delete it" button
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005046# endif
5047 vim_free(name);
5048
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005049 // pretend screen didn't scroll, need redraw anyway
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005050 msg_scrolled = 0;
5051 redraw_all_later(NOT_VALID);
5052 }
5053#endif
5054
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005055 if (choice > 0)
5056 {
5057 switch (choice)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005058 {
5059 case 1:
5060 buf->b_p_ro = TRUE;
5061 break;
5062 case 2:
5063 break;
5064 case 3:
5065 swap_exists_action = SEA_RECOVER;
5066 break;
5067 case 4:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005068 mch_remove(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069 break;
5070 case 5:
5071 swap_exists_action = SEA_QUIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005072 break;
5073 case 6:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005074 swap_exists_action = SEA_QUIT;
5075 got_int = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 break;
5077 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005078
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005079 // If the file was deleted this fname can be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005080 if (mch_getperm(fname) < 0)
5081 break;
5082 }
5083 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005085 msg_puts("\n");
Bram Moolenaar4770d092006-01-12 23:22:24 +00005086 if (msg_silent == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005087 // call wait_return() later
Bram Moolenaar4770d092006-01-12 23:22:24 +00005088 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089 }
5090
5091#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005092 // Going to try another name, need the dummy file again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005093 if (did_use_dummy)
Bram Moolenaar69c35002013-11-04 02:54:12 +01005094 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005095#endif
5096 }
5097 }
5098 }
5099
5100 /*
5101 * Change the ".swp" extension to find another file that can be used.
5102 * First decrement the last char: ".swo", ".swn", etc.
5103 * If that still isn't enough decrement the last but one char: ".svz"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005104 * Can happen when editing many "No Name" buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005106 if (fname[n - 1] == 'a') // ".s?a"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005108 if (fname[n - 2] == 'a') // ".saa": tried enough, give up
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005110 emsg(_("E326: Too many swap files found"));
Bram Moolenaard23a8232018-02-10 18:45:26 +01005111 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112 break;
5113 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005114 --fname[n - 2]; // ".svz", ".suz", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005115 fname[n - 1] = 'z' + 1;
5116 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005117 --fname[n - 1]; // ".swo", ".swn", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 }
5119
5120 vim_free(dir_name);
5121#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005122 if (dummyfd != NULL) // file has been created temporarily
Bram Moolenaar071d4272004-06-13 20:20:40 +00005123 {
5124 fclose(dummyfd);
Bram Moolenaar69c35002013-11-04 02:54:12 +01005125 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005126 }
5127#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005128#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01005129 if (buf_fname != buf->b_fname)
5130 vim_free(buf_fname);
5131#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005132 return fname;
5133}
5134
5135 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005136b0_magic_wrong(ZERO_BL *b0p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137{
5138 return (b0p->b0_magic_long != (long)B0_MAGIC_LONG
5139 || b0p->b0_magic_int != (int)B0_MAGIC_INT
5140 || b0p->b0_magic_short != (short)B0_MAGIC_SHORT
5141 || b0p->b0_magic_char != B0_MAGIC_CHAR);
5142}
5143
5144#ifdef CHECK_INODE
5145/*
5146 * Compare current file name with file name from swap file.
5147 * Try to use inode numbers when possible.
5148 * Return non-zero when files are different.
5149 *
5150 * When comparing file names a few things have to be taken into consideration:
5151 * - When working over a network the full path of a file depends on the host.
5152 * We check the inode number if possible. It is not 100% reliable though,
5153 * because the device number cannot be used over a network.
5154 * - When a file does not exist yet (editing a new file) there is no inode
5155 * number.
5156 * - The file name in a swap file may not be valid on the current host. The
5157 * "~user" form is used whenever possible to avoid this.
5158 *
5159 * This is getting complicated, let's make a table:
5160 *
5161 * ino_c ino_s fname_c fname_s differ =
5162 *
5163 * both files exist -> compare inode numbers:
5164 * != 0 != 0 X X ino_c != ino_s
5165 *
5166 * inode number(s) unknown, file names available -> compare file names
5167 * == 0 X OK OK fname_c != fname_s
5168 * X == 0 OK OK fname_c != fname_s
5169 *
5170 * current file doesn't exist, file for swap file exist, file name(s) not
5171 * available -> probably different
5172 * == 0 != 0 FAIL X TRUE
5173 * == 0 != 0 X FAIL TRUE
5174 *
5175 * current file exists, inode for swap unknown, file name(s) not
5176 * available -> probably different
5177 * != 0 == 0 FAIL X TRUE
5178 * != 0 == 0 X FAIL TRUE
5179 *
5180 * current file doesn't exist, inode for swap unknown, one file name not
5181 * available -> probably different
5182 * == 0 == 0 FAIL OK TRUE
5183 * == 0 == 0 OK FAIL TRUE
5184 *
5185 * current file doesn't exist, inode for swap unknown, both file names not
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005186 * available -> compare file names
5187 * == 0 == 0 FAIL FAIL fname_c != fname_s
Bram Moolenaar071d4272004-06-13 20:20:40 +00005188 *
5189 * Note that when the ino_t is 64 bits, only the last 32 will be used. This
5190 * can't be changed without making the block 0 incompatible with 32 bit
5191 * versions.
5192 */
5193
5194 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005195fnamecmp_ino(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005196 char_u *fname_c, // current file name
5197 char_u *fname_s, // file name from swap file
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005198 long ino_block0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005199{
Bram Moolenaar8767f522016-07-01 17:17:39 +02005200 stat_T st;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005201 ino_t ino_c = 0; // ino of current file
5202 ino_t ino_s; // ino of file from swap file
5203 char_u buf_c[MAXPATHL]; // full path of fname_c
5204 char_u buf_s[MAXPATHL]; // full path of fname_s
5205 int retval_c; // flag: buf_c valid
5206 int retval_s; // flag: buf_s valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00005207
5208 if (mch_stat((char *)fname_c, &st) == 0)
5209 ino_c = (ino_t)st.st_ino;
5210
5211 /*
5212 * First we try to get the inode from the file name, because the inode in
5213 * the swap file may be outdated. If that fails (e.g. this path is not
5214 * valid on this machine), use the inode from block 0.
5215 */
5216 if (mch_stat((char *)fname_s, &st) == 0)
5217 ino_s = (ino_t)st.st_ino;
5218 else
5219 ino_s = (ino_t)ino_block0;
5220
5221 if (ino_c && ino_s)
5222 return (ino_c != ino_s);
5223
5224 /*
5225 * One of the inode numbers is unknown, try a forced vim_FullName() and
5226 * compare the file names.
5227 */
5228 retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE);
5229 retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE);
5230 if (retval_c == OK && retval_s == OK)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005231 return STRCMP(buf_c, buf_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005232
5233 /*
5234 * Can't compare inodes or file names, guess that the files are different,
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005235 * unless both appear not to exist at all, then compare with the file name
5236 * in the swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237 */
5238 if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005239 return STRCMP(fname_c, fname_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005240 return TRUE;
5241}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005242#endif // CHECK_INODE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005243
5244/*
5245 * Move a long integer into a four byte character array.
5246 * Used for machine independency in block zero.
5247 */
5248 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005249long_to_char(long n, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005250{
5251 s[0] = (char_u)(n & 0xff);
5252 n = (unsigned)n >> 8;
5253 s[1] = (char_u)(n & 0xff);
5254 n = (unsigned)n >> 8;
5255 s[2] = (char_u)(n & 0xff);
5256 n = (unsigned)n >> 8;
5257 s[3] = (char_u)(n & 0xff);
5258}
5259
5260 static long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005261char_to_long(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005262{
5263 long retval;
5264
5265 retval = s[3];
5266 retval <<= 8;
5267 retval |= s[2];
5268 retval <<= 8;
5269 retval |= s[1];
5270 retval <<= 8;
5271 retval |= s[0];
5272
5273 return retval;
5274}
5275
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005276/*
5277 * Set the flags in the first block of the swap file:
5278 * - file is modified or not: buf->b_changed
5279 * - 'fileformat'
5280 * - 'fileencoding'
5281 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005282 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005283ml_setflags(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005284{
5285 bhdr_T *hp;
5286 ZERO_BL *b0p;
5287
5288 if (!buf->b_ml.ml_mfp)
5289 return;
5290 for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
5291 {
5292 if (hp->bh_bnum == 0)
5293 {
5294 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005295 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
5296 b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK)
5297 | (get_fileformat(buf) + 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005298 add_b0_fenc(b0p, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005299 hp->bh_flags |= BH_DIRTY;
5300 mf_sync(buf->b_ml.ml_mfp, MFS_ZERO);
5301 break;
5302 }
5303 }
5304}
5305
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005306#if defined(FEAT_CRYPT) || defined(PROTO)
5307/*
5308 * If "data" points to a data block encrypt the text in it and return a copy
5309 * in allocated memory. Return NULL when out of memory.
5310 * Otherwise return "data".
5311 */
5312 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005313ml_encrypt_data(
5314 memfile_T *mfp,
5315 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005316 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005317 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005318{
5319 DATA_BL *dp = (DATA_BL *)data;
5320 char_u *head_end;
5321 char_u *text_start;
5322 char_u *new_data;
5323 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005324 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005325
5326 if (dp->db_id != DATA_ID)
5327 return data;
5328
Bram Moolenaarbc563362015-06-09 18:35:25 +02005329 state = ml_crypt_prepare(mfp, offset, FALSE);
5330 if (state == NULL)
5331 return data;
5332
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005333 new_data = alloc(size);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005334 if (new_data == NULL)
5335 return NULL;
5336 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5337 text_start = (char_u *)dp + dp->db_txt_start;
5338 text_len = size - dp->db_txt_start;
5339
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005340 // Copy the header and the text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005341 mch_memmove(new_data, dp, head_end - (char_u *)dp);
5342
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005343 // Encrypt the text.
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005344 crypt_encode(state, text_start, text_len, new_data + dp->db_txt_start,
5345 FALSE);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005346 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005347
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005348 // Clear the gap.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005349 if (head_end < text_start)
5350 vim_memset(new_data + (head_end - data), 0, text_start - head_end);
5351
5352 return new_data;
5353}
5354
5355/*
Bram Moolenaarbc563362015-06-09 18:35:25 +02005356 * Decrypt the text in "data" if it points to an encrypted data block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005357 */
5358 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005359ml_decrypt_data(
5360 memfile_T *mfp,
5361 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005362 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005363 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005364{
5365 DATA_BL *dp = (DATA_BL *)data;
5366 char_u *head_end;
5367 char_u *text_start;
5368 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005369 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005370
5371 if (dp->db_id == DATA_ID)
5372 {
5373 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5374 text_start = (char_u *)dp + dp->db_txt_start;
5375 text_len = dp->db_txt_end - dp->db_txt_start;
5376
5377 if (head_end > text_start || dp->db_txt_start > size
5378 || dp->db_txt_end > size)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005379 return; // data was messed up
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005380
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005381 state = ml_crypt_prepare(mfp, offset, TRUE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005382 if (state != NULL)
5383 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005384 // Decrypt the text in place.
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005385 crypt_decode_inplace(state, text_start, text_len, FALSE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005386 crypt_free_state(state);
5387 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005388 }
5389}
5390
5391/*
5392 * Prepare for encryption/decryption, using the key, seed and offset.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005393 * Return an allocated cryptstate_T *.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005394 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005395 static cryptstate_T *
Bram Moolenaar8767f522016-07-01 17:17:39 +02005396ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005397{
5398 buf_T *buf = mfp->mf_buffer;
5399 char_u salt[50];
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005400 int method_nr;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005401 char_u *key;
5402 char_u *seed;
5403
5404 if (reading && mfp->mf_old_key != NULL)
5405 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005406 // Reading back blocks with the previous key/method/seed.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005407 method_nr = mfp->mf_old_cm;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005408 key = mfp->mf_old_key;
5409 seed = mfp->mf_old_seed;
5410 }
5411 else
5412 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005413 method_nr = crypt_get_method_nr(buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005414 key = buf->b_p_key;
5415 seed = mfp->mf_seed;
5416 }
Bram Moolenaarbc563362015-06-09 18:35:25 +02005417 if (*key == NUL)
5418 return NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005419
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005420 if (method_nr == CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005421 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005422 // For PKzip: Append the offset to the key, so that we use a different
5423 // key for every block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005424 vim_snprintf((char *)salt, sizeof(salt), "%s%ld", key, (long)offset);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005425 return crypt_create(method_nr, salt, NULL, 0, NULL, 0);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005426 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005427
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005428 // Using blowfish or better: add salt and seed. We use the byte offset
5429 // of the block for the salt.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005430 vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
5431 return crypt_create(method_nr, key, salt, (int)STRLEN(salt),
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005432 seed, MF_SEED_LEN);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005433}
5434
5435#endif
5436
5437
Bram Moolenaar071d4272004-06-13 20:20:40 +00005438#if defined(FEAT_BYTEOFF) || defined(PROTO)
5439
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005440#define MLCS_MAXL 800 // max no of lines in chunk
5441#define MLCS_MINL 400 // should be half of MLCS_MAXL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005442
5443/*
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02005444 * Keep information for finding byte offset of a line, updtype may be one of:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005445 * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it
5446 * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called.
5447 * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it
5448 * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity.
5449 */
5450 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005451ml_updatechunk(
5452 buf_T *buf,
5453 linenr_T line,
5454 long len,
5455 int updtype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005456{
5457 static buf_T *ml_upd_lastbuf = NULL;
5458 static linenr_T ml_upd_lastline;
5459 static linenr_T ml_upd_lastcurline;
5460 static int ml_upd_lastcurix;
5461
5462 linenr_T curline = ml_upd_lastcurline;
5463 int curix = ml_upd_lastcurix;
5464 long size;
5465 chunksize_T *curchnk;
5466 int rest;
5467 bhdr_T *hp;
5468 DATA_BL *dp;
5469
5470 if (buf->b_ml.ml_usedchunks == -1 || len == 0)
5471 return;
5472 if (buf->b_ml.ml_chunksize == NULL)
5473 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005474 buf->b_ml.ml_chunksize = ALLOC_MULT(chunksize_T, 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005475 if (buf->b_ml.ml_chunksize == NULL)
5476 {
5477 buf->b_ml.ml_usedchunks = -1;
5478 return;
5479 }
5480 buf->b_ml.ml_numchunks = 100;
5481 buf->b_ml.ml_usedchunks = 1;
5482 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
5483 buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1;
5484 }
5485
5486 if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1)
5487 {
5488 /*
5489 * First line in empty buffer from ml_flush_line() -- reset
5490 */
5491 buf->b_ml.ml_usedchunks = 1;
5492 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01005493 buf->b_ml.ml_chunksize[0].mlcs_totalsize = (long)buf->b_ml.ml_line_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494 return;
5495 }
5496
5497 /*
5498 * Find chunk that our line belongs to, curline will be at start of the
5499 * chunk.
5500 */
5501 if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1
5502 || updtype != ML_CHNK_ADDLINE)
5503 {
5504 for (curline = 1, curix = 0;
5505 curix < buf->b_ml.ml_usedchunks - 1
5506 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5507 curix++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005508 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005509 }
Bram Moolenaara9a8e042018-10-30 22:15:55 +01005510 else if (curix < buf->b_ml.ml_usedchunks - 1
5511 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005512 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005513 // Adjust cached curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005514 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5515 curix++;
5516 }
5517 curchnk = buf->b_ml.ml_chunksize + curix;
5518
5519 if (updtype == ML_CHNK_DELLINE)
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00005520 len = -len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005521 curchnk->mlcs_totalsize += len;
5522 if (updtype == ML_CHNK_ADDLINE)
5523 {
5524 curchnk->mlcs_numlines++;
5525
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005526 // May resize here so we don't have to do it in both cases below
Bram Moolenaar071d4272004-06-13 20:20:40 +00005527 if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks)
5528 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005529 chunksize_T *t_chunksize = buf->b_ml.ml_chunksize;
5530
Bram Moolenaar071d4272004-06-13 20:20:40 +00005531 buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2;
Bram Moolenaar51b6eb42020-08-22 15:19:18 +02005532 buf->b_ml.ml_chunksize = vim_realloc(buf->b_ml.ml_chunksize,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005533 sizeof(chunksize_T) * buf->b_ml.ml_numchunks);
5534 if (buf->b_ml.ml_chunksize == NULL)
5535 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005536 // Hmmmm, Give up on offset for this buffer
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005537 vim_free(t_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 buf->b_ml.ml_usedchunks = -1;
5539 return;
5540 }
5541 }
5542
5543 if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL)
5544 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005545 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 int idx;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005547 int end_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005548 int text_end;
5549 int linecnt;
5550
5551 mch_memmove(buf->b_ml.ml_chunksize + curix + 1,
5552 buf->b_ml.ml_chunksize + curix,
5553 (buf->b_ml.ml_usedchunks - curix) *
5554 sizeof(chunksize_T));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005555 // Compute length of first half of lines in the split chunk
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556 size = 0;
5557 linecnt = 0;
5558 while (curline < buf->b_ml.ml_line_count
5559 && linecnt < MLCS_MINL)
5560 {
5561 if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5562 {
5563 buf->b_ml.ml_usedchunks = -1;
5564 return;
5565 }
5566 dp = (DATA_BL *)(hp->bh_data);
5567 count = (long)(buf->b_ml.ml_locked_high) -
5568 (long)(buf->b_ml.ml_locked_low) + 1;
5569 idx = curline - buf->b_ml.ml_locked_low;
5570 curline = buf->b_ml.ml_locked_high + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005571
5572 // compute index of last line to use in this MEMLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005573 rest = count - idx;
5574 if (linecnt + rest > MLCS_MINL)
5575 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005576 end_idx = idx + MLCS_MINL - linecnt - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577 linecnt = MLCS_MINL;
5578 }
5579 else
5580 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005581 end_idx = count - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005582 linecnt += rest;
5583 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005584#ifdef FEAT_PROP_POPUP
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005585 if (buf->b_has_textprop)
5586 {
5587 int i;
5588
5589 // We cannot use the text pointers to get the text length,
5590 // the text prop info would also be counted. Go over the
5591 // lines.
5592 for (i = end_idx; i < idx; ++i)
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01005593 size += (int)STRLEN((char_u *)dp + (dp->db_index[i] & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005594 }
5595 else
5596#endif
5597 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005598 if (idx == 0)// first line in block, text at the end
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005599 text_end = dp->db_txt_end;
5600 else
5601 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
5602 size += text_end - ((dp->db_index[end_idx]) & DB_INDEX_MASK);
5603 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005604 }
5605 buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt;
5606 buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt;
5607 buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size;
5608 buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size;
5609 buf->b_ml.ml_usedchunks++;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005610 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 return;
5612 }
5613 else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL
5614 && curix == buf->b_ml.ml_usedchunks - 1
5615 && buf->b_ml.ml_line_count - line <= 1)
5616 {
5617 /*
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005618 * We are in the last chunk and it is cheap to create a new one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005619 * after this. Do it now to avoid the loop above later on
5620 */
5621 curchnk = buf->b_ml.ml_chunksize + curix + 1;
5622 buf->b_ml.ml_usedchunks++;
5623 if (line == buf->b_ml.ml_line_count)
5624 {
5625 curchnk->mlcs_numlines = 0;
5626 curchnk->mlcs_totalsize = 0;
5627 }
5628 else
5629 {
5630 /*
5631 * Line is just prior to last, move count for last
5632 * This is the common case when loading a new file
5633 */
5634 hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND);
5635 if (hp == NULL)
5636 {
5637 buf->b_ml.ml_usedchunks = -1;
5638 return;
5639 }
5640 dp = (DATA_BL *)(hp->bh_data);
5641 if (dp->db_line_count == 1)
5642 rest = dp->db_txt_end - dp->db_txt_start;
5643 else
5644 rest =
5645 ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK)
5646 - dp->db_txt_start;
5647 curchnk->mlcs_totalsize = rest;
5648 curchnk->mlcs_numlines = 1;
5649 curchnk[-1].mlcs_totalsize -= rest;
5650 curchnk[-1].mlcs_numlines -= 1;
5651 }
5652 }
5653 }
5654 else if (updtype == ML_CHNK_DELLINE)
5655 {
5656 curchnk->mlcs_numlines--;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005657 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 if (curix < (buf->b_ml.ml_usedchunks - 1)
5659 && (curchnk->mlcs_numlines + curchnk[1].mlcs_numlines)
5660 <= MLCS_MINL)
5661 {
5662 curix++;
5663 curchnk = buf->b_ml.ml_chunksize + curix;
5664 }
5665 else if (curix == 0 && curchnk->mlcs_numlines <= 0)
5666 {
5667 buf->b_ml.ml_usedchunks--;
5668 mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1,
5669 buf->b_ml.ml_usedchunks * sizeof(chunksize_T));
5670 return;
5671 }
5672 else if (curix == 0 || (curchnk->mlcs_numlines > 10
5673 && (curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines)
5674 > MLCS_MINL))
5675 {
5676 return;
5677 }
5678
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005679 // Collapse chunks
Bram Moolenaar071d4272004-06-13 20:20:40 +00005680 curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines;
5681 curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize;
5682 buf->b_ml.ml_usedchunks--;
5683 if (curix < buf->b_ml.ml_usedchunks)
5684 {
5685 mch_memmove(buf->b_ml.ml_chunksize + curix,
5686 buf->b_ml.ml_chunksize + curix + 1,
5687 (buf->b_ml.ml_usedchunks - curix) *
5688 sizeof(chunksize_T));
5689 }
5690 return;
5691 }
5692 ml_upd_lastbuf = buf;
5693 ml_upd_lastline = line;
5694 ml_upd_lastcurline = curline;
5695 ml_upd_lastcurix = curix;
5696}
5697
5698/*
5699 * Find offset for line or line with offset.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005700 * Find line with offset if "lnum" is 0; return remaining offset in offp
5701 * Find offset of line if "lnum" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702 * return -1 if information is not available
5703 */
5704 long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005705ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005706{
5707 linenr_T curline;
5708 int curix;
5709 long size;
5710 bhdr_T *hp;
5711 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005712 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005713 int idx;
5714 int start_idx;
5715 int text_end;
5716 long offset;
5717 int len;
5718 int ffdos = (get_fileformat(buf) == EOL_DOS);
5719 int extra = 0;
5720
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005721 // take care of cached line first
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005722 ml_flush_line(curbuf);
5723
Bram Moolenaar071d4272004-06-13 20:20:40 +00005724 if (buf->b_ml.ml_usedchunks == -1
5725 || buf->b_ml.ml_chunksize == NULL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005726 || lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727 return -1;
5728
5729 if (offp == NULL)
5730 offset = 0;
5731 else
5732 offset = *offp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005733 if (lnum == 0 && offset <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005734 return 1; // Not a "find offset" and offset 0 _must_ be in line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735 /*
5736 * Find the last chunk before the one containing our line. Last chunk is
5737 * special because it will never qualify
5738 */
5739 curline = 1;
5740 curix = size = 0;
5741 while (curix < buf->b_ml.ml_usedchunks - 1
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005742 && ((lnum != 0
5743 && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744 || (offset != 0
5745 && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize
5746 + ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines)))
5747 {
5748 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5749 size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize;
5750 if (offset && ffdos)
5751 size += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5752 curix++;
5753 }
5754
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005755 while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005757#ifdef FEAT_PROP_POPUP
5758 size_t textprop_total = 0;
5759#endif
5760
Bram Moolenaar071d4272004-06-13 20:20:40 +00005761 if (curline > buf->b_ml.ml_line_count
5762 || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5763 return -1;
5764 dp = (DATA_BL *)(hp->bh_data);
5765 count = (long)(buf->b_ml.ml_locked_high) -
5766 (long)(buf->b_ml.ml_locked_low) + 1;
5767 start_idx = idx = curline - buf->b_ml.ml_locked_low;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005768 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005769 text_end = dp->db_txt_end;
5770 else
5771 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005772 // Compute index of last line to use in this MEMLINE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005773 if (lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005774 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005775 if (curline + (count - idx) >= lnum)
5776 idx += lnum - curline - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 else
5778 idx = count - 1;
5779 }
5780 else
5781 {
5782 extra = 0;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005783 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 {
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005785#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005786 size_t textprop_size = 0;
5787
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005788 if (buf->b_has_textprop)
5789 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005790 char_u *l1, *l2;
5791
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005792 // compensate for the extra bytes taken by textprops
5793 l1 = (char_u *)dp + ((dp->db_index[idx]) & DB_INDEX_MASK);
5794 l2 = (char_u *)dp + (idx == 0 ? dp->db_txt_end
5795 : ((dp->db_index[idx - 1]) & DB_INDEX_MASK));
5796 textprop_size = (l2 - l1) - (STRLEN(l1) + 1);
5797 }
5798#endif
5799 if (!(offset >= size
5800 + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK)
5801#ifdef FEAT_PROP_POPUP
Bram Moolenaar94b6fb72020-01-17 21:00:59 +01005802 - (long)(textprop_total + textprop_size)
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005803#endif
5804 + ffdos))
5805 break;
5806
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 if (ffdos)
5808 size++;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005809#ifdef FEAT_PROP_POPUP
5810 textprop_total += textprop_size;
5811#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812 if (idx == count - 1)
5813 {
5814 extra = 1;
5815 break;
5816 }
5817 idx++;
5818 }
5819 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005820#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005821 if (buf->b_has_textprop && lnum != 0)
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005822 {
5823 int i;
5824
5825 // cannot use the db_index pointer, need to get the actual text
5826 // lengths.
5827 len = 0;
5828 for (i = start_idx; i <= idx; ++i)
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005829 {
5830 char_u *p = (char_u *)dp + ((dp->db_index[i]) & DB_INDEX_MASK);
5831 len += (int)STRLEN(p) + 1;
5832 }
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005833 }
5834 else
5835#endif
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005836 len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK)
5837#ifdef FEAT_PROP_POPUP
5838 - (long)textprop_total
5839#endif
5840 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 size += len;
5842 if (offset != 0 && size >= offset)
5843 {
5844 if (size + ffdos == offset)
5845 *offp = 0;
5846 else if (idx == start_idx)
5847 *offp = offset - size + len;
5848 else
5849 *offp = offset - size + len
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005850 - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK))
5851#ifdef FEAT_PROP_POPUP
5852 + (long)textprop_total
5853#endif
5854 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005855 curline += idx - start_idx + extra;
5856 if (curline > buf->b_ml.ml_line_count)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005857 return -1; // exactly one byte beyond the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005858 return curline;
5859 }
5860 curline = buf->b_ml.ml_locked_high + 1;
5861 }
5862
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005863 if (lnum != 0)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005864 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005865 // Count extra CR characters.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005866 if (ffdos)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005867 size += lnum - 1;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005868
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005869 // Don't count the last line break if 'noeol' and ('bin' or
5870 // 'nofixeol').
Bram Moolenaar34d72d42015-07-17 14:18:08 +02005871 if ((!buf->b_p_fixeol || buf->b_p_bin) && !buf->b_p_eol
Bram Moolenaarc26f7c62018-08-20 22:53:04 +02005872 && lnum > buf->b_ml.ml_line_count)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005873 size -= ffdos + 1;
5874 }
5875
Bram Moolenaar071d4272004-06-13 20:20:40 +00005876 return size;
5877}
5878
5879/*
5880 * Goto byte in buffer with offset 'cnt'.
5881 */
5882 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005883goto_byte(long cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884{
5885 long boff = cnt;
5886 linenr_T lnum;
5887
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005888 ml_flush_line(curbuf); // cached line may be dirty
Bram Moolenaar071d4272004-06-13 20:20:40 +00005889 setpcmark();
5890 if (boff)
5891 --boff;
5892 lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005893 if (lnum < 1) // past the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005894 {
5895 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5896 curwin->w_curswant = MAXCOL;
5897 coladvance((colnr_T)MAXCOL);
5898 }
5899 else
5900 {
5901 curwin->w_cursor.lnum = lnum;
5902 curwin->w_cursor.col = (colnr_T)boff;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005903 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005904 curwin->w_set_curswant = TRUE;
5905 }
5906 check_cursor();
5907
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005908 // Make sure the cursor is on the first byte of a multi-byte char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005909 if (has_mbyte)
5910 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911}
5912#endif