blob: ea08d324ce8bfc9048a66ba5658384b8e04a141b [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010010// for debugging
11// #define CHECK(c, s) do { if (c) emsg((s)); } while (0)
Bram Moolenaar6f470022018-04-10 18:47:20 +020012#define CHECK(c, s) do { /**/ } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013
14/*
15 * memline.c: Contains the functions for appending, deleting and changing the
Bram Moolenaar4770d092006-01-12 23:22:24 +000016 * text lines. The memfile functions are used to store the information in
17 * blocks of memory, backed up by a file. The structure of the information is
18 * a tree. The root of the tree is a pointer block. The leaves of the tree
19 * are data blocks. In between may be several layers of pointer blocks,
20 * forming branches.
Bram Moolenaar071d4272004-06-13 20:20:40 +000021 *
22 * Three types of blocks are used:
23 * - Block nr 0 contains information for recovery
24 * - Pointer blocks contain list of pointers to other blocks.
25 * - Data blocks contain the actual text.
26 *
27 * Block nr 0 contains the block0 structure (see below).
28 *
29 * Block nr 1 is the first pointer block. It is the root of the tree.
30 * Other pointer blocks are branches.
31 *
32 * If a line is too big to fit in a single page, the block containing that
33 * line is made big enough to hold the line. It may span several pages.
34 * Otherwise all blocks are one page.
35 *
36 * A data block that was filled when starting to edit a file and was not
37 * changed since then, can have a negative block number. This means that it
38 * has not yet been assigned a place in the file. When recovering, the lines
39 * in this data block can be read from the original file. When the block is
40 * changed (lines appended/deleted/changed) or when it is flushed it gets a
41 * positive number. Use mf_trans_del() to get the new number, before calling
42 * mf_get().
43 */
44
Bram Moolenaar071d4272004-06-13 20:20:40 +000045#include "vim.h"
46
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010047#ifndef UNIX // it's in os_unix.h for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000048# include <time.h>
49#endif
50
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000051#if defined(SASC) || defined(__amigaos4__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010052# include <proto/dos.h> // for Open() and Close()
Bram Moolenaar071d4272004-06-13 20:20:40 +000053#endif
54
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010055typedef struct block0 ZERO_BL; // contents of the first block
56typedef struct pointer_block PTR_BL; // contents of a pointer block
57typedef struct data_block DATA_BL; // contents of a data block
58typedef struct pointer_entry PTR_EN; // block/line-count pair
Bram Moolenaar071d4272004-06-13 20:20:40 +000059
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010060#define DATA_ID (('d' << 8) + 'a') // data block id
61#define PTR_ID (('p' << 8) + 't') // pointer block id
62#define BLOCK0_ID0 'b' // block 0 id 0
63#define BLOCK0_ID1 '0' // block 0 id 1
64#define BLOCK0_ID1_C0 'c' // block 0 id 1 'cm' 0
65#define BLOCK0_ID1_C1 'C' // block 0 id 1 'cm' 1
66#define BLOCK0_ID1_C2 'd' // block 0 id 1 'cm' 2
Christian Brabandtf573c6e2021-06-20 14:02:16 +020067#define BLOCK0_ID1_C3 'S' // block 0 id 1 'cm' 3 - but not actually used
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020068
69#if defined(FEAT_CRYPT)
70static int id1_codes[] = {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010071 BLOCK0_ID1_C0, // CRYPT_M_ZIP
72 BLOCK0_ID1_C1, // CRYPT_M_BF
73 BLOCK0_ID1_C2, // CRYPT_M_BF2
Christian Brabandtf573c6e2021-06-20 14:02:16 +020074 BLOCK0_ID1_C3, // CRYPT_M_SOD - Unused!
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020075};
76#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000077
78/*
79 * pointer to a block, used in a pointer block
80 */
81struct pointer_entry
82{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010083 blocknr_T pe_bnum; // block number
84 linenr_T pe_line_count; // number of lines in this branch
85 linenr_T pe_old_lnum; // lnum for this block (for recovery)
86 int pe_page_count; // number of pages in block pe_bnum
Bram Moolenaar071d4272004-06-13 20:20:40 +000087};
88
89/*
90 * A pointer block contains a list of branches in the tree.
91 */
92struct pointer_block
93{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010094 short_u pb_id; // ID for pointer block: PTR_ID
95 short_u pb_count; // number of pointers in this block
96 short_u pb_count_max; // maximum value for pb_count
97 PTR_EN pb_pointer[1]; // list of pointers to blocks (actually longer)
98 // followed by empty space until end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +000099};
100
Bram Moolenaarb67ba032023-04-22 21:14:26 +0100101// Value for pb_count_max.
102#define PB_COUNT_MAX(mfp) (short_u)(((mfp)->mf_page_size - offsetof(PTR_BL, pb_pointer)) / sizeof(PTR_EN))
103
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104/*
105 * A data block is a leaf in the tree.
106 *
107 * The text of the lines is at the end of the block. The text of the first line
108 * in the block is put at the end, the text of the second line in front of it,
109 * etc. Thus the order of the lines is the opposite of the line number.
110 */
111struct data_block
112{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100113 short_u db_id; // ID for data block: DATA_ID
114 unsigned db_free; // free space available
115 unsigned db_txt_start; // byte where text starts
116 unsigned db_txt_end; // byte just after data block
117 linenr_T db_line_count; // number of lines in this block
118 unsigned db_index[1]; // index for start of line (actually bigger)
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100119 // followed by empty space up to db_txt_start
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100120 // followed by the text in the lines until
121 // end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000122};
123
124/*
125 * The low bits of db_index hold the actual index. The topmost bit is
126 * used for the global command to be able to mark a line.
127 * This method is not clean, but otherwise there would be at least one extra
128 * byte used for each line.
129 * The mark has to be in this place to keep it with the correct line when other
130 * lines are inserted or deleted.
131 */
132#define DB_MARKED ((unsigned)1 << ((sizeof(unsigned) * 8) - 1))
133#define DB_INDEX_MASK (~DB_MARKED)
134
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100135#define INDEX_SIZE (sizeof(unsigned)) // size of one db_index entry
zeertzjq1b438a82023-02-01 13:11:15 +0000136#define HEADER_SIZE (offsetof(DATA_BL, db_index)) // size of data block header
Bram Moolenaar071d4272004-06-13 20:20:40 +0000137
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100138#define B0_FNAME_SIZE_ORG 900 // what it was in older versions
139#define B0_FNAME_SIZE_NOCRYPT 898 // 2 bytes used for other things
140#define B0_FNAME_SIZE_CRYPT 890 // 10 bytes used for other things
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000141#define B0_UNAME_SIZE 40
142#define B0_HNAME_SIZE 40
Bram Moolenaar071d4272004-06-13 20:20:40 +0000143/*
144 * Restrict the numbers to 32 bits, otherwise most compilers will complain.
145 * This won't detect a 64 bit machine that only swaps a byte in the top 32
146 * bits, but that is crazy anyway.
147 */
148#define B0_MAGIC_LONG 0x30313233L
149#define B0_MAGIC_INT 0x20212223L
150#define B0_MAGIC_SHORT 0x10111213L
151#define B0_MAGIC_CHAR 0x55
152
153/*
154 * Block zero holds all info about the swap file.
155 *
156 * NOTE: DEFINITION OF BLOCK 0 SHOULD NOT CHANGE! It would make all existing
157 * swap files unusable!
158 *
159 * If size of block0 changes anyway, adjust MIN_SWAP_PAGE_SIZE in vim.h!!
160 *
Bram Moolenaarbae0c162007-05-10 19:30:25 +0000161 * This block is built up of single bytes, to make it portable across
Bram Moolenaar071d4272004-06-13 20:20:40 +0000162 * different machines. b0_magic_* is used to check the byte order and size of
163 * variables, because the rest of the swap file is not portable.
164 */
165struct block0
166{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100167 char_u b0_id[2]; // id for block 0: BLOCK0_ID0 and BLOCK0_ID1,
168 // BLOCK0_ID1_C0, BLOCK0_ID1_C1, etc.
169 char_u b0_version[10]; // Vim version string
170 char_u b0_page_size[4];// number of bytes per page
171 char_u b0_mtime[4]; // last modification time of file
172 char_u b0_ino[4]; // inode of b0_fname
173 char_u b0_pid[4]; // process id of creator (or 0)
174 char_u b0_uname[B0_UNAME_SIZE]; // name of user (uid if no name)
175 char_u b0_hname[B0_HNAME_SIZE]; // host name (if it has a name)
176 char_u b0_fname[B0_FNAME_SIZE_ORG]; // name of file being edited
177 long b0_magic_long; // check for byte order of long
178 int b0_magic_int; // check for byte order of int
179 short b0_magic_short; // check for byte order of short
180 char_u b0_magic_char; // check for last char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000181};
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000182
183/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000184 * Note: b0_dirty and b0_flags are put at the end of the file name. For very
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000185 * long file names in older versions of Vim they are invalid.
186 * The 'fileencoding' comes before b0_flags, with a NUL in front. But only
187 * when there is room, for very long file names it's omitted.
188 */
189#define B0_DIRTY 0x55
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200190#define b0_dirty b0_fname[B0_FNAME_SIZE_ORG - 1]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000191
192/*
193 * The b0_flags field is new in Vim 7.0.
194 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200195#define b0_flags b0_fname[B0_FNAME_SIZE_ORG - 2]
196
197/*
198 * Crypt seed goes here, 8 bytes. New in Vim 7.3.
199 * Without encryption these bytes may be used for 'fenc'.
200 */
201#define b0_seed b0_fname[B0_FNAME_SIZE_ORG - 2 - MF_SEED_LEN]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000202
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100203// The lowest two bits contain the fileformat. Zero means it's not set
204// (compatible with Vim 6.x), otherwise it's EOL_UNIX + 1, EOL_DOS + 1 or
205// EOL_MAC + 1.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000206#define B0_FF_MASK 3
207
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100208// Swap file is in directory of edited file. Used to find the file from
209// different mount points.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000210#define B0_SAME_DIR 4
211
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100212// The 'fileencoding' is at the end of b0_fname[], with a NUL in front of it.
213// When empty there is only the NUL.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000214#define B0_HAS_FENC 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000215
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100216#define STACK_INCR 5 // nr of entries added to ml_stack at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +0000217
218/*
219 * The line number where the first mark may be is remembered.
220 * If it is 0 there are no marks at all.
221 * (always used for the current buffer only, no buffer change possible while
222 * executing a global command).
223 */
224static linenr_T lowest_marked = 0;
225
226/*
227 * arguments for ml_find_line()
228 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100229#define ML_DELETE 0x11 // delete line
230#define ML_INSERT 0x12 // insert line
231#define ML_FIND 0x13 // just find the line
232#define ML_FLUSH 0x02 // flush locked block
kylo252ae6f1d82022-02-16 19:24:07 +0000233#define ML_SIMPLE(x) ((x) & 0x10) // DEL, INS or FIND
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100235// argument for ml_upd_block0()
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200236typedef enum {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100237 UB_FNAME = 0 // update timestamp and filename
238 , UB_SAME_DIR // update the B0_SAME_DIR flag
239 , UB_CRYPT // update crypt key
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200240} upd_block0_T;
241
242#ifdef FEAT_CRYPT
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100243static void ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200244#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100245static void ml_upd_block0(buf_T *buf, upd_block0_T what);
246static void set_b0_fname(ZERO_BL *, buf_T *buf);
247static void set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100248static void add_b0_fenc(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100249static time_t swapfile_info(char_u *);
250static int recov_file_names(char_u **, char_u *, int prepend_dot);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100251static char_u *findswapname(buf_T *, char_u **, char_u *);
252static void ml_flush_line(buf_T *);
253static bhdr_T *ml_new_data(memfile_T *, int, int);
254static bhdr_T *ml_new_ptr(memfile_T *);
255static bhdr_T *ml_find_line(buf_T *, linenr_T, int);
256static int ml_add_stack(buf_T *);
257static void ml_lineadd(buf_T *, int);
258static int b0_magic_wrong(ZERO_BL *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000259#ifdef CHECK_INODE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100260static int fnamecmp_ino(char_u *, char_u *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000261#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100262static void long_to_char(long, char_u *);
263static long char_to_long(char_u *);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200264#ifdef FEAT_CRYPT
Bram Moolenaar8767f522016-07-01 17:17:39 +0200265static cryptstate_T *ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200266#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000267#ifdef FEAT_BYTEOFF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100268static void ml_updatechunk(buf_T *buf, long line, long len, int updtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269#endif
270
271/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000272 * Open a new memline for "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273 *
Bram Moolenaar4770d092006-01-12 23:22:24 +0000274 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275 */
276 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100277ml_open(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278{
279 memfile_T *mfp;
280 bhdr_T *hp = NULL;
281 ZERO_BL *b0p;
282 PTR_BL *pp;
283 DATA_BL *dp;
284
Bram Moolenaar4770d092006-01-12 23:22:24 +0000285 /*
286 * init fields in memline struct
287 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100288 buf->b_ml.ml_stack_size = 0; // no stack yet
289 buf->b_ml.ml_stack = NULL; // no stack yet
290 buf->b_ml.ml_stack_top = 0; // nothing in the stack
291 buf->b_ml.ml_locked = NULL; // no cached block
292 buf->b_ml.ml_line_lnum = 0; // no cached line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293#ifdef FEAT_BYTEOFF
Bram Moolenaar4770d092006-01-12 23:22:24 +0000294 buf->b_ml.ml_chunksize = NULL;
Bram Moolenaardf9070e2021-08-25 17:31:37 +0200295 buf->b_ml.ml_usedchunks = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000296#endif
297
Bram Moolenaare1004402020-10-24 20:49:43 +0200298 if (cmdmod.cmod_flags & CMOD_NOSWAPFILE)
Bram Moolenaar5803ae62014-03-23 16:04:02 +0100299 buf->b_p_swf = FALSE;
300
Bram Moolenaar4770d092006-01-12 23:22:24 +0000301 /*
302 * When 'updatecount' is non-zero swap file may be opened later.
303 */
304 if (p_uc && buf->b_p_swf)
305 buf->b_may_swap = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000306 else
Bram Moolenaar4770d092006-01-12 23:22:24 +0000307 buf->b_may_swap = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308
Bram Moolenaar4770d092006-01-12 23:22:24 +0000309 /*
310 * Open the memfile. No swap file is created yet.
311 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000312 mfp = mf_open(NULL, 0);
313 if (mfp == NULL)
314 goto error;
315
Bram Moolenaar4770d092006-01-12 23:22:24 +0000316 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200317#ifdef FEAT_CRYPT
318 mfp->mf_buffer = buf;
319#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000320 buf->b_ml.ml_flags = ML_EMPTY;
321 buf->b_ml.ml_line_count = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323/*
324 * fill block0 struct and write page 0
325 */
326 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
327 goto error;
328 if (hp->bh_bnum != 0)
329 {
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000330 iemsg(_(e_didnt_get_block_nr_zero));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 goto error;
332 }
333 b0p = (ZERO_BL *)(hp->bh_data);
334
335 b0p->b0_id[0] = BLOCK0_ID0;
336 b0p->b0_id[1] = BLOCK0_ID1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 b0p->b0_magic_long = (long)B0_MAGIC_LONG;
338 b0p->b0_magic_int = (int)B0_MAGIC_INT;
339 b0p->b0_magic_short = (short)B0_MAGIC_SHORT;
340 b0p->b0_magic_char = B0_MAGIC_CHAR;
Bram Moolenaar22c10562018-05-26 17:35:27 +0200341 mch_memmove(b0p->b0_version, "VIM ", 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 STRNCPY(b0p->b0_version + 4, Version, 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 long_to_char((long)mfp->mf_page_size, b0p->b0_page_size);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000344
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000345#ifdef FEAT_SPELL
346 if (!buf->b_spell)
347#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000348 {
349 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
350 b0p->b0_flags = get_fileformat(buf) + 1;
351 set_b0_fname(b0p, buf);
352 (void)get_user_name(b0p->b0_uname, B0_UNAME_SIZE);
353 b0p->b0_uname[B0_UNAME_SIZE - 1] = NUL;
354 mch_get_host_name(b0p->b0_hname, B0_HNAME_SIZE);
355 b0p->b0_hname[B0_HNAME_SIZE - 1] = NUL;
356 long_to_char(mch_get_pid(), b0p->b0_pid);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200357#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200358 ml_set_b0_crypt(buf, b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200359#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000360 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361
362 /*
363 * Always sync block number 0 to disk, so we can check the file name in
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200364 * the swap file in findswapname(). Don't do this for a help files or
365 * a spell buffer though.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366 * Only works when there's a swapfile, otherwise it's done when the file
367 * is created.
368 */
369 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000370 if (!buf->b_help && !B_SPELL(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 (void)mf_sync(mfp, 0);
372
Bram Moolenaar4770d092006-01-12 23:22:24 +0000373 /*
374 * Fill in root pointer block and write page 1.
375 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 if ((hp = ml_new_ptr(mfp)) == NULL)
377 goto error;
378 if (hp->bh_bnum != 1)
379 {
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000380 iemsg(_(e_didnt_get_block_nr_one));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 goto error;
382 }
383 pp = (PTR_BL *)(hp->bh_data);
384 pp->pb_count = 1;
385 pp->pb_pointer[0].pe_bnum = 2;
386 pp->pb_pointer[0].pe_page_count = 1;
387 pp->pb_pointer[0].pe_old_lnum = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100388 pp->pb_pointer[0].pe_line_count = 1; // line count after insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 mf_put(mfp, hp, TRUE, FALSE);
390
Bram Moolenaar4770d092006-01-12 23:22:24 +0000391 /*
392 * Allocate first data block and create an empty line 1.
393 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 if ((hp = ml_new_data(mfp, FALSE, 1)) == NULL)
395 goto error;
396 if (hp->bh_bnum != 2)
397 {
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000398 iemsg(_(e_didnt_get_block_nr_two));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 goto error;
400 }
401
402 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100403 dp->db_index[0] = --dp->db_txt_start; // at end of block
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 dp->db_free -= 1 + INDEX_SIZE;
405 dp->db_line_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100406 *((char_u *)dp + dp->db_txt_start) = NUL; // empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407
408 return OK;
409
410error:
411 if (mfp != NULL)
412 {
413 if (hp)
414 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100415 mf_close(mfp, TRUE); // will also free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000417 buf->b_ml.ml_mfp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 return FAIL;
419}
420
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200421#if defined(FEAT_CRYPT) || defined(PROTO)
422/*
Bram Moolenaar2be79502014-08-13 21:58:28 +0200423 * Prepare encryption for "buf" for the current key and method.
424 */
425 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100426ml_set_mfp_crypt(buf_T *buf)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200427{
Yegappan Lakshmanane8575982023-01-14 12:32:28 +0000428 if (*buf->b_p_key == NUL)
429 return;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200430
Yegappan Lakshmanane8575982023-01-14 12:32:28 +0000431 int method_nr = crypt_get_method_nr(buf);
432
433 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
434 {
435 // Generate a seed and store it in the memfile.
436 sha2_seed(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN, NULL, 0);
Bram Moolenaar2be79502014-08-13 21:58:28 +0200437 }
Yegappan Lakshmanane8575982023-01-14 12:32:28 +0000438#ifdef FEAT_SODIUM
439 else if (method_nr == CRYPT_M_SOD)
440 crypt_sodium_randombytes_buf(buf->b_ml.ml_mfp->mf_seed,
441 MF_SEED_LEN);
442#endif
Bram Moolenaar2be79502014-08-13 21:58:28 +0200443}
444
445/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200446 * Prepare encryption for "buf" with block 0 "b0p".
447 */
448 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100449ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200450{
451 if (*buf->b_p_key == NUL)
452 b0p->b0_id[1] = BLOCK0_ID1;
453 else
454 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200455 int method_nr = crypt_get_method_nr(buf);
456
457 b0p->b0_id[1] = id1_codes[method_nr];
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200458 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200459 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100460 // Generate a seed and store it in block 0 and in the memfile.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200461 sha2_seed(&b0p->b0_seed, MF_SEED_LEN, NULL, 0);
462 mch_memmove(buf->b_ml.ml_mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
463 }
464 }
465}
466
467/*
468 * Called after the crypt key or 'cryptmethod' was changed for "buf".
469 * Will apply this to the swapfile.
470 * "old_key" is the previous key. It is equal to buf->b_p_key when
471 * 'cryptmethod' is changed.
Bram Moolenaar49771f42010-07-20 17:32:38 +0200472 * "old_cm" is the previous 'cryptmethod'. It is equal to the current
473 * 'cryptmethod' when 'key' is changed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200474 */
475 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100476ml_set_crypt_key(
477 buf_T *buf,
478 char_u *old_key,
479 char_u *old_cm)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200480{
481 memfile_T *mfp = buf->b_ml.ml_mfp;
482 bhdr_T *hp;
483 int page_count;
484 int idx;
485 long error;
486 infoptr_T *ip;
487 PTR_BL *pp;
488 DATA_BL *dp;
489 blocknr_T bnum;
490 int top;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200491 int old_method;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200492
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200493 if (mfp == NULL || mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100494 return; // no memfile yet, nothing to do
Bram Moolenaarbc563362015-06-09 18:35:25 +0200495 old_method = crypt_method_nr_from_name(old_cm);
496
Christian Brabandt226b28b2021-06-21 21:08:08 +0200497 // Swapfile encryption not supported by XChaCha20
498 if (crypt_get_method_nr(buf) == CRYPT_M_SOD && *buf->b_p_key != NUL)
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200499 {
500 // close the swapfile
501 mf_close_file(buf, TRUE);
502 buf->b_p_swf = FALSE;
503 return;
504 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100505 // First make sure the swapfile is in a consistent state, using the old
506 // key and method.
Bram Moolenaarbc563362015-06-09 18:35:25 +0200507 {
508 char_u *new_key = buf->b_p_key;
509 char_u *new_buf_cm = buf->b_p_cm;
510
511 buf->b_p_key = old_key;
512 buf->b_p_cm = old_cm;
513 ml_preserve(buf, FALSE);
514 buf->b_p_key = new_key;
515 buf->b_p_cm = new_buf_cm;
516 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200517
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100518 // Set the key, method and seed to be used for reading, these must be the
519 // old values.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200520 mfp->mf_old_key = old_key;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200521 mfp->mf_old_cm = old_method;
522 if (old_method > 0 && *old_key != NUL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200523 mch_memmove(mfp->mf_old_seed, mfp->mf_seed, MF_SEED_LEN);
524
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100525 // Update block 0 with the crypt flag and may set a new seed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200526 ml_upd_block0(buf, UB_CRYPT);
527
528 if (mfp->mf_infile_count > 2)
529 {
530 /*
531 * Need to read back all data blocks from disk, decrypt them with the
532 * old key/method and mark them to be written. The algorithm is
533 * similar to what happens in ml_recover(), but we skip negative block
534 * numbers.
535 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100536 ml_flush_line(buf); // flush buffered line
537 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200538
539 hp = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100540 bnum = 1; // start with block 1
541 page_count = 1; // which is 1 page
542 idx = 0; // start with first index in block 1
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200543 error = 0;
544 buf->b_ml.ml_stack_top = 0;
Bram Moolenaard23a8232018-02-10 18:45:26 +0100545 VIM_CLEAR(buf->b_ml.ml_stack);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100546 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200547
548 for ( ; !got_int; line_breakcheck())
549 {
550 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100551 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200552
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100553 // get the block (pointer or data)
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +0000554 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200555 {
556 if (bnum == 1)
557 break;
558 ++error;
559 }
560 else
561 {
562 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100563 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200564 {
565 if (pp->pb_count == 0)
566 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100567 // empty block?
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200568 ++error;
569 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100570 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200571 {
572 if (pp->pb_pointer[idx].pe_bnum < 0)
573 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100574 // Skip data block with negative block number.
575 // Should not happen, because of the ml_preserve()
576 // above. Get same block again for next index.
Bram Moolenaar4b7214e2019-01-03 21:55:32 +0100577 ++idx;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200578 continue;
579 }
580
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100581 // going one block deeper in the tree, new entry in
582 // stack
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200583 if ((top = ml_add_stack(buf)) < 0)
584 {
585 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100586 break; // out of memory
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200587 }
588 ip = &(buf->b_ml.ml_stack[top]);
589 ip->ip_bnum = bnum;
590 ip->ip_index = idx;
591
592 bnum = pp->pb_pointer[idx].pe_bnum;
593 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200594 idx = 0;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200595 continue;
596 }
597 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100598 else // not a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200599 {
600 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100601 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200602 ++error;
603 else
604 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100605 // It is a data block, need to write it back to disk.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200606 mf_put(mfp, hp, TRUE, FALSE);
607 hp = NULL;
608 }
609 }
610 }
611
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100612 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200613 break;
614
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100615 // go one block up in the tree
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200616 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
617 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100618 idx = ip->ip_index + 1; // go to next index
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200619 page_count = 1;
620 }
Bram Moolenaarbc563362015-06-09 18:35:25 +0200621 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100622 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +0100623
624 if (error > 0)
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +0000625 emsg(_(e_error_while_updating_swap_file_crypt));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200626 }
627
628 mfp->mf_old_key = NULL;
629}
630#endif
631
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632/*
633 * ml_setname() is called when the file name of "buf" has been changed.
634 * It may rename the swap file.
635 */
636 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100637ml_setname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638{
639 int success = FALSE;
640 memfile_T *mfp;
641 char_u *fname;
642 char_u *dirp;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100643#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 char_u *p;
645#endif
646
647 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100648 if (mfp->mf_fd < 0) // there is no swap file yet
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 {
650 /*
651 * When 'updatecount' is 0 and 'noswapfile' there is no swap file.
652 * For help files we will make a swap file now.
653 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200654 if (p_uc != 0 && (cmdmod.cmod_flags & CMOD_NOSWAPFILE) == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100655 ml_open_file(buf); // create a swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 return;
657 }
658
659 /*
660 * Try all directories in the 'directory' option.
661 */
662 dirp = p_dir;
663 for (;;)
664 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100665 if (*dirp == NUL) // tried all directories, fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 break;
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000667 fname = findswapname(buf, &dirp, mfp->mf_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100668 // alloc's fname
669 if (dirp == NULL) // out of memory
Bram Moolenaarf541c362011-10-26 11:44:18 +0200670 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100671 if (fname == NULL) // no file name found for this dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 continue;
673
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100674#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 /*
676 * Set full pathname for swap file now, because a ":!cd dir" may
677 * change directory without us knowing it.
678 */
679 p = FullName_save(fname, FALSE);
680 vim_free(fname);
681 fname = p;
682 if (fname == NULL)
683 continue;
684#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100685 // if the file name is the same we don't have to do anything
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 if (fnamecmp(fname, mfp->mf_fname) == 0)
687 {
688 vim_free(fname);
689 success = TRUE;
690 break;
691 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100692 // need to close the swap file before renaming
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 if (mfp->mf_fd >= 0)
694 {
695 close(mfp->mf_fd);
696 mfp->mf_fd = -1;
697 }
698
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100699 // try to rename the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 if (vim_rename(mfp->mf_fname, fname) == 0)
701 {
702 success = TRUE;
703 vim_free(mfp->mf_fname);
704 mfp->mf_fname = fname;
705 vim_free(mfp->mf_ffname);
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100706#if defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100707 mfp->mf_ffname = NULL; // mf_fname is full pathname already
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708#else
709 mf_set_ffname(mfp);
710#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200711 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 break;
713 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100714 vim_free(fname); // this fname didn't work, try another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 }
716
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100717 if (mfp->mf_fd == -1) // need to (re)open the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 {
719 mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0);
720 if (mfp->mf_fd < 0)
721 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100722 // could not (re)open the swap file, what can we do????
Bram Moolenaareaaac012022-01-02 17:00:40 +0000723 emsg(_(e_oops_lost_the_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 return;
725 }
Bram Moolenaarf05da212009-11-17 16:13:15 +0000726#ifdef HAVE_FD_CLOEXEC
727 {
728 int fdflags = fcntl(mfp->mf_fd, F_GETFD);
729 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +0100730 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +0000731 }
732#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 }
734 if (!success)
Bram Moolenaareaaac012022-01-02 17:00:40 +0000735 emsg(_(e_could_not_rename_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736}
737
738/*
739 * Open a file for the memfile for all buffers that are not readonly or have
740 * been modified.
741 * Used when 'updatecount' changes from zero to non-zero.
742 */
743 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100744ml_open_files(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745{
746 buf_T *buf;
747
Bram Moolenaar29323592016-07-24 22:04:11 +0200748 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 if (!buf->b_p_ro || buf->b_changed)
750 ml_open_file(buf);
751}
752
753/*
754 * Open a swap file for an existing memfile, if there is no swap file yet.
755 * If we are unable to find a file name, mf_fname will be NULL
756 * and the memfile will be in memory only (no recovery possible).
757 */
758 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100759ml_open_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760{
761 memfile_T *mfp;
762 char_u *fname;
763 char_u *dirp;
764
765 mfp = buf->b_ml.ml_mfp;
Bram Moolenaare1004402020-10-24 20:49:43 +0200766 if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf
767 || (cmdmod.cmod_flags & CMOD_NOSWAPFILE))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100768 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769
Bram Moolenaara1956f62006-03-12 22:18:00 +0000770#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100771 // For a spell buffer use a temp file name.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000772 if (buf->b_spell)
773 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +0200774 fname = vim_tempname('s', FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000775 if (fname != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100776 (void)mf_open_file(mfp, fname); // consumes fname!
Bram Moolenaar4770d092006-01-12 23:22:24 +0000777 buf->b_may_swap = FALSE;
778 return;
779 }
780#endif
781
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 /*
783 * Try all directories in 'directory' option.
784 */
785 dirp = p_dir;
786 for (;;)
787 {
788 if (*dirp == NUL)
789 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100790 // There is a small chance that between choosing the swap file name
791 // and creating it, another Vim creates the file. In that case the
792 // creation will fail and we will use another directory.
793 fname = findswapname(buf, &dirp, NULL); // allocates fname
Bram Moolenaarf541c362011-10-26 11:44:18 +0200794 if (dirp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100795 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 if (fname == NULL)
797 continue;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100798 if (mf_open_file(mfp, fname) == OK) // consumes fname!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100800#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 /*
802 * set full pathname for swap file now, because a ":!cd dir" may
803 * change directory without us knowing it.
804 */
805 mf_fullname(mfp);
806#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200807 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000808
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100809 // Flush block zero, so others can read it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 if (mf_sync(mfp, MFS_ZERO) == OK)
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000811 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100812 // Mark all blocks that should be in the swapfile as dirty.
813 // Needed for when the 'swapfile' option was reset, so that
814 // the swap file was deleted, and then on again.
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000815 mf_set_dirty(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 break;
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000817 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100818 // Writing block 0 failed: close the file and try another dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 mf_close_file(buf, FALSE);
820 }
821 }
822
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200823 if (*p_dir != NUL && mfp->mf_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 {
Bram Moolenaar13608d82022-08-29 15:06:50 +0100825 need_wait_return = TRUE; // call wait_return() later
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 ++no_wait_return;
Bram Moolenaareaaac012022-01-02 17:00:40 +0000827 (void)semsg(_(e_unable_to_open_swap_file_for_str_recovery_impossible),
Bram Moolenaare1704ba2012-10-03 18:25:00 +0200828 buf_spname(buf) != NULL ? buf_spname(buf) : buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 --no_wait_return;
830 }
831
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100832 // don't try to open a swap file again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 buf->b_may_swap = FALSE;
834}
835
836/*
837 * If still need to create a swap file, and starting to edit a not-readonly
838 * file, or reading into an existing buffer, create a swap file now.
839 */
840 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100841check_need_swap(
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200842 int newfile) // reading file into new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843{
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200844 int old_msg_silent = msg_silent; // might be reset by an E325 message
845
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 if (curbuf->b_may_swap && (!curbuf->b_p_ro || !newfile))
847 ml_open_file(curbuf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200848 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849}
850
851/*
852 * Close memline for buffer 'buf'.
853 * If 'del_file' is TRUE, delete the swap file
854 */
855 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100856ml_close(buf_T *buf, int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100858 if (buf->b_ml.ml_mfp == NULL) // not open
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 return;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100860 mf_close(buf->b_ml.ml_mfp, del_file); // close the .swp file
Bram Moolenaarfa4873c2022-06-30 22:13:59 +0100861 if (buf->b_ml.ml_line_lnum != 0
862 && (buf->b_ml.ml_flags & (ML_LINE_DIRTY | ML_ALLOCATED)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000863 vim_free(buf->b_ml.ml_line_ptr);
864 vim_free(buf->b_ml.ml_stack);
865#ifdef FEAT_BYTEOFF
Bram Moolenaard23a8232018-02-10 18:45:26 +0100866 VIM_CLEAR(buf->b_ml.ml_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000867#endif
868 buf->b_ml.ml_mfp = NULL;
869
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100870 // Reset the "recovered" flag, give the ATTENTION prompt the next time
871 // this buffer is loaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000872 buf->b_flags &= ~BF_RECOVERED;
873}
874
875/*
876 * Close all existing memlines and memfiles.
877 * Only used when exiting.
878 * When 'del_file' is TRUE, delete the memfiles.
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000879 * But don't delete files that were ":preserve"d when we are POSIX compatible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000880 */
881 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100882ml_close_all(int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000883{
884 buf_T *buf;
885
Bram Moolenaar29323592016-07-24 22:04:11 +0200886 FOR_ALL_BUFFERS(buf)
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000887 ml_close(buf, del_file && ((buf->b_flags & BF_PRESERVED) == 0
888 || vim_strchr(p_cpo, CPO_PRESERVE) == NULL));
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100889#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100890 spell_delete_wordlist(); // delete the internal wordlist
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100891#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892#ifdef TEMPDIRNAMES
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100893 vim_deltempdir(); // delete created temp directory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894#endif
895}
896
897/*
898 * Close all memfiles for not modified buffers.
899 * Only use just before exiting!
900 */
901 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100902ml_close_notmod(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000903{
904 buf_T *buf;
905
Bram Moolenaar29323592016-07-24 22:04:11 +0200906 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907 if (!bufIsChanged(buf))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100908 ml_close(buf, TRUE); // close all not-modified buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000909}
910
911/*
912 * Update the timestamp in the .swp file.
913 * Used when the file has been written.
914 */
915 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100916ml_timestamp(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000917{
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200918 ml_upd_block0(buf, UB_FNAME);
919}
920
921/*
922 * Return FAIL when the ID of "b0p" is wrong.
923 */
924 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100925ml_check_b0_id(ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200926{
927 if (b0p->b0_id[0] != BLOCK0_ID0
928 || (b0p->b0_id[1] != BLOCK0_ID1
929 && b0p->b0_id[1] != BLOCK0_ID1_C0
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200930 && b0p->b0_id[1] != BLOCK0_ID1_C1
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200931 && b0p->b0_id[1] != BLOCK0_ID1_C2
932 && b0p->b0_id[1] != BLOCK0_ID1_C3)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200933 )
934 return FAIL;
935 return OK;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000936}
937
938/*
939 * Update the timestamp or the B0_SAME_DIR flag of the .swp file.
940 */
941 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100942ml_upd_block0(buf_T *buf, upd_block0_T what)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000943{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000944 memfile_T *mfp;
945 bhdr_T *hp;
946 ZERO_BL *b0p;
947
948 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200949 if (mfp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000950 return;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200951 hp = mf_get(mfp, (blocknr_T)0, 1);
952 if (hp == NULL)
953 {
954#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100955 // Possibly update the seed in the memfile before there is a block0.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200956 if (what == UB_CRYPT)
957 ml_set_mfp_crypt(buf);
958#endif
959 return;
960 }
961
Bram Moolenaar071d4272004-06-13 20:20:40 +0000962 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200963 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaareaaac012022-01-02 17:00:40 +0000964 iemsg(_(e_ml_upd_block0_didnt_get_block_zero));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000965 else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000966 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200967 if (what == UB_FNAME)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000968 set_b0_fname(b0p, buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200969#ifdef FEAT_CRYPT
970 else if (what == UB_CRYPT)
971 ml_set_b0_crypt(buf, b0p);
972#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100973 else // what == UB_SAME_DIR
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000974 set_b0_dir_flag(b0p, buf);
975 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000976 mf_put(mfp, hp, TRUE, FALSE);
977}
978
979/*
980 * Write file name and timestamp into block 0 of a swap file.
981 * Also set buf->b_mtime.
982 * Don't use NameBuff[]!!!
983 */
984 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100985set_b0_fname(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986{
Bram Moolenaar8767f522016-07-01 17:17:39 +0200987 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988
989 if (buf->b_ffname == NULL)
990 b0p->b0_fname[0] = NUL;
991 else
992 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100993#if defined(MSWIN) || defined(AMIGA)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100994 // Systems that cannot translate "~user" back into a path: copy the
995 // file name unmodified. Do use slashes instead of backslashes for
996 // portability.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200997 vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000998# ifdef BACKSLASH_IN_FILENAME
999 forward_slash(b0p->b0_fname);
1000# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001#else
1002 size_t flen, ulen;
1003 char_u uname[B0_UNAME_SIZE];
1004
1005 /*
1006 * For a file under the home directory of the current user, we try to
1007 * replace the home directory path with "~user". This helps when
1008 * editing the same file on different machines over a network.
1009 * First replace home dir path with "~/" with home_replace().
1010 * Then insert the user name to get "~user/".
1011 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001012 home_replace(NULL, buf->b_ffname, b0p->b0_fname,
1013 B0_FNAME_SIZE_CRYPT, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014 if (b0p->b0_fname[0] == '~')
1015 {
1016 flen = STRLEN(b0p->b0_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001017 // If there is no user name or it is too long, don't use "~/"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001018 if (get_user_name(uname, B0_UNAME_SIZE) == FAIL
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001019 || (ulen = STRLEN(uname)) + flen > B0_FNAME_SIZE_CRYPT - 1)
1020 vim_strncpy(b0p->b0_fname, buf->b_ffname,
1021 B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001022 else
1023 {
1024 mch_memmove(b0p->b0_fname + ulen + 1, b0p->b0_fname + 1, flen);
1025 mch_memmove(b0p->b0_fname + 1, uname, ulen);
1026 }
1027 }
1028#endif
1029 if (mch_stat((char *)buf->b_ffname, &st) >= 0)
1030 {
1031 long_to_char((long)st.st_mtime, b0p->b0_mtime);
1032#ifdef CHECK_INODE
1033 long_to_char((long)st.st_ino, b0p->b0_ino);
1034#endif
1035 buf_store_time(buf, &st, buf->b_ffname);
1036 buf->b_mtime_read = buf->b_mtime;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001037 buf->b_mtime_read_ns = buf->b_mtime_ns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001038 }
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;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001046 buf->b_mtime_ns = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 buf->b_mtime_read = 0;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001048 buf->b_mtime_read_ns = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001049 buf->b_orig_size = 0;
1050 buf->b_orig_mode = 0;
1051 }
1052 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001053
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001054 // Also add the 'fileencoding' if there is room.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001055 add_b0_fenc(b0p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056}
1057
1058/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001059 * Update the B0_SAME_DIR flag of the swap file. It's set if the file and the
1060 * swapfile for "buf" are in the same directory.
1061 * This is fail safe: if we are not sure the directories are equal the flag is
1062 * not set.
1063 */
1064 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001065set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001066{
1067 if (same_directory(buf->b_ml.ml_mfp->mf_fname, buf->b_ffname))
1068 b0p->b0_flags |= B0_SAME_DIR;
1069 else
1070 b0p->b0_flags &= ~B0_SAME_DIR;
1071}
1072
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001073/*
1074 * When there is room, add the 'fileencoding' to block zero.
1075 */
1076 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001077add_b0_fenc(
1078 ZERO_BL *b0p,
1079 buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001080{
1081 int n;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001082 int size = B0_FNAME_SIZE_NOCRYPT;
1083
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001084#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001085 // Without encryption use the same offset as in Vim 7.2 to be compatible.
1086 // With encryption it's OK to move elsewhere, the swap file is not
1087 // compatible anyway.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001088 if (*buf->b_p_key != NUL)
1089 size = B0_FNAME_SIZE_CRYPT;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001090#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001091
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001092 n = (int)STRLEN(buf->b_p_fenc);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001093 if ((int)STRLEN(b0p->b0_fname) + n + 1 > size)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001094 b0p->b0_flags &= ~B0_HAS_FENC;
1095 else
1096 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001097 mch_memmove((char *)b0p->b0_fname + size - n,
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001098 (char *)buf->b_p_fenc, (size_t)n);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001099 *(b0p->b0_fname + size - n - 1) = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001100 b0p->b0_flags |= B0_HAS_FENC;
1101 }
1102}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001103
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001104#if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO_UPTIME)
1105# include <sys/sysinfo.h>
1106#endif
1107
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001108#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001109/*
1110 * Return TRUE if the process with number "b0p->b0_pid" is still running.
1111 * "swap_fname" is the name of the swap file, if it's from before a reboot then
1112 * the result is FALSE;
1113 */
1114 static int
1115swapfile_process_running(ZERO_BL *b0p, char_u *swap_fname UNUSED)
1116{
Bram Moolenaare2982d62021-10-06 11:27:21 +01001117#if defined(HAVE_SYSINFO) && defined(HAVE_SYSINFO_UPTIME)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001118 stat_T st;
1119 struct sysinfo sinfo;
1120
1121 // If the system rebooted after when the swap file was written then the
1122 // process can't be running now.
1123 if (mch_stat((char *)swap_fname, &st) != -1
1124 && sysinfo(&sinfo) == 0
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001125 && st.st_mtime < time(NULL) - (
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001126# ifdef FEAT_EVAL
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001127 override_sysinfo_uptime >= 0 ? override_sysinfo_uptime :
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001128# endif
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001129 sinfo.uptime))
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001130 return FALSE;
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001131# endif
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001132 return mch_process_running(char_to_long(b0p->b0_pid));
1133}
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001134#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001135
1136/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001137 * Try to recover curbuf from the .swp file.
Bram Moolenaar99499b12019-05-23 21:35:48 +02001138 * If "checkext" is TRUE, check the extension and detect whether it is
1139 * a swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001140 */
1141 void
Bram Moolenaar99499b12019-05-23 21:35:48 +02001142ml_recover(int checkext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001143{
1144 buf_T *buf = NULL;
1145 memfile_T *mfp = NULL;
1146 char_u *fname;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001147 char_u *fname_used = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148 bhdr_T *hp = NULL;
1149 ZERO_BL *b0p;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001150 int b0_ff;
1151 char_u *b0_fenc = NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001152#ifdef FEAT_CRYPT
1153 int b0_cm = -1;
1154#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001155 PTR_BL *pp;
1156 DATA_BL *dp;
1157 infoptr_T *ip;
1158 blocknr_T bnum;
1159 int page_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001160 stat_T org_stat, swp_stat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 int len;
1162 int directly;
1163 linenr_T lnum;
1164 char_u *p;
1165 int i;
1166 long error;
1167 int cannot_open;
1168 linenr_T line_count;
1169 int has_error;
1170 int idx;
1171 int top;
1172 int txt_start;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001173 off_T size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 int called_from_main;
1175 int serious_error = TRUE;
1176 long mtime;
1177 int attr;
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001178 int orig_file_status = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001179
1180 recoverymode = TRUE;
1181 called_from_main = (curbuf->b_ml.ml_mfp == NULL);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001182 attr = HL_ATTR(HLF_E);
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001183
1184 /*
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001185 * 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 +00001186 * Otherwise a search is done to find the swap file(s).
1187 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 fname = curbuf->b_fname;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001189 if (fname == NULL) // When there is no file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001190 fname = (char_u *)"";
1191 len = (int)STRLEN(fname);
Bram Moolenaar99499b12019-05-23 21:35:48 +02001192 if (checkext && len >= 4 &&
Bram Moolenaare60acc12011-05-10 16:41:25 +02001193#if defined(VMS)
Bram Moolenaar79518e22017-02-17 16:31:35 +01001194 STRNICMP(fname + len - 4, "_s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195#else
Bram Moolenaar79518e22017-02-17 16:31:35 +01001196 STRNICMP(fname + len - 4, ".s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001197#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001198 == 0
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001199 && vim_strchr((char_u *)"abcdefghijklmnopqrstuvw",
1200 TOLOWER_ASC(fname[len - 2])) != NULL
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001201 && ASCII_ISALPHA(fname[len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001202 {
1203 directly = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001204 fname_used = vim_strsave(fname); // make a copy for mf_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001205 }
1206 else
1207 {
1208 directly = FALSE;
1209
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001210 // count the number of matching swap files
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001211 len = recover_names(fname, FALSE, NULL, 0, NULL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001212 if (len == 0) // no swap files found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001214 semsg(_(e_no_swap_file_found_for_str), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 goto theend;
1216 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001217 if (len == 1) // one swap file found, use it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 i = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001219 else // several swap files found, choose
Bram Moolenaar071d4272004-06-13 20:20:40 +00001220 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001221 // list the names of the swap files
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001222 (void)recover_names(fname, TRUE, NULL, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001223 msg_putchar('\n');
Bram Moolenaar32526b32019-01-19 17:43:09 +01001224 msg_puts(_("Enter number of swap file to use (0 to quit): "));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001225 i = get_number(FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 if (i < 1 || i > len)
1227 goto theend;
1228 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001229 // get the swap file name that will be used
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001230 (void)recover_names(fname, FALSE, NULL, i, &fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001232 if (fname_used == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001233 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001235 // When called from main() still need to initialize storage structure
Bram Moolenaar4770d092006-01-12 23:22:24 +00001236 if (called_from_main && ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001237 getout(1);
1238
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001239 /*
1240 * Allocate a buffer structure for the swap file that is used for recovery.
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001241 * Only the memline and crypt information in it are really used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001242 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001243 buf = ALLOC_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 if (buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001246
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001247 /*
1248 * init fields in memline struct
1249 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001250 buf->b_ml.ml_stack_size = 0; // no stack yet
1251 buf->b_ml.ml_stack = NULL; // no stack yet
1252 buf->b_ml.ml_stack_top = 0; // nothing in the stack
1253 buf->b_ml.ml_line_lnum = 0; // no cached line
1254 buf->b_ml.ml_locked = NULL; // no locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001255 buf->b_ml.ml_flags = 0;
Bram Moolenaar0fe849a2010-07-25 15:11:11 +02001256#ifdef FEAT_CRYPT
1257 buf->b_p_key = empty_option;
1258 buf->b_p_cm = empty_option;
1259#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001260
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001261 /*
1262 * open the memfile from the old swap file
1263 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001264 p = vim_strsave(fname_used); // save "fname_used" for the message:
1265 // mf_open() will consume "fname_used"!
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001266 mfp = mf_open(fname_used, O_RDONLY);
1267 fname_used = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 if (mfp == NULL || mfp->mf_fd < 0)
1269 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001270 if (fname_used != NULL)
Bram Moolenaareaaac012022-01-02 17:00:40 +00001271 semsg(_(e_cannot_open_str), fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 goto theend;
1273 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001274 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001275#ifdef FEAT_CRYPT
1276 mfp->mf_buffer = buf;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001277#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001278
1279 /*
1280 * The page size set in mf_open() might be different from the page size
1281 * used in the swap file, we must get it from block 0. But to read block
1282 * 0 we need a page size. Use the minimal size for block 0 here, it will
1283 * be set to the real value below.
1284 */
1285 mfp->mf_page_size = MIN_SWAP_PAGE_SIZE;
1286
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001287 /*
1288 * try to read block 0
1289 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001290 if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL)
1291 {
1292 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001293 msg_puts_attr(_("Unable to read block 0 from "), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001295 msg_puts_attr(_("\nMaybe no changes were made or Vim did not update the swap file."),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001296 attr | MSG_HIST);
1297 msg_end();
1298 goto theend;
1299 }
1300 b0p = (ZERO_BL *)(hp->bh_data);
1301 if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0)
1302 {
1303 msg_start();
1304 msg_outtrans_attr(mfp->mf_fname, MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001305 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001307 msg_puts_attr(_("Use Vim version 3.0.\n"), MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001308 msg_end();
1309 goto theend;
1310 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001311 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001313 semsg(_(e_str_does_not_look_like_vim_swap_file), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001314 goto theend;
1315 }
1316 if (b0_magic_wrong(b0p))
1317 {
1318 msg_start();
1319 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001320#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001322 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001323 attr | MSG_HIST);
1324 else
1325#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001326 msg_puts_attr(_(" cannot be used on this computer.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001328 msg_puts_attr(_("The file was created on "), attr | MSG_HIST);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001329 // avoid going past the end of a corrupted hostname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001330 b0p->b0_fname[0] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001331 msg_puts_attr((char *)b0p->b0_hname, attr | MSG_HIST);
1332 msg_puts_attr(_(",\nor the file has been damaged."), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001333 msg_end();
1334 goto theend;
1335 }
Bram Moolenaar1c536282007-04-26 15:21:56 +00001336
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001337#ifdef FEAT_CRYPT
K.Takataeeec2542021-06-02 13:28:16 +02001338 for (i = 0; i < (int)ARRAY_LENGTH(id1_codes); ++i)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001339 if (id1_codes[i] == b0p->b0_id[1])
1340 b0_cm = i;
1341 if (b0_cm > 0)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001342 mch_memmove(mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001343 crypt_set_cm_option(buf, b0_cm < 0 ? 0 : b0_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001344#else
1345 if (b0p->b0_id[1] != BLOCK0_ID1)
1346 {
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001347 semsg(_(e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption), mfp->mf_fname);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001348 goto theend;
1349 }
1350#endif
1351
Bram Moolenaar071d4272004-06-13 20:20:40 +00001352 /*
1353 * If we guessed the wrong page size, we have to recalculate the
1354 * highest block number in the file.
1355 */
1356 if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size))
1357 {
Bram Moolenaar1c536282007-04-26 15:21:56 +00001358 unsigned previous_page_size = mfp->mf_page_size;
1359
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size));
Bram Moolenaar1c536282007-04-26 15:21:56 +00001361 if (mfp->mf_page_size < previous_page_size)
1362 {
1363 msg_start();
1364 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001365 msg_puts_attr(_(" has been damaged (page size is smaller than minimum value).\n"),
Bram Moolenaar1c536282007-04-26 15:21:56 +00001366 attr | MSG_HIST);
1367 msg_end();
1368 goto theend;
1369 }
Bram Moolenaar8767f522016-07-01 17:17:39 +02001370 if ((size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001371 mfp->mf_blocknr_max = 0; // no file or empty file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001372 else
1373 mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size);
1374 mfp->mf_infile_count = mfp->mf_blocknr_max;
Bram Moolenaar1c536282007-04-26 15:21:56 +00001375
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001376 // need to reallocate the memory used to store the data
Bram Moolenaar1c536282007-04-26 15:21:56 +00001377 p = alloc(mfp->mf_page_size);
1378 if (p == NULL)
1379 goto theend;
1380 mch_memmove(p, hp->bh_data, previous_page_size);
1381 vim_free(hp->bh_data);
1382 hp->bh_data = p;
1383 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001384 }
1385
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001386 /*
1387 * If .swp file name given directly, use name from swap file for buffer.
1388 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 if (directly)
1390 {
1391 expand_env(b0p->b0_fname, NameBuff, MAXPATHL);
1392 if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL)
1393 goto theend;
1394 }
1395
1396 home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001397 smsg(_("Using swap file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001398
1399 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02001400 vim_strncpy(NameBuff, buf_spname(curbuf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001401 else
1402 home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001403 smsg(_("Original file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001404 msg_putchar('\n');
1405
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001406 /*
1407 * check date of swap file and original file
1408 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001409 mtime = char_to_long(b0p->b0_mtime);
1410 if (curbuf->b_ffname != NULL
1411 && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1
1412 && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1
1413 && org_stat.st_mtime > swp_stat.st_mtime)
1414 || org_stat.st_mtime != mtime))
Bram Moolenaareaaac012022-01-02 17:00:40 +00001415 emsg(_(e_warning_original_file_may_have_been_changed));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001416 out_flush();
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001417
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001418 // Get the 'fileformat' and 'fileencoding' from block zero.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001419 b0_ff = (b0p->b0_flags & B0_FF_MASK);
1420 if (b0p->b0_flags & B0_HAS_FENC)
1421 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001422 int fnsize = B0_FNAME_SIZE_NOCRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001423
1424#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001425 // Use the same size as in add_b0_fenc().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001426 if (b0p->b0_id[1] != BLOCK0_ID1)
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001427 fnsize = B0_FNAME_SIZE_CRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001428#endif
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001429 for (p = b0p->b0_fname + fnsize; p > b0p->b0_fname && p[-1] != NUL; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001430 ;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001431 b0_fenc = vim_strnsave(p, b0p->b0_fname + fnsize - p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001432 }
1433
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001434 mf_put(mfp, hp, FALSE, FALSE); // release block 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001435 hp = NULL;
1436
1437 /*
1438 * Now that we are sure that the file is going to be recovered, clear the
1439 * contents of the current buffer.
1440 */
1441 while (!(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001442 ml_delete((linenr_T)1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001443
1444 /*
1445 * Try reading the original file to obtain the values of 'fileformat',
1446 * 'fileencoding', etc. Ignore errors. The text itself is not used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001447 * When the file is encrypted the user is asked to enter the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 */
1449 if (curbuf->b_ffname != NULL)
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001450 orig_file_status = readfile(curbuf->b_ffname, NULL, (linenr_T)0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001452
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001453#ifdef FEAT_CRYPT
1454 if (b0_cm >= 0)
1455 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001456 // Need to ask the user for the crypt key. If this fails we continue
1457 // without a key, will probably get garbage text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001458 if (*curbuf->b_p_key != NUL)
1459 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001460 smsg(_("Swap file is encrypted: \"%s\""), fname_used);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001461 msg_puts(_("\nIf you entered a new crypt key but did not write the text file,"));
1462 msg_puts(_("\nenter the new crypt key."));
1463 msg_puts(_("\nIf you wrote the text file after changing the crypt key press enter"));
1464 msg_puts(_("\nto use the same key for text file and swap file"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001465 }
1466 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001467 smsg(_(need_key_msg), fname_used);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001468 buf->b_p_key = crypt_get_key(FALSE, FALSE);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001469 if (buf->b_p_key == NULL)
1470 buf->b_p_key = curbuf->b_p_key;
1471 else if (*buf->b_p_key == NUL)
1472 {
1473 vim_free(buf->b_p_key);
1474 buf->b_p_key = curbuf->b_p_key;
1475 }
1476 if (buf->b_p_key == NULL)
1477 buf->b_p_key = empty_option;
1478 }
1479#endif
1480
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001481 // Use the 'fileformat' and 'fileencoding' as stored in the swap file.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001482 if (b0_ff != 0)
1483 set_fileformat(b0_ff - 1, OPT_LOCAL);
1484 if (b0_fenc != NULL)
1485 {
Bram Moolenaar31e5c602022-04-15 13:53:33 +01001486 set_option_value_give_err((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001487 vim_free(b0_fenc);
1488 }
Bram Moolenaarc024b462019-06-08 18:07:21 +02001489 unchanged(curbuf, TRUE, TRUE);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001490
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001491 bnum = 1; // start with block 1
1492 page_count = 1; // which is 1 page
1493 lnum = 0; // append after line 0 in curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 line_count = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001495 idx = 0; // start with first index in block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001496 error = 0;
1497 buf->b_ml.ml_stack_top = 0;
1498 buf->b_ml.ml_stack = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001499 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00001500
1501 if (curbuf->b_ffname == NULL)
1502 cannot_open = TRUE;
1503 else
1504 cannot_open = FALSE;
1505
1506 serious_error = FALSE;
1507 for ( ; !got_int; line_breakcheck())
1508 {
1509 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001510 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001511
1512 /*
1513 * get block
1514 */
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001515 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001516 {
1517 if (bnum == 1)
1518 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001519 semsg(_(e_unable_to_read_block_one_from_str), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001520 goto theend;
1521 }
1522 ++error;
1523 ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"),
1524 (colnr_T)0, TRUE);
1525 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001526 else // there is a block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001527 {
1528 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001529 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 {
Bram Moolenaarb67ba032023-04-22 21:14:26 +01001531 int ptr_block_error = FALSE;
1532 if (pp->pb_count_max != PB_COUNT_MAX(mfp))
1533 {
1534 ptr_block_error = TRUE;
1535 pp->pb_count_max = PB_COUNT_MAX(mfp);
1536 }
1537 if (pp->pb_count > pp->pb_count_max)
1538 {
1539 ptr_block_error = TRUE;
1540 pp->pb_count = pp->pb_count_max;
1541 }
1542 if (ptr_block_error)
1543 emsg(_(e_warning_pointer_block_corrupted));
1544
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001545 // check line count when using pointer block first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001546 if (idx == 0 && line_count != 0)
1547 {
1548 for (i = 0; i < (int)pp->pb_count; ++i)
1549 line_count -= pp->pb_pointer[i].pe_line_count;
1550 if (line_count != 0)
1551 {
1552 ++error;
1553 ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"),
1554 (colnr_T)0, TRUE);
1555 }
1556 }
1557
1558 if (pp->pb_count == 0)
1559 {
1560 ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"),
1561 (colnr_T)0, TRUE);
1562 ++error;
1563 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001564 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaar071d4272004-06-13 20:20:40 +00001565 {
1566 if (pp->pb_pointer[idx].pe_bnum < 0)
1567 {
1568 /*
1569 * Data block with negative block number.
1570 * Try to read lines from the original file.
1571 * This is slow, but it works.
1572 */
1573 if (!cannot_open)
1574 {
1575 line_count = pp->pb_pointer[idx].pe_line_count;
1576 if (readfile(curbuf->b_ffname, NULL, lnum,
1577 pp->pb_pointer[idx].pe_old_lnum - 1,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001578 line_count, NULL, 0) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001579 cannot_open = TRUE;
1580 else
1581 lnum += line_count;
1582 }
1583 if (cannot_open)
1584 {
1585 ++error;
1586 ml_append(lnum++, (char_u *)_("???LINES MISSING"),
1587 (colnr_T)0, TRUE);
1588 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001589 ++idx; // get same block again for next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001590 continue;
1591 }
1592
1593 /*
1594 * going one block deeper in the tree
1595 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001596 if ((top = ml_add_stack(buf)) < 0) // new entry in stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 {
1598 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001599 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 }
1601 ip = &(buf->b_ml.ml_stack[top]);
1602 ip->ip_bnum = bnum;
1603 ip->ip_index = idx;
1604
1605 bnum = pp->pb_pointer[idx].pe_bnum;
1606 line_count = pp->pb_pointer[idx].pe_line_count;
1607 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaar986a0032011-06-13 01:07:27 +02001608 idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001609 continue;
1610 }
1611 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001612 else // not a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 {
1614 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001615 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001616 {
1617 if (bnum == 1)
1618 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001619 semsg(_(e_block_one_id_wrong_str_not_swp_file),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001620 mfp->mf_fname);
1621 goto theend;
1622 }
1623 ++error;
1624 ml_append(lnum++, (char_u *)_("???BLOCK MISSING"),
1625 (colnr_T)0, TRUE);
1626 }
1627 else
1628 {
1629 /*
1630 * it is a data block
1631 * Append all the lines in this block
1632 */
1633 has_error = FALSE;
1634 /*
1635 * check length of block
1636 * if wrong, use length in pointer block
1637 */
1638 if (page_count * mfp->mf_page_size != dp->db_txt_end)
1639 {
1640 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"),
1641 (colnr_T)0, TRUE);
1642 ++error;
1643 has_error = TRUE;
1644 dp->db_txt_end = page_count * mfp->mf_page_size;
1645 }
1646
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001647 // make sure there is a NUL at the end of the block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001648 *((char_u *)dp + dp->db_txt_end - 1) = NUL;
1649
1650 /*
1651 * check number of lines in block
1652 * if wrong, use count in data block
1653 */
1654 if (line_count != dp->db_line_count)
1655 {
1656 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"),
1657 (colnr_T)0, TRUE);
1658 ++error;
1659 has_error = TRUE;
1660 }
1661
1662 for (i = 0; i < dp->db_line_count; ++i)
1663 {
1664 txt_start = (dp->db_index[i] & DB_INDEX_MASK);
Bram Moolenaar740885b2009-11-03 14:33:17 +00001665 if (txt_start <= (int)HEADER_SIZE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001666 || txt_start >= (int)dp->db_txt_end)
1667 {
1668 p = (char_u *)"???";
1669 ++error;
1670 }
1671 else
1672 p = (char_u *)dp + txt_start;
1673 ml_append(lnum++, p, (colnr_T)0, TRUE);
1674 }
1675 if (has_error)
Bram Moolenaar740885b2009-11-03 14:33:17 +00001676 ml_append(lnum++, (char_u *)_("???END"),
1677 (colnr_T)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001678 }
1679 }
1680 }
1681
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001682 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaar071d4272004-06-13 20:20:40 +00001683 break;
1684
1685 /*
1686 * go one block up in the tree
1687 */
1688 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
1689 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001690 idx = ip->ip_index + 1; // go to next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 page_count = 1;
1692 }
1693
1694 /*
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001695 * Compare the buffer contents with the original file. When they differ
1696 * set the 'modified' flag.
1697 * Lines 1 - lnum are the new contents.
1698 * Lines lnum + 1 to ml_line_count are the original contents.
1699 * Line ml_line_count + 1 in the dummy empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001700 */
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001701 if (orig_file_status != OK || curbuf->b_ml.ml_line_count != lnum * 2 + 1)
1702 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001703 // Recovering an empty file results in two lines and the first line is
1704 // empty. Don't set the modified flag then.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001705 if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
1706 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001707 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001708 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001709 }
1710 }
1711 else
1712 {
1713 for (idx = 1; idx <= lnum; ++idx)
1714 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001715 // Need to copy one line, fetching the other one may flush it.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001716 p = vim_strsave(ml_get(idx));
1717 i = STRCMP(p, ml_get(idx + lnum));
1718 vim_free(p);
1719 if (i != 0)
1720 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001721 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001722 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001723 break;
1724 }
1725 }
1726 }
1727
1728 /*
1729 * Delete the lines from the original file and the dummy line from the
1730 * empty buffer. These will now be after the last line in the buffer.
1731 */
1732 while (curbuf->b_ml.ml_line_count > lnum
1733 && !(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001734 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001735 curbuf->b_flags |= BF_RECOVERED;
Bram Moolenaare3f50ad2021-06-09 12:33:40 +02001736 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001737
1738 recoverymode = FALSE;
1739 if (got_int)
Bram Moolenaareaaac012022-01-02 17:00:40 +00001740 emsg(_(e_recovery_interrupted));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001741 else if (error)
1742 {
1743 ++no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001744 msg(">>>>>>>>>>>>>");
Bram Moolenaareaaac012022-01-02 17:00:40 +00001745 emsg(_(e_errors_detected_while_recovering_look_for_lines_starting_with_questions));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001746 --no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001747 msg(_("See \":help E312\" for more information."));
1748 msg(">>>>>>>>>>>>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001749 }
1750 else
1751 {
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001752 if (curbuf->b_changed)
1753 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001754 msg(_("Recovery completed. You should check if everything is OK."));
1755 msg_puts(_("\n(You might want to write out this file under another name\n"));
1756 msg_puts(_("and run diff with the original file to check for changes)"));
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001757 }
1758 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001759 msg(_("Recovery completed. Buffer contents equals file contents."));
Bram Moolenaarf8835082020-11-09 21:04:17 +01001760 msg_puts(_("\nYou may want to delete the .swp file now."));
1761#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001762 if (swapfile_process_running(b0p, fname_used))
Bram Moolenaarf8835082020-11-09 21:04:17 +01001763 {
1764 // Warn there could be an active Vim on the same file, the user may
1765 // want to kill it.
1766 msg_puts(_("\nNote: process STILL RUNNING: "));
1767 msg_outnum(char_to_long(b0p->b0_pid));
1768 }
1769#endif
1770 msg_puts("\n\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 cmdline_row = msg_row;
1772 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001773#ifdef FEAT_CRYPT
1774 if (*buf->b_p_key != NUL && STRCMP(curbuf->b_p_key, buf->b_p_key) != 0)
1775 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001776 msg_puts(_("Using crypt key from swap file for the text file.\n"));
Bram Moolenaar31e5c602022-04-15 13:53:33 +01001777 set_option_value_give_err((char_u *)"key", 0L, buf->b_p_key, OPT_LOCAL);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001778 }
1779#endif
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001780 redraw_curbuf_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001781
1782theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001783 vim_free(fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001784 recoverymode = FALSE;
1785 if (mfp != NULL)
1786 {
1787 if (hp != NULL)
1788 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001789 mf_close(mfp, FALSE); // will also vim_free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001790 }
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001791 if (buf != NULL)
1792 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001793#ifdef FEAT_CRYPT
1794 if (buf->b_p_key != curbuf->b_p_key)
1795 free_string_option(buf->b_p_key);
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001796 free_string_option(buf->b_p_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001797#endif
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001798 vim_free(buf->b_ml.ml_stack);
1799 vim_free(buf);
1800 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 if (serious_error && called_from_main)
1802 ml_close(curbuf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001803 else
1804 {
1805 apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf);
1806 apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf);
1807 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001808}
1809
1810/*
1811 * Find the names of swap files in current directory and the directory given
1812 * with the 'directory' option.
1813 *
1814 * Used to:
1815 * - list the swap files for "vim -r"
1816 * - count the number of swap files when recovering
1817 * - list the swap files when recovering
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001818 * - list the swap files for swapfilelist()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001819 * - find the name of the n'th swap file when recovering
1820 */
1821 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001822recover_names(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001823 char_u *fname, // base for swap file name
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001824 int do_list, // when TRUE, list the swap file names
1825 list_T *ret_list UNUSED, // when not NULL add file names to it
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001826 int nr, // when non-zero, return nr'th swap file name
1827 char_u **fname_out) // result when "nr" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001828{
1829 int num_names;
1830 char_u *(names[6]);
1831 char_u *tail;
1832 char_u *p;
1833 int num_files;
1834 int file_count = 0;
1835 char_u **files;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001836 char_u *dirp;
1837 char_u *dir_name;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001838 char_u *fname_res = NULL;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001839#ifdef HAVE_READLINK
1840 char_u fname_buf[MAXPATHL];
Bram Moolenaar64354da2010-05-25 21:37:17 +02001841#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001842
Bram Moolenaar64354da2010-05-25 21:37:17 +02001843 if (fname != NULL)
1844 {
1845#ifdef HAVE_READLINK
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001846 // Expand symlink in the file name, because the swap file is created
1847 // with the actual file instead of with the symlink.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001848 if (resolve_symlink(fname, fname_buf) == OK)
1849 fname_res = fname_buf;
1850 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001851#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001852 fname_res = fname;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001853 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001854
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001855 if (do_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001856 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001857 // use msg() to start the scrolling properly
Bram Moolenaar32526b32019-01-19 17:43:09 +01001858 msg(_("Swap files found:"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001859 msg_putchar('\n');
1860 }
1861
1862 /*
1863 * Do the loop for every directory in 'directory'.
1864 * First allocate some memory to put the directory name in.
1865 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001866 dir_name = alloc(STRLEN(p_dir) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 dirp = p_dir;
1868 while (dir_name != NULL && *dirp)
1869 {
1870 /*
1871 * Isolate a directory name from *dirp and put it in dir_name (we know
1872 * it is large enough, so use 31000 for length).
1873 * Advance dirp to next directory name.
1874 */
1875 (void)copy_option_part(&dirp, dir_name, 31000, ",");
1876
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001877 if (dir_name[0] == '.' && dir_name[1] == NUL) // check current dir
Bram Moolenaar071d4272004-06-13 20:20:40 +00001878 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001879 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001880 {
1881#ifdef VMS
1882 names[0] = vim_strsave((char_u *)"*_sw%");
1883#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884 names[0] = vim_strsave((char_u *)"*.sw?");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001885#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001886#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001887 // For Unix names starting with a dot are special. MS-Windows
1888 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 names[1] = vim_strsave((char_u *)".*.sw?");
1890 names[2] = vim_strsave((char_u *)".sw?");
1891 num_names = 3;
1892#else
1893# ifdef VMS
1894 names[1] = vim_strsave((char_u *)".*_sw%");
1895 num_names = 2;
1896# else
1897 num_names = 1;
1898# endif
1899#endif
1900 }
1901 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001902 num_names = recov_file_names(names, fname_res, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001903 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001904 else // check directory dir_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001905 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001906 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001907 {
1908#ifdef VMS
1909 names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE);
1910#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001911 names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001912#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001913#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001914 // For Unix names starting with a dot are special. MS-Windows
1915 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001916 names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
1917 names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
1918 num_names = 3;
1919#else
1920# ifdef VMS
1921 names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE);
1922 num_names = 2;
1923# else
1924 num_names = 1;
1925# endif
1926#endif
1927 }
1928 else
1929 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001930#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01001931 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01001932
1933 p = dir_name + len;
1934 if (after_pathsep(dir_name, p) && len > 1 && p[-1] == p[-2])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001936 // Ends with '//', Use Full path for swap name
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001937 tail = make_percent_swname(dir_name, fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001938 }
1939 else
1940#endif
1941 {
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001942 tail = gettail(fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001943 tail = concat_fnames(dir_name, tail, TRUE);
1944 }
1945 if (tail == NULL)
1946 num_names = 0;
1947 else
1948 {
1949 num_names = recov_file_names(names, tail, FALSE);
1950 vim_free(tail);
1951 }
1952 }
1953 }
1954
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02001955 // check for out-of-memory
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001956 for (int i = 0; i < num_names; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001957 {
1958 if (names[i] == NULL)
1959 {
1960 for (i = 0; i < num_names; ++i)
1961 vim_free(names[i]);
1962 num_names = 0;
1963 }
1964 }
1965 if (num_names == 0)
1966 num_files = 0;
1967 else if (expand_wildcards(num_names, names, &num_files, &files,
Bram Moolenaar99499b12019-05-23 21:35:48 +02001968 EW_NOTENV|EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969 num_files = 0;
1970
1971 /*
1972 * When no swap file found, wildcard expansion might have failed (e.g.
1973 * not able to execute the shell).
1974 * Try finding a swap file by simply adding ".swp" to the file name.
1975 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001976 if (*dirp == NUL && file_count + num_files == 0 && fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001978 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001979 char_u *swapname;
1980
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001981 swapname = modname(fname_res,
Bram Moolenaare60acc12011-05-10 16:41:25 +02001982#if defined(VMS)
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001983 (char_u *)"_swp", FALSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001984#else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001985 (char_u *)".swp", TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001986#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001987 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001988 if (swapname != NULL)
1989 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001990 if (mch_stat((char *)swapname, &st) != -1) // It exists!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001991 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001992 files = ALLOC_ONE(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001993 if (files != NULL)
1994 {
1995 files[0] = swapname;
1996 swapname = NULL;
1997 num_files = 1;
1998 }
1999 }
2000 vim_free(swapname);
2001 }
2002 }
2003
2004 /*
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002005 * Remove swapfile name of the current buffer, it must be ignored.
2006 * But keep it for swapfilelist().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 */
2008 if (curbuf->b_ml.ml_mfp != NULL
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002009 && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL
2010 && ret_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 {
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002012 for (int i = 0; i < num_files; ++i)
Bram Moolenaar99499b12019-05-23 21:35:48 +02002013 // Do not expand wildcards, on windows would try to expand
2014 // "%tmp%" in "%tmp%file".
2015 if (fullpathcmp(p, files[i], TRUE, FALSE) & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02002017 // Remove the name from files[i]. Move further entries
2018 // down. When the array becomes empty free it here, since
2019 // FreeWild() won't be called below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002020 vim_free(files[i]);
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00002021 if (--num_files == 0)
2022 vim_free(files);
2023 else
2024 for ( ; i < num_files; ++i)
2025 files[i] = files[i + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 }
2027 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002028 if (nr > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002029 {
2030 file_count += num_files;
2031 if (nr <= file_count)
2032 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002033 *fname_out = vim_strsave(
2034 files[nr - 1 + num_files - file_count]);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002035 dirp = (char_u *)""; // stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002036 }
2037 }
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002038 else if (do_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002039 {
2040 if (dir_name[0] == '.' && dir_name[1] == NUL)
2041 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002042 if (fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002043 msg_puts(_(" In current directory:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002045 msg_puts(_(" Using specified name:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 }
2047 else
2048 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002049 msg_puts(_(" In directory "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 msg_home_replace(dir_name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002051 msg_puts(":\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002052 }
2053
2054 if (num_files)
2055 {
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002056 for (int i = 0; i < num_files; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002057 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002058 // print the swap file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 msg_outnum((long)++file_count);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002060 msg_puts(". ");
2061 msg_puts((char *)gettail(files[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002062 msg_putchar('\n');
2063 (void)swapfile_info(files[i]);
2064 }
2065 }
2066 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002067 msg_puts(_(" -- none --\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002068 out_flush();
2069 }
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002070#ifdef FEAT_EVAL
2071 else if (ret_list != NULL)
2072 {
2073 for (int i = 0; i < num_files; ++i)
2074 {
2075 char_u *name = concat_fnames(dir_name, files[i], TRUE);
2076 if (name != NULL)
2077 {
2078 list_append_string(ret_list, name, -1);
2079 vim_free(name);
2080 }
2081 }
2082 }
2083#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 else
2085 file_count += num_files;
2086
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002087 for (int i = 0; i < num_names; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002088 vim_free(names[i]);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002089 if (num_files > 0)
2090 FreeWild(num_files, files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002091 }
2092 vim_free(dir_name);
2093 return file_count;
2094}
2095
Bram Moolenaar4f974752019-02-17 17:44:42 +01002096#if defined(UNIX) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002097/*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002098 * Need _very_ long file names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002099 * Append the full path to name with path separators made into percent
Bram Moolenaar8b0e62c2021-10-19 22:12:25 +01002100 * signs, to "dir". An unnamed buffer is handled as "" (<currentdir>/"")
2101 * The last character in "dir" must be an extra slash or backslash, it is
2102 * removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002103 */
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002104 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002105make_percent_swname(char_u *dir, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002106{
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002107 char_u *d = NULL, *s, *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002108
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002109 f = fix_fname(name != NULL ? name : (char_u *)"");
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00002110 if (f == NULL)
2111 return NULL;
Bram Moolenaar8b0e62c2021-10-19 22:12:25 +01002112
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00002113 s = alloc(STRLEN(f) + 1);
2114 if (s != NULL)
2115 {
2116 STRCPY(s, f);
2117 for (d = s; *d != NUL; MB_PTR_ADV(d))
2118 if (vim_ispathsep(*d))
2119 *d = '%';
2120
2121 dir[STRLEN(dir) - 1] = NUL; // remove one trailing slash
2122 d = concat_fnames(dir, s, TRUE);
2123 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002124 }
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00002125 vim_free(f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002126 return d;
2127}
2128#endif
2129
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002130#if (defined(UNIX) || defined(VMS) || defined(MSWIN)) \
2131 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
2132# define HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133static int process_still_running;
2134#endif
2135
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002136#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002137/*
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002138 * Return information found in swapfile "fname" in dictionary "d".
2139 * This is used by the swapinfo() function.
2140 */
2141 void
2142get_b0_dict(char_u *fname, dict_T *d)
2143{
2144 int fd;
2145 struct block0 b0;
2146
2147 if ((fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
2148 {
2149 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
2150 {
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002151 if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002152 dict_add_string(d, "error", (char_u *)"Not a swap file");
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002153 else if (b0_magic_wrong(&b0))
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002154 dict_add_string(d, "error", (char_u *)"Magic number mismatch");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002155 else
2156 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002157 // we have swap information
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002158 dict_add_string_len(d, "version", b0.b0_version, 10);
2159 dict_add_string_len(d, "user", b0.b0_uname, B0_UNAME_SIZE);
2160 dict_add_string_len(d, "host", b0.b0_hname, B0_HNAME_SIZE);
2161 dict_add_string_len(d, "fname", b0.b0_fname, B0_FNAME_SIZE_ORG);
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002162
2163 dict_add_number(d, "pid", char_to_long(b0.b0_pid));
2164 dict_add_number(d, "mtime", char_to_long(b0.b0_mtime));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002165 dict_add_number(d, "dirty", b0.b0_dirty ? 1 : 0);
2166# ifdef CHECK_INODE
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002167 dict_add_number(d, "inode", char_to_long(b0.b0_ino));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002168# endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002169 }
2170 }
2171 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002172 dict_add_string(d, "error", (char_u *)"Cannot read file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002173 close(fd);
2174 }
2175 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002176 dict_add_string(d, "error", (char_u *)"Cannot open file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002177}
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002178#endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002179
2180/*
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002181 * Give information about an existing swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002182 * Returns timestamp (0 when unknown).
2183 */
2184 static time_t
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002185swapfile_info(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002186{
Bram Moolenaar8767f522016-07-01 17:17:39 +02002187 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 int fd;
2189 struct block0 b0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002190#ifdef UNIX
2191 char_u uname[B0_UNAME_SIZE];
2192#endif
2193
Bram Moolenaar63d25552019-05-10 21:28:38 +02002194 // print the swap file date
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 if (mch_stat((char *)fname, &st) != -1)
2196 {
2197#ifdef UNIX
Bram Moolenaar63d25552019-05-10 21:28:38 +02002198 // print name of owner of the file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002199 if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK)
2200 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002201 msg_puts(_(" owned by: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 msg_outtrans(uname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002203 msg_puts(_(" dated: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002204 }
2205 else
2206#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002207 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02002208 msg_puts(get_ctime(st.st_mtime, TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002209 }
Bram Moolenaar63d25552019-05-10 21:28:38 +02002210 else
2211 st.st_mtime = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212
2213 /*
2214 * print the original file name
2215 */
2216 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2217 if (fd >= 0)
2218 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01002219 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 {
2221 if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0)
2222 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002223 msg_puts(_(" [from Vim version 3.0]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002225 else if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002227 msg_puts(_(" [does not look like a Vim swap file]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002228 }
2229 else
2230 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002231 msg_puts(_(" file name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 if (b0.b0_fname[0] == NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002233 msg_puts(_("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 else
2235 msg_outtrans(b0.b0_fname);
2236
Bram Moolenaar32526b32019-01-19 17:43:09 +01002237 msg_puts(_("\n modified: "));
2238 msg_puts(b0.b0_dirty ? _("YES") : _("no"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239
2240 if (*(b0.b0_uname) != NUL)
2241 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002242 msg_puts(_("\n user name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 msg_outtrans(b0.b0_uname);
2244 }
2245
2246 if (*(b0.b0_hname) != NUL)
2247 {
2248 if (*(b0.b0_uname) != NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002249 msg_puts(_(" host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002251 msg_puts(_("\n host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002252 msg_outtrans(b0.b0_hname);
2253 }
2254
2255 if (char_to_long(b0.b0_pid) != 0L)
2256 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002257 msg_puts(_("\n process ID: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 msg_outnum(char_to_long(b0.b0_pid));
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002259#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002260 if (swapfile_process_running(&b0, fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002261 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002262 msg_puts(_(" (STILL RUNNING)"));
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002263# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 process_still_running = TRUE;
2265# endif
2266 }
2267#endif
2268 }
2269
2270 if (b0_magic_wrong(&b0))
2271 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002272#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 if (STRNCMP(b0.b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002274 msg_puts(_("\n [not usable with this version of Vim]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002275 else
2276#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002277 msg_puts(_("\n [not usable on this computer]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002278 }
2279 }
2280 }
2281 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002282 msg_puts(_(" [cannot be read]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002283 close(fd);
2284 }
2285 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002286 msg_puts(_(" [cannot be opened]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002287 msg_putchar('\n');
2288
Bram Moolenaar63d25552019-05-10 21:28:38 +02002289 return st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002290}
2291
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002292/*
2293 * Return TRUE if the swap file looks OK and there are no changes, thus it can
2294 * be safely deleted.
2295 */
zeertzjq3c5999e2022-03-23 13:54:51 +00002296 static int
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002297swapfile_unchanged(char_u *fname)
2298{
2299 stat_T st;
2300 int fd;
2301 struct block0 b0;
2302 int ret = TRUE;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002303
2304 // must be able to stat the swap file
2305 if (mch_stat((char *)fname, &st) == -1)
2306 return FALSE;
2307
2308 // must be able to read the first block
2309 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2310 if (fd < 0)
2311 return FALSE;
2312 if (read_eintr(fd, &b0, sizeof(b0)) != sizeof(b0))
2313 {
2314 close(fd);
2315 return FALSE;
2316 }
2317
2318 // the ID and magic number must be correct
2319 if (ml_check_b0_id(&b0) == FAIL|| b0_magic_wrong(&b0))
2320 ret = FALSE;
2321
2322 // must be unchanged
2323 if (b0.b0_dirty)
2324 ret = FALSE;
2325
2326#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf8835082020-11-09 21:04:17 +01002327 // Host name must be known and must equal the current host name, otherwise
2328 // comparing pid is meaningless.
2329 if (*(b0.b0_hname) == NUL)
2330 {
2331 ret = FALSE;
2332 }
2333 else
2334 {
2335 char_u hostname[B0_HNAME_SIZE];
2336
2337 mch_get_host_name(hostname, B0_HNAME_SIZE);
2338 hostname[B0_HNAME_SIZE - 1] = NUL;
Bram Moolenaare79cdb62020-11-21 13:51:16 +01002339 b0.b0_hname[B0_HNAME_SIZE - 1] = NUL; // in case of corruption
Bram Moolenaarf8835082020-11-09 21:04:17 +01002340 if (STRICMP(b0.b0_hname, hostname) != 0)
2341 ret = FALSE;
2342 }
2343
Bram Moolenaar32aa1022019-11-02 22:54:41 +01002344 // process must be known and not be running
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002345 if (char_to_long(b0.b0_pid) == 0L || swapfile_process_running(&b0, fname))
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002346 ret = FALSE;
2347#endif
2348
Bram Moolenaarf8835082020-11-09 21:04:17 +01002349 // We do not check the user, it should be irrelevant for whether the swap
2350 // file is still useful.
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002351
2352 close(fd);
2353 return ret;
2354}
2355
Bram Moolenaar071d4272004-06-13 20:20:40 +00002356 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002357recov_file_names(char_u **names, char_u *path, int prepend_dot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358{
2359 int num_names;
2360
Bram Moolenaar071d4272004-06-13 20:20:40 +00002361 /*
2362 * (Win32 and Win64) never short names, but do prepend a dot.
2363 * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both.
2364 * Only use the short name if it is different.
2365 */
2366 char_u *p;
2367 int i;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002368# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002369 int shortname = curbuf->b_shortname;
2370
2371 curbuf->b_shortname = FALSE;
2372# endif
2373
2374 num_names = 0;
2375
2376 /*
2377 * May also add the file name with a dot prepended, for swap file in same
2378 * dir as original file.
2379 */
2380 if (prepend_dot)
2381 {
2382 names[num_names] = modname(path, (char_u *)".sw?", TRUE);
2383 if (names[num_names] == NULL)
2384 goto end;
2385 ++num_names;
2386 }
2387
2388 /*
2389 * Form the normal swap file name pattern by appending ".sw?".
2390 */
2391#ifdef VMS
2392 names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE);
2393#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002394 names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002395#endif
2396 if (names[num_names] == NULL)
2397 goto end;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002398 if (num_names >= 1) // check if we have the same name twice
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 {
2400 p = names[num_names - 1];
2401 i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]);
2402 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002403 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404
2405 if (STRCMP(p, names[num_names]) != 0)
2406 ++num_names;
2407 else
2408 vim_free(names[num_names]);
2409 }
2410 else
2411 ++num_names;
2412
Bram Moolenaar4f974752019-02-17 17:44:42 +01002413# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002414 /*
2415 * Also try with 'shortname' set, in case the file is on a DOS filesystem.
2416 */
2417 curbuf->b_shortname = TRUE;
2418#ifdef VMS
2419 names[num_names] = modname(path, (char_u *)"_sw%", FALSE);
2420#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002421 names[num_names] = modname(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422#endif
2423 if (names[num_names] == NULL)
2424 goto end;
2425
2426 /*
2427 * Remove the one from 'shortname', if it's the same as with 'noshortname'.
2428 */
2429 p = names[num_names];
2430 i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]);
2431 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002432 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002433 if (STRCMP(names[num_names - 1], p) == 0)
2434 vim_free(names[num_names]);
2435 else
2436 ++num_names;
2437# endif
2438
2439end:
Bram Moolenaar4f974752019-02-17 17:44:42 +01002440# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002441 curbuf->b_shortname = shortname;
2442# endif
2443
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 return num_names;
2445}
2446
2447/*
2448 * sync all memlines
2449 *
2450 * If 'check_file' is TRUE, check if original file exists and was not changed.
2451 * If 'check_char' is TRUE, stop syncing when character becomes available, but
2452 * always sync at least one block.
2453 */
2454 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002455ml_sync_all(int check_file, int check_char)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002456{
2457 buf_T *buf;
Bram Moolenaar8767f522016-07-01 17:17:39 +02002458 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002459
Bram Moolenaar29323592016-07-24 22:04:11 +02002460 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002461 {
Christian Brabandtf573c6e2021-06-20 14:02:16 +02002462 if (buf->b_ml.ml_mfp == NULL
2463 || buf->b_ml.ml_mfp->mf_fname == NULL
2464 || buf->b_ml.ml_mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002465 continue; // no file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002466
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002467 ml_flush_line(buf); // flush buffered line
2468 // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002469 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH);
2470 if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp)
2471 && buf->b_ffname != NULL)
2472 {
2473 /*
2474 * If the original file does not exist anymore or has been changed
2475 * call ml_preserve() to get rid of all negative numbered blocks.
2476 */
2477 if (mch_stat((char *)buf->b_ffname, &st) == -1
2478 || st.st_mtime != buf->b_mtime_read
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01002479#ifdef ST_MTIM_NSEC
2480 || st.ST_MTIM_NSEC != buf->b_mtime_read_ns
2481#endif
Bram Moolenaar914703b2010-05-31 21:59:46 +02002482 || st.st_size != buf->b_orig_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002483 {
2484 ml_preserve(buf, FALSE);
2485 did_check_timestamps = FALSE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002486 need_check_timestamps = TRUE; // give message later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002487 }
2488 }
2489 if (buf->b_ml.ml_mfp->mf_dirty)
2490 {
2491 (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0)
2492 | (bufIsChanged(buf) ? MFS_FLUSH : 0));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002493 if (check_char && ui_char_avail()) // character available now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 break;
2495 }
2496 }
2497}
2498
2499/*
2500 * sync one buffer, including negative blocks
2501 *
2502 * after this all the blocks are in the swap file
2503 *
2504 * Used for the :preserve command and when the original file has been
2505 * changed or deleted.
2506 *
2507 * when message is TRUE the success of preserving is reported
2508 */
2509 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002510ml_preserve(buf_T *buf, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002511{
2512 bhdr_T *hp;
2513 linenr_T lnum;
2514 memfile_T *mfp = buf->b_ml.ml_mfp;
2515 int status;
2516 int got_int_save = got_int;
2517
2518 if (mfp == NULL || mfp->mf_fname == NULL)
2519 {
2520 if (message)
Bram Moolenaareaaac012022-01-02 17:00:40 +00002521 emsg(_(e_cannot_preserve_there_is_no_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002522 return;
2523 }
2524
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002525 // We only want to stop when interrupted here, not when interrupted
2526 // before.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 got_int = FALSE;
2528
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002529 ml_flush_line(buf); // flush buffered line
2530 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002531 status = mf_sync(mfp, MFS_ALL | MFS_FLUSH);
2532
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002533 // stack is invalid after mf_sync(.., MFS_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002534 buf->b_ml.ml_stack_top = 0;
2535
2536 /*
2537 * Some of the data blocks may have been changed from negative to
2538 * positive block number. In that case the pointer blocks need to be
2539 * updated.
2540 *
2541 * We don't know in which pointer block the references are, so we visit
2542 * all data blocks until there are no more translations to be done (or
2543 * we hit the end of the file, which can only happen in case a write fails,
2544 * e.g. when file system if full).
2545 * ml_find_line() does the work by translating the negative block numbers
2546 * when getting the first line of each data block.
2547 */
2548 if (mf_need_trans(mfp) && !got_int)
2549 {
2550 lnum = 1;
2551 while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count)
2552 {
2553 hp = ml_find_line(buf, lnum, ML_FIND);
2554 if (hp == NULL)
2555 {
2556 status = FAIL;
2557 goto theend;
2558 }
2559 CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum");
2560 lnum = buf->b_ml.ml_locked_high + 1;
2561 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002562 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
2563 // sync the updated pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL)
2565 status = FAIL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002566 buf->b_ml.ml_stack_top = 0; // stack is invalid now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567 }
2568theend:
2569 got_int |= got_int_save;
2570
2571 if (message)
2572 {
2573 if (status == OK)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002574 msg(_("File preserved"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002575 else
Bram Moolenaareaaac012022-01-02 17:00:40 +00002576 emsg(_(e_preserve_failed));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002577 }
2578}
2579
2580/*
2581 * NOTE: The pointer returned by the ml_get_*() functions only remains valid
2582 * until the next call!
2583 * line1 = ml_get(1);
2584 * line2 = ml_get(2); // line1 is now invalid!
2585 * Make a copy of the line if necessary.
2586 */
2587/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002588 * Return a pointer to a (read-only copy of a) line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002589 *
2590 * On failure an error message is given and IObuff is returned (to avoid
2591 * having to check for error everywhere).
2592 */
2593 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002594ml_get(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002595{
2596 return ml_get_buf(curbuf, lnum, FALSE);
2597}
2598
2599/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002600 * Return pointer to position "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601 */
2602 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002603ml_get_pos(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002604{
2605 return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col);
2606}
2607
2608/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002609 * Return pointer to cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002610 */
2611 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002612ml_get_curline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613{
2614 return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE);
2615}
2616
2617/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002618 * Return pointer to cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 */
2620 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002621ml_get_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622{
2623 return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) +
2624 curwin->w_cursor.col);
2625}
2626
2627/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002628 * Return a pointer to a line in a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 *
2630 * "will_change": if TRUE mark the buffer dirty (chars in the line will be
2631 * changed)
2632 */
2633 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002634ml_get_buf(
2635 buf_T *buf,
2636 linenr_T lnum,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002637 int will_change) // line will be changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638{
Bram Moolenaarad40f022007-02-13 03:01:39 +00002639 bhdr_T *hp;
2640 DATA_BL *dp;
Bram Moolenaarad40f022007-02-13 03:01:39 +00002641 static int recursive = 0;
Bram Moolenaar96e7a592021-11-25 13:52:37 +00002642 static char_u questions[4];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002644 if (lnum > buf->b_ml.ml_line_count) // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002645 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002646 if (recursive == 0)
2647 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002648 // Avoid giving this message for a recursive call, may happen when
2649 // the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002650 ++recursive;
Bram Moolenaareaaac012022-01-02 17:00:40 +00002651 siemsg(_(e_ml_get_invalid_lnum_nr), lnum);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002652 --recursive;
2653 }
Bram Moolenaarf9435e42022-02-16 16:33:28 +00002654 ml_flush_line(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002655errorret:
Bram Moolenaar96e7a592021-11-25 13:52:37 +00002656 STRCPY(questions, "???");
Bram Moolenaaradfde112019-05-25 22:11:45 +02002657 buf->b_ml.ml_line_len = 4;
Bram Moolenaarf9435e42022-02-16 16:33:28 +00002658 buf->b_ml.ml_line_lnum = lnum;
Bram Moolenaar96e7a592021-11-25 13:52:37 +00002659 return questions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002660 }
Bram Moolenaaradfde112019-05-25 22:11:45 +02002661 if (lnum <= 0) // pretend line 0 is line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 lnum = 1;
2663
Bram Moolenaaradfde112019-05-25 22:11:45 +02002664 if (buf->b_ml.ml_mfp == NULL) // there are no lines
2665 {
2666 buf->b_ml.ml_line_len = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002667 return (char_u *)"";
Bram Moolenaaradfde112019-05-25 22:11:45 +02002668 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002669
Bram Moolenaar37d619f2010-03-10 14:46:26 +01002670 /*
2671 * See if it is the same line as requested last time.
2672 * Otherwise may need to flush last used line.
2673 * Don't use the last used line when 'swapfile' is reset, need to load all
2674 * blocks.
2675 */
Bram Moolenaar47b8b152007-02-07 02:41:57 +00002676 if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002677 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002678 unsigned start, end;
2679 colnr_T len;
2680 int idx;
2681
Bram Moolenaar071d4272004-06-13 20:20:40 +00002682 ml_flush_line(buf);
2683
2684 /*
2685 * Find the data block containing the line.
2686 * This also fills the stack with the blocks from the root to the data
2687 * block and releases any locked block.
2688 */
2689 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
2690 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002691 if (recursive == 0)
2692 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002693 // Avoid giving this message for a recursive call, may happen
2694 // when the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002695 ++recursive;
Bram Moolenaarcb868932019-10-26 20:56:21 +02002696 get_trans_bufname(buf);
2697 shorten_dir(NameBuff);
Bram Moolenaareaaac012022-01-02 17:00:40 +00002698 siemsg(_(e_ml_get_cannot_find_line_nr_in_buffer_nr_str),
Bram Moolenaarcb868932019-10-26 20:56:21 +02002699 lnum, buf->b_fnum, NameBuff);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002700 --recursive;
2701 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002702 goto errorret;
2703 }
2704
2705 dp = (DATA_BL *)(hp->bh_data);
2706
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002707 idx = lnum - buf->b_ml.ml_locked_low;
2708 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
2709 // The text ends where the previous line starts. The first line ends
2710 // at the end of the block.
2711 if (idx == 0)
2712 end = dp->db_txt_end;
2713 else
2714 end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
2715 len = end - start;
2716
2717 buf->b_ml.ml_line_ptr = (char_u *)dp + start;
2718 buf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002719 buf->b_ml.ml_line_lnum = lnum;
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002720 buf->b_ml.ml_flags &= ~(ML_LINE_DIRTY | ML_ALLOCATED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002721 }
2722 if (will_change)
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002723 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002724 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002725#ifdef FEAT_EVAL
2726 if (ml_get_alloc_lines && (buf->b_ml.ml_flags & ML_ALLOCATED))
2727 // can't make the change in the data block
2728 buf->b_ml.ml_flags |= ML_LINE_DIRTY;
2729#endif
2730 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002731
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002732#ifdef FEAT_EVAL
2733 if (ml_get_alloc_lines
2734 && (buf->b_ml.ml_flags & (ML_LINE_DIRTY | ML_ALLOCATED)) == 0)
2735 {
2736 char_u *p = alloc(buf->b_ml.ml_line_len);
2737
2738 // make sure the text is in allocated memory
2739 if (p != NULL)
2740 {
2741 memmove(p, buf->b_ml.ml_line_ptr, buf->b_ml.ml_line_len);
2742 buf->b_ml.ml_line_ptr = p;
2743 buf->b_ml.ml_flags |= ML_ALLOCATED;
2744 if (will_change)
2745 // can't make the change in the data block
2746 buf->b_ml.ml_flags |= ML_LINE_DIRTY;
2747 }
2748 }
2749#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002750 return buf->b_ml.ml_line_ptr;
2751}
2752
2753/*
2754 * Check if a line that was just obtained by a call to ml_get
2755 * is in allocated memory.
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002756 * This ignores ML_ALLOCATED to get the same behavior as without the test
2757 * override.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002758 */
2759 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002760ml_line_alloced(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761{
2762 return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY);
2763}
2764
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002765#ifdef FEAT_PROP_POPUP
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002766/*
2767 * Add text properties that continue from the previous line.
2768 */
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002769 static void
2770add_text_props_for_append(
2771 buf_T *buf,
2772 linenr_T lnum,
2773 char_u **line,
2774 int *len,
2775 char_u **tofree)
2776{
2777 int round;
2778 int new_prop_count = 0;
2779 int count;
2780 int n;
2781 char_u *props;
Bram Moolenaarea781452019-09-04 18:53:12 +02002782 int new_len = 0; // init for gcc
Bram Moolenaar8f13d822020-09-12 21:04:23 +02002783 char_u *new_line = NULL;
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002784 textprop_T prop;
2785
2786 // Make two rounds:
2787 // 1. calculate the extra space needed
2788 // 2. allocate the space and fill it
2789 for (round = 1; round <= 2; ++round)
2790 {
2791 if (round == 2)
2792 {
2793 if (new_prop_count == 0)
2794 return; // nothing to do
2795 new_len = *len + new_prop_count * sizeof(textprop_T);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002796 new_line = alloc(new_len);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002797 if (new_line == NULL)
2798 return;
2799 mch_memmove(new_line, *line, *len);
2800 new_prop_count = 0;
2801 }
2802
2803 // Get the line above to find any props that continue in the next
2804 // line.
2805 count = get_text_props(buf, lnum, &props, FALSE);
2806 for (n = 0; n < count; ++n)
2807 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002808 mch_memmove(&prop, props + n * sizeof(textprop_T),
2809 sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002810 if (prop.tp_flags & TP_FLAG_CONT_NEXT)
2811 {
2812 if (round == 2)
2813 {
2814 prop.tp_flags |= TP_FLAG_CONT_PREV;
2815 prop.tp_col = 1;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002816 prop.tp_len = *len; // not exactly the right length
2817 mch_memmove(new_line + *len + new_prop_count
2818 * sizeof(textprop_T), &prop, sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002819 }
2820 ++new_prop_count;
2821 }
2822 }
2823 }
2824 *line = new_line;
2825 *tofree = new_line;
2826 *len = new_len;
2827}
2828#endif
2829
Bram Moolenaar071d4272004-06-13 20:20:40 +00002830 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002831ml_append_int(
2832 buf_T *buf,
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002833 linenr_T lnum, // append after this line (can be 0)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002834 char_u *line_arg, // text of the new line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002835 colnr_T len_arg, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002836 int flags) // ML_APPEND_ flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837{
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002838 char_u *line = line_arg;
2839 colnr_T len = len_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002840 int i;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002841 int line_count; // number of indexes in current block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002842 int offset;
2843 int from, to;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002844 int space_needed; // space needed for new line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002845 int page_size;
2846 int page_count;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002847 int db_idx; // index for lnum in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002848 bhdr_T *hp;
2849 memfile_T *mfp;
2850 DATA_BL *dp;
2851 PTR_BL *pp;
2852 infoptr_T *ip;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002853#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002854 char_u *tofree = NULL;
Bram Moolenaar50652b02022-08-07 21:48:37 +01002855# ifdef FEAT_BYTEOFF
2856 colnr_T text_len = 0; // text len with NUL without text properties
2857# endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002858#endif
2859 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860
Bram Moolenaar071d4272004-06-13 20:20:40 +00002861 if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002862 return FAIL; // lnum out of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863
2864 if (lowest_marked && lowest_marked > lnum)
2865 lowest_marked = lnum + 1;
2866
2867 if (len == 0)
Bram Moolenaar50652b02022-08-07 21:48:37 +01002868 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002869 len = (colnr_T)STRLEN(line) + 1; // space needed for the text
Bram Moolenaar50652b02022-08-07 21:48:37 +01002870#if defined(FEAT_PROP_POPUP) && defined(FEAT_BYTEOFF)
2871 text_len = len;
2872#endif
2873 }
2874#if defined(FEAT_PROP_POPUP) && defined(FEAT_BYTEOFF)
2875 else if (curbuf->b_has_textprop)
2876 // "len" may include text properties, get the length of the text.
2877 text_len = (colnr_T)STRLEN(line) + 1;
2878 else
2879 text_len = len;
2880#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002881
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002882#ifdef FEAT_PROP_POPUP
Bram Moolenaar840f91f2021-05-26 22:32:10 +02002883 if (curbuf->b_has_textprop && lnum > 0
2884 && !(flags & (ML_APPEND_UNDO | ML_APPEND_NOPROP)))
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002885 // Add text properties that continue from the previous line.
2886 add_text_props_for_append(buf, lnum, &line, &len, &tofree);
2887#endif
2888
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002889 space_needed = len + INDEX_SIZE; // space needed for text + index
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890
2891 mfp = buf->b_ml.ml_mfp;
2892 page_size = mfp->mf_page_size;
2893
2894/*
2895 * find the data block containing the previous line
2896 * This also fills the stack with the blocks from the root to the data block
2897 * This also releases any locked block.
2898 */
2899 if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum,
2900 ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002901 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902
2903 buf->b_ml.ml_flags &= ~ML_EMPTY;
2904
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002905 if (lnum == 0) // got line one instead, correct db_idx
2906 db_idx = -1; // careful, it is negative!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002907 else
2908 db_idx = lnum - buf->b_ml.ml_locked_low;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002909 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002910 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2911
2912 dp = (DATA_BL *)(hp->bh_data);
2913
2914/*
2915 * If
2916 * - there is not enough room in the current block
2917 * - appending to the last line in the block
2918 * - not appending to the last line in the file
2919 * insert in front of the next block.
2920 */
2921 if ((int)dp->db_free < space_needed && db_idx == line_count - 1
2922 && lnum < buf->b_ml.ml_line_count)
2923 {
2924 /*
2925 * Now that the line is not going to be inserted in the block that we
2926 * expected, the line count has to be adjusted in the pointer blocks
2927 * by using ml_locked_lineadd.
2928 */
2929 --(buf->b_ml.ml_locked_lineadd);
2930 --(buf->b_ml.ml_locked_high);
2931 if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002932 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002933
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002934 db_idx = -1; // careful, it is negative!
2935 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002936 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2937 CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1");
2938
2939 dp = (DATA_BL *)(hp->bh_data);
2940 }
2941
2942 ++buf->b_ml.ml_line_count;
2943
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002944 if ((int)dp->db_free >= space_needed) // enough room in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002945 {
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002946 /*
2947 * Insert the new line in an existing data block, or in the data block
2948 * allocated above.
2949 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002950 dp->db_txt_start -= len;
2951 dp->db_free -= space_needed;
2952 ++(dp->db_line_count);
2953
2954 /*
2955 * move the text of the lines that follow to the front
2956 * adjust the indexes of the lines that follow
2957 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002958 if (line_count > db_idx + 1) // if there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002959 {
2960 /*
2961 * Offset is the start of the previous line.
2962 * This will become the character just after the new line.
2963 */
2964 if (db_idx < 0)
2965 offset = dp->db_txt_end;
2966 else
2967 offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK);
2968 mch_memmove((char *)dp + dp->db_txt_start,
2969 (char *)dp + dp->db_txt_start + len,
2970 (size_t)(offset - (dp->db_txt_start + len)));
2971 for (i = line_count - 1; i > db_idx; --i)
2972 dp->db_index[i + 1] = dp->db_index[i] - len;
2973 dp->db_index[db_idx + 1] = offset - len;
2974 }
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002975 else
2976 // add line at the end (which is the start of the text)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002977 dp->db_index[db_idx + 1] = dp->db_txt_start;
2978
2979 /*
2980 * copy the text into the block
2981 */
2982 mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002983 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 dp->db_index[db_idx + 1] |= DB_MARKED;
2985
2986 /*
2987 * Mark the block dirty.
2988 */
2989 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002990 if (!(flags & ML_APPEND_NEW))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002991 buf->b_ml.ml_flags |= ML_LOCKED_POS;
2992 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002993 else // not enough space in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002994 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 long line_count_left, line_count_right;
2996 int page_count_left, page_count_right;
2997 bhdr_T *hp_left;
2998 bhdr_T *hp_right;
2999 bhdr_T *hp_new;
3000 int lines_moved;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003001 int data_moved = 0; // init to shut up gcc
3002 int total_moved = 0; // init to shut up gcc
Bram Moolenaar071d4272004-06-13 20:20:40 +00003003 DATA_BL *dp_right, *dp_left;
3004 int stack_idx;
3005 int in_left;
3006 int lineadd;
3007 blocknr_T bnum_left, bnum_right;
3008 linenr_T lnum_left, lnum_right;
3009 int pb_idx;
3010 PTR_BL *pp_new;
3011
3012 /*
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003013 * There is not enough room, we have to create a new data block and
3014 * copy some lines into it.
3015 * Then we have to insert an entry in the pointer block.
3016 * If this pointer block also is full, we go up another block, and so
3017 * on, up to the root if necessary.
3018 * The line counts in the pointer blocks have already been adjusted by
3019 * ml_find_line().
3020 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 * We are going to allocate a new data block. Depending on the
3022 * situation it will be put to the left or right of the existing
3023 * block. If possible we put the new line in the left block and move
3024 * the lines after it to the right block. Otherwise the new line is
3025 * also put in the right block. This method is more efficient when
3026 * inserting a lot of lines at one place.
3027 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003028 if (db_idx < 0) // left block is new, right block is existing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003029 {
3030 lines_moved = 0;
3031 in_left = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003032 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003034 else // left block is existing, right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003035 {
3036 lines_moved = line_count - db_idx - 1;
3037 if (lines_moved == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003038 in_left = FALSE; // put new line in right block
3039 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00003040 else
3041 {
3042 data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) -
3043 dp->db_txt_start;
3044 total_moved = data_moved + lines_moved * INDEX_SIZE;
3045 if ((int)dp->db_free + total_moved >= space_needed)
3046 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003047 in_left = TRUE; // put new line in left block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003048 space_needed = total_moved;
3049 }
3050 else
3051 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003052 in_left = FALSE; // put new line in right block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003053 space_needed += total_moved;
3054 }
3055 }
3056 }
3057
3058 page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003059 if ((hp_new = ml_new_data(mfp, flags & ML_APPEND_NEW, page_count))
3060 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003061 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003062 // correct line counts in pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 --(buf->b_ml.ml_locked_lineadd);
3064 --(buf->b_ml.ml_locked_high);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003065 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003066 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003067 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 {
3069 hp_left = hp_new;
3070 hp_right = hp;
3071 line_count_left = 0;
3072 line_count_right = line_count;
3073 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003074 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003075 {
3076 hp_left = hp;
3077 hp_right = hp_new;
3078 line_count_left = line_count;
3079 line_count_right = 0;
3080 }
3081 dp_right = (DATA_BL *)(hp_right->bh_data);
3082 dp_left = (DATA_BL *)(hp_left->bh_data);
3083 bnum_left = hp_left->bh_bnum;
3084 bnum_right = hp_right->bh_bnum;
3085 page_count_left = hp_left->bh_page_count;
3086 page_count_right = hp_right->bh_page_count;
3087
3088 /*
3089 * May move the new line into the right/new block.
3090 */
3091 if (!in_left)
3092 {
3093 dp_right->db_txt_start -= len;
3094 dp_right->db_free -= len + INDEX_SIZE;
3095 dp_right->db_index[0] = dp_right->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003096 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003097 dp_right->db_index[0] |= DB_MARKED;
3098
3099 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3100 line, (size_t)len);
3101 ++line_count_right;
3102 }
3103 /*
3104 * may move lines from the left/old block to the right/new one.
3105 */
3106 if (lines_moved)
3107 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003108 dp_right->db_txt_start -= data_moved;
3109 dp_right->db_free -= total_moved;
3110 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3111 (char *)dp_left + dp_left->db_txt_start,
3112 (size_t)data_moved);
3113 offset = dp_right->db_txt_start - dp_left->db_txt_start;
3114 dp_left->db_txt_start += data_moved;
3115 dp_left->db_free += total_moved;
3116
3117 /*
3118 * update indexes in the new block
3119 */
3120 for (to = line_count_right, from = db_idx + 1;
3121 from < line_count_left; ++from, ++to)
3122 dp_right->db_index[to] = dp->db_index[from] + offset;
3123 line_count_right += lines_moved;
3124 line_count_left -= lines_moved;
3125 }
3126
3127 /*
3128 * May move the new line into the left (old or new) block.
3129 */
3130 if (in_left)
3131 {
3132 dp_left->db_txt_start -= len;
3133 dp_left->db_free -= len + INDEX_SIZE;
3134 dp_left->db_index[line_count_left] = dp_left->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003135 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003136 dp_left->db_index[line_count_left] |= DB_MARKED;
3137 mch_memmove((char *)dp_left + dp_left->db_txt_start,
3138 line, (size_t)len);
3139 ++line_count_left;
3140 }
3141
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003142 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003143 {
3144 lnum_left = lnum + 1;
3145 lnum_right = 0;
3146 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003147 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003148 {
3149 lnum_left = 0;
3150 if (in_left)
3151 lnum_right = lnum + 2;
3152 else
3153 lnum_right = lnum + 1;
3154 }
3155 dp_left->db_line_count = line_count_left;
3156 dp_right->db_line_count = line_count_right;
3157
3158 /*
3159 * release the two data blocks
3160 * The new one (hp_new) already has a correct blocknumber.
3161 * The old one (hp, in ml_locked) gets a positive blocknumber if
3162 * we changed it and we are not editing a new file.
3163 */
3164 if (lines_moved || in_left)
3165 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003166 if (!(flags & ML_APPEND_NEW) && db_idx >= 0 && in_left)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003167 buf->b_ml.ml_flags |= ML_LOCKED_POS;
3168 mf_put(mfp, hp_new, TRUE, FALSE);
3169
3170 /*
3171 * flush the old data block
3172 * set ml_locked_lineadd to 0, because the updating of the
3173 * pointer blocks is done below
3174 */
3175 lineadd = buf->b_ml.ml_locked_lineadd;
3176 buf->b_ml.ml_locked_lineadd = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003177 ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178
3179 /*
3180 * update pointer blocks for the new data block
3181 */
3182 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3183 --stack_idx)
3184 {
3185 ip = &(buf->b_ml.ml_stack[stack_idx]);
3186 pb_idx = ip->ip_index;
3187 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003188 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003189 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003190 if (pp->pb_id != PTR_ID)
3191 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00003192 iemsg(_(e_pointer_block_id_wrong_three));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003193 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003194 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 }
3196 /*
3197 * TODO: If the pointer block is full and we are adding at the end
3198 * try to insert in front of the next block
3199 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003200 // block not full, add one entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003201 if (pp->pb_count < pp->pb_count_max)
3202 {
3203 if (pb_idx + 1 < (int)pp->pb_count)
3204 mch_memmove(&pp->pb_pointer[pb_idx + 2],
3205 &pp->pb_pointer[pb_idx + 1],
3206 (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN));
3207 ++pp->pb_count;
3208 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3209 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3210 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3211 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3212 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3213 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3214
3215 if (lnum_left != 0)
3216 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3217 if (lnum_right != 0)
3218 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3219
3220 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003221 buf->b_ml.ml_stack_top = stack_idx + 1; // truncate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003222
3223 if (lineadd)
3224 {
3225 --(buf->b_ml.ml_stack_top);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003226 // fix line count for rest of blocks in the stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003227 ml_lineadd(buf, lineadd);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003228 // fix stack itself
Bram Moolenaar071d4272004-06-13 20:20:40 +00003229 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
3230 lineadd;
3231 ++(buf->b_ml.ml_stack_top);
3232 }
3233
3234 /*
3235 * We are finished, break the loop here.
3236 */
3237 break;
3238 }
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003239 // pointer block full
3240 /*
3241 * split the pointer block
3242 * allocate a new pointer block
3243 * move some of the pointer into the new block
3244 * prepare for updating the parent block
3245 */
3246 for (;;) // do this twice when splitting block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003247 {
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003248 hp_new = ml_new_ptr(mfp);
3249 if (hp_new == NULL) // TODO: try to fix tree
3250 goto theend;
3251 pp_new = (PTR_BL *)(hp_new->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003253 if (hp->bh_bnum != 1)
3254 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003255
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 /*
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003257 * if block 1 becomes full the tree is given an extra level
3258 * The pointers from block 1 are moved into the new block.
3259 * block 1 is updated to point to the new block
3260 * then continue to split the new block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003261 */
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003262 mch_memmove(pp_new, pp, (size_t)page_size);
3263 pp->pb_count = 1;
3264 pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum;
3265 pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count;
3266 pp->pb_pointer[0].pe_old_lnum = 1;
3267 pp->pb_pointer[0].pe_page_count = 1;
3268 mf_put(mfp, hp, TRUE, FALSE); // release block 1
3269 hp = hp_new; // new block is to be split
3270 pp = pp_new;
3271 CHECK(stack_idx != 0, _("stack_idx should be 0"));
3272 ip->ip_index = 0;
3273 ++stack_idx; // do block 1 again later
3274 }
3275 /*
3276 * move the pointers after the current one to the new block
3277 * If there are none, the new entry will be in the new block.
3278 */
3279 total_moved = pp->pb_count - pb_idx - 1;
3280 if (total_moved)
3281 {
3282 mch_memmove(&pp_new->pb_pointer[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +00003283 &pp->pb_pointer[pb_idx + 1],
3284 (size_t)(total_moved) * sizeof(PTR_EN));
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003285 pp_new->pb_count = total_moved;
3286 pp->pb_count -= total_moved - 1;
3287 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3288 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3289 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3290 if (lnum_right)
3291 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003292 }
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003293 else
3294 {
3295 pp_new->pb_count = 1;
3296 pp_new->pb_pointer[0].pe_bnum = bnum_right;
3297 pp_new->pb_pointer[0].pe_line_count = line_count_right;
3298 pp_new->pb_pointer[0].pe_page_count = page_count_right;
3299 pp_new->pb_pointer[0].pe_old_lnum = lnum_right;
3300 }
3301 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3302 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3303 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3304 if (lnum_left)
3305 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3306 lnum_left = 0;
3307 lnum_right = 0;
3308
3309 /*
3310 * recompute line counts
3311 */
3312 line_count_right = 0;
3313 for (i = 0; i < (int)pp_new->pb_count; ++i)
3314 line_count_right += pp_new->pb_pointer[i].pe_line_count;
3315 line_count_left = 0;
3316 for (i = 0; i < (int)pp->pb_count; ++i)
3317 line_count_left += pp->pb_pointer[i].pe_line_count;
3318
3319 bnum_left = hp->bh_bnum;
3320 bnum_right = hp_new->bh_bnum;
3321 page_count_left = 1;
3322 page_count_right = 1;
3323 mf_put(mfp, hp, TRUE, FALSE);
3324 mf_put(mfp, hp_new, TRUE, FALSE);
3325
Bram Moolenaar071d4272004-06-13 20:20:40 +00003326 }
3327
3328 /*
3329 * Safety check: fallen out of for loop?
3330 */
3331 if (stack_idx < 0)
3332 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00003333 iemsg(_(e_updated_too_many_blocks));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003334 buf->b_ml.ml_stack_top = 0; // invalidate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003335 }
3336 }
3337
3338#ifdef FEAT_BYTEOFF
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003339 // The line was inserted below 'lnum'
Bram Moolenaar50652b02022-08-07 21:48:37 +01003340 ml_updatechunk(buf, lnum + 1,
3341# ifdef FEAT_PROP_POPUP
3342 (long)text_len
3343# else
3344 (long)len
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003345# endif
Bram Moolenaar50652b02022-08-07 21:48:37 +01003346 , ML_CHNK_ADDLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003347#endif
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003348
Bram Moolenaar071d4272004-06-13 20:20:40 +00003349#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003350 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003351 {
3352 if (STRLEN(line) > 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003353 netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line));
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003354 netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003355 (char_u *)"\n", 1);
3356 }
3357#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003358#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003359 if (buf->b_write_to_channel)
3360 channel_write_new_lines(buf);
3361#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003362 ret = OK;
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003363
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003364theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003365#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003366 vim_free(tofree);
3367#endif
3368 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003369}
3370
3371/*
Bram Moolenaar250e3112019-07-15 23:02:14 +02003372 * Flush any pending change and call ml_append_int()
3373 */
3374 static int
3375ml_append_flush(
3376 buf_T *buf,
3377 linenr_T lnum, // append after this line (can be 0)
3378 char_u *line, // text of the new line
3379 colnr_T len, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003380 int flags) // ML_APPEND_ flags
Bram Moolenaar250e3112019-07-15 23:02:14 +02003381{
3382 if (lnum > buf->b_ml.ml_line_count)
3383 return FAIL; // lnum out of range
3384
3385 if (buf->b_ml.ml_line_lnum != 0)
3386 // This may also invoke ml_append_int().
3387 ml_flush_line(buf);
3388
3389#ifdef FEAT_EVAL
3390 // When inserting above recorded changes: flush the changes before changing
3391 // the text. Then flush the cached line, it may become invalid.
3392 may_invoke_listeners(buf, lnum + 1, lnum + 1, 1);
3393 if (buf->b_ml.ml_line_lnum != 0)
3394 ml_flush_line(buf);
3395#endif
3396
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003397 return ml_append_int(buf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003398}
3399
3400/*
3401 * Append a line after lnum (may be 0 to insert a line in front of the file).
3402 * "line" does not need to be allocated, but can't be another line in a
3403 * buffer, unlocking may make it invalid.
3404 *
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003405 * "newfile": TRUE when starting to edit a new file, meaning that pe_old_lnum
Bram Moolenaar250e3112019-07-15 23:02:14 +02003406 * will be set for recovery
3407 * Check: The caller of this function should probably also call
3408 * appended_lines().
3409 *
3410 * return FAIL for failure, OK otherwise
3411 */
3412 int
3413ml_append(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003414 linenr_T lnum, // append after this line (can be 0)
3415 char_u *line, // text of the new line
3416 colnr_T len, // length of new line, including NUL, or 0
3417 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003418{
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003419 return ml_append_flags(lnum, line, len, newfile ? ML_APPEND_NEW : 0);
3420}
3421
3422 int
3423ml_append_flags(
3424 linenr_T lnum, // append after this line (can be 0)
3425 char_u *line, // text of the new line
3426 colnr_T len, // length of new line, including NUL, or 0
3427 int flags) // ML_APPEND_ values
3428{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003429 // When starting up, we might still need to create the memfile
Bram Moolenaar250e3112019-07-15 23:02:14 +02003430 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
3431 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003432 return ml_append_flush(curbuf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003433}
3434
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003435
Bram Moolenaar9f28eeb2022-05-16 10:04:51 +01003436#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(FEAT_PROP_POPUP) \
3437 || defined(PROTO)
Bram Moolenaar250e3112019-07-15 23:02:14 +02003438/*
3439 * Like ml_append() but for an arbitrary buffer. The buffer must already have
3440 * a memline.
3441 */
3442 int
3443ml_append_buf(
3444 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003445 linenr_T lnum, // append after this line (can be 0)
3446 char_u *line, // text of the new line
3447 colnr_T len, // length of new line, including NUL, or 0
3448 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003449{
3450 if (buf->b_ml.ml_mfp == NULL)
3451 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003452 return ml_append_flush(buf, lnum, line, len, newfile ? ML_APPEND_NEW : 0);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003453}
3454#endif
3455
3456/*
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003457 * Replace line "lnum", with buffering, in current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003458 *
Bram Moolenaar1056d982006-03-09 22:37:52 +00003459 * If "copy" is TRUE, make a copy of the line, otherwise the line has been
Bram Moolenaar071d4272004-06-13 20:20:40 +00003460 * copied to allocated memory already.
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003461 * If "copy" is FALSE the "line" may be freed to add text properties!
3462 * Do not use it after calling ml_replace().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003463 *
3464 * Check: The caller of this function should probably also call
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003465 * changed_lines(), unless update_screen(UPD_NOT_VALID) is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003466 *
3467 * return FAIL for failure, OK otherwise
3468 */
3469 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003470ml_replace(linenr_T lnum, char_u *line, int copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003471{
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003472 colnr_T len = -1;
3473
3474 if (line != NULL)
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003475 len = (colnr_T)STRLEN(line);
Bram Moolenaarccae4672019-01-04 15:09:57 +01003476 return ml_replace_len(lnum, line, len, FALSE, copy);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003477}
3478
Bram Moolenaarccae4672019-01-04 15:09:57 +01003479/*
3480 * Replace a line for the current buffer. Like ml_replace() with:
3481 * "len_arg" is the length of the text, excluding NUL.
3482 * If "has_props" is TRUE then "line_arg" includes the text properties and
3483 * "len_arg" includes the NUL of the text.
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01003484 * When "copy" is TRUE copy the text into allocated memory, otherwise
3485 * "line_arg" must be allocated and will be consumed here.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003486 */
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003487 int
Bram Moolenaarccae4672019-01-04 15:09:57 +01003488ml_replace_len(
3489 linenr_T lnum,
3490 char_u *line_arg,
3491 colnr_T len_arg,
3492 int has_props,
3493 int copy)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003494{
3495 char_u *line = line_arg;
3496 colnr_T len = len_arg;
3497
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003498 if (line == NULL) // just checking...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003499 return FAIL;
3500
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003501 // When starting up, we might still need to create the memfile
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003502 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003503 return FAIL;
3504
Bram Moolenaarccae4672019-01-04 15:09:57 +01003505 if (!has_props)
3506 ++len; // include the NUL after the text
3507 if (copy)
3508 {
3509 // copy the line to allocated memory
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003510#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003511 if (has_props)
3512 line = vim_memsave(line, len);
3513 else
3514#endif
3515 line = vim_strnsave(line, len - 1);
3516 if (line == NULL)
3517 return FAIL;
3518 }
3519
Bram Moolenaar071d4272004-06-13 20:20:40 +00003520#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003521 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003522 {
3523 netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum)));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003524 netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003525 }
3526#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003527 if (curbuf->b_ml.ml_line_lnum != lnum)
3528 {
3529 // another line is buffered, flush it
3530 ml_flush_line(curbuf);
3531
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003532#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003533 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003534 // Need to fetch the old line to copy over any text properties.
3535 ml_get_buf(curbuf, lnum, TRUE);
3536#endif
3537 }
3538
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003539#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003540 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003541 {
3542 size_t oldtextlen = STRLEN(curbuf->b_ml.ml_line_ptr) + 1;
3543
3544 if (oldtextlen < (size_t)curbuf->b_ml.ml_line_len)
3545 {
3546 char_u *newline;
3547 size_t textproplen = curbuf->b_ml.ml_line_len - oldtextlen;
3548
3549 // Need to copy over text properties, stored after the text.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003550 newline = alloc(len + (int)textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003551 if (newline != NULL)
3552 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01003553 mch_memmove(newline, line, len);
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02003554 mch_memmove(newline + len, curbuf->b_ml.ml_line_ptr
3555 + oldtextlen, textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003556 vim_free(line);
3557 line = newline;
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003558 len += (colnr_T)textproplen;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003559 }
3560 }
3561 }
3562#endif
3563
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01003564 if (curbuf->b_ml.ml_flags & (ML_LINE_DIRTY | ML_ALLOCATED))
3565 vim_free(curbuf->b_ml.ml_line_ptr); // free allocated line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003566
Bram Moolenaar071d4272004-06-13 20:20:40 +00003567 curbuf->b_ml.ml_line_ptr = line;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003568 curbuf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003569 curbuf->b_ml.ml_line_lnum = lnum;
3570 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
3571
3572 return OK;
3573}
3574
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003575#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003576/*
3577 * Adjust text properties in line "lnum" for a deleted line.
Paul Ollis1bdc60e2022-05-15 22:24:55 +01003578 * When "above" is true this is the line above the deleted line, otherwise this
3579 * is the line below the deleted line.
3580 * "del_props[del_props_len]" are the properties of the deleted line.
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003581 */
3582 static void
3583adjust_text_props_for_delete(
3584 buf_T *buf,
3585 linenr_T lnum,
3586 char_u *del_props,
3587 int del_props_len,
3588 int above)
3589{
3590 int did_get_line = FALSE;
3591 int done_del;
3592 int done_this;
3593 textprop_T prop_del;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003594 bhdr_T *hp;
3595 DATA_BL *dp;
3596 int idx;
3597 int line_start;
3598 long line_size;
3599 int this_props_len;
3600 char_u *text;
3601 size_t textlen;
3602 int found;
3603
3604 for (done_del = 0; done_del < del_props_len; done_del += sizeof(textprop_T))
3605 {
3606 mch_memmove(&prop_del, del_props + done_del, sizeof(textprop_T));
3607 if ((above && (prop_del.tp_flags & TP_FLAG_CONT_PREV)
3608 && !(prop_del.tp_flags & TP_FLAG_CONT_NEXT))
3609 || (!above && (prop_del.tp_flags & TP_FLAG_CONT_NEXT)
3610 && !(prop_del.tp_flags & TP_FLAG_CONT_PREV)))
3611 {
3612 if (!did_get_line)
3613 {
3614 did_get_line = TRUE;
3615 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
3616 return;
3617
3618 dp = (DATA_BL *)(hp->bh_data);
3619 idx = lnum - buf->b_ml.ml_locked_low;
3620 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3621 if (idx == 0) // first line in block, text at the end
3622 line_size = dp->db_txt_end - line_start;
3623 else
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003624 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK)
3625 - line_start;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003626 text = (char_u *)dp + line_start;
3627 textlen = STRLEN(text) + 1;
3628 if ((long)textlen >= line_size)
3629 {
3630 if (above)
3631 internal_error("no text property above deleted line");
3632 else
3633 internal_error("no text property below deleted line");
3634 return;
3635 }
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003636 this_props_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003637 }
3638
3639 found = FALSE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003640 for (done_this = 0; done_this < this_props_len;
3641 done_this += sizeof(textprop_T))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003642 {
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003643 int flag = above ? TP_FLAG_CONT_NEXT
3644 : TP_FLAG_CONT_PREV;
3645 textprop_T prop_this;
3646
Paul Ollis1bdc60e2022-05-15 22:24:55 +01003647 mch_memmove(&prop_this, text + textlen + done_this,
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003648 sizeof(textprop_T));
3649 if ((prop_this.tp_flags & flag)
3650 && prop_del.tp_id == prop_this.tp_id
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003651 && prop_del.tp_type == prop_this.tp_type)
3652 {
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003653 found = TRUE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003654 prop_this.tp_flags &= ~flag;
Paul Ollis1bdc60e2022-05-15 22:24:55 +01003655 mch_memmove(text + textlen + done_this, &prop_this,
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003656 sizeof(textprop_T));
3657 break;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003658 }
3659 }
3660 if (!found)
3661 {
3662 if (above)
3663 internal_error("text property above deleted line not found");
3664 else
3665 internal_error("text property below deleted line not found");
3666 }
3667
3668 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3669 }
3670 }
3671}
3672#endif
3673
Bram Moolenaar071d4272004-06-13 20:20:40 +00003674/*
Bram Moolenaar4033c552017-09-16 20:54:51 +02003675 * Delete line "lnum" in the current buffer.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003676 * When "flags" has ML_DEL_MESSAGE may give a "No lines in buffer" message.
3677 * When "flags" has ML_DEL_UNDO this is called from undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003678 *
3679 * return FAIL for failure, OK otherwise
3680 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003681 static int
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003682ml_delete_int(buf_T *buf, linenr_T lnum, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003683{
3684 bhdr_T *hp;
3685 memfile_T *mfp;
3686 DATA_BL *dp;
3687 PTR_BL *pp;
3688 infoptr_T *ip;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003689 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003690 int idx;
3691 int stack_idx;
3692 int text_start;
3693 int line_start;
3694 long line_size;
3695 int i;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003696 int ret = FAIL;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003697#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003698 char_u *textprop_save = NULL;
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003699 long textprop_len = 0;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003700#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003701
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 if (lowest_marked && lowest_marked > lnum)
3703 lowest_marked--;
3704
3705/*
3706 * If the file becomes empty the last line is replaced by an empty line.
3707 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003708 if (buf->b_ml.ml_line_count == 1) // file becomes empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003710 if ((flags & ML_DEL_MESSAGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711#ifdef FEAT_NETBEANS_INTG
3712 && !netbeansSuppressNoLines
3713#endif
3714 )
Bram Moolenaar238a5642006-02-21 22:12:05 +00003715 set_keep_msg((char_u *)_(no_lines_msg), 0);
3716
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003717 // FEAT_BYTEOFF already handled in there, don't worry 'bout it below
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 i = ml_replace((linenr_T)1, (char_u *)"", TRUE);
3719 buf->b_ml.ml_flags |= ML_EMPTY;
3720
3721 return i;
3722 }
3723
3724/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003725 * Find the data block containing the line.
3726 * This also fills the stack with the blocks from the root to the data block.
3727 * This also releases any locked block..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728 */
3729 mfp = buf->b_ml.ml_mfp;
3730 if (mfp == NULL)
3731 return FAIL;
3732
3733 if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL)
3734 return FAIL;
3735
3736 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003737 // compute line count before the delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003738 count = (long)(buf->b_ml.ml_locked_high)
3739 - (long)(buf->b_ml.ml_locked_low) + 2;
3740 idx = lnum - buf->b_ml.ml_locked_low;
3741
3742 --buf->b_ml.ml_line_count;
3743
3744 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003745 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003746 line_size = dp->db_txt_end - line_start;
3747 else
3748 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start;
3749
3750#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003751 if (netbeans_active())
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003752 netbeans_removed(buf, lnum, 0, line_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003753#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003754#ifdef FEAT_PROP_POPUP
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003755 // If there are text properties compute their byte length.
3756 // if needed make a copy, so that we can update properties in preceding and
3757 // following lines.
3758 if (buf->b_has_textprop)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003759 {
3760 size_t textlen = STRLEN((char_u *)dp + line_start) + 1;
3761
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003762 textprop_len = line_size - (long)textlen;
3763 if (!(flags & (ML_DEL_UNDO | ML_DEL_NOPROP)) && textprop_len > 0)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003764 textprop_save = vim_memsave((char_u *)dp + line_start + textlen,
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003765 textprop_len);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003766 }
3767#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768
3769/*
3770 * special case: If there is only one line in the data block it becomes empty.
3771 * Then we have to remove the entry, pointing to this data block, from the
3772 * pointer block. If this pointer block also becomes empty, we go up another
3773 * block, and so on, up to the root if necessary.
3774 * The line counts in the pointer blocks have already been adjusted by
3775 * ml_find_line().
3776 */
3777 if (count == 1)
3778 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003779 mf_free(mfp, hp); // free the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003780 buf->b_ml.ml_locked = NULL;
3781
Bram Moolenaare60acc12011-05-10 16:41:25 +02003782 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3783 --stack_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003784 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003785 buf->b_ml.ml_stack_top = 0; // stack is invalid when failing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003786 ip = &(buf->b_ml.ml_stack[stack_idx]);
3787 idx = ip->ip_index;
3788 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003789 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003790 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003791 if (pp->pb_id != PTR_ID)
3792 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00003793 iemsg(_(e_pointer_block_id_wrong_four));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003794 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003795 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003796 }
3797 count = --(pp->pb_count);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003798 if (count == 0) // the pointer block becomes empty!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799 mf_free(mfp, hp);
3800 else
3801 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003802 if (count != idx) // move entries after the deleted one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003803 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1],
3804 (size_t)(count - idx) * sizeof(PTR_EN));
3805 mf_put(mfp, hp, TRUE, FALSE);
3806
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003807 buf->b_ml.ml_stack_top = stack_idx; // truncate stack
3808 // fix line count for rest of blocks in the stack
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003809 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 {
3811 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
3812 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003813 buf->b_ml.ml_locked_lineadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 }
3815 ++(buf->b_ml.ml_stack_top);
3816
3817 break;
3818 }
3819 }
3820 CHECK(stack_idx < 0, _("deleted block 1?"));
3821 }
3822 else
3823 {
3824 /*
3825 * delete the text by moving the next lines forwards
3826 */
3827 text_start = dp->db_txt_start;
3828 mch_memmove((char *)dp + text_start + line_size,
3829 (char *)dp + text_start, (size_t)(line_start - text_start));
3830
3831 /*
3832 * delete the index by moving the next indexes backwards
3833 * Adjust the indexes for the text movement.
3834 */
3835 for (i = idx; i < count - 1; ++i)
3836 dp->db_index[i] = dp->db_index[i + 1] + line_size;
3837
3838 dp->db_free += line_size + INDEX_SIZE;
3839 dp->db_txt_start += line_size;
3840 --(dp->db_line_count);
3841
3842 /*
3843 * mark the block dirty and make sure it is in the file (for recovery)
3844 */
3845 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3846 }
3847
3848#ifdef FEAT_BYTEOFF
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003849 ml_updatechunk(buf, lnum, line_size
3850# ifdef FEAT_PROP_POPUP
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003851 - textprop_len
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003852# endif
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003853 , ML_CHNK_DELLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003854#endif
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003855 ret = OK;
3856
3857theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003858#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003859 if (textprop_save != NULL)
3860 {
3861 // Adjust text properties in the line above and below.
3862 if (lnum > 1)
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003863 adjust_text_props_for_delete(buf, lnum - 1, textprop_save,
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003864 (int)textprop_len, TRUE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003865 if (lnum <= buf->b_ml.ml_line_count)
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003866 adjust_text_props_for_delete(buf, lnum, textprop_save,
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003867 (int)textprop_len, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003868 }
3869 vim_free(textprop_save);
3870#endif
3871 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003872}
3873
3874/*
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003875 * Delete line "lnum" in the current buffer.
3876 * When "message" is TRUE may give a "No lines in buffer" message.
3877 *
3878 * Check: The caller of this function should probably also call
3879 * deleted_lines() after this.
3880 *
3881 * return FAIL for failure, OK otherwise
3882 */
3883 int
Bram Moolenaarca70c072020-05-30 20:30:46 +02003884ml_delete(linenr_T lnum)
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003885{
Bram Moolenaarca70c072020-05-30 20:30:46 +02003886 return ml_delete_flags(lnum, 0);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003887}
3888
3889/*
3890 * Like ml_delete() but using flags (see ml_delete_int()).
3891 */
3892 int
3893ml_delete_flags(linenr_T lnum, int flags)
3894{
3895 ml_flush_line(curbuf);
3896 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
3897 return FAIL;
3898
3899#ifdef FEAT_EVAL
3900 // When inserting above recorded changes: flush the changes before changing
3901 // the text.
3902 may_invoke_listeners(curbuf, lnum, lnum + 1, -1);
3903#endif
3904
3905 return ml_delete_int(curbuf, lnum, flags);
3906}
3907
3908/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003909 * set the DB_MARKED flag for line 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003910 */
3911 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003912ml_setmarked(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913{
3914 bhdr_T *hp;
3915 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003916 // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003917 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count
3918 || curbuf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003919 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920
3921 if (lowest_marked == 0 || lowest_marked > lnum)
3922 lowest_marked = lnum;
3923
3924 /*
3925 * find the data block containing the line
3926 * This also fills the stack with the blocks from the root to the data block
3927 * This also releases any locked block.
3928 */
3929 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003930 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003931
3932 dp = (DATA_BL *)(hp->bh_data);
3933 dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED;
3934 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3935}
3936
3937/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003938 * find the first line with its DB_MARKED flag set
Bram Moolenaar071d4272004-06-13 20:20:40 +00003939 */
3940 linenr_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003941ml_firstmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003942{
3943 bhdr_T *hp;
3944 DATA_BL *dp;
3945 linenr_T lnum;
3946 int i;
3947
3948 if (curbuf->b_ml.ml_mfp == NULL)
3949 return (linenr_T) 0;
3950
3951 /*
3952 * The search starts with lowest_marked line. This is the last line where
3953 * a mark was found, adjusted by inserting/deleting lines.
3954 */
3955 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3956 {
3957 /*
3958 * Find the data block containing the line.
3959 * This also fills the stack with the blocks from the root to the data
3960 * block This also releases any locked block.
3961 */
3962 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003963 return (linenr_T)0; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003964
3965 dp = (DATA_BL *)(hp->bh_data);
3966
3967 for (i = lnum - curbuf->b_ml.ml_locked_low;
3968 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3969 if ((dp->db_index[i]) & DB_MARKED)
3970 {
3971 (dp->db_index[i]) &= DB_INDEX_MASK;
3972 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3973 lowest_marked = lnum + 1;
3974 return lnum;
3975 }
3976 }
3977
3978 return (linenr_T) 0;
3979}
3980
Bram Moolenaar071d4272004-06-13 20:20:40 +00003981/*
3982 * clear all DB_MARKED flags
3983 */
3984 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003985ml_clearmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986{
3987 bhdr_T *hp;
3988 DATA_BL *dp;
3989 linenr_T lnum;
3990 int i;
3991
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003992 if (curbuf->b_ml.ml_mfp == NULL) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 return;
3994
3995 /*
3996 * The search starts with line lowest_marked.
3997 */
3998 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3999 {
4000 /*
4001 * Find the data block containing the line.
4002 * This also fills the stack with the blocks from the root to the data
4003 * block and releases any locked block.
4004 */
4005 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004006 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004007
4008 dp = (DATA_BL *)(hp->bh_data);
4009
4010 for (i = lnum - curbuf->b_ml.ml_locked_low;
4011 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
4012 if ((dp->db_index[i]) & DB_MARKED)
4013 {
4014 (dp->db_index[i]) &= DB_INDEX_MASK;
4015 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
4016 }
4017 }
4018
4019 lowest_marked = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020}
4021
4022/*
4023 * flush ml_line if necessary
4024 */
4025 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004026ml_flush_line(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004027{
4028 bhdr_T *hp;
4029 DATA_BL *dp;
4030 linenr_T lnum;
4031 char_u *new_line;
4032 char_u *old_line;
4033 colnr_T new_len;
4034 int old_len;
4035 int extra;
4036 int idx;
4037 int start;
4038 int count;
4039 int i;
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004040 static int entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004041
4042 if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004043 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004044
4045 if (buf->b_ml.ml_flags & ML_LINE_DIRTY)
4046 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004047 // This code doesn't work recursively, but Netbeans may call back here
4048 // when obtaining the cursor position.
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004049 if (entered)
4050 return;
4051 entered = TRUE;
4052
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 lnum = buf->b_ml.ml_line_lnum;
4054 new_line = buf->b_ml.ml_line_ptr;
4055
4056 hp = ml_find_line(buf, lnum, ML_FIND);
4057 if (hp == NULL)
Bram Moolenaareaaac012022-01-02 17:00:40 +00004058 siemsg(_(e_cannot_find_line_nr), lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004059 else
4060 {
4061 dp = (DATA_BL *)(hp->bh_data);
4062 idx = lnum - buf->b_ml.ml_locked_low;
4063 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
4064 old_line = (char_u *)dp + start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004065 if (idx == 0) // line is last in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004066 old_len = dp->db_txt_end - start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004067 else // text of previous line follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068 old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01004069 new_len = buf->b_ml.ml_line_len;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004070 extra = new_len - old_len; // negative if lines gets smaller
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071
4072 /*
4073 * if new line fits in data block, replace directly
4074 */
4075 if ((int)dp->db_free >= extra)
4076 {
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004077#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar14c75302021-08-15 14:28:40 +02004078 int old_prop_len = 0;
Paul Ollis4c3d21a2022-05-24 21:26:37 +01004079 if (buf->b_has_textprop)
4080 old_prop_len = old_len - (int)STRLEN(old_line) - 1;
Bram Moolenaar14c75302021-08-15 14:28:40 +02004081#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004082 // if the length changes and there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1;
4084 if (extra != 0 && idx < count - 1)
4085 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004086 // move text of following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004087 mch_memmove((char *)dp + dp->db_txt_start - extra,
4088 (char *)dp + dp->db_txt_start,
4089 (size_t)(start - dp->db_txt_start));
4090
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004091 // adjust pointers of this and following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004092 for (i = idx + 1; i < count; ++i)
4093 dp->db_index[i] -= extra;
4094 }
4095 dp->db_index[idx] -= extra;
4096
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004097 // adjust free space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 dp->db_free -= extra;
4099 dp->db_txt_start -= extra;
4100
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004101 // copy new line into the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004102 mch_memmove(old_line - extra, new_line, (size_t)new_len);
4103 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004104#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004105 // The else case is already covered by the insert and delete
Bram Moolenaar14c75302021-08-15 14:28:40 +02004106 if (buf->b_has_textprop)
4107 {
4108 // Do not count the size of any text properties.
4109 extra += old_prop_len;
Bram Moolenaar434df7a2021-08-16 21:15:32 +02004110 extra -= new_len - (int)STRLEN(new_line) - 1;
Bram Moolenaar14c75302021-08-15 14:28:40 +02004111 }
4112 if (extra != 0)
4113 ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004114#endif
4115 }
4116 else
4117 {
4118 /*
4119 * Cannot do it in one data block: Delete and append.
4120 * Append first, because ml_delete_int() cannot delete the
4121 * last line in a buffer, which causes trouble for a buffer
4122 * that has only one line.
4123 * Don't forget to copy the mark!
4124 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004125 // How about handling errors???
Bram Moolenaara9d4b842020-05-30 14:46:52 +02004126 (void)ml_append_int(buf, lnum, new_line, new_len,
Bram Moolenaar840f91f2021-05-26 22:32:10 +02004127 ((dp->db_index[idx] & DB_MARKED) ? ML_APPEND_MARK : 0)
4128#ifdef FEAT_PROP_POPUP
4129 | ML_APPEND_NOPROP
4130#endif
4131 );
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02004132 (void)ml_delete_int(buf, lnum, ML_DEL_NOPROP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004133 }
4134 }
4135 vim_free(new_line);
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004136
4137 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004138 }
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01004139 else if (buf->b_ml.ml_flags & ML_ALLOCATED)
4140 vim_free(buf->b_ml.ml_line_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004141
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01004142 buf->b_ml.ml_flags &= ~(ML_LINE_DIRTY | ML_ALLOCATED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004143 buf->b_ml.ml_line_lnum = 0;
4144}
4145
4146/*
4147 * create a new, empty, data block
4148 */
4149 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004150ml_new_data(memfile_T *mfp, int negative, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151{
4152 bhdr_T *hp;
4153 DATA_BL *dp;
4154
4155 if ((hp = mf_new(mfp, negative, page_count)) == NULL)
4156 return NULL;
4157
4158 dp = (DATA_BL *)(hp->bh_data);
4159 dp->db_id = DATA_ID;
4160 dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size;
4161 dp->db_free = dp->db_txt_start - HEADER_SIZE;
4162 dp->db_line_count = 0;
4163
4164 return hp;
4165}
4166
4167/*
4168 * create a new, empty, pointer block
4169 */
4170 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004171ml_new_ptr(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004172{
4173 bhdr_T *hp;
4174 PTR_BL *pp;
4175
4176 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
4177 return NULL;
4178
4179 pp = (PTR_BL *)(hp->bh_data);
4180 pp->pb_id = PTR_ID;
4181 pp->pb_count = 0;
Bram Moolenaarb67ba032023-04-22 21:14:26 +01004182 pp->pb_count_max = PB_COUNT_MAX(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004183
4184 return hp;
4185}
4186
4187/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01004188 * Lookup line 'lnum' in a memline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004189 *
4190 * action: if ML_DELETE or ML_INSERT the line count is updated while searching
4191 * if ML_FLUSH only flush a locked block
4192 * if ML_FIND just find the line
4193 *
4194 * If the block was found it is locked and put in ml_locked.
4195 * The stack is updated to lead to the locked block. The ip_high field in
4196 * the stack is updated to reflect the last line in the block AFTER the
4197 * insert or delete, also if the pointer block has not been updated yet. But
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004198 * if ml_locked != NULL ml_locked_lineadd must be added to ip_high.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004199 *
4200 * return: NULL for failure, pointer to block header otherwise
4201 */
4202 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004203ml_find_line(buf_T *buf, linenr_T lnum, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004204{
4205 DATA_BL *dp;
4206 PTR_BL *pp;
4207 infoptr_T *ip;
4208 bhdr_T *hp;
4209 memfile_T *mfp;
4210 linenr_T t;
4211 blocknr_T bnum, bnum2;
4212 int dirty;
4213 linenr_T low, high;
4214 int top;
4215 int page_count;
4216 int idx;
4217
4218 mfp = buf->b_ml.ml_mfp;
4219
4220 /*
4221 * If there is a locked block check if the wanted line is in it.
4222 * If not, flush and release the locked block.
4223 * Don't do this for ML_INSERT_SAME, because the stack need to be updated.
4224 * Don't do this for ML_FLUSH, because we want to flush the locked block.
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004225 * Don't do this when 'swapfile' is reset, we want to load all the blocks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004226 */
4227 if (buf->b_ml.ml_locked)
4228 {
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004229 if (ML_SIMPLE(action)
4230 && buf->b_ml.ml_locked_low <= lnum
4231 && buf->b_ml.ml_locked_high >= lnum
4232 && !mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004234 // remember to update pointer blocks and stack later
Bram Moolenaar071d4272004-06-13 20:20:40 +00004235 if (action == ML_INSERT)
4236 {
4237 ++(buf->b_ml.ml_locked_lineadd);
4238 ++(buf->b_ml.ml_locked_high);
4239 }
4240 else if (action == ML_DELETE)
4241 {
4242 --(buf->b_ml.ml_locked_lineadd);
4243 --(buf->b_ml.ml_locked_high);
4244 }
4245 return (buf->b_ml.ml_locked);
4246 }
4247
4248 mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY,
4249 buf->b_ml.ml_flags & ML_LOCKED_POS);
4250 buf->b_ml.ml_locked = NULL;
4251
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004252 /*
4253 * If lines have been added or deleted in the locked block, need to
4254 * update the line count in pointer blocks.
4255 */
4256 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004257 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
4258 }
4259
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004260 if (action == ML_FLUSH) // nothing else to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004261 return NULL;
4262
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004263 bnum = 1; // start at the root of the tree
Bram Moolenaar071d4272004-06-13 20:20:40 +00004264 page_count = 1;
4265 low = 1;
4266 high = buf->b_ml.ml_line_count;
4267
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004268 if (action == ML_FIND) // first try stack entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00004269 {
4270 for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top)
4271 {
4272 ip = &(buf->b_ml.ml_stack[top]);
4273 if (ip->ip_low <= lnum && ip->ip_high >= lnum)
4274 {
4275 bnum = ip->ip_bnum;
4276 low = ip->ip_low;
4277 high = ip->ip_high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004278 buf->b_ml.ml_stack_top = top; // truncate stack at prev entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 break;
4280 }
4281 }
4282 if (top < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004283 buf->b_ml.ml_stack_top = 0; // not found, start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004284 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004285 else // ML_DELETE or ML_INSERT
4286 buf->b_ml.ml_stack_top = 0; // start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287
4288/*
4289 * search downwards in the tree until a data block is found
4290 */
4291 for (;;)
4292 {
4293 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
4294 goto error_noblock;
4295
4296 /*
4297 * update high for insert/delete
4298 */
4299 if (action == ML_INSERT)
4300 ++high;
4301 else if (action == ML_DELETE)
4302 --high;
4303
4304 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004305 if (dp->db_id == DATA_ID) // data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004306 {
4307 buf->b_ml.ml_locked = hp;
4308 buf->b_ml.ml_locked_low = low;
4309 buf->b_ml.ml_locked_high = high;
4310 buf->b_ml.ml_locked_lineadd = 0;
4311 buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS);
4312 return hp;
4313 }
4314
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004315 pp = (PTR_BL *)(dp); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004316 if (pp->pb_id != PTR_ID)
4317 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00004318 iemsg(_(e_pointer_block_id_wrong));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004319 goto error_block;
4320 }
4321
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004322 if ((top = ml_add_stack(buf)) < 0) // add new entry to stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00004323 goto error_block;
4324 ip = &(buf->b_ml.ml_stack[top]);
4325 ip->ip_bnum = bnum;
4326 ip->ip_low = low;
4327 ip->ip_high = high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004328 ip->ip_index = -1; // index not known yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004329
4330 dirty = FALSE;
4331 for (idx = 0; idx < (int)pp->pb_count; ++idx)
4332 {
4333 t = pp->pb_pointer[idx].pe_line_count;
4334 CHECK(t == 0, _("pe_line_count is zero"));
4335 if ((low += t) > lnum)
4336 {
4337 ip->ip_index = idx;
4338 bnum = pp->pb_pointer[idx].pe_bnum;
4339 page_count = pp->pb_pointer[idx].pe_page_count;
4340 high = low - 1;
4341 low -= t;
4342
4343 /*
4344 * a negative block number may have been changed
4345 */
4346 if (bnum < 0)
4347 {
4348 bnum2 = mf_trans_del(mfp, bnum);
4349 if (bnum != bnum2)
4350 {
4351 bnum = bnum2;
4352 pp->pb_pointer[idx].pe_bnum = bnum;
4353 dirty = TRUE;
4354 }
4355 }
4356
4357 break;
4358 }
4359 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004360 if (idx >= (int)pp->pb_count) // past the end: something wrong!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004361 {
4362 if (lnum > buf->b_ml.ml_line_count)
Bram Moolenaareaaac012022-01-02 17:00:40 +00004363 siemsg(_(e_line_number_out_of_range_nr_past_the_end),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004364 lnum - buf->b_ml.ml_line_count);
4365
4366 else
Bram Moolenaareaaac012022-01-02 17:00:40 +00004367 siemsg(_(e_line_count_wrong_in_block_nr), bnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004368 goto error_block;
4369 }
4370 if (action == ML_DELETE)
4371 {
4372 pp->pb_pointer[idx].pe_line_count--;
4373 dirty = TRUE;
4374 }
4375 else if (action == ML_INSERT)
4376 {
4377 pp->pb_pointer[idx].pe_line_count++;
4378 dirty = TRUE;
4379 }
4380 mf_put(mfp, hp, dirty, FALSE);
4381 }
4382
4383error_block:
4384 mf_put(mfp, hp, FALSE, FALSE);
4385error_noblock:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004386 /*
4387 * If action is ML_DELETE or ML_INSERT we have to correct the tree for
4388 * the incremented/decremented line counts, because there won't be a line
4389 * inserted/deleted after all.
4390 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 if (action == ML_DELETE)
4392 ml_lineadd(buf, 1);
4393 else if (action == ML_INSERT)
4394 ml_lineadd(buf, -1);
4395 buf->b_ml.ml_stack_top = 0;
4396 return NULL;
4397}
4398
4399/*
4400 * add an entry to the info pointer stack
4401 *
4402 * return -1 for failure, number of the new entry otherwise
4403 */
4404 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004405ml_add_stack(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004406{
4407 int top;
4408 infoptr_T *newstack;
4409
4410 top = buf->b_ml.ml_stack_top;
4411
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004412 // may have to increase the stack size
Bram Moolenaar071d4272004-06-13 20:20:40 +00004413 if (top == buf->b_ml.ml_stack_size)
4414 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004415 CHECK(top > 0, _("Stack size increases")); // more than 5 levels???
Bram Moolenaar071d4272004-06-13 20:20:40 +00004416
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004417 newstack = ALLOC_MULT(infoptr_T, buf->b_ml.ml_stack_size + STACK_INCR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004418 if (newstack == NULL)
4419 return -1;
Bram Moolenaarfbd302f2015-08-08 18:23:46 +02004420 if (top > 0)
4421 mch_memmove(newstack, buf->b_ml.ml_stack,
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004422 (size_t)top * sizeof(infoptr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004423 vim_free(buf->b_ml.ml_stack);
4424 buf->b_ml.ml_stack = newstack;
4425 buf->b_ml.ml_stack_size += STACK_INCR;
4426 }
4427
4428 buf->b_ml.ml_stack_top++;
4429 return top;
4430}
4431
4432/*
4433 * Update the pointer blocks on the stack for inserted/deleted lines.
4434 * The stack itself is also updated.
4435 *
4436 * When a insert/delete line action fails, the line is not inserted/deleted,
4437 * but the pointer blocks have already been updated. That is fixed here by
4438 * walking through the stack.
4439 *
4440 * Count is the number of lines added, negative if lines have been deleted.
4441 */
4442 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004443ml_lineadd(buf_T *buf, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004444{
4445 int idx;
4446 infoptr_T *ip;
4447 PTR_BL *pp;
4448 memfile_T *mfp = buf->b_ml.ml_mfp;
4449 bhdr_T *hp;
4450
4451 for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx)
4452 {
4453 ip = &(buf->b_ml.ml_stack[idx]);
4454 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
4455 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004456 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004457 if (pp->pb_id != PTR_ID)
4458 {
4459 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaareaaac012022-01-02 17:00:40 +00004460 iemsg(_(e_pointer_block_id_wrong_two));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004461 break;
4462 }
4463 pp->pb_pointer[ip->ip_index].pe_line_count += count;
4464 ip->ip_high += count;
4465 mf_put(mfp, hp, TRUE, FALSE);
4466 }
4467}
4468
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004469#if defined(HAVE_READLINK) || defined(PROTO)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004470/*
4471 * Resolve a symlink in the last component of a file name.
4472 * Note that f_resolve() does it for every part of the path, we don't do that
4473 * here.
4474 * If it worked returns OK and the resolved link in "buf[MAXPATHL]".
4475 * Otherwise returns FAIL.
4476 */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004477 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004478resolve_symlink(char_u *fname, char_u *buf)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004479{
4480 char_u tmp[MAXPATHL];
4481 int ret;
4482 int depth = 0;
4483
4484 if (fname == NULL)
4485 return FAIL;
4486
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004487 // Put the result so far in tmp[], starting with the original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004488 vim_strncpy(tmp, fname, MAXPATHL - 1);
4489
4490 for (;;)
4491 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004492 // Limit symlink depth to 100, catch recursive loops.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004493 if (++depth == 100)
4494 {
Bram Moolenaar677658a2022-01-05 16:09:06 +00004495 semsg(_(e_symlink_loop_for_str), fname);
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004496 return FAIL;
4497 }
4498
4499 ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1);
4500 if (ret <= 0)
4501 {
Bram Moolenaarcc984262005-12-23 22:19:46 +00004502 if (errno == EINVAL || errno == ENOENT)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004503 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004504 // Found non-symlink or not existing file, stop here.
4505 // When at the first level use the unmodified name, skip the
4506 // call to vim_FullName().
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004507 if (depth == 1)
4508 return FAIL;
4509
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004510 // Use the resolved name in tmp[].
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004511 break;
4512 }
4513
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004514 // There must be some error reading links, use original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004515 return FAIL;
4516 }
4517 buf[ret] = NUL;
4518
4519 /*
4520 * Check whether the symlink is relative or absolute.
4521 * If it's relative, build a new path based on the directory
4522 * portion of the filename (if any) and the path the symlink
4523 * points to.
4524 */
4525 if (mch_isFullName(buf))
4526 STRCPY(tmp, buf);
4527 else
4528 {
4529 char_u *tail;
4530
4531 tail = gettail(tmp);
4532 if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL)
4533 return FAIL;
4534 STRCPY(tail, buf);
4535 }
4536 }
4537
4538 /*
4539 * Try to resolve the full name of the file so that the swapfile name will
4540 * be consistent even when opening a relative symlink from different
4541 * working directories.
4542 */
4543 return vim_FullName(tmp, buf, MAXPATHL, TRUE);
4544}
4545#endif
4546
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547/*
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004548 * Make swap file name out of the file name and a directory name.
4549 * Returns pointer to allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004550 */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004551 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004552makeswapname(
4553 char_u *fname,
4554 char_u *ffname UNUSED,
4555 buf_T *buf,
4556 char_u *dir_name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004557{
4558 char_u *r, *s;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02004559 char_u *fname_res = fname;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004560#ifdef HAVE_READLINK
4561 char_u fname_buf[MAXPATHL];
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004562
4563 // Expand symlink in the file name, so that we put the swap file with the
4564 // actual file instead of with the symlink.
4565 if (resolve_symlink(fname, fname_buf) == OK)
4566 fname_res = fname_buf;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004567#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568
Bram Moolenaar4f974752019-02-17 17:44:42 +01004569#if defined(UNIX) || defined(MSWIN) // Need _very_ long file names
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01004570 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01004571
4572 s = dir_name + len;
4573 if (after_pathsep(dir_name, s) && len > 1 && s[-1] == s[-2])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004574 { // Ends with '//', Use Full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004575 r = NULL;
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004576 if ((s = make_percent_swname(dir_name, fname_res)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 {
4578 r = modname(s, (char_u *)".swp", FALSE);
4579 vim_free(s);
4580 }
4581 return r;
4582 }
4583#endif
4584
4585 r = buf_modname(
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 (buf->b_p_sn || buf->b_shortname),
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004587 fname_res,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004588 (char_u *)
Bram Moolenaare60acc12011-05-10 16:41:25 +02004589#if defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004590 "_swp",
4591#else
4592 ".swp",
4593#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004594 // Prepend a '.' to the swap file name for the current directory.
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004595 dir_name[0] == '.' && dir_name[1] == NUL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004596 if (r == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004597 return NULL;
4598
4599 s = get_file_in_dir(r, dir_name);
4600 vim_free(r);
4601 return s;
4602}
4603
4604/*
4605 * Get file name to use for swap file or backup file.
4606 * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir'
4607 * option "dname".
4608 * - If "dname" is ".", return "fname" (swap file in dir of file).
4609 * - If "dname" starts with "./", insert "dname" in "fname" (swap file
4610 * relative to dir of file).
4611 * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific
4612 * dir).
4613 *
4614 * The return value is an allocated string and can be NULL.
4615 */
4616 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004617get_file_in_dir(
4618 char_u *fname,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004619 char_u *dname) // don't use "dirname", it is a global for Alpha
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620{
4621 char_u *t;
4622 char_u *tail;
4623 char_u *retval;
4624 int save_char;
4625
4626 tail = gettail(fname);
4627
4628 if (dname[0] == '.' && dname[1] == NUL)
4629 retval = vim_strsave(fname);
4630 else if (dname[0] == '.' && vim_ispathsep(dname[1]))
4631 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004632 if (tail == fname) // no path before file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004633 retval = concat_fnames(dname + 2, tail, TRUE);
4634 else
4635 {
4636 save_char = *tail;
4637 *tail = NUL;
4638 t = concat_fnames(fname, dname + 2, TRUE);
4639 *tail = save_char;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004640 if (t == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004641 retval = NULL;
4642 else
4643 {
4644 retval = concat_fnames(t, tail, TRUE);
4645 vim_free(t);
4646 }
4647 }
4648 }
4649 else
4650 retval = concat_fnames(dname, tail, TRUE);
4651
Bram Moolenaar4f974752019-02-17 17:44:42 +01004652#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004653 if (retval != NULL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004654 for (t = gettail(retval); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004655 if (*t == ':')
4656 *t = '%';
4657#endif
4658
Bram Moolenaar071d4272004-06-13 20:20:40 +00004659 return retval;
4660}
4661
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004662/*
4663 * Print the ATTENTION message: info about an existing swap file.
4664 */
4665 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004666attention_message(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004667 buf_T *buf, // buffer being edited
4668 char_u *fname) // swap file name
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004669{
Bram Moolenaar8767f522016-07-01 17:17:39 +02004670 stat_T st;
Bram Moolenaar63d25552019-05-10 21:28:38 +02004671 time_t swap_mtime;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004672
4673 ++no_wait_return;
Bram Moolenaareaaac012022-01-02 17:00:40 +00004674 (void)emsg(_(e_attention));
Bram Moolenaar32526b32019-01-19 17:43:09 +01004675 msg_puts(_("\nFound a swap file by the name \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004676 msg_home_replace(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004677 msg_puts("\"\n");
Bram Moolenaar63d25552019-05-10 21:28:38 +02004678 swap_mtime = swapfile_info(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004679 msg_puts(_("While opening file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004680 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004681 msg_puts("\"\n");
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004682 if (mch_stat((char *)buf->b_fname, &st) == -1)
4683 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004684 msg_puts(_(" CANNOT BE FOUND"));
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004685 }
4686 else
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004687 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004688 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02004689 msg_puts(get_ctime(st.st_mtime, TRUE));
4690 if (swap_mtime != 0 && st.st_mtime > swap_mtime)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004691 msg_puts(_(" NEWER than swap file!\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004692 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004693 // Some of these messages are long to allow translation to
4694 // other languages.
Bram Moolenaar32526b32019-01-19 17:43:09 +01004695 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"));
4696 msg_puts(_("(2) An edit session for this file crashed.\n"));
4697 msg_puts(_(" If this is the case, use \":recover\" or \"vim -r "));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004698 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004699 msg_puts(_("\"\n to recover the changes (see \":help recovery\").\n"));
4700 msg_puts(_(" If you did this already, delete the swap file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004701 msg_outtrans(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004702 msg_puts(_("\"\n to avoid this message.\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004703 cmdline_row = msg_row;
4704 --no_wait_return;
4705}
4706
Bram Moolenaar188639d2022-04-04 16:57:21 +01004707typedef enum {
4708 SEA_CHOICE_NONE = 0,
4709 SEA_CHOICE_READONLY = 1,
4710 SEA_CHOICE_EDIT = 2,
4711 SEA_CHOICE_RECOVER = 3,
4712 SEA_CHOICE_DELETE = 4,
4713 SEA_CHOICE_QUIT = 5,
4714 SEA_CHOICE_ABORT = 6
4715} sea_choice_T;
4716
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004717#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004718/*
4719 * Trigger the SwapExists autocommands.
Bram Moolenaar188639d2022-04-04 16:57:21 +01004720 * Returns a value for equivalent to do_dialog().
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004721 */
Bram Moolenaar188639d2022-04-04 16:57:21 +01004722 static sea_choice_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004723do_swapexists(buf_T *buf, char_u *fname)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004724{
4725 set_vim_var_string(VV_SWAPNAME, fname, -1);
4726 set_vim_var_string(VV_SWAPCHOICE, NULL, -1);
4727
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004728 // Trigger SwapExists autocommands with <afile> set to the file being
4729 // edited. Disallow changing directory here.
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004730 ++allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004731 apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL);
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004732 --allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004733
4734 set_vim_var_string(VV_SWAPNAME, NULL, -1);
4735
4736 switch (*get_vim_var_str(VV_SWAPCHOICE))
4737 {
Bram Moolenaar188639d2022-04-04 16:57:21 +01004738 case 'o': return SEA_CHOICE_READONLY;
4739 case 'e': return SEA_CHOICE_EDIT;
4740 case 'r': return SEA_CHOICE_RECOVER;
4741 case 'd': return SEA_CHOICE_DELETE;
4742 case 'q': return SEA_CHOICE_QUIT;
4743 case 'a': return SEA_CHOICE_ABORT;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004744 }
4745
Bram Moolenaar188639d2022-04-04 16:57:21 +01004746 return SEA_CHOICE_NONE;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004747}
4748#endif
4749
Bram Moolenaar071d4272004-06-13 20:20:40 +00004750/*
4751 * Find out what name to use for the swap file for buffer 'buf'.
4752 *
4753 * Several names are tried to find one that does not exist
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004754 * Returns the name in allocated memory or NULL.
Bram Moolenaarf541c362011-10-26 11:44:18 +02004755 * When out of memory "dirp" is set to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004756 *
4757 * Note: If BASENAMELEN is not correct, you will get error messages for
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004758 * not being able to open the swap or undo file
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004759 * Note: May trigger SwapExists autocmd, pointers may change!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760 */
4761 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004762findswapname(
4763 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004764 char_u **dirp, // pointer to list of directories
4765 char_u *old_fname) // don't give warning for this file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004766{
4767 char_u *fname;
4768 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004769 char_u *dir_name;
4770#ifdef AMIGA
4771 BPTR fh;
4772#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004773 int r;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004774 char_u *buf_fname = buf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004775
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004776#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004777# define CREATE_DUMMY_FILE
4778 FILE *dummyfd = NULL;
4779
Bram Moolenaar4f974752019-02-17 17:44:42 +01004780# ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004781 if (buf_fname != NULL && !mch_isFullName(buf_fname)
4782 && vim_strchr(gettail(buf_fname), ':'))
4783 {
4784 char_u *t;
4785
4786 buf_fname = vim_strsave(buf_fname);
4787 if (buf_fname == NULL)
4788 buf_fname = buf->b_fname;
4789 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004790 for (t = gettail(buf_fname); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004791 if (*t == ':')
4792 *t = '%';
4793 }
4794# endif
4795
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004796 /*
4797 * If we start editing a new file, e.g. "test.doc", which resides on an
4798 * MSDOS compatible filesystem, it is possible that the file
4799 * "test.doc.swp" which we create will be exactly the same file. To avoid
4800 * this problem we temporarily create "test.doc". Don't do this when the
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00004801 * check below for an 8.3 file name is used.
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004802 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004803 if (!(buf->b_p_sn || buf->b_shortname) && buf_fname != NULL
4804 && mch_getperm(buf_fname) < 0)
4805 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004806#endif
4807
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004808 /*
4809 * Isolate a directory name from *dirp and put it in dir_name.
4810 * First allocate some memory to put the directory name in.
4811 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004812 dir_name = alloc(STRLEN(*dirp) + 1);
Bram Moolenaarf541c362011-10-26 11:44:18 +02004813 if (dir_name == NULL)
4814 *dirp = NULL;
4815 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004816 (void)copy_option_part(dirp, dir_name, 31000, ",");
4817
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004818 /*
4819 * we try different names until we find one that does not exist yet
4820 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004821 if (dir_name == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004822 fname = NULL;
4823 else
Bram Moolenaar69c35002013-11-04 02:54:12 +01004824 fname = makeswapname(buf_fname, buf->b_ffname, buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004825
4826 for (;;)
4827 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004828 if (fname == NULL) // must be out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004829 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004830 if ((n = (int)STRLEN(fname)) == 0) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00004831 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01004832 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004833 break;
4834 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004835#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836/*
4837 * Some systems have a MS-DOS compatible filesystem that use 8.3 character
4838 * file names. If this is the first try and the swap file name does not fit in
4839 * 8.3, detect if this is the case, set shortname and try again.
4840 */
4841 if (fname[n - 2] == 'w' && fname[n - 1] == 'p'
4842 && !(buf->b_p_sn || buf->b_shortname))
4843 {
4844 char_u *tail;
4845 char_u *fname2;
Bram Moolenaar8767f522016-07-01 17:17:39 +02004846 stat_T s1, s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 int f1, f2;
4848 int created1 = FALSE, created2 = FALSE;
4849 int same = FALSE;
4850
4851 /*
4852 * Check if swapfile name does not fit in 8.3:
4853 * It either contains two dots, is longer than 8 chars, or starts
4854 * with a dot.
4855 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004856 tail = gettail(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004857 if ( vim_strchr(tail, '.') != NULL
4858 || STRLEN(tail) > (size_t)8
4859 || *gettail(fname) == '.')
4860 {
4861 fname2 = alloc(n + 2);
4862 if (fname2 != NULL)
4863 {
4864 STRCPY(fname2, fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004865 // if fname == "xx.xx.swp", fname2 = "xx.xx.swx"
4866 // if fname == ".xx.swp", fname2 = ".xx.swpx"
4867 // if fname == "123456789.swp", fname2 = "12345678x.swp"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004868 if (vim_strchr(tail, '.') != NULL)
4869 fname2[n - 1] = 'x';
4870 else if (*gettail(fname) == '.')
4871 {
4872 fname2[n] = 'x';
4873 fname2[n + 1] = NUL;
4874 }
4875 else
4876 fname2[n - 5] += 1;
4877 /*
4878 * may need to create the files to be able to use mch_stat()
4879 */
4880 f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4881 if (f1 < 0)
4882 {
4883 f1 = mch_open_rw((char *)fname,
4884 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004885 created1 = TRUE;
4886 }
4887 if (f1 >= 0)
4888 {
4889 f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0);
4890 if (f2 < 0)
4891 {
4892 f2 = mch_open_rw((char *)fname2,
4893 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
4894 created2 = TRUE;
4895 }
4896 if (f2 >= 0)
4897 {
4898 /*
4899 * Both files exist now. If mch_stat() returns the
4900 * same device and inode they are the same file.
4901 */
4902 if (mch_fstat(f1, &s1) != -1
4903 && mch_fstat(f2, &s2) != -1
4904 && s1.st_dev == s2.st_dev
4905 && s1.st_ino == s2.st_ino)
4906 same = TRUE;
4907 close(f2);
4908 if (created2)
4909 mch_remove(fname2);
4910 }
4911 close(f1);
4912 if (created1)
4913 mch_remove(fname);
4914 }
4915 vim_free(fname2);
4916 if (same)
4917 {
4918 buf->b_shortname = TRUE;
4919 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004920 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004921 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004922 continue; // try again with b_shortname set
Bram Moolenaar071d4272004-06-13 20:20:40 +00004923 }
4924 }
4925 }
4926 }
4927#endif
4928 /*
4929 * check if the swapfile already exists
4930 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004931 if (mch_getperm(fname) < 0) // it does not exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 {
4933#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02004934 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004935
4936 /*
4937 * Extra security check: When a swap file is a symbolic link, this
4938 * is most likely a symlink attack.
4939 */
4940 if (mch_lstat((char *)fname, &sb) < 0)
4941#else
4942# ifdef AMIGA
4943 fh = Open((UBYTE *)fname, (long)MODE_NEWFILE);
4944 /*
4945 * on the Amiga mch_getperm() will return -1 when the file exists
4946 * but is being used by another program. This happens if you edit
4947 * a file twice.
4948 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004949 if (fh != (BPTR)NULL) // can open file, OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00004950 {
4951 Close(fh);
4952 mch_remove(fname);
4953 break;
4954 }
4955 if (IoErr() != ERROR_OBJECT_IN_USE
4956 && IoErr() != ERROR_OBJECT_EXISTS)
4957# endif
4958#endif
4959 break;
4960 }
4961
4962 /*
4963 * A file name equal to old_fname is OK to use.
4964 */
4965 if (old_fname != NULL && fnamecmp(fname, old_fname) == 0)
4966 break;
4967
4968 /*
4969 * get here when file already exists
4970 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004971 if (fname[n - 2] == 'w' && fname[n - 1] == 'p') // first try
Bram Moolenaar071d4272004-06-13 20:20:40 +00004972 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004973 /*
4974 * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp
4975 * and file.doc are the same file. To guess if this problem is
4976 * present try if file.doc.swx exists. If it does, we set
4977 * buf->b_shortname and try file_doc.swp (dots replaced by
4978 * underscores for this file), and try again. If it doesn't we
4979 * assume that "file.doc.swp" already exists.
4980 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004981 if (!(buf->b_p_sn || buf->b_shortname)) // not tried yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982 {
4983 fname[n - 1] = 'x';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004984 r = mch_getperm(fname); // try "file.swx"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004985 fname[n - 1] = 'p';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004986 if (r >= 0) // "file.swx" seems to exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004987 {
4988 buf->b_shortname = TRUE;
4989 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004990 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004991 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004992 continue; // try again with '.' replaced with '_'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004993 }
4994 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004995 /*
4996 * If we get here the ".swp" file really exists.
4997 * Give an error message, unless recovering, no file name, we are
4998 * viewing a help file or when the path of the file is different
4999 * (happens when all .swp files are in one directory).
5000 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01005001 if (!recoverymode && buf_fname != NULL
Bram Moolenaar2debf1c2019-08-04 20:44:19 +02005002 && !buf->b_help
5003 && !(buf->b_flags & (BF_DUMMY | BF_NO_SEA)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005004 {
5005 int fd;
5006 struct block0 b0;
5007 int differ = FALSE;
5008
5009 /*
5010 * Try to read block 0 from the swap file to get the original
5011 * file name (and inode number).
5012 */
5013 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
5014 if (fd >= 0)
5015 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01005016 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 {
5018 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005019 * If the swapfile has the same directory as the
5020 * buffer don't compare the directory names, they can
5021 * have a different mountpoint.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005023 if (b0.b0_flags & B0_SAME_DIR)
5024 {
5025 if (fnamecmp(gettail(buf->b_ffname),
5026 gettail(b0.b0_fname)) != 0
5027 || !same_directory(fname, buf->b_ffname))
Bram Moolenaar900b4d72005-12-12 22:05:50 +00005028 {
5029#ifdef CHECK_INODE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005030 // Symlinks may point to the same file even
5031 // when the name differs, need to check the
5032 // inode too.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00005033 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
5034 if (fnamecmp_ino(buf->b_ffname, NameBuff,
5035 char_to_long(b0.b0_ino)))
5036#endif
5037 differ = TRUE;
5038 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005039 }
5040 else
5041 {
5042 /*
5043 * The name in the swap file may be
5044 * "~user/path/file". Expand it first.
5045 */
5046 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047#ifdef CHECK_INODE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005048 if (fnamecmp_ino(buf->b_ffname, NameBuff,
Bram Moolenaar900b4d72005-12-12 22:05:50 +00005049 char_to_long(b0.b0_ino)))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005050 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005051#else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005052 if (fnamecmp(NameBuff, buf->b_ffname) != 0)
5053 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005055 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005056 }
5057 close(fd);
5058 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005059
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005060 // give the ATTENTION message when there is an old swap file
5061 // for the current file, and the buffer was not recovered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED)
5063 && vim_strchr(p_shm, SHM_ATTENTION) == NULL)
5064 {
Bram Moolenaar188639d2022-04-04 16:57:21 +01005065 sea_choice_T choice = SEA_CHOICE_NONE;
5066 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067#ifdef CREATE_DUMMY_FILE
Bram Moolenaar188639d2022-04-04 16:57:21 +01005068 int did_use_dummy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005069
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005070 // Avoid getting a warning for the file being created
5071 // outside of Vim, it was created at the start of this
5072 // function. Delete the file now, because Vim might exit
5073 // here if the window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005074 if (dummyfd != NULL)
5075 {
5076 fclose(dummyfd);
5077 dummyfd = NULL;
Bram Moolenaar69c35002013-11-04 02:54:12 +01005078 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005079 did_use_dummy = TRUE;
5080 }
5081#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005082
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005083#ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084 process_still_running = FALSE;
5085#endif
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005086 // It's safe to delete the swap file if all these are true:
5087 // - the edited file exists
5088 // - the swap file has no changes and looks OK
5089 if (mch_stat((char *)buf->b_fname, &st) == 0
5090 && swapfile_unchanged(fname))
5091 {
Bram Moolenaar188639d2022-04-04 16:57:21 +01005092 choice = SEA_CHOICE_DELETE;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005093 if (p_verbose > 0)
5094 verb_msg(_("Found a swap file that is not useful, deleting it"));
5095 }
5096
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005097#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005098 /*
5099 * If there is an SwapExists autocommand and we can handle
5100 * the response, trigger it. It may return 0 to ask the
5101 * user anyway.
5102 */
Bram Moolenaar188639d2022-04-04 16:57:21 +01005103 if (choice == SEA_CHOICE_NONE
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005104 && swap_exists_action != SEA_NONE
Bram Moolenaar69c35002013-11-04 02:54:12 +01005105 && has_autocmd(EVENT_SWAPEXISTS, buf_fname, buf))
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005106 choice = do_swapexists(buf, fname);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005107#endif
Bram Moolenaar188639d2022-04-04 16:57:21 +01005108
5109 if (choice == SEA_CHOICE_NONE
5110 && swap_exists_action == SEA_READONLY)
5111 {
5112 // always open readonly.
5113 choice = SEA_CHOICE_READONLY;
5114 }
5115
5116 if (choice == SEA_CHOICE_NONE)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005117 {
5118#ifdef FEAT_GUI
Bram Moolenaar798184c2018-10-07 20:48:39 +02005119 // If we are supposed to start the GUI but it wasn't
5120 // completely started yet, start it now. This makes
5121 // the messages displayed in the Vim window when
5122 // loading a session from the .gvimrc file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005123 if (gui.starting && !gui.in_use)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005124 gui_start(NULL);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005125#endif
Bram Moolenaar798184c2018-10-07 20:48:39 +02005126 // Show info about the existing swap file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005127 attention_message(buf, fname);
5128
Bram Moolenaar798184c2018-10-07 20:48:39 +02005129 // We don't want a 'q' typed at the more-prompt
5130 // interrupt loading a file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005131 got_int = FALSE;
Bram Moolenaar798184c2018-10-07 20:48:39 +02005132
5133 // If vimrc has "simalt ~x" we don't want it to
5134 // interfere with the prompt here.
Bram Moolenaar6a2633b2018-10-07 23:16:36 +02005135 flush_buffers(FLUSH_TYPEAHEAD);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005136 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005137
5138#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar188639d2022-04-04 16:57:21 +01005139 if (swap_exists_action != SEA_NONE
5140 && choice == SEA_CHOICE_NONE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 {
5142 char_u *name;
Bram Moolenaar188639d2022-04-04 16:57:21 +01005143 int dialog_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144
Bram Moolenaar964b3742019-05-24 18:54:09 +02005145 name = alloc(STRLEN(fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005146 + STRLEN(_("Swap file \""))
Bram Moolenaar964b3742019-05-24 18:54:09 +02005147 + STRLEN(_("\" already exists!")) + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005148 if (name != NULL)
5149 {
5150 STRCPY(name, _("Swap file \""));
5151 home_replace(NULL, fname, name + STRLEN(name),
5152 1000, TRUE);
5153 STRCAT(name, _("\" already exists!"));
5154 }
Bram Moolenaar188639d2022-04-04 16:57:21 +01005155 dialog_result = do_dialog(VIM_WARNING,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 (char_u *)_("VIM - ATTENTION"),
5157 name == NULL
5158 ? (char_u *)_("Swap file already exists!")
5159 : name,
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005160# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 process_still_running
5162 ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") :
5163# endif
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005164 (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 +00005165
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005166# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar188639d2022-04-04 16:57:21 +01005167 if (process_still_running && dialog_result >= 4)
5168 // compensate for missing "Delete it" button
5169 dialog_result++;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005170# endif
Bram Moolenaar188639d2022-04-04 16:57:21 +01005171 choice = dialog_result;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005172 vim_free(name);
5173
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005174 // pretend screen didn't scroll, need redraw anyway
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005175 msg_scrolled = 0;
Bram Moolenaara4d158b2022-08-14 14:17:45 +01005176 redraw_all_later(UPD_NOT_VALID);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005177 }
5178#endif
5179
Bram Moolenaar188639d2022-04-04 16:57:21 +01005180 switch (choice)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005181 {
Bram Moolenaar188639d2022-04-04 16:57:21 +01005182 case SEA_CHOICE_READONLY:
5183 buf->b_p_ro = TRUE;
5184 break;
5185 case SEA_CHOICE_EDIT:
5186 break;
5187 case SEA_CHOICE_RECOVER:
5188 swap_exists_action = SEA_RECOVER;
5189 break;
5190 case SEA_CHOICE_DELETE:
5191 mch_remove(fname);
5192 break;
5193 case SEA_CHOICE_QUIT:
5194 swap_exists_action = SEA_QUIT;
5195 break;
5196 case SEA_CHOICE_ABORT:
5197 swap_exists_action = SEA_QUIT;
5198 got_int = TRUE;
5199 break;
5200 case SEA_CHOICE_NONE:
5201 msg_puts("\n");
5202 if (msg_silent == 0)
5203 // call wait_return() later
5204 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005205 break;
5206 }
Bram Moolenaar188639d2022-04-04 16:57:21 +01005207
5208 // If the file was deleted this fname can be used.
5209 if (choice != SEA_CHOICE_NONE && mch_getperm(fname) < 0)
5210 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005211
5212#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005213 // Going to try another name, need the dummy file again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005214 if (did_use_dummy)
Bram Moolenaar69c35002013-11-04 02:54:12 +01005215 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005216#endif
5217 }
5218 }
5219 }
5220
5221 /*
5222 * Change the ".swp" extension to find another file that can be used.
5223 * First decrement the last char: ".swo", ".swn", etc.
5224 * If that still isn't enough decrement the last but one char: ".svz"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005225 * Can happen when editing many "No Name" buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005227 if (fname[n - 1] == 'a') // ".s?a"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005229 if (fname[n - 2] == 'a') // ".saa": tried enough, give up
Bram Moolenaar071d4272004-06-13 20:20:40 +00005230 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00005231 emsg(_(e_too_many_swap_files_found));
Bram Moolenaard23a8232018-02-10 18:45:26 +01005232 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005233 break;
5234 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005235 --fname[n - 2]; // ".svz", ".suz", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236 fname[n - 1] = 'z' + 1;
5237 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005238 --fname[n - 1]; // ".swo", ".swn", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005239 }
5240
5241 vim_free(dir_name);
5242#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005243 if (dummyfd != NULL) // file has been created temporarily
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 {
5245 fclose(dummyfd);
Bram Moolenaar69c35002013-11-04 02:54:12 +01005246 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005247 }
5248#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005249#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01005250 if (buf_fname != buf->b_fname)
5251 vim_free(buf_fname);
5252#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005253 return fname;
5254}
5255
5256 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005257b0_magic_wrong(ZERO_BL *b0p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258{
5259 return (b0p->b0_magic_long != (long)B0_MAGIC_LONG
5260 || b0p->b0_magic_int != (int)B0_MAGIC_INT
5261 || b0p->b0_magic_short != (short)B0_MAGIC_SHORT
5262 || b0p->b0_magic_char != B0_MAGIC_CHAR);
5263}
5264
5265#ifdef CHECK_INODE
5266/*
5267 * Compare current file name with file name from swap file.
5268 * Try to use inode numbers when possible.
5269 * Return non-zero when files are different.
5270 *
5271 * When comparing file names a few things have to be taken into consideration:
5272 * - When working over a network the full path of a file depends on the host.
5273 * We check the inode number if possible. It is not 100% reliable though,
5274 * because the device number cannot be used over a network.
5275 * - When a file does not exist yet (editing a new file) there is no inode
5276 * number.
5277 * - The file name in a swap file may not be valid on the current host. The
5278 * "~user" form is used whenever possible to avoid this.
5279 *
5280 * This is getting complicated, let's make a table:
5281 *
5282 * ino_c ino_s fname_c fname_s differ =
5283 *
5284 * both files exist -> compare inode numbers:
5285 * != 0 != 0 X X ino_c != ino_s
5286 *
5287 * inode number(s) unknown, file names available -> compare file names
5288 * == 0 X OK OK fname_c != fname_s
5289 * X == 0 OK OK fname_c != fname_s
5290 *
5291 * current file doesn't exist, file for swap file exist, file name(s) not
5292 * available -> probably different
5293 * == 0 != 0 FAIL X TRUE
5294 * == 0 != 0 X FAIL TRUE
5295 *
5296 * current file exists, inode for swap unknown, file name(s) not
5297 * available -> probably different
5298 * != 0 == 0 FAIL X TRUE
5299 * != 0 == 0 X FAIL TRUE
5300 *
5301 * current file doesn't exist, inode for swap unknown, one file name not
5302 * available -> probably different
5303 * == 0 == 0 FAIL OK TRUE
5304 * == 0 == 0 OK FAIL TRUE
5305 *
5306 * current file doesn't exist, inode for swap unknown, both file names not
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005307 * available -> compare file names
5308 * == 0 == 0 FAIL FAIL fname_c != fname_s
Bram Moolenaar071d4272004-06-13 20:20:40 +00005309 *
5310 * Note that when the ino_t is 64 bits, only the last 32 will be used. This
5311 * can't be changed without making the block 0 incompatible with 32 bit
5312 * versions.
5313 */
5314
5315 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005316fnamecmp_ino(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005317 char_u *fname_c, // current file name
5318 char_u *fname_s, // file name from swap file
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005319 long ino_block0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320{
Bram Moolenaar8767f522016-07-01 17:17:39 +02005321 stat_T st;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005322 ino_t ino_c = 0; // ino of current file
5323 ino_t ino_s; // ino of file from swap file
5324 char_u buf_c[MAXPATHL]; // full path of fname_c
5325 char_u buf_s[MAXPATHL]; // full path of fname_s
5326 int retval_c; // flag: buf_c valid
5327 int retval_s; // flag: buf_s valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328
5329 if (mch_stat((char *)fname_c, &st) == 0)
5330 ino_c = (ino_t)st.st_ino;
5331
5332 /*
5333 * First we try to get the inode from the file name, because the inode in
5334 * the swap file may be outdated. If that fails (e.g. this path is not
5335 * valid on this machine), use the inode from block 0.
5336 */
5337 if (mch_stat((char *)fname_s, &st) == 0)
5338 ino_s = (ino_t)st.st_ino;
5339 else
5340 ino_s = (ino_t)ino_block0;
5341
5342 if (ino_c && ino_s)
5343 return (ino_c != ino_s);
5344
5345 /*
5346 * One of the inode numbers is unknown, try a forced vim_FullName() and
5347 * compare the file names.
5348 */
5349 retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE);
5350 retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE);
5351 if (retval_c == OK && retval_s == OK)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005352 return STRCMP(buf_c, buf_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005353
5354 /*
5355 * Can't compare inodes or file names, guess that the files are different,
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005356 * unless both appear not to exist at all, then compare with the file name
5357 * in the swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358 */
5359 if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005360 return STRCMP(fname_c, fname_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005361 return TRUE;
5362}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005363#endif // CHECK_INODE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005364
5365/*
5366 * Move a long integer into a four byte character array.
5367 * Used for machine independency in block zero.
5368 */
5369 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005370long_to_char(long n, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005371{
5372 s[0] = (char_u)(n & 0xff);
5373 n = (unsigned)n >> 8;
5374 s[1] = (char_u)(n & 0xff);
5375 n = (unsigned)n >> 8;
5376 s[2] = (char_u)(n & 0xff);
5377 n = (unsigned)n >> 8;
5378 s[3] = (char_u)(n & 0xff);
5379}
5380
5381 static long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005382char_to_long(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383{
5384 long retval;
5385
5386 retval = s[3];
5387 retval <<= 8;
5388 retval |= s[2];
5389 retval <<= 8;
5390 retval |= s[1];
5391 retval <<= 8;
5392 retval |= s[0];
5393
5394 return retval;
5395}
5396
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005397/*
5398 * Set the flags in the first block of the swap file:
5399 * - file is modified or not: buf->b_changed
5400 * - 'fileformat'
5401 * - 'fileencoding'
5402 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005403 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005404ml_setflags(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005405{
5406 bhdr_T *hp;
5407 ZERO_BL *b0p;
5408
5409 if (!buf->b_ml.ml_mfp)
5410 return;
5411 for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
5412 {
5413 if (hp->bh_bnum == 0)
5414 {
5415 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005416 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
5417 b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK)
5418 | (get_fileformat(buf) + 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005419 add_b0_fenc(b0p, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005420 hp->bh_flags |= BH_DIRTY;
5421 mf_sync(buf->b_ml.ml_mfp, MFS_ZERO);
5422 break;
5423 }
5424 }
5425}
5426
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005427#if defined(FEAT_CRYPT) || defined(PROTO)
5428/*
5429 * If "data" points to a data block encrypt the text in it and return a copy
5430 * in allocated memory. Return NULL when out of memory.
5431 * Otherwise return "data".
5432 */
5433 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005434ml_encrypt_data(
5435 memfile_T *mfp,
5436 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005437 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005438 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005439{
5440 DATA_BL *dp = (DATA_BL *)data;
5441 char_u *head_end;
5442 char_u *text_start;
5443 char_u *new_data;
5444 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005445 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005446
5447 if (dp->db_id != DATA_ID)
5448 return data;
5449
Bram Moolenaarbc563362015-06-09 18:35:25 +02005450 state = ml_crypt_prepare(mfp, offset, FALSE);
5451 if (state == NULL)
5452 return data;
5453
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005454 new_data = alloc(size);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005455 if (new_data == NULL)
5456 return NULL;
5457 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5458 text_start = (char_u *)dp + dp->db_txt_start;
5459 text_len = size - dp->db_txt_start;
5460
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005461 // Copy the header and the text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005462 mch_memmove(new_data, dp, head_end - (char_u *)dp);
5463
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005464 // Encrypt the text.
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005465 crypt_encode(state, text_start, text_len, new_data + dp->db_txt_start,
5466 FALSE);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005467 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005468
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005469 // Clear the gap.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005470 if (head_end < text_start)
5471 vim_memset(new_data + (head_end - data), 0, text_start - head_end);
5472
5473 return new_data;
5474}
5475
5476/*
Bram Moolenaarbc563362015-06-09 18:35:25 +02005477 * Decrypt the text in "data" if it points to an encrypted data block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005478 */
5479 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005480ml_decrypt_data(
5481 memfile_T *mfp,
5482 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005483 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005484 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005485{
5486 DATA_BL *dp = (DATA_BL *)data;
5487 char_u *head_end;
5488 char_u *text_start;
5489 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005490 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005491
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005492 if (dp->db_id != DATA_ID)
5493 return;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005494
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005495 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5496 text_start = (char_u *)dp + dp->db_txt_start;
5497 text_len = dp->db_txt_end - dp->db_txt_start;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005498
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005499 if (head_end > text_start || dp->db_txt_start > size
5500 || dp->db_txt_end > size)
5501 return; // data was messed up
5502
5503 state = ml_crypt_prepare(mfp, offset, TRUE);
5504 if (state == NULL)
5505 return;
5506
5507 // Decrypt the text in place.
5508 crypt_decode_inplace(state, text_start, text_len, FALSE);
5509 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005510}
5511
5512/*
5513 * Prepare for encryption/decryption, using the key, seed and offset.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005514 * Return an allocated cryptstate_T *.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005515 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005516 static cryptstate_T *
Bram Moolenaar8767f522016-07-01 17:17:39 +02005517ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005518{
5519 buf_T *buf = mfp->mf_buffer;
5520 char_u salt[50];
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005521 int method_nr;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005522 char_u *key;
5523 char_u *seed;
5524
5525 if (reading && mfp->mf_old_key != NULL)
5526 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005527 // Reading back blocks with the previous key/method/seed.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005528 method_nr = mfp->mf_old_cm;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005529 key = mfp->mf_old_key;
5530 seed = mfp->mf_old_seed;
5531 }
5532 else
5533 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005534 method_nr = crypt_get_method_nr(buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005535 key = buf->b_p_key;
5536 seed = mfp->mf_seed;
5537 }
Bram Moolenaarbc563362015-06-09 18:35:25 +02005538 if (*key == NUL)
5539 return NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005540
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005541 if (method_nr == CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005542 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005543 // For PKzip: Append the offset to the key, so that we use a different
5544 // key for every block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005545 vim_snprintf((char *)salt, sizeof(salt), "%s%ld", key, (long)offset);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005546 return crypt_create(method_nr, salt, NULL, 0, NULL, 0);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005547 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005548
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005549 // Using blowfish or better: add salt and seed. We use the byte offset
5550 // of the block for the salt.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005551 vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
5552 return crypt_create(method_nr, key, salt, (int)STRLEN(salt),
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005553 seed, MF_SEED_LEN);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005554}
5555
5556#endif
5557
5558
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559#if defined(FEAT_BYTEOFF) || defined(PROTO)
5560
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005561#define MLCS_MAXL 800 // max no of lines in chunk
5562#define MLCS_MINL 400 // should be half of MLCS_MAXL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005563
5564/*
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02005565 * Keep information for finding byte offset of a line, updtype may be one of:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005566 * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it
5567 * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called.
5568 * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it
5569 * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity.
5570 */
5571 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005572ml_updatechunk(
5573 buf_T *buf,
5574 linenr_T line,
5575 long len,
5576 int updtype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577{
5578 static buf_T *ml_upd_lastbuf = NULL;
5579 static linenr_T ml_upd_lastline;
5580 static linenr_T ml_upd_lastcurline;
5581 static int ml_upd_lastcurix;
5582
5583 linenr_T curline = ml_upd_lastcurline;
5584 int curix = ml_upd_lastcurix;
5585 long size;
5586 chunksize_T *curchnk;
5587 int rest;
5588 bhdr_T *hp;
5589 DATA_BL *dp;
5590
5591 if (buf->b_ml.ml_usedchunks == -1 || len == 0)
5592 return;
5593 if (buf->b_ml.ml_chunksize == NULL)
5594 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005595 buf->b_ml.ml_chunksize = ALLOC_MULT(chunksize_T, 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005596 if (buf->b_ml.ml_chunksize == NULL)
5597 {
5598 buf->b_ml.ml_usedchunks = -1;
5599 return;
5600 }
5601 buf->b_ml.ml_numchunks = 100;
5602 buf->b_ml.ml_usedchunks = 1;
5603 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
5604 buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1;
5605 }
5606
5607 if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1)
5608 {
5609 /*
5610 * First line in empty buffer from ml_flush_line() -- reset
5611 */
5612 buf->b_ml.ml_usedchunks = 1;
5613 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01005614 buf->b_ml.ml_chunksize[0].mlcs_totalsize = (long)buf->b_ml.ml_line_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 return;
5616 }
5617
5618 /*
5619 * Find chunk that our line belongs to, curline will be at start of the
5620 * chunk.
5621 */
5622 if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1
5623 || updtype != ML_CHNK_ADDLINE)
5624 {
5625 for (curline = 1, curix = 0;
5626 curix < buf->b_ml.ml_usedchunks - 1
5627 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5628 curix++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005629 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005630 }
Bram Moolenaara9a8e042018-10-30 22:15:55 +01005631 else if (curix < buf->b_ml.ml_usedchunks - 1
5632 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005634 // Adjust cached curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005635 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5636 curix++;
5637 }
5638 curchnk = buf->b_ml.ml_chunksize + curix;
5639
5640 if (updtype == ML_CHNK_DELLINE)
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00005641 len = -len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 curchnk->mlcs_totalsize += len;
5643 if (updtype == ML_CHNK_ADDLINE)
5644 {
5645 curchnk->mlcs_numlines++;
5646
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005647 // May resize here so we don't have to do it in both cases below
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648 if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks)
5649 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005650 chunksize_T *t_chunksize = buf->b_ml.ml_chunksize;
5651
Bram Moolenaar071d4272004-06-13 20:20:40 +00005652 buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2;
Bram Moolenaar51b6eb42020-08-22 15:19:18 +02005653 buf->b_ml.ml_chunksize = vim_realloc(buf->b_ml.ml_chunksize,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005654 sizeof(chunksize_T) * buf->b_ml.ml_numchunks);
5655 if (buf->b_ml.ml_chunksize == NULL)
5656 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005657 // Hmmmm, Give up on offset for this buffer
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005658 vim_free(t_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005659 buf->b_ml.ml_usedchunks = -1;
5660 return;
5661 }
5662 }
5663
5664 if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL)
5665 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005666 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005667 int idx;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005668 int end_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005669 int text_end;
5670 int linecnt;
5671
5672 mch_memmove(buf->b_ml.ml_chunksize + curix + 1,
5673 buf->b_ml.ml_chunksize + curix,
5674 (buf->b_ml.ml_usedchunks - curix) *
5675 sizeof(chunksize_T));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005676 // Compute length of first half of lines in the split chunk
Bram Moolenaar071d4272004-06-13 20:20:40 +00005677 size = 0;
5678 linecnt = 0;
5679 while (curline < buf->b_ml.ml_line_count
5680 && linecnt < MLCS_MINL)
5681 {
5682 if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5683 {
5684 buf->b_ml.ml_usedchunks = -1;
5685 return;
5686 }
5687 dp = (DATA_BL *)(hp->bh_data);
5688 count = (long)(buf->b_ml.ml_locked_high) -
5689 (long)(buf->b_ml.ml_locked_low) + 1;
5690 idx = curline - buf->b_ml.ml_locked_low;
5691 curline = buf->b_ml.ml_locked_high + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005692
5693 // compute index of last line to use in this MEMLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005694 rest = count - idx;
5695 if (linecnt + rest > MLCS_MINL)
5696 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005697 end_idx = idx + MLCS_MINL - linecnt - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005698 linecnt = MLCS_MINL;
5699 }
5700 else
5701 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005702 end_idx = count - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005703 linecnt += rest;
5704 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005705#ifdef FEAT_PROP_POPUP
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005706 if (buf->b_has_textprop)
5707 {
5708 int i;
5709
5710 // We cannot use the text pointers to get the text length,
5711 // the text prop info would also be counted. Go over the
5712 // lines.
5713 for (i = end_idx; i < idx; ++i)
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01005714 size += (int)STRLEN((char_u *)dp
5715 + (dp->db_index[i] & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005716 }
5717 else
5718#endif
5719 {
Bram Moolenaar14c75302021-08-15 14:28:40 +02005720 if (idx == 0) // first line in block, text at the end
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005721 text_end = dp->db_txt_end;
5722 else
5723 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01005724 size += text_end
5725 - ((dp->db_index[end_idx]) & DB_INDEX_MASK);
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005726 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005727 }
5728 buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt;
5729 buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt;
5730 buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size;
5731 buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size;
5732 buf->b_ml.ml_usedchunks++;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005733 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005734 return;
5735 }
5736 else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL
5737 && curix == buf->b_ml.ml_usedchunks - 1
5738 && buf->b_ml.ml_line_count - line <= 1)
5739 {
5740 /*
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005741 * We are in the last chunk and it is cheap to create a new one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742 * after this. Do it now to avoid the loop above later on
5743 */
5744 curchnk = buf->b_ml.ml_chunksize + curix + 1;
5745 buf->b_ml.ml_usedchunks++;
5746 if (line == buf->b_ml.ml_line_count)
5747 {
5748 curchnk->mlcs_numlines = 0;
5749 curchnk->mlcs_totalsize = 0;
5750 }
5751 else
5752 {
5753 /*
5754 * Line is just prior to last, move count for last
5755 * This is the common case when loading a new file
5756 */
5757 hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND);
5758 if (hp == NULL)
5759 {
5760 buf->b_ml.ml_usedchunks = -1;
5761 return;
5762 }
5763 dp = (DATA_BL *)(hp->bh_data);
5764 if (dp->db_line_count == 1)
5765 rest = dp->db_txt_end - dp->db_txt_start;
5766 else
5767 rest =
5768 ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK)
5769 - dp->db_txt_start;
5770 curchnk->mlcs_totalsize = rest;
5771 curchnk->mlcs_numlines = 1;
5772 curchnk[-1].mlcs_totalsize -= rest;
5773 curchnk[-1].mlcs_numlines -= 1;
5774 }
5775 }
5776 }
5777 else if (updtype == ML_CHNK_DELLINE)
5778 {
5779 curchnk->mlcs_numlines--;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005780 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01005781 if (curix < buf->b_ml.ml_usedchunks - 1
5782 && curchnk->mlcs_numlines + curchnk[1].mlcs_numlines
5783 <= MLCS_MINL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005784 {
5785 curix++;
5786 curchnk = buf->b_ml.ml_chunksize + curix;
5787 }
5788 else if (curix == 0 && curchnk->mlcs_numlines <= 0)
5789 {
5790 buf->b_ml.ml_usedchunks--;
5791 mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1,
5792 buf->b_ml.ml_usedchunks * sizeof(chunksize_T));
5793 return;
5794 }
5795 else if (curix == 0 || (curchnk->mlcs_numlines > 10
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01005796 && curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines
5797 > MLCS_MINL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 {
5799 return;
5800 }
5801
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005802 // Collapse chunks
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803 curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines;
5804 curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize;
5805 buf->b_ml.ml_usedchunks--;
5806 if (curix < buf->b_ml.ml_usedchunks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 mch_memmove(buf->b_ml.ml_chunksize + curix,
5808 buf->b_ml.ml_chunksize + curix + 1,
5809 (buf->b_ml.ml_usedchunks - curix) *
5810 sizeof(chunksize_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005811 return;
5812 }
5813 ml_upd_lastbuf = buf;
5814 ml_upd_lastline = line;
5815 ml_upd_lastcurline = curline;
5816 ml_upd_lastcurix = curix;
5817}
5818
5819/*
5820 * Find offset for line or line with offset.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005821 * Find line with offset if "lnum" is 0; return remaining offset in offp
5822 * Find offset of line if "lnum" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005823 * return -1 if information is not available
5824 */
5825 long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005826ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827{
5828 linenr_T curline;
5829 int curix;
5830 long size;
5831 bhdr_T *hp;
5832 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005833 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005834 int idx;
5835 int start_idx;
5836 int text_end;
5837 long offset;
5838 int len;
5839 int ffdos = (get_fileformat(buf) == EOL_DOS);
5840 int extra = 0;
5841
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005842 // take care of cached line first
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005843 ml_flush_line(curbuf);
5844
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845 if (buf->b_ml.ml_usedchunks == -1
5846 || buf->b_ml.ml_chunksize == NULL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005847 || lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005848 return -1;
5849
5850 if (offp == NULL)
5851 offset = 0;
5852 else
5853 offset = *offp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005854 if (lnum == 0 && offset <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005855 return 1; // Not a "find offset" and offset 0 _must_ be in line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005856 /*
5857 * Find the last chunk before the one containing our line. Last chunk is
Bram Moolenaar14c75302021-08-15 14:28:40 +02005858 * special because it will never qualify.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005859 */
5860 curline = 1;
5861 curix = size = 0;
5862 while (curix < buf->b_ml.ml_usedchunks - 1
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005863 && ((lnum != 0
5864 && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005865 || (offset != 0
5866 && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize
=?UTF-8?q?Dundar=20G=C3=B6c?=d5cec1f2022-01-29 15:19:23 +00005867 + (long)ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005868 {
5869 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5870 size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize;
5871 if (offset && ffdos)
5872 size += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5873 curix++;
5874 }
5875
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005876 while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005878#ifdef FEAT_PROP_POPUP
5879 size_t textprop_total = 0;
5880#endif
5881
Bram Moolenaar071d4272004-06-13 20:20:40 +00005882 if (curline > buf->b_ml.ml_line_count
5883 || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5884 return -1;
5885 dp = (DATA_BL *)(hp->bh_data);
5886 count = (long)(buf->b_ml.ml_locked_high) -
5887 (long)(buf->b_ml.ml_locked_low) + 1;
5888 start_idx = idx = curline - buf->b_ml.ml_locked_low;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005889 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005890 text_end = dp->db_txt_end;
5891 else
5892 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005893 // Compute index of last line to use in this MEMLINE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005894 if (lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005895 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005896 if (curline + (count - idx) >= lnum)
5897 idx += lnum - curline - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005898 else
5899 idx = count - 1;
5900 }
5901 else
5902 {
5903 extra = 0;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005904 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 {
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005906#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005907 size_t textprop_size = 0;
5908
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005909 if (buf->b_has_textprop)
5910 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005911 char_u *l1, *l2;
5912
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005913 // compensate for the extra bytes taken by textprops
5914 l1 = (char_u *)dp + ((dp->db_index[idx]) & DB_INDEX_MASK);
5915 l2 = (char_u *)dp + (idx == 0 ? dp->db_txt_end
5916 : ((dp->db_index[idx - 1]) & DB_INDEX_MASK));
5917 textprop_size = (l2 - l1) - (STRLEN(l1) + 1);
5918 }
5919#endif
5920 if (!(offset >= size
5921 + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK)
5922#ifdef FEAT_PROP_POPUP
Bram Moolenaar94b6fb72020-01-17 21:00:59 +01005923 - (long)(textprop_total + textprop_size)
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005924#endif
5925 + ffdos))
5926 break;
5927
Bram Moolenaar071d4272004-06-13 20:20:40 +00005928 if (ffdos)
5929 size++;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005930#ifdef FEAT_PROP_POPUP
5931 textprop_total += textprop_size;
5932#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 if (idx == count - 1)
5934 {
5935 extra = 1;
5936 break;
5937 }
5938 idx++;
5939 }
5940 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005941#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005942 if (buf->b_has_textprop && lnum != 0)
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005943 {
5944 int i;
5945
5946 // cannot use the db_index pointer, need to get the actual text
5947 // lengths.
5948 len = 0;
5949 for (i = start_idx; i <= idx; ++i)
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005950 {
5951 char_u *p = (char_u *)dp + ((dp->db_index[i]) & DB_INDEX_MASK);
5952 len += (int)STRLEN(p) + 1;
5953 }
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005954 }
5955 else
5956#endif
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005957 len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK)
5958#ifdef FEAT_PROP_POPUP
5959 - (long)textprop_total
5960#endif
5961 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005962 size += len;
5963 if (offset != 0 && size >= offset)
5964 {
5965 if (size + ffdos == offset)
5966 *offp = 0;
5967 else if (idx == start_idx)
5968 *offp = offset - size + len;
5969 else
5970 *offp = offset - size + len
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005971 - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK))
5972#ifdef FEAT_PROP_POPUP
5973 + (long)textprop_total
5974#endif
5975 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 curline += idx - start_idx + extra;
5977 if (curline > buf->b_ml.ml_line_count)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005978 return -1; // exactly one byte beyond the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005979 return curline;
5980 }
5981 curline = buf->b_ml.ml_locked_high + 1;
5982 }
5983
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005984 if (lnum != 0)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005985 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005986 // Count extra CR characters.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005987 if (ffdos)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005988 size += lnum - 1;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005989
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005990 // Don't count the last line break if 'noeol' and ('bin' or
5991 // 'nofixeol').
Bram Moolenaar34d72d42015-07-17 14:18:08 +02005992 if ((!buf->b_p_fixeol || buf->b_p_bin) && !buf->b_p_eol
Bram Moolenaarc26f7c62018-08-20 22:53:04 +02005993 && lnum > buf->b_ml.ml_line_count)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005994 size -= ffdos + 1;
5995 }
5996
Bram Moolenaar071d4272004-06-13 20:20:40 +00005997 return size;
5998}
5999
6000/*
6001 * Goto byte in buffer with offset 'cnt'.
6002 */
6003 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01006004goto_byte(long cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005{
6006 long boff = cnt;
6007 linenr_T lnum;
6008
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01006009 ml_flush_line(curbuf); // cached line may be dirty
Bram Moolenaar071d4272004-06-13 20:20:40 +00006010 setpcmark();
6011 if (boff)
6012 --boff;
6013 lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01006014 if (lnum < 1) // past the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00006015 {
6016 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6017 curwin->w_curswant = MAXCOL;
6018 coladvance((colnr_T)MAXCOL);
6019 }
6020 else
6021 {
6022 curwin->w_cursor.lnum = lnum;
6023 curwin->w_cursor.col = (colnr_T)boff;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00006024 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006025 curwin->w_set_curswant = TRUE;
6026 }
6027 check_cursor();
6028
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01006029 // Make sure the cursor is on the first byte of a multi-byte char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006030 if (has_mbyte)
6031 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006032}
6033#endif