blob: 46e7d8a7967dd075ab930ba455aaf7001de16431 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010010// for debugging
11// #define CHECK(c, s) do { if (c) emsg((s)); } while (0)
Bram Moolenaar6f470022018-04-10 18:47:20 +020012#define CHECK(c, s) do { /**/ } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013
14/*
15 * memline.c: Contains the functions for appending, deleting and changing the
Bram Moolenaar4770d092006-01-12 23:22:24 +000016 * text lines. The memfile functions are used to store the information in
17 * blocks of memory, backed up by a file. The structure of the information is
18 * a tree. The root of the tree is a pointer block. The leaves of the tree
19 * are data blocks. In between may be several layers of pointer blocks,
20 * forming branches.
Bram Moolenaar071d4272004-06-13 20:20:40 +000021 *
22 * Three types of blocks are used:
23 * - Block nr 0 contains information for recovery
24 * - Pointer blocks contain list of pointers to other blocks.
25 * - Data blocks contain the actual text.
26 *
27 * Block nr 0 contains the block0 structure (see below).
28 *
29 * Block nr 1 is the first pointer block. It is the root of the tree.
30 * Other pointer blocks are branches.
31 *
32 * If a line is too big to fit in a single page, the block containing that
33 * line is made big enough to hold the line. It may span several pages.
34 * Otherwise all blocks are one page.
35 *
36 * A data block that was filled when starting to edit a file and was not
37 * changed since then, can have a negative block number. This means that it
38 * has not yet been assigned a place in the file. When recovering, the lines
39 * in this data block can be read from the original file. When the block is
40 * changed (lines appended/deleted/changed) or when it is flushed it gets a
41 * positive number. Use mf_trans_del() to get the new number, before calling
42 * mf_get().
43 */
44
Bram Moolenaar071d4272004-06-13 20:20:40 +000045#include "vim.h"
46
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010047#ifndef UNIX // it's in os_unix.h for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000048# include <time.h>
49#endif
50
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000051#if defined(SASC) || defined(__amigaos4__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010052# include <proto/dos.h> // for Open() and Close()
Bram Moolenaar071d4272004-06-13 20:20:40 +000053#endif
54
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010055typedef struct block0 ZERO_BL; // contents of the first block
56typedef struct pointer_block PTR_BL; // contents of a pointer block
57typedef struct data_block DATA_BL; // contents of a data block
58typedef struct pointer_entry PTR_EN; // block/line-count pair
Bram Moolenaar071d4272004-06-13 20:20:40 +000059
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010060#define DATA_ID (('d' << 8) + 'a') // data block id
61#define PTR_ID (('p' << 8) + 't') // pointer block id
62#define BLOCK0_ID0 'b' // block 0 id 0
63#define BLOCK0_ID1 '0' // block 0 id 1
64#define BLOCK0_ID1_C0 'c' // block 0 id 1 'cm' 0
65#define BLOCK0_ID1_C1 'C' // block 0 id 1 'cm' 1
66#define BLOCK0_ID1_C2 'd' // block 0 id 1 'cm' 2
Bram Moolenaar3a2a60c2023-05-27 18:02:55 +010067// BLOCK0_ID1_C3 and BLOCK0_ID1_C4 are for libsodium encryption. However, for
Bram Moolenaare1b48222023-04-24 18:11:35 +010068// these the swapfile is disabled, thus they will not be used. Added for
69// consistency anyway.
70#define BLOCK0_ID1_C3 'S' // block 0 id 1 'cm' 3
71#define BLOCK0_ID1_C4 's' // block 0 id 1 'cm' 4
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020072
73#if defined(FEAT_CRYPT)
74static int id1_codes[] = {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010075 BLOCK0_ID1_C0, // CRYPT_M_ZIP
76 BLOCK0_ID1_C1, // CRYPT_M_BF
77 BLOCK0_ID1_C2, // CRYPT_M_BF2
Christian Brabandtf573c6e2021-06-20 14:02:16 +020078 BLOCK0_ID1_C3, // CRYPT_M_SOD - Unused!
Bram Moolenaare1b48222023-04-24 18:11:35 +010079 BLOCK0_ID1_C4, // CRYPT_M_SOD2 - Unused!
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020080};
81#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000082
83/*
84 * pointer to a block, used in a pointer block
85 */
86struct pointer_entry
87{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010088 blocknr_T pe_bnum; // block number
89 linenr_T pe_line_count; // number of lines in this branch
90 linenr_T pe_old_lnum; // lnum for this block (for recovery)
91 int pe_page_count; // number of pages in block pe_bnum
Bram Moolenaar071d4272004-06-13 20:20:40 +000092};
93
94/*
95 * A pointer block contains a list of branches in the tree.
96 */
97struct pointer_block
98{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010099 short_u pb_id; // ID for pointer block: PTR_ID
100 short_u pb_count; // number of pointers in this block
101 short_u pb_count_max; // maximum value for pb_count
102 PTR_EN pb_pointer[1]; // list of pointers to blocks (actually longer)
103 // followed by empty space until end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000104};
105
Bram Moolenaarb67ba032023-04-22 21:14:26 +0100106// Value for pb_count_max.
107#define PB_COUNT_MAX(mfp) (short_u)(((mfp)->mf_page_size - offsetof(PTR_BL, pb_pointer)) / sizeof(PTR_EN))
108
Bram Moolenaar071d4272004-06-13 20:20:40 +0000109/*
110 * A data block is a leaf in the tree.
111 *
112 * The text of the lines is at the end of the block. The text of the first line
113 * in the block is put at the end, the text of the second line in front of it,
114 * etc. Thus the order of the lines is the opposite of the line number.
115 */
116struct data_block
117{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100118 short_u db_id; // ID for data block: DATA_ID
119 unsigned db_free; // free space available
120 unsigned db_txt_start; // byte where text starts
121 unsigned db_txt_end; // byte just after data block
122 linenr_T db_line_count; // number of lines in this block
123 unsigned db_index[1]; // index for start of line (actually bigger)
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100124 // followed by empty space up to db_txt_start
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100125 // followed by the text in the lines until
126 // end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000127};
128
129/*
130 * The low bits of db_index hold the actual index. The topmost bit is
131 * used for the global command to be able to mark a line.
132 * This method is not clean, but otherwise there would be at least one extra
133 * byte used for each line.
134 * The mark has to be in this place to keep it with the correct line when other
135 * lines are inserted or deleted.
136 */
137#define DB_MARKED ((unsigned)1 << ((sizeof(unsigned) * 8) - 1))
138#define DB_INDEX_MASK (~DB_MARKED)
139
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100140#define INDEX_SIZE (sizeof(unsigned)) // size of one db_index entry
zeertzjq1b438a82023-02-01 13:11:15 +0000141#define HEADER_SIZE (offsetof(DATA_BL, db_index)) // size of data block header
Bram Moolenaar071d4272004-06-13 20:20:40 +0000142
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100143#define B0_FNAME_SIZE_ORG 900 // what it was in older versions
144#define B0_FNAME_SIZE_NOCRYPT 898 // 2 bytes used for other things
145#define B0_FNAME_SIZE_CRYPT 890 // 10 bytes used for other things
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000146#define B0_UNAME_SIZE 40
147#define B0_HNAME_SIZE 40
Bram Moolenaar071d4272004-06-13 20:20:40 +0000148/*
149 * Restrict the numbers to 32 bits, otherwise most compilers will complain.
150 * This won't detect a 64 bit machine that only swaps a byte in the top 32
151 * bits, but that is crazy anyway.
152 */
153#define B0_MAGIC_LONG 0x30313233L
154#define B0_MAGIC_INT 0x20212223L
155#define B0_MAGIC_SHORT 0x10111213L
156#define B0_MAGIC_CHAR 0x55
157
158/*
159 * Block zero holds all info about the swap file.
160 *
161 * NOTE: DEFINITION OF BLOCK 0 SHOULD NOT CHANGE! It would make all existing
162 * swap files unusable!
163 *
164 * If size of block0 changes anyway, adjust MIN_SWAP_PAGE_SIZE in vim.h!!
165 *
Bram Moolenaarbae0c162007-05-10 19:30:25 +0000166 * This block is built up of single bytes, to make it portable across
Bram Moolenaar071d4272004-06-13 20:20:40 +0000167 * different machines. b0_magic_* is used to check the byte order and size of
168 * variables, because the rest of the swap file is not portable.
169 */
170struct block0
171{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100172 char_u b0_id[2]; // id for block 0: BLOCK0_ID0 and BLOCK0_ID1,
173 // BLOCK0_ID1_C0, BLOCK0_ID1_C1, etc.
174 char_u b0_version[10]; // Vim version string
175 char_u b0_page_size[4];// number of bytes per page
176 char_u b0_mtime[4]; // last modification time of file
177 char_u b0_ino[4]; // inode of b0_fname
178 char_u b0_pid[4]; // process id of creator (or 0)
179 char_u b0_uname[B0_UNAME_SIZE]; // name of user (uid if no name)
180 char_u b0_hname[B0_HNAME_SIZE]; // host name (if it has a name)
181 char_u b0_fname[B0_FNAME_SIZE_ORG]; // name of file being edited
182 long b0_magic_long; // check for byte order of long
183 int b0_magic_int; // check for byte order of int
184 short b0_magic_short; // check for byte order of short
185 char_u b0_magic_char; // check for last char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000186};
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000187
188/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000189 * Note: b0_dirty and b0_flags are put at the end of the file name. For very
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000190 * long file names in older versions of Vim they are invalid.
191 * The 'fileencoding' comes before b0_flags, with a NUL in front. But only
192 * when there is room, for very long file names it's omitted.
193 */
194#define B0_DIRTY 0x55
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200195#define b0_dirty b0_fname[B0_FNAME_SIZE_ORG - 1]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000196
197/*
198 * The b0_flags field is new in Vim 7.0.
199 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200200#define b0_flags b0_fname[B0_FNAME_SIZE_ORG - 2]
201
202/*
203 * Crypt seed goes here, 8 bytes. New in Vim 7.3.
204 * Without encryption these bytes may be used for 'fenc'.
205 */
206#define b0_seed b0_fname[B0_FNAME_SIZE_ORG - 2 - MF_SEED_LEN]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000207
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100208// The lowest two bits contain the fileformat. Zero means it's not set
209// (compatible with Vim 6.x), otherwise it's EOL_UNIX + 1, EOL_DOS + 1 or
210// EOL_MAC + 1.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000211#define B0_FF_MASK 3
212
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100213// Swap file is in directory of edited file. Used to find the file from
214// different mount points.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000215#define B0_SAME_DIR 4
216
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100217// The 'fileencoding' is at the end of b0_fname[], with a NUL in front of it.
218// When empty there is only the NUL.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000219#define B0_HAS_FENC 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100221#define STACK_INCR 5 // nr of entries added to ml_stack at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222
223/*
224 * The line number where the first mark may be is remembered.
225 * If it is 0 there are no marks at all.
226 * (always used for the current buffer only, no buffer change possible while
227 * executing a global command).
228 */
229static linenr_T lowest_marked = 0;
230
231/*
232 * arguments for ml_find_line()
233 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100234#define ML_DELETE 0x11 // delete line
235#define ML_INSERT 0x12 // insert line
236#define ML_FIND 0x13 // just find the line
237#define ML_FLUSH 0x02 // flush locked block
kylo252ae6f1d82022-02-16 19:24:07 +0000238#define ML_SIMPLE(x) ((x) & 0x10) // DEL, INS or FIND
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100240// argument for ml_upd_block0()
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200241typedef enum {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100242 UB_FNAME = 0 // update timestamp and filename
243 , UB_SAME_DIR // update the B0_SAME_DIR flag
244 , UB_CRYPT // update crypt key
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200245} upd_block0_T;
246
247#ifdef FEAT_CRYPT
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100248static void ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200249#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100250static void ml_upd_block0(buf_T *buf, upd_block0_T what);
251static void set_b0_fname(ZERO_BL *, buf_T *buf);
252static void set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100253static void add_b0_fenc(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100254static time_t swapfile_info(char_u *);
255static int recov_file_names(char_u **, char_u *, int prepend_dot);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100256static char_u *findswapname(buf_T *, char_u **, char_u *);
257static void ml_flush_line(buf_T *);
258static bhdr_T *ml_new_data(memfile_T *, int, int);
259static bhdr_T *ml_new_ptr(memfile_T *);
260static bhdr_T *ml_find_line(buf_T *, linenr_T, int);
261static int ml_add_stack(buf_T *);
262static void ml_lineadd(buf_T *, int);
263static int b0_magic_wrong(ZERO_BL *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264#ifdef CHECK_INODE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100265static int fnamecmp_ino(char_u *, char_u *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100267static void long_to_char(long, char_u *);
268static long char_to_long(char_u *);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200269#ifdef FEAT_CRYPT
Bram Moolenaar8767f522016-07-01 17:17:39 +0200270static cryptstate_T *ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200271#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272#ifdef FEAT_BYTEOFF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100273static void ml_updatechunk(buf_T *buf, long line, long len, int updtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000274#endif
275
276/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000277 * Open a new memline for "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000278 *
Bram Moolenaar4770d092006-01-12 23:22:24 +0000279 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280 */
281 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100282ml_open(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000283{
284 memfile_T *mfp;
285 bhdr_T *hp = NULL;
286 ZERO_BL *b0p;
287 PTR_BL *pp;
288 DATA_BL *dp;
289
Bram Moolenaar4770d092006-01-12 23:22:24 +0000290 /*
291 * init fields in memline struct
292 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100293 buf->b_ml.ml_stack_size = 0; // no stack yet
294 buf->b_ml.ml_stack = NULL; // no stack yet
295 buf->b_ml.ml_stack_top = 0; // nothing in the stack
296 buf->b_ml.ml_locked = NULL; // no cached block
297 buf->b_ml.ml_line_lnum = 0; // no cached line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000298#ifdef FEAT_BYTEOFF
Bram Moolenaar4770d092006-01-12 23:22:24 +0000299 buf->b_ml.ml_chunksize = NULL;
Bram Moolenaardf9070e2021-08-25 17:31:37 +0200300 buf->b_ml.ml_usedchunks = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000301#endif
302
Bram Moolenaare1004402020-10-24 20:49:43 +0200303 if (cmdmod.cmod_flags & CMOD_NOSWAPFILE)
Bram Moolenaar5803ae62014-03-23 16:04:02 +0100304 buf->b_p_swf = FALSE;
305
Bram Moolenaar4770d092006-01-12 23:22:24 +0000306 /*
307 * When 'updatecount' is non-zero swap file may be opened later.
308 */
309 if (p_uc && buf->b_p_swf)
310 buf->b_may_swap = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000311 else
Bram Moolenaar4770d092006-01-12 23:22:24 +0000312 buf->b_may_swap = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000313
Bram Moolenaar4770d092006-01-12 23:22:24 +0000314 /*
315 * Open the memfile. No swap file is created yet.
316 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000317 mfp = mf_open(NULL, 0);
318 if (mfp == NULL)
319 goto error;
320
Bram Moolenaar4770d092006-01-12 23:22:24 +0000321 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200322#ifdef FEAT_CRYPT
323 mfp->mf_buffer = buf;
324#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000325 buf->b_ml.ml_flags = ML_EMPTY;
326 buf->b_ml.ml_line_count = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000327
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328/*
329 * fill block0 struct and write page 0
330 */
331 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
332 goto error;
333 if (hp->bh_bnum != 0)
334 {
RestorerZ68ebcee2023-05-31 17:12:14 +0100335 iemsg(e_didnt_get_block_nr_zero);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000336 goto error;
337 }
338 b0p = (ZERO_BL *)(hp->bh_data);
339
340 b0p->b0_id[0] = BLOCK0_ID0;
341 b0p->b0_id[1] = BLOCK0_ID1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 b0p->b0_magic_long = (long)B0_MAGIC_LONG;
343 b0p->b0_magic_int = (int)B0_MAGIC_INT;
344 b0p->b0_magic_short = (short)B0_MAGIC_SHORT;
345 b0p->b0_magic_char = B0_MAGIC_CHAR;
Bram Moolenaar22c10562018-05-26 17:35:27 +0200346 mch_memmove(b0p->b0_version, "VIM ", 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000347 STRNCPY(b0p->b0_version + 4, Version, 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000348 long_to_char((long)mfp->mf_page_size, b0p->b0_page_size);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000349
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000350#ifdef FEAT_SPELL
351 if (!buf->b_spell)
352#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000353 {
354 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
355 b0p->b0_flags = get_fileformat(buf) + 1;
356 set_b0_fname(b0p, buf);
357 (void)get_user_name(b0p->b0_uname, B0_UNAME_SIZE);
358 b0p->b0_uname[B0_UNAME_SIZE - 1] = NUL;
359 mch_get_host_name(b0p->b0_hname, B0_HNAME_SIZE);
360 b0p->b0_hname[B0_HNAME_SIZE - 1] = NUL;
361 long_to_char(mch_get_pid(), b0p->b0_pid);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200362#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200363 ml_set_b0_crypt(buf, b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200364#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000365 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366
367 /*
368 * Always sync block number 0 to disk, so we can check the file name in
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200369 * the swap file in findswapname(). Don't do this for a help files or
370 * a spell buffer though.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 * Only works when there's a swapfile, otherwise it's done when the file
372 * is created.
373 */
374 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000375 if (!buf->b_help && !B_SPELL(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 (void)mf_sync(mfp, 0);
377
Bram Moolenaar4770d092006-01-12 23:22:24 +0000378 /*
379 * Fill in root pointer block and write page 1.
380 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 if ((hp = ml_new_ptr(mfp)) == NULL)
382 goto error;
383 if (hp->bh_bnum != 1)
384 {
RestorerZ68ebcee2023-05-31 17:12:14 +0100385 iemsg(e_didnt_get_block_nr_one);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000386 goto error;
387 }
388 pp = (PTR_BL *)(hp->bh_data);
389 pp->pb_count = 1;
390 pp->pb_pointer[0].pe_bnum = 2;
391 pp->pb_pointer[0].pe_page_count = 1;
392 pp->pb_pointer[0].pe_old_lnum = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100393 pp->pb_pointer[0].pe_line_count = 1; // line count after insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 mf_put(mfp, hp, TRUE, FALSE);
395
Bram Moolenaar4770d092006-01-12 23:22:24 +0000396 /*
397 * Allocate first data block and create an empty line 1.
398 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 if ((hp = ml_new_data(mfp, FALSE, 1)) == NULL)
400 goto error;
401 if (hp->bh_bnum != 2)
402 {
RestorerZ68ebcee2023-05-31 17:12:14 +0100403 iemsg(e_didnt_get_block_nr_two);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 goto error;
405 }
406
407 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100408 dp->db_index[0] = --dp->db_txt_start; // at end of block
Bram Moolenaar071d4272004-06-13 20:20:40 +0000409 dp->db_free -= 1 + INDEX_SIZE;
410 dp->db_line_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100411 *((char_u *)dp + dp->db_txt_start) = NUL; // empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000412
413 return OK;
414
415error:
416 if (mfp != NULL)
417 {
418 if (hp)
419 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100420 mf_close(mfp, TRUE); // will also free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000422 buf->b_ml.ml_mfp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000423 return FAIL;
424}
425
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200426#if defined(FEAT_CRYPT) || defined(PROTO)
427/*
Bram Moolenaar2be79502014-08-13 21:58:28 +0200428 * Prepare encryption for "buf" for the current key and method.
429 */
430 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100431ml_set_mfp_crypt(buf_T *buf)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200432{
Yegappan Lakshmanane8575982023-01-14 12:32:28 +0000433 if (*buf->b_p_key == NUL)
434 return;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200435
Yegappan Lakshmanane8575982023-01-14 12:32:28 +0000436 int method_nr = crypt_get_method_nr(buf);
437
438 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
439 {
440 // Generate a seed and store it in the memfile.
441 sha2_seed(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN, NULL, 0);
Bram Moolenaar2be79502014-08-13 21:58:28 +0200442 }
Yegappan Lakshmanane8575982023-01-14 12:32:28 +0000443#ifdef FEAT_SODIUM
Christian Brabandtaae58342023-04-23 17:50:22 +0100444 else if (crypt_method_is_sodium(method_nr))
Yegappan Lakshmanane8575982023-01-14 12:32:28 +0000445 crypt_sodium_randombytes_buf(buf->b_ml.ml_mfp->mf_seed,
446 MF_SEED_LEN);
447#endif
Bram Moolenaar2be79502014-08-13 21:58:28 +0200448}
449
450/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200451 * Prepare encryption for "buf" with block 0 "b0p".
Bram Moolenaare1b48222023-04-24 18:11:35 +0100452 * Note: should not be called with libsodium encryption, since xchacha20 does
453 * not support swapfile encryption.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200454 */
455 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100456ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200457{
458 if (*buf->b_p_key == NUL)
459 b0p->b0_id[1] = BLOCK0_ID1;
460 else
461 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200462 int method_nr = crypt_get_method_nr(buf);
463
464 b0p->b0_id[1] = id1_codes[method_nr];
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200465 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200466 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100467 // Generate a seed and store it in block 0 and in the memfile.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200468 sha2_seed(&b0p->b0_seed, MF_SEED_LEN, NULL, 0);
469 mch_memmove(buf->b_ml.ml_mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
470 }
471 }
472}
473
474/*
475 * Called after the crypt key or 'cryptmethod' was changed for "buf".
476 * Will apply this to the swapfile.
477 * "old_key" is the previous key. It is equal to buf->b_p_key when
478 * 'cryptmethod' is changed.
Bram Moolenaar49771f42010-07-20 17:32:38 +0200479 * "old_cm" is the previous 'cryptmethod'. It is equal to the current
480 * 'cryptmethod' when 'key' is changed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200481 */
482 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100483ml_set_crypt_key(
484 buf_T *buf,
485 char_u *old_key,
486 char_u *old_cm)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200487{
488 memfile_T *mfp = buf->b_ml.ml_mfp;
489 bhdr_T *hp;
490 int page_count;
491 int idx;
492 long error;
493 infoptr_T *ip;
494 PTR_BL *pp;
495 DATA_BL *dp;
496 blocknr_T bnum;
497 int top;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200498 int old_method;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200499
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200500 if (mfp == NULL || mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100501 return; // no memfile yet, nothing to do
Bram Moolenaarbc563362015-06-09 18:35:25 +0200502 old_method = crypt_method_nr_from_name(old_cm);
503
Bram Moolenaare1b48222023-04-24 18:11:35 +0100504 // Swapfile encryption is not supported by XChaCha20, therefore disable the
505 // swapfile to avoid plain text being written to disk.
506 if (crypt_method_is_sodium(crypt_get_method_nr(buf))
507 && *buf->b_p_key != NUL)
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200508 {
509 // close the swapfile
510 mf_close_file(buf, TRUE);
511 buf->b_p_swf = FALSE;
512 return;
513 }
Bram Moolenaare1b48222023-04-24 18:11:35 +0100514
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100515 // First make sure the swapfile is in a consistent state, using the old
516 // key and method.
Bram Moolenaarbc563362015-06-09 18:35:25 +0200517 {
518 char_u *new_key = buf->b_p_key;
519 char_u *new_buf_cm = buf->b_p_cm;
520
521 buf->b_p_key = old_key;
522 buf->b_p_cm = old_cm;
523 ml_preserve(buf, FALSE);
524 buf->b_p_key = new_key;
525 buf->b_p_cm = new_buf_cm;
526 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200527
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100528 // Set the key, method and seed to be used for reading, these must be the
529 // old values.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200530 mfp->mf_old_key = old_key;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200531 mfp->mf_old_cm = old_method;
532 if (old_method > 0 && *old_key != NUL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200533 mch_memmove(mfp->mf_old_seed, mfp->mf_seed, MF_SEED_LEN);
534
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100535 // Update block 0 with the crypt flag and may set a new seed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200536 ml_upd_block0(buf, UB_CRYPT);
537
538 if (mfp->mf_infile_count > 2)
539 {
540 /*
541 * Need to read back all data blocks from disk, decrypt them with the
542 * old key/method and mark them to be written. The algorithm is
543 * similar to what happens in ml_recover(), but we skip negative block
544 * numbers.
545 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100546 ml_flush_line(buf); // flush buffered line
547 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200548
549 hp = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100550 bnum = 1; // start with block 1
551 page_count = 1; // which is 1 page
552 idx = 0; // start with first index in block 1
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200553 error = 0;
554 buf->b_ml.ml_stack_top = 0;
Bram Moolenaard23a8232018-02-10 18:45:26 +0100555 VIM_CLEAR(buf->b_ml.ml_stack);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100556 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200557
558 for ( ; !got_int; line_breakcheck())
559 {
560 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100561 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200562
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100563 // get the block (pointer or data)
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +0000564 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200565 {
566 if (bnum == 1)
567 break;
568 ++error;
569 }
570 else
571 {
572 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100573 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200574 {
575 if (pp->pb_count == 0)
576 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100577 // empty block?
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200578 ++error;
579 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100580 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200581 {
582 if (pp->pb_pointer[idx].pe_bnum < 0)
583 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100584 // Skip data block with negative block number.
585 // Should not happen, because of the ml_preserve()
586 // above. Get same block again for next index.
Bram Moolenaar4b7214e2019-01-03 21:55:32 +0100587 ++idx;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200588 continue;
589 }
590
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100591 // going one block deeper in the tree, new entry in
592 // stack
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200593 if ((top = ml_add_stack(buf)) < 0)
594 {
595 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100596 break; // out of memory
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200597 }
598 ip = &(buf->b_ml.ml_stack[top]);
599 ip->ip_bnum = bnum;
600 ip->ip_index = idx;
601
602 bnum = pp->pb_pointer[idx].pe_bnum;
603 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200604 idx = 0;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200605 continue;
606 }
607 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100608 else // not a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200609 {
610 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100611 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200612 ++error;
613 else
614 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100615 // It is a data block, need to write it back to disk.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200616 mf_put(mfp, hp, TRUE, FALSE);
617 hp = NULL;
618 }
619 }
620 }
621
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100622 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200623 break;
624
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100625 // go one block up in the tree
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200626 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
627 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100628 idx = ip->ip_index + 1; // go to next index
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200629 page_count = 1;
630 }
Bram Moolenaarbc563362015-06-09 18:35:25 +0200631 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100632 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +0100633
634 if (error > 0)
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +0000635 emsg(_(e_error_while_updating_swap_file_crypt));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200636 }
637
638 mfp->mf_old_key = NULL;
639}
640#endif
641
Bram Moolenaar071d4272004-06-13 20:20:40 +0000642/*
643 * ml_setname() is called when the file name of "buf" has been changed.
644 * It may rename the swap file.
645 */
646 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100647ml_setname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648{
649 int success = FALSE;
650 memfile_T *mfp;
651 char_u *fname;
652 char_u *dirp;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100653#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000654 char_u *p;
655#endif
656
657 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100658 if (mfp->mf_fd < 0) // there is no swap file yet
Bram Moolenaar071d4272004-06-13 20:20:40 +0000659 {
660 /*
661 * When 'updatecount' is 0 and 'noswapfile' there is no swap file.
662 * For help files we will make a swap file now.
663 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200664 if (p_uc != 0 && (cmdmod.cmod_flags & CMOD_NOSWAPFILE) == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100665 ml_open_file(buf); // create a swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 return;
667 }
668
669 /*
670 * Try all directories in the 'directory' option.
671 */
672 dirp = p_dir;
673 for (;;)
674 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100675 if (*dirp == NUL) // tried all directories, fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000676 break;
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000677 fname = findswapname(buf, &dirp, mfp->mf_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100678 // alloc's fname
679 if (dirp == NULL) // out of memory
Bram Moolenaarf541c362011-10-26 11:44:18 +0200680 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100681 if (fname == NULL) // no file name found for this dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000682 continue;
683
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100684#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 /*
686 * Set full pathname for swap file now, because a ":!cd dir" may
687 * change directory without us knowing it.
688 */
689 p = FullName_save(fname, FALSE);
690 vim_free(fname);
691 fname = p;
692 if (fname == NULL)
693 continue;
694#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100695 // if the file name is the same we don't have to do anything
Bram Moolenaar071d4272004-06-13 20:20:40 +0000696 if (fnamecmp(fname, mfp->mf_fname) == 0)
697 {
698 vim_free(fname);
699 success = TRUE;
700 break;
701 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100702 // need to close the swap file before renaming
Bram Moolenaar071d4272004-06-13 20:20:40 +0000703 if (mfp->mf_fd >= 0)
704 {
705 close(mfp->mf_fd);
706 mfp->mf_fd = -1;
707 }
708
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100709 // try to rename the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 if (vim_rename(mfp->mf_fname, fname) == 0)
711 {
712 success = TRUE;
713 vim_free(mfp->mf_fname);
714 mfp->mf_fname = fname;
715 vim_free(mfp->mf_ffname);
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100716#if defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100717 mfp->mf_ffname = NULL; // mf_fname is full pathname already
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718#else
719 mf_set_ffname(mfp);
720#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200721 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000722 break;
723 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100724 vim_free(fname); // this fname didn't work, try another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000725 }
726
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100727 if (mfp->mf_fd == -1) // need to (re)open the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000728 {
729 mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0);
730 if (mfp->mf_fd < 0)
731 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100732 // could not (re)open the swap file, what can we do????
Bram Moolenaareaaac012022-01-02 17:00:40 +0000733 emsg(_(e_oops_lost_the_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000734 return;
735 }
Bram Moolenaarf05da212009-11-17 16:13:15 +0000736#ifdef HAVE_FD_CLOEXEC
737 {
738 int fdflags = fcntl(mfp->mf_fd, F_GETFD);
739 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +0100740 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +0000741 }
742#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 }
744 if (!success)
Bram Moolenaareaaac012022-01-02 17:00:40 +0000745 emsg(_(e_could_not_rename_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000746}
747
748/*
749 * Open a file for the memfile for all buffers that are not readonly or have
750 * been modified.
751 * Used when 'updatecount' changes from zero to non-zero.
752 */
753 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100754ml_open_files(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000755{
756 buf_T *buf;
757
Bram Moolenaar29323592016-07-24 22:04:11 +0200758 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759 if (!buf->b_p_ro || buf->b_changed)
760 ml_open_file(buf);
761}
762
763/*
764 * Open a swap file for an existing memfile, if there is no swap file yet.
765 * If we are unable to find a file name, mf_fname will be NULL
766 * and the memfile will be in memory only (no recovery possible).
767 */
768 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100769ml_open_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000770{
771 memfile_T *mfp;
772 char_u *fname;
773 char_u *dirp;
774
775 mfp = buf->b_ml.ml_mfp;
Bram Moolenaare1004402020-10-24 20:49:43 +0200776 if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf
777 || (cmdmod.cmod_flags & CMOD_NOSWAPFILE))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100778 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +0000779
Bram Moolenaara1956f62006-03-12 22:18:00 +0000780#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100781 // For a spell buffer use a temp file name.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000782 if (buf->b_spell)
783 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +0200784 fname = vim_tempname('s', FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000785 if (fname != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100786 (void)mf_open_file(mfp, fname); // consumes fname!
Bram Moolenaar4770d092006-01-12 23:22:24 +0000787 buf->b_may_swap = FALSE;
788 return;
789 }
790#endif
791
Bram Moolenaar071d4272004-06-13 20:20:40 +0000792 /*
793 * Try all directories in 'directory' option.
794 */
795 dirp = p_dir;
796 for (;;)
797 {
798 if (*dirp == NUL)
799 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100800 // There is a small chance that between choosing the swap file name
801 // and creating it, another Vim creates the file. In that case the
802 // creation will fail and we will use another directory.
803 fname = findswapname(buf, &dirp, NULL); // allocates fname
Bram Moolenaarf541c362011-10-26 11:44:18 +0200804 if (dirp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100805 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000806 if (fname == NULL)
807 continue;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100808 if (mf_open_file(mfp, fname) == OK) // consumes fname!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 {
Bram Moolenaar3a2a60c2023-05-27 18:02:55 +0100810 // don't sync yet in ml_sync_all()
811 mfp->mf_dirty = MF_DIRTY_YES_NOSYNC;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100812#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813 /*
814 * set full pathname for swap file now, because a ":!cd dir" may
815 * change directory without us knowing it.
816 */
817 mf_fullname(mfp);
818#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200819 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000820
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100821 // Flush block zero, so others can read it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000822 if (mf_sync(mfp, MFS_ZERO) == OK)
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000823 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100824 // Mark all blocks that should be in the swapfile as dirty.
825 // Needed for when the 'swapfile' option was reset, so that
826 // the swap file was deleted, and then on again.
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000827 mf_set_dirty(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 break;
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000829 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100830 // Writing block 0 failed: close the file and try another dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000831 mf_close_file(buf, FALSE);
832 }
833 }
834
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200835 if (*p_dir != NUL && mfp->mf_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000836 {
Bram Moolenaar13608d82022-08-29 15:06:50 +0100837 need_wait_return = TRUE; // call wait_return() later
Bram Moolenaar071d4272004-06-13 20:20:40 +0000838 ++no_wait_return;
Bram Moolenaareaaac012022-01-02 17:00:40 +0000839 (void)semsg(_(e_unable_to_open_swap_file_for_str_recovery_impossible),
Bram Moolenaare1704ba2012-10-03 18:25:00 +0200840 buf_spname(buf) != NULL ? buf_spname(buf) : buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000841 --no_wait_return;
842 }
843
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100844 // don't try to open a swap file again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 buf->b_may_swap = FALSE;
846}
847
848/*
849 * If still need to create a swap file, and starting to edit a not-readonly
850 * file, or reading into an existing buffer, create a swap file now.
851 */
852 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100853check_need_swap(
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200854 int newfile) // reading file into new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000855{
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200856 int old_msg_silent = msg_silent; // might be reset by an E325 message
857
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 if (curbuf->b_may_swap && (!curbuf->b_p_ro || !newfile))
859 ml_open_file(curbuf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200860 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861}
862
863/*
864 * Close memline for buffer 'buf'.
865 * If 'del_file' is TRUE, delete the swap file
866 */
867 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100868ml_close(buf_T *buf, int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000869{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100870 if (buf->b_ml.ml_mfp == NULL) // not open
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 return;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100872 mf_close(buf->b_ml.ml_mfp, del_file); // close the .swp file
Bram Moolenaarfa4873c2022-06-30 22:13:59 +0100873 if (buf->b_ml.ml_line_lnum != 0
874 && (buf->b_ml.ml_flags & (ML_LINE_DIRTY | ML_ALLOCATED)))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000875 vim_free(buf->b_ml.ml_line_ptr);
876 vim_free(buf->b_ml.ml_stack);
877#ifdef FEAT_BYTEOFF
Bram Moolenaard23a8232018-02-10 18:45:26 +0100878 VIM_CLEAR(buf->b_ml.ml_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879#endif
880 buf->b_ml.ml_mfp = NULL;
881
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100882 // Reset the "recovered" flag, give the ATTENTION prompt the next time
883 // this buffer is loaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000884 buf->b_flags &= ~BF_RECOVERED;
885}
886
887/*
888 * Close all existing memlines and memfiles.
889 * Only used when exiting.
890 * When 'del_file' is TRUE, delete the memfiles.
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000891 * But don't delete files that were ":preserve"d when we are POSIX compatible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892 */
893 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100894ml_close_all(int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000895{
896 buf_T *buf;
897
Bram Moolenaar29323592016-07-24 22:04:11 +0200898 FOR_ALL_BUFFERS(buf)
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000899 ml_close(buf, del_file && ((buf->b_flags & BF_PRESERVED) == 0
900 || vim_strchr(p_cpo, CPO_PRESERVE) == NULL));
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100901#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100902 spell_delete_wordlist(); // delete the internal wordlist
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100903#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000904#ifdef TEMPDIRNAMES
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100905 vim_deltempdir(); // delete created temp directory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906#endif
907}
908
909/*
910 * Close all memfiles for not modified buffers.
911 * Only use just before exiting!
912 */
913 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100914ml_close_notmod(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915{
916 buf_T *buf;
917
Bram Moolenaar29323592016-07-24 22:04:11 +0200918 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000919 if (!bufIsChanged(buf))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100920 ml_close(buf, TRUE); // close all not-modified buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000921}
922
923/*
924 * Update the timestamp in the .swp file.
925 * Used when the file has been written.
926 */
927 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100928ml_timestamp(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929{
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200930 ml_upd_block0(buf, UB_FNAME);
931}
932
933/*
934 * Return FAIL when the ID of "b0p" is wrong.
935 */
936 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100937ml_check_b0_id(ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200938{
939 if (b0p->b0_id[0] != BLOCK0_ID0
940 || (b0p->b0_id[1] != BLOCK0_ID1
941 && b0p->b0_id[1] != BLOCK0_ID1_C0
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200942 && b0p->b0_id[1] != BLOCK0_ID1_C1
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200943 && b0p->b0_id[1] != BLOCK0_ID1_C2
Bram Moolenaar3a2a60c2023-05-27 18:02:55 +0100944 && b0p->b0_id[1] != BLOCK0_ID1_C3
945 && b0p->b0_id[1] != BLOCK0_ID1_C4)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200946 )
947 return FAIL;
948 return OK;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000949}
950
951/*
952 * Update the timestamp or the B0_SAME_DIR flag of the .swp file.
953 */
954 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100955ml_upd_block0(buf_T *buf, upd_block0_T what)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000956{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000957 memfile_T *mfp;
958 bhdr_T *hp;
959 ZERO_BL *b0p;
960
961 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200962 if (mfp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 return;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200964 hp = mf_get(mfp, (blocknr_T)0, 1);
965 if (hp == NULL)
966 {
967#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100968 // Possibly update the seed in the memfile before there is a block0.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200969 if (what == UB_CRYPT)
970 ml_set_mfp_crypt(buf);
971#endif
972 return;
973 }
974
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200976 if (ml_check_b0_id(b0p) == FAIL)
RestorerZ68ebcee2023-05-31 17:12:14 +0100977 iemsg(e_ml_upd_block0_didnt_get_block_zero);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000979 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200980 if (what == UB_FNAME)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000981 set_b0_fname(b0p, buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200982#ifdef FEAT_CRYPT
983 else if (what == UB_CRYPT)
984 ml_set_b0_crypt(buf, b0p);
985#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100986 else // what == UB_SAME_DIR
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000987 set_b0_dir_flag(b0p, buf);
988 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000989 mf_put(mfp, hp, TRUE, FALSE);
990}
991
992/*
993 * Write file name and timestamp into block 0 of a swap file.
994 * Also set buf->b_mtime.
995 * Don't use NameBuff[]!!!
996 */
997 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100998set_b0_fname(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999{
Bram Moolenaar8767f522016-07-01 17:17:39 +02001000 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001001
1002 if (buf->b_ffname == NULL)
1003 b0p->b0_fname[0] = NUL;
1004 else
1005 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001006#if defined(MSWIN) || defined(AMIGA)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001007 // Systems that cannot translate "~user" back into a path: copy the
1008 // file name unmodified. Do use slashes instead of backslashes for
1009 // portability.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001010 vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001011# ifdef BACKSLASH_IN_FILENAME
1012 forward_slash(b0p->b0_fname);
1013# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001014#else
1015 size_t flen, ulen;
1016 char_u uname[B0_UNAME_SIZE];
1017
1018 /*
1019 * For a file under the home directory of the current user, we try to
1020 * replace the home directory path with "~user". This helps when
1021 * editing the same file on different machines over a network.
1022 * First replace home dir path with "~/" with home_replace().
1023 * Then insert the user name to get "~user/".
1024 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001025 home_replace(NULL, buf->b_ffname, b0p->b0_fname,
1026 B0_FNAME_SIZE_CRYPT, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001027 if (b0p->b0_fname[0] == '~')
1028 {
1029 flen = STRLEN(b0p->b0_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001030 // If there is no user name or it is too long, don't use "~/"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001031 if (get_user_name(uname, B0_UNAME_SIZE) == FAIL
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001032 || (ulen = STRLEN(uname)) + flen > B0_FNAME_SIZE_CRYPT - 1)
1033 vim_strncpy(b0p->b0_fname, buf->b_ffname,
1034 B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035 else
1036 {
1037 mch_memmove(b0p->b0_fname + ulen + 1, b0p->b0_fname + 1, flen);
1038 mch_memmove(b0p->b0_fname + 1, uname, ulen);
1039 }
1040 }
1041#endif
1042 if (mch_stat((char *)buf->b_ffname, &st) >= 0)
1043 {
1044 long_to_char((long)st.st_mtime, b0p->b0_mtime);
1045#ifdef CHECK_INODE
1046 long_to_char((long)st.st_ino, b0p->b0_ino);
1047#endif
1048 buf_store_time(buf, &st, buf->b_ffname);
1049 buf->b_mtime_read = buf->b_mtime;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001050 buf->b_mtime_read_ns = buf->b_mtime_ns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001051 }
1052 else
1053 {
1054 long_to_char(0L, b0p->b0_mtime);
1055#ifdef CHECK_INODE
1056 long_to_char(0L, b0p->b0_ino);
1057#endif
1058 buf->b_mtime = 0;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001059 buf->b_mtime_ns = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001060 buf->b_mtime_read = 0;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001061 buf->b_mtime_read_ns = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001062 buf->b_orig_size = 0;
1063 buf->b_orig_mode = 0;
1064 }
1065 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001066
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001067 // Also add the 'fileencoding' if there is room.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001068 add_b0_fenc(b0p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001069}
1070
1071/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001072 * Update the B0_SAME_DIR flag of the swap file. It's set if the file and the
1073 * swapfile for "buf" are in the same directory.
1074 * This is fail safe: if we are not sure the directories are equal the flag is
1075 * not set.
1076 */
1077 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001078set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001079{
1080 if (same_directory(buf->b_ml.ml_mfp->mf_fname, buf->b_ffname))
1081 b0p->b0_flags |= B0_SAME_DIR;
1082 else
1083 b0p->b0_flags &= ~B0_SAME_DIR;
1084}
1085
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001086/*
1087 * When there is room, add the 'fileencoding' to block zero.
1088 */
1089 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001090add_b0_fenc(
1091 ZERO_BL *b0p,
1092 buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001093{
1094 int n;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001095 int size = B0_FNAME_SIZE_NOCRYPT;
1096
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001097#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001098 // Without encryption use the same offset as in Vim 7.2 to be compatible.
1099 // With encryption it's OK to move elsewhere, the swap file is not
1100 // compatible anyway.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001101 if (*buf->b_p_key != NUL)
1102 size = B0_FNAME_SIZE_CRYPT;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001103#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001104
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001105 n = (int)STRLEN(buf->b_p_fenc);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001106 if ((int)STRLEN(b0p->b0_fname) + n + 1 > size)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001107 b0p->b0_flags &= ~B0_HAS_FENC;
1108 else
1109 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001110 mch_memmove((char *)b0p->b0_fname + size - n,
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001111 (char *)buf->b_p_fenc, (size_t)n);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001112 *(b0p->b0_fname + size - n - 1) = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001113 b0p->b0_flags |= B0_HAS_FENC;
1114 }
1115}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001116
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001117#if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO_UPTIME)
1118# include <sys/sysinfo.h>
1119#endif
1120
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001121#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001122/*
1123 * Return TRUE if the process with number "b0p->b0_pid" is still running.
1124 * "swap_fname" is the name of the swap file, if it's from before a reboot then
1125 * the result is FALSE;
1126 */
1127 static int
1128swapfile_process_running(ZERO_BL *b0p, char_u *swap_fname UNUSED)
1129{
Bram Moolenaare2982d62021-10-06 11:27:21 +01001130#if defined(HAVE_SYSINFO) && defined(HAVE_SYSINFO_UPTIME)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001131 stat_T st;
1132 struct sysinfo sinfo;
1133
1134 // If the system rebooted after when the swap file was written then the
1135 // process can't be running now.
1136 if (mch_stat((char *)swap_fname, &st) != -1
1137 && sysinfo(&sinfo) == 0
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001138 && st.st_mtime < time(NULL) - (
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001139# ifdef FEAT_EVAL
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001140 override_sysinfo_uptime >= 0 ? override_sysinfo_uptime :
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001141# endif
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001142 sinfo.uptime))
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001143 return FALSE;
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001144# endif
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001145 return mch_process_running(char_to_long(b0p->b0_pid));
1146}
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001147#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001148
1149/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001150 * Try to recover curbuf from the .swp file.
Bram Moolenaar99499b12019-05-23 21:35:48 +02001151 * If "checkext" is TRUE, check the extension and detect whether it is
1152 * a swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 */
1154 void
Bram Moolenaar99499b12019-05-23 21:35:48 +02001155ml_recover(int checkext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001156{
1157 buf_T *buf = NULL;
1158 memfile_T *mfp = NULL;
1159 char_u *fname;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001160 char_u *fname_used = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001161 bhdr_T *hp = NULL;
1162 ZERO_BL *b0p;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001163 int b0_ff;
1164 char_u *b0_fenc = NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001165#ifdef FEAT_CRYPT
1166 int b0_cm = -1;
1167#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001168 PTR_BL *pp;
1169 DATA_BL *dp;
1170 infoptr_T *ip;
1171 blocknr_T bnum;
1172 int page_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001173 stat_T org_stat, swp_stat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001174 int len;
1175 int directly;
1176 linenr_T lnum;
1177 char_u *p;
1178 int i;
1179 long error;
1180 int cannot_open;
1181 linenr_T line_count;
1182 int has_error;
1183 int idx;
1184 int top;
1185 int txt_start;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001186 off_T size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 int called_from_main;
1188 int serious_error = TRUE;
1189 long mtime;
1190 int attr;
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001191 int orig_file_status = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001192
1193 recoverymode = TRUE;
1194 called_from_main = (curbuf->b_ml.ml_mfp == NULL);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001195 attr = HL_ATTR(HLF_E);
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001196
1197 /*
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001198 * 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 +00001199 * Otherwise a search is done to find the swap file(s).
1200 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 fname = curbuf->b_fname;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001202 if (fname == NULL) // When there is no file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 fname = (char_u *)"";
1204 len = (int)STRLEN(fname);
Bram Moolenaar99499b12019-05-23 21:35:48 +02001205 if (checkext && len >= 4 &&
Bram Moolenaare60acc12011-05-10 16:41:25 +02001206#if defined(VMS)
Bram Moolenaar79518e22017-02-17 16:31:35 +01001207 STRNICMP(fname + len - 4, "_s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001208#else
Bram Moolenaar79518e22017-02-17 16:31:35 +01001209 STRNICMP(fname + len - 4, ".s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001210#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001211 == 0
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001212 && vim_strchr((char_u *)"abcdefghijklmnopqrstuvw",
1213 TOLOWER_ASC(fname[len - 2])) != NULL
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001214 && ASCII_ISALPHA(fname[len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001215 {
1216 directly = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001217 fname_used = vim_strsave(fname); // make a copy for mf_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 }
1219 else
1220 {
1221 directly = FALSE;
1222
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001223 // count the number of matching swap files
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001224 len = recover_names(fname, FALSE, NULL, 0, NULL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001225 if (len == 0) // no swap files found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001227 semsg(_(e_no_swap_file_found_for_str), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001228 goto theend;
1229 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001230 if (len == 1) // one swap file found, use it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001231 i = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001232 else // several swap files found, choose
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001234 // list the names of the swap files
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001235 (void)recover_names(fname, TRUE, NULL, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 msg_putchar('\n');
Bram Moolenaar32526b32019-01-19 17:43:09 +01001237 msg_puts(_("Enter number of swap file to use (0 to quit): "));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001238 i = get_number(FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001239 if (i < 1 || i > len)
1240 goto theend;
1241 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001242 // get the swap file name that will be used
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001243 (void)recover_names(fname, FALSE, NULL, i, &fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001245 if (fname_used == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001246 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001247
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001248 // When called from main() still need to initialize storage structure
Bram Moolenaar4770d092006-01-12 23:22:24 +00001249 if (called_from_main && ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001250 getout(1);
1251
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001252 /*
1253 * Allocate a buffer structure for the swap file that is used for recovery.
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001254 * Only the memline and crypt information in it are really used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001255 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001256 buf = ALLOC_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001257 if (buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001260 /*
1261 * init fields in memline struct
1262 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001263 buf->b_ml.ml_stack_size = 0; // no stack yet
1264 buf->b_ml.ml_stack = NULL; // no stack yet
1265 buf->b_ml.ml_stack_top = 0; // nothing in the stack
1266 buf->b_ml.ml_line_lnum = 0; // no cached line
1267 buf->b_ml.ml_locked = NULL; // no locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001268 buf->b_ml.ml_flags = 0;
Bram Moolenaar0fe849a2010-07-25 15:11:11 +02001269#ifdef FEAT_CRYPT
1270 buf->b_p_key = empty_option;
1271 buf->b_p_cm = empty_option;
1272#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001274 /*
1275 * open the memfile from the old swap file
1276 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001277 p = vim_strsave(fname_used); // save "fname_used" for the message:
1278 // mf_open() will consume "fname_used"!
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001279 mfp = mf_open(fname_used, O_RDONLY);
1280 fname_used = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001281 if (mfp == NULL || mfp->mf_fd < 0)
1282 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001283 if (fname_used != NULL)
Bram Moolenaareaaac012022-01-02 17:00:40 +00001284 semsg(_(e_cannot_open_str), fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001285 goto theend;
1286 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001287 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001288#ifdef FEAT_CRYPT
1289 mfp->mf_buffer = buf;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001290#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001291
1292 /*
1293 * The page size set in mf_open() might be different from the page size
1294 * used in the swap file, we must get it from block 0. But to read block
1295 * 0 we need a page size. Use the minimal size for block 0 here, it will
1296 * be set to the real value below.
1297 */
1298 mfp->mf_page_size = MIN_SWAP_PAGE_SIZE;
1299
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001300 /*
1301 * try to read block 0
1302 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001303 if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL)
1304 {
1305 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001306 msg_puts_attr(_("Unable to read block 0 from "), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001308 msg_puts_attr(_("\nMaybe no changes were made or Vim did not update the swap file."),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001309 attr | MSG_HIST);
1310 msg_end();
1311 goto theend;
1312 }
1313 b0p = (ZERO_BL *)(hp->bh_data);
1314 if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0)
1315 {
1316 msg_start();
1317 msg_outtrans_attr(mfp->mf_fname, MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001318 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001320 msg_puts_attr(_("Use Vim version 3.0.\n"), MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 msg_end();
1322 goto theend;
1323 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001324 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001326 semsg(_(e_str_does_not_look_like_vim_swap_file), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001327 goto theend;
1328 }
1329 if (b0_magic_wrong(b0p))
1330 {
1331 msg_start();
1332 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001333#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001334 if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001335 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001336 attr | MSG_HIST);
1337 else
1338#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001339 msg_puts_attr(_(" cannot be used on this computer.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001340 attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001341 msg_puts_attr(_("The file was created on "), attr | MSG_HIST);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001342 // avoid going past the end of a corrupted hostname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001343 b0p->b0_fname[0] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001344 msg_puts_attr((char *)b0p->b0_hname, attr | MSG_HIST);
1345 msg_puts_attr(_(",\nor the file has been damaged."), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001346 msg_end();
1347 goto theend;
1348 }
Bram Moolenaar1c536282007-04-26 15:21:56 +00001349
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001350#ifdef FEAT_CRYPT
K.Takataeeec2542021-06-02 13:28:16 +02001351 for (i = 0; i < (int)ARRAY_LENGTH(id1_codes); ++i)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001352 if (id1_codes[i] == b0p->b0_id[1])
1353 b0_cm = i;
1354 if (b0_cm > 0)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001355 mch_memmove(mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001356 crypt_set_cm_option(buf, b0_cm < 0 ? 0 : b0_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001357#else
1358 if (b0p->b0_id[1] != BLOCK0_ID1)
1359 {
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001360 semsg(_(e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption), mfp->mf_fname);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001361 goto theend;
1362 }
1363#endif
1364
Bram Moolenaar071d4272004-06-13 20:20:40 +00001365 /*
1366 * If we guessed the wrong page size, we have to recalculate the
1367 * highest block number in the file.
1368 */
1369 if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size))
1370 {
Bram Moolenaar1c536282007-04-26 15:21:56 +00001371 unsigned previous_page_size = mfp->mf_page_size;
1372
Bram Moolenaar071d4272004-06-13 20:20:40 +00001373 mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size));
Bram Moolenaar1c536282007-04-26 15:21:56 +00001374 if (mfp->mf_page_size < previous_page_size)
1375 {
1376 msg_start();
1377 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001378 msg_puts_attr(_(" has been damaged (page size is smaller than minimum value).\n"),
Bram Moolenaar1c536282007-04-26 15:21:56 +00001379 attr | MSG_HIST);
1380 msg_end();
1381 goto theend;
1382 }
Bram Moolenaar8767f522016-07-01 17:17:39 +02001383 if ((size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001384 mfp->mf_blocknr_max = 0; // no file or empty file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001385 else
1386 mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size);
1387 mfp->mf_infile_count = mfp->mf_blocknr_max;
Bram Moolenaar1c536282007-04-26 15:21:56 +00001388
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001389 // need to reallocate the memory used to store the data
Bram Moolenaar1c536282007-04-26 15:21:56 +00001390 p = alloc(mfp->mf_page_size);
1391 if (p == NULL)
1392 goto theend;
1393 mch_memmove(p, hp->bh_data, previous_page_size);
1394 vim_free(hp->bh_data);
1395 hp->bh_data = p;
1396 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397 }
1398
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001399 /*
1400 * If .swp file name given directly, use name from swap file for buffer.
1401 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 if (directly)
1403 {
1404 expand_env(b0p->b0_fname, NameBuff, MAXPATHL);
1405 if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL)
1406 goto theend;
1407 }
1408
1409 home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001410 smsg(_("Using swap file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001411
1412 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02001413 vim_strncpy(NameBuff, buf_spname(curbuf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 else
1415 home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001416 smsg(_("Original file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001417 msg_putchar('\n');
1418
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001419 /*
1420 * check date of swap file and original file
1421 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001422 mtime = char_to_long(b0p->b0_mtime);
1423 if (curbuf->b_ffname != NULL
1424 && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1
1425 && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1
1426 && org_stat.st_mtime > swp_stat.st_mtime)
1427 || org_stat.st_mtime != mtime))
Bram Moolenaareaaac012022-01-02 17:00:40 +00001428 emsg(_(e_warning_original_file_may_have_been_changed));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001429 out_flush();
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001430
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001431 // Get the 'fileformat' and 'fileencoding' from block zero.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001432 b0_ff = (b0p->b0_flags & B0_FF_MASK);
1433 if (b0p->b0_flags & B0_HAS_FENC)
1434 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001435 int fnsize = B0_FNAME_SIZE_NOCRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001436
1437#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001438 // Use the same size as in add_b0_fenc().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001439 if (b0p->b0_id[1] != BLOCK0_ID1)
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001440 fnsize = B0_FNAME_SIZE_CRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001441#endif
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001442 for (p = b0p->b0_fname + fnsize; p > b0p->b0_fname && p[-1] != NUL; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001443 ;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001444 b0_fenc = vim_strnsave(p, b0p->b0_fname + fnsize - p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001445 }
1446
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001447 mf_put(mfp, hp, FALSE, FALSE); // release block 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001448 hp = NULL;
1449
1450 /*
1451 * Now that we are sure that the file is going to be recovered, clear the
1452 * contents of the current buffer.
1453 */
1454 while (!(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001455 ml_delete((linenr_T)1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001456
1457 /*
1458 * Try reading the original file to obtain the values of 'fileformat',
1459 * 'fileencoding', etc. Ignore errors. The text itself is not used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001460 * When the file is encrypted the user is asked to enter the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001461 */
1462 if (curbuf->b_ffname != NULL)
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001463 orig_file_status = readfile(curbuf->b_ffname, NULL, (linenr_T)0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001464 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001465
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001466#ifdef FEAT_CRYPT
1467 if (b0_cm >= 0)
1468 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001469 // Need to ask the user for the crypt key. If this fails we continue
1470 // without a key, will probably get garbage text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001471 if (*curbuf->b_p_key != NUL)
1472 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001473 smsg(_("Swap file is encrypted: \"%s\""), fname_used);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001474 msg_puts(_("\nIf you entered a new crypt key but did not write the text file,"));
1475 msg_puts(_("\nenter the new crypt key."));
1476 msg_puts(_("\nIf you wrote the text file after changing the crypt key press enter"));
1477 msg_puts(_("\nto use the same key for text file and swap file"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001478 }
1479 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001480 smsg(_(need_key_msg), fname_used);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001481 buf->b_p_key = crypt_get_key(FALSE, FALSE);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001482 if (buf->b_p_key == NULL)
1483 buf->b_p_key = curbuf->b_p_key;
1484 else if (*buf->b_p_key == NUL)
1485 {
1486 vim_free(buf->b_p_key);
1487 buf->b_p_key = curbuf->b_p_key;
1488 }
1489 if (buf->b_p_key == NULL)
1490 buf->b_p_key = empty_option;
1491 }
1492#endif
1493
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001494 // Use the 'fileformat' and 'fileencoding' as stored in the swap file.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001495 if (b0_ff != 0)
1496 set_fileformat(b0_ff - 1, OPT_LOCAL);
1497 if (b0_fenc != NULL)
1498 {
Bram Moolenaar31e5c602022-04-15 13:53:33 +01001499 set_option_value_give_err((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001500 vim_free(b0_fenc);
1501 }
Bram Moolenaarc024b462019-06-08 18:07:21 +02001502 unchanged(curbuf, TRUE, TRUE);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001503
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001504 bnum = 1; // start with block 1
1505 page_count = 1; // which is 1 page
1506 lnum = 0; // append after line 0 in curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00001507 line_count = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001508 idx = 0; // start with first index in block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509 error = 0;
1510 buf->b_ml.ml_stack_top = 0;
1511 buf->b_ml.ml_stack = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001512 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00001513
1514 if (curbuf->b_ffname == NULL)
1515 cannot_open = TRUE;
1516 else
1517 cannot_open = FALSE;
1518
1519 serious_error = FALSE;
1520 for ( ; !got_int; line_breakcheck())
1521 {
1522 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001523 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001524
1525 /*
1526 * get block
1527 */
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001528 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 {
1530 if (bnum == 1)
1531 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001532 semsg(_(e_unable_to_read_block_one_from_str), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001533 goto theend;
1534 }
1535 ++error;
1536 ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"),
1537 (colnr_T)0, TRUE);
1538 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001539 else // there is a block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001540 {
1541 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001542 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001543 {
Bram Moolenaarb67ba032023-04-22 21:14:26 +01001544 int ptr_block_error = FALSE;
1545 if (pp->pb_count_max != PB_COUNT_MAX(mfp))
1546 {
1547 ptr_block_error = TRUE;
1548 pp->pb_count_max = PB_COUNT_MAX(mfp);
1549 }
1550 if (pp->pb_count > pp->pb_count_max)
1551 {
1552 ptr_block_error = TRUE;
1553 pp->pb_count = pp->pb_count_max;
1554 }
1555 if (ptr_block_error)
1556 emsg(_(e_warning_pointer_block_corrupted));
1557
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001558 // check line count when using pointer block first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001559 if (idx == 0 && line_count != 0)
1560 {
1561 for (i = 0; i < (int)pp->pb_count; ++i)
1562 line_count -= pp->pb_pointer[i].pe_line_count;
1563 if (line_count != 0)
1564 {
1565 ++error;
1566 ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"),
1567 (colnr_T)0, TRUE);
1568 }
1569 }
1570
1571 if (pp->pb_count == 0)
1572 {
1573 ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"),
1574 (colnr_T)0, TRUE);
1575 ++error;
1576 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001577 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaar071d4272004-06-13 20:20:40 +00001578 {
1579 if (pp->pb_pointer[idx].pe_bnum < 0)
1580 {
1581 /*
1582 * Data block with negative block number.
1583 * Try to read lines from the original file.
1584 * This is slow, but it works.
1585 */
1586 if (!cannot_open)
1587 {
1588 line_count = pp->pb_pointer[idx].pe_line_count;
1589 if (readfile(curbuf->b_ffname, NULL, lnum,
1590 pp->pb_pointer[idx].pe_old_lnum - 1,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001591 line_count, NULL, 0) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001592 cannot_open = TRUE;
1593 else
1594 lnum += line_count;
1595 }
1596 if (cannot_open)
1597 {
1598 ++error;
1599 ml_append(lnum++, (char_u *)_("???LINES MISSING"),
1600 (colnr_T)0, TRUE);
1601 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001602 ++idx; // get same block again for next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001603 continue;
1604 }
1605
1606 /*
1607 * going one block deeper in the tree
1608 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001609 if ((top = ml_add_stack(buf)) < 0) // new entry in stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001610 {
1611 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001612 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001613 }
1614 ip = &(buf->b_ml.ml_stack[top]);
1615 ip->ip_bnum = bnum;
1616 ip->ip_index = idx;
1617
1618 bnum = pp->pb_pointer[idx].pe_bnum;
1619 line_count = pp->pb_pointer[idx].pe_line_count;
1620 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaar986a0032011-06-13 01:07:27 +02001621 idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001622 continue;
1623 }
1624 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001625 else // not a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001626 {
1627 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001628 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001629 {
1630 if (bnum == 1)
1631 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001632 semsg(_(e_block_one_id_wrong_str_not_swp_file),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 mfp->mf_fname);
1634 goto theend;
1635 }
1636 ++error;
1637 ml_append(lnum++, (char_u *)_("???BLOCK MISSING"),
1638 (colnr_T)0, TRUE);
1639 }
1640 else
1641 {
1642 /*
Bram Moolenaarbf1b7132023-04-27 21:13:12 +01001643 * It is a data block.
1644 * Append all the lines in this block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001645 */
1646 has_error = FALSE;
Bram Moolenaarbf1b7132023-04-27 21:13:12 +01001647
1648 // Check the length of the block.
1649 // If wrong, use the length given in the pointer block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 if (page_count * mfp->mf_page_size != dp->db_txt_end)
1651 {
1652 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"),
1653 (colnr_T)0, TRUE);
1654 ++error;
1655 has_error = TRUE;
1656 dp->db_txt_end = page_count * mfp->mf_page_size;
1657 }
1658
Bram Moolenaarbf1b7132023-04-27 21:13:12 +01001659 // Make sure there is a NUL at the end of the block so we
1660 // don't go over the end when copying text.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001661 *((char_u *)dp + dp->db_txt_end - 1) = NUL;
1662
Bram Moolenaarbf1b7132023-04-27 21:13:12 +01001663 // Check the number of lines in the block.
1664 // If wrong, use the count in the data block.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001665 if (line_count != dp->db_line_count)
1666 {
1667 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"),
1668 (colnr_T)0, TRUE);
1669 ++error;
1670 has_error = TRUE;
1671 }
1672
Bram Moolenaarbf1b7132023-04-27 21:13:12 +01001673 int did_questions = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001674 for (i = 0; i < dp->db_line_count; ++i)
1675 {
Bram Moolenaarbf1b7132023-04-27 21:13:12 +01001676 if ((char_u *)&(dp->db_index[i])
1677 >= (char_u *)dp + dp->db_txt_start)
1678 {
1679 // line count must be wrong
1680 ++error;
1681 ml_append(lnum++,
1682 (char_u *)_("??? lines may be missing"),
1683 (colnr_T)0, TRUE);
1684 break;
1685 }
1686
Bram Moolenaar071d4272004-06-13 20:20:40 +00001687 txt_start = (dp->db_index[i] & DB_INDEX_MASK);
Bram Moolenaar740885b2009-11-03 14:33:17 +00001688 if (txt_start <= (int)HEADER_SIZE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001689 || txt_start >= (int)dp->db_txt_end)
1690 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00001691 ++error;
Bram Moolenaarbf1b7132023-04-27 21:13:12 +01001692 // avoid lots of lines with "???"
1693 if (did_questions)
1694 continue;
1695 did_questions = TRUE;
1696 p = (char_u *)"???";
Bram Moolenaar071d4272004-06-13 20:20:40 +00001697 }
1698 else
Bram Moolenaarbf1b7132023-04-27 21:13:12 +01001699 {
1700 did_questions = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001701 p = (char_u *)dp + txt_start;
Bram Moolenaarbf1b7132023-04-27 21:13:12 +01001702 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001703 ml_append(lnum++, p, (colnr_T)0, TRUE);
1704 }
1705 if (has_error)
Bram Moolenaar740885b2009-11-03 14:33:17 +00001706 ml_append(lnum++, (char_u *)_("???END"),
1707 (colnr_T)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001708 }
1709 }
1710 }
1711
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001712 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaar071d4272004-06-13 20:20:40 +00001713 break;
1714
1715 /*
1716 * go one block up in the tree
1717 */
1718 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
1719 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001720 idx = ip->ip_index + 1; // go to next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721 page_count = 1;
1722 }
1723
1724 /*
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001725 * Compare the buffer contents with the original file. When they differ
1726 * set the 'modified' flag.
1727 * Lines 1 - lnum are the new contents.
1728 * Lines lnum + 1 to ml_line_count are the original contents.
1729 * Line ml_line_count + 1 in the dummy empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 */
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001731 if (orig_file_status != OK || curbuf->b_ml.ml_line_count != lnum * 2 + 1)
1732 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001733 // Recovering an empty file results in two lines and the first line is
1734 // empty. Don't set the modified flag then.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001735 if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
1736 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001737 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001738 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001739 }
1740 }
1741 else
1742 {
1743 for (idx = 1; idx <= lnum; ++idx)
1744 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001745 // Need to copy one line, fetching the other one may flush it.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001746 p = vim_strsave(ml_get(idx));
1747 i = STRCMP(p, ml_get(idx + lnum));
1748 vim_free(p);
1749 if (i != 0)
1750 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001751 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001752 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001753 break;
1754 }
1755 }
1756 }
1757
1758 /*
1759 * Delete the lines from the original file and the dummy line from the
1760 * empty buffer. These will now be after the last line in the buffer.
1761 */
1762 while (curbuf->b_ml.ml_line_count > lnum
1763 && !(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001764 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 curbuf->b_flags |= BF_RECOVERED;
Bram Moolenaare3f50ad2021-06-09 12:33:40 +02001766 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001767
1768 recoverymode = FALSE;
1769 if (got_int)
Bram Moolenaareaaac012022-01-02 17:00:40 +00001770 emsg(_(e_recovery_interrupted));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001771 else if (error)
1772 {
1773 ++no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001774 msg(">>>>>>>>>>>>>");
Bram Moolenaareaaac012022-01-02 17:00:40 +00001775 emsg(_(e_errors_detected_while_recovering_look_for_lines_starting_with_questions));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001776 --no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001777 msg(_("See \":help E312\" for more information."));
1778 msg(">>>>>>>>>>>>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001779 }
1780 else
1781 {
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001782 if (curbuf->b_changed)
1783 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001784 msg(_("Recovery completed. You should check if everything is OK."));
1785 msg_puts(_("\n(You might want to write out this file under another name\n"));
1786 msg_puts(_("and run diff with the original file to check for changes)"));
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001787 }
1788 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001789 msg(_("Recovery completed. Buffer contents equals file contents."));
Bram Moolenaarf8835082020-11-09 21:04:17 +01001790 msg_puts(_("\nYou may want to delete the .swp file now."));
1791#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001792 if (swapfile_process_running(b0p, fname_used))
Bram Moolenaarf8835082020-11-09 21:04:17 +01001793 {
1794 // Warn there could be an active Vim on the same file, the user may
1795 // want to kill it.
1796 msg_puts(_("\nNote: process STILL RUNNING: "));
1797 msg_outnum(char_to_long(b0p->b0_pid));
1798 }
1799#endif
1800 msg_puts("\n\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001801 cmdline_row = msg_row;
1802 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001803#ifdef FEAT_CRYPT
1804 if (*buf->b_p_key != NUL && STRCMP(curbuf->b_p_key, buf->b_p_key) != 0)
1805 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001806 msg_puts(_("Using crypt key from swap file for the text file.\n"));
Bram Moolenaar31e5c602022-04-15 13:53:33 +01001807 set_option_value_give_err((char_u *)"key", 0L, buf->b_p_key, OPT_LOCAL);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001808 }
1809#endif
Bram Moolenaara4d158b2022-08-14 14:17:45 +01001810 redraw_curbuf_later(UPD_NOT_VALID);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811
1812theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001813 vim_free(fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001814 recoverymode = FALSE;
1815 if (mfp != NULL)
1816 {
1817 if (hp != NULL)
1818 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001819 mf_close(mfp, FALSE); // will also vim_free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001820 }
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001821 if (buf != NULL)
1822 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001823#ifdef FEAT_CRYPT
1824 if (buf->b_p_key != curbuf->b_p_key)
1825 free_string_option(buf->b_p_key);
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001826 free_string_option(buf->b_p_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001827#endif
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001828 vim_free(buf->b_ml.ml_stack);
1829 vim_free(buf);
1830 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001831 if (serious_error && called_from_main)
1832 ml_close(curbuf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001833 else
1834 {
1835 apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf);
1836 apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf);
1837 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838}
1839
1840/*
1841 * Find the names of swap files in current directory and the directory given
1842 * with the 'directory' option.
1843 *
1844 * Used to:
1845 * - list the swap files for "vim -r"
1846 * - count the number of swap files when recovering
1847 * - list the swap files when recovering
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001848 * - list the swap files for swapfilelist()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001849 * - find the name of the n'th swap file when recovering
1850 */
1851 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001852recover_names(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001853 char_u *fname, // base for swap file name
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001854 int do_list, // when TRUE, list the swap file names
1855 list_T *ret_list UNUSED, // when not NULL add file names to it
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001856 int nr, // when non-zero, return nr'th swap file name
1857 char_u **fname_out) // result when "nr" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001858{
1859 int num_names;
1860 char_u *(names[6]);
1861 char_u *tail;
1862 char_u *p;
1863 int num_files;
1864 int file_count = 0;
1865 char_u **files;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001866 char_u *dirp;
1867 char_u *dir_name;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001868 char_u *fname_res = NULL;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001869#ifdef HAVE_READLINK
1870 char_u fname_buf[MAXPATHL];
Bram Moolenaar64354da2010-05-25 21:37:17 +02001871#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001872
Bram Moolenaar64354da2010-05-25 21:37:17 +02001873 if (fname != NULL)
1874 {
1875#ifdef HAVE_READLINK
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001876 // Expand symlink in the file name, because the swap file is created
1877 // with the actual file instead of with the symlink.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001878 if (resolve_symlink(fname, fname_buf) == OK)
1879 fname_res = fname_buf;
1880 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001881#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001882 fname_res = fname;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001883 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001884
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001885 if (do_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001887 // use msg() to start the scrolling properly
Bram Moolenaar32526b32019-01-19 17:43:09 +01001888 msg(_("Swap files found:"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 msg_putchar('\n');
1890 }
1891
1892 /*
1893 * Do the loop for every directory in 'directory'.
1894 * First allocate some memory to put the directory name in.
1895 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001896 dir_name = alloc(STRLEN(p_dir) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001897 dirp = p_dir;
1898 while (dir_name != NULL && *dirp)
1899 {
1900 /*
1901 * Isolate a directory name from *dirp and put it in dir_name (we know
1902 * it is large enough, so use 31000 for length).
1903 * Advance dirp to next directory name.
1904 */
1905 (void)copy_option_part(&dirp, dir_name, 31000, ",");
1906
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001907 if (dir_name[0] == '.' && dir_name[1] == NUL) // check current dir
Bram Moolenaar071d4272004-06-13 20:20:40 +00001908 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001909 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001910 {
1911#ifdef VMS
1912 names[0] = vim_strsave((char_u *)"*_sw%");
1913#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001914 names[0] = vim_strsave((char_u *)"*.sw?");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001915#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001916#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001917 // For Unix names starting with a dot are special. MS-Windows
1918 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 names[1] = vim_strsave((char_u *)".*.sw?");
1920 names[2] = vim_strsave((char_u *)".sw?");
1921 num_names = 3;
1922#else
1923# ifdef VMS
1924 names[1] = vim_strsave((char_u *)".*_sw%");
1925 num_names = 2;
1926# else
1927 num_names = 1;
1928# endif
1929#endif
1930 }
1931 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001932 num_names = recov_file_names(names, fname_res, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001933 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001934 else // check directory dir_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001935 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001936 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001937 {
1938#ifdef VMS
1939 names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE);
1940#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001941 names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001942#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001943#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001944 // For Unix names starting with a dot are special. MS-Windows
1945 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001946 names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
1947 names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
1948 num_names = 3;
1949#else
1950# ifdef VMS
1951 names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE);
1952 num_names = 2;
1953# else
1954 num_names = 1;
1955# endif
1956#endif
1957 }
1958 else
1959 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001960#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01001961 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01001962
1963 p = dir_name + len;
1964 if (after_pathsep(dir_name, p) && len > 1 && p[-1] == p[-2])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001965 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001966 // Ends with '//', Use Full path for swap name
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001967 tail = make_percent_swname(dir_name, fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968 }
1969 else
1970#endif
1971 {
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001972 tail = gettail(fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001973 tail = concat_fnames(dir_name, tail, TRUE);
1974 }
1975 if (tail == NULL)
1976 num_names = 0;
1977 else
1978 {
1979 num_names = recov_file_names(names, tail, FALSE);
1980 vim_free(tail);
1981 }
1982 }
1983 }
1984
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02001985 // check for out-of-memory
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00001986 for (int i = 0; i < num_names; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001987 {
1988 if (names[i] == NULL)
1989 {
1990 for (i = 0; i < num_names; ++i)
1991 vim_free(names[i]);
1992 num_names = 0;
1993 }
1994 }
1995 if (num_names == 0)
1996 num_files = 0;
1997 else if (expand_wildcards(num_names, names, &num_files, &files,
Bram Moolenaar99499b12019-05-23 21:35:48 +02001998 EW_NOTENV|EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001999 num_files = 0;
2000
2001 /*
2002 * When no swap file found, wildcard expansion might have failed (e.g.
2003 * not able to execute the shell).
2004 * Try finding a swap file by simply adding ".swp" to the file name.
2005 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002006 if (*dirp == NUL && file_count + num_files == 0 && fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02002008 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002009 char_u *swapname;
2010
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02002011 swapname = modname(fname_res,
Bram Moolenaare60acc12011-05-10 16:41:25 +02002012#if defined(VMS)
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02002013 (char_u *)"_swp", FALSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002014#else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02002015 (char_u *)".swp", TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00002016#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02002017 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 if (swapname != NULL)
2019 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002020 if (mch_stat((char *)swapname, &st) != -1) // It exists!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002021 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02002022 files = ALLOC_ONE(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002023 if (files != NULL)
2024 {
2025 files[0] = swapname;
2026 swapname = NULL;
2027 num_files = 1;
2028 }
2029 }
2030 vim_free(swapname);
2031 }
2032 }
2033
2034 /*
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002035 * Remove swapfile name of the current buffer, it must be ignored.
2036 * But keep it for swapfilelist().
Bram Moolenaar071d4272004-06-13 20:20:40 +00002037 */
2038 if (curbuf->b_ml.ml_mfp != NULL
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002039 && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL
2040 && ret_list == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 {
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002042 for (int i = 0; i < num_files; ++i)
Bram Moolenaar99499b12019-05-23 21:35:48 +02002043 // Do not expand wildcards, on windows would try to expand
2044 // "%tmp%" in "%tmp%file".
2045 if (fullpathcmp(p, files[i], TRUE, FALSE) & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002046 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02002047 // Remove the name from files[i]. Move further entries
2048 // down. When the array becomes empty free it here, since
2049 // FreeWild() won't be called below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 vim_free(files[i]);
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00002051 if (--num_files == 0)
2052 vim_free(files);
2053 else
2054 for ( ; i < num_files; ++i)
2055 files[i] = files[i + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002056 }
2057 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002058 if (nr > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 {
2060 file_count += num_files;
2061 if (nr <= file_count)
2062 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002063 *fname_out = vim_strsave(
2064 files[nr - 1 + num_files - file_count]);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002065 dirp = (char_u *)""; // stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 }
2067 }
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002068 else if (do_list)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002069 {
2070 if (dir_name[0] == '.' && dir_name[1] == NUL)
2071 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002072 if (fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002073 msg_puts(_(" In current directory:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002075 msg_puts(_(" Using specified name:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076 }
2077 else
2078 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002079 msg_puts(_(" In directory "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002080 msg_home_replace(dir_name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002081 msg_puts(":\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002082 }
2083
2084 if (num_files)
2085 {
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002086 for (int i = 0; i < num_files; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002087 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002088 // print the swap file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 msg_outnum((long)++file_count);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002090 msg_puts(". ");
2091 msg_puts((char *)gettail(files[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002092 msg_putchar('\n');
2093 (void)swapfile_info(files[i]);
2094 }
2095 }
2096 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002097 msg_puts(_(" -- none --\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002098 out_flush();
2099 }
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002100#ifdef FEAT_EVAL
2101 else if (ret_list != NULL)
2102 {
2103 for (int i = 0; i < num_files; ++i)
2104 {
2105 char_u *name = concat_fnames(dir_name, files[i], TRUE);
2106 if (name != NULL)
2107 {
2108 list_append_string(ret_list, name, -1);
2109 vim_free(name);
2110 }
2111 }
2112 }
2113#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002114 else
2115 file_count += num_files;
2116
Bram Moolenaarc216a7a2022-12-05 13:50:55 +00002117 for (int i = 0; i < num_names; ++i)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002118 vim_free(names[i]);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002119 if (num_files > 0)
2120 FreeWild(num_files, files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002121 }
2122 vim_free(dir_name);
2123 return file_count;
2124}
2125
Bram Moolenaar4f974752019-02-17 17:44:42 +01002126#if defined(UNIX) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002127/*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002128 * Need _very_ long file names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002129 * Append the full path to name with path separators made into percent
Bram Moolenaar8b0e62c2021-10-19 22:12:25 +01002130 * signs, to "dir". An unnamed buffer is handled as "" (<currentdir>/"")
2131 * The last character in "dir" must be an extra slash or backslash, it is
2132 * removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002133 */
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002134 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002135make_percent_swname(char_u *dir, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002136{
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002137 char_u *d = NULL, *s, *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002138
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002139 f = fix_fname(name != NULL ? name : (char_u *)"");
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00002140 if (f == NULL)
2141 return NULL;
Bram Moolenaar8b0e62c2021-10-19 22:12:25 +01002142
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00002143 s = alloc(STRLEN(f) + 1);
2144 if (s != NULL)
2145 {
2146 STRCPY(s, f);
2147 for (d = s; *d != NUL; MB_PTR_ADV(d))
2148 if (vim_ispathsep(*d))
2149 *d = '%';
2150
2151 dir[STRLEN(dir) - 1] = NUL; // remove one trailing slash
2152 d = concat_fnames(dir, s, TRUE);
2153 vim_free(s);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154 }
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00002155 vim_free(f);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 return d;
2157}
2158#endif
2159
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002160#if (defined(UNIX) || defined(VMS) || defined(MSWIN)) \
2161 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
2162# define HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163static int process_still_running;
2164#endif
2165
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002166#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167/*
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002168 * Return information found in swapfile "fname" in dictionary "d".
2169 * This is used by the swapinfo() function.
2170 */
2171 void
2172get_b0_dict(char_u *fname, dict_T *d)
2173{
2174 int fd;
2175 struct block0 b0;
2176
2177 if ((fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
2178 {
2179 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
2180 {
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002181 if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002182 dict_add_string(d, "error", (char_u *)"Not a swap file");
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002183 else if (b0_magic_wrong(&b0))
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002184 dict_add_string(d, "error", (char_u *)"Magic number mismatch");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002185 else
2186 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002187 // we have swap information
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002188 dict_add_string_len(d, "version", b0.b0_version, 10);
2189 dict_add_string_len(d, "user", b0.b0_uname, B0_UNAME_SIZE);
2190 dict_add_string_len(d, "host", b0.b0_hname, B0_HNAME_SIZE);
2191 dict_add_string_len(d, "fname", b0.b0_fname, B0_FNAME_SIZE_ORG);
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002192
2193 dict_add_number(d, "pid", char_to_long(b0.b0_pid));
2194 dict_add_number(d, "mtime", char_to_long(b0.b0_mtime));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002195 dict_add_number(d, "dirty", b0.b0_dirty ? 1 : 0);
2196# ifdef CHECK_INODE
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002197 dict_add_number(d, "inode", char_to_long(b0.b0_ino));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002198# endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002199 }
2200 }
2201 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002202 dict_add_string(d, "error", (char_u *)"Cannot read file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002203 close(fd);
2204 }
2205 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002206 dict_add_string(d, "error", (char_u *)"Cannot open file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002207}
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002208#endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002209
2210/*
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002211 * Give information about an existing swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002212 * Returns timestamp (0 when unknown).
2213 */
2214 static time_t
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002215swapfile_info(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002216{
Bram Moolenaar8767f522016-07-01 17:17:39 +02002217 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 int fd;
2219 struct block0 b0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220#ifdef UNIX
2221 char_u uname[B0_UNAME_SIZE];
2222#endif
2223
Bram Moolenaar63d25552019-05-10 21:28:38 +02002224 // print the swap file date
Bram Moolenaar071d4272004-06-13 20:20:40 +00002225 if (mch_stat((char *)fname, &st) != -1)
2226 {
2227#ifdef UNIX
Bram Moolenaar63d25552019-05-10 21:28:38 +02002228 // print name of owner of the file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK)
2230 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002231 msg_puts(_(" owned by: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 msg_outtrans(uname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002233 msg_puts(_(" dated: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002234 }
2235 else
2236#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002237 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02002238 msg_puts(get_ctime(st.st_mtime, TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002239 }
Bram Moolenaar63d25552019-05-10 21:28:38 +02002240 else
2241 st.st_mtime = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002242
2243 /*
2244 * print the original file name
2245 */
2246 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2247 if (fd >= 0)
2248 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01002249 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 {
2251 if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0)
2252 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002253 msg_puts(_(" [from Vim version 3.0]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002254 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002255 else if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002256 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002257 msg_puts(_(" [does not look like a Vim swap file]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258 }
2259 else
2260 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002261 msg_puts(_(" file name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002262 if (b0.b0_fname[0] == NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002263 msg_puts(_("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002264 else
2265 msg_outtrans(b0.b0_fname);
2266
Bram Moolenaar32526b32019-01-19 17:43:09 +01002267 msg_puts(_("\n modified: "));
2268 msg_puts(b0.b0_dirty ? _("YES") : _("no"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002269
2270 if (*(b0.b0_uname) != NUL)
2271 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002272 msg_puts(_("\n user name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002273 msg_outtrans(b0.b0_uname);
2274 }
2275
2276 if (*(b0.b0_hname) != NUL)
2277 {
2278 if (*(b0.b0_uname) != NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002279 msg_puts(_(" host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002280 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002281 msg_puts(_("\n host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002282 msg_outtrans(b0.b0_hname);
2283 }
2284
2285 if (char_to_long(b0.b0_pid) != 0L)
2286 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002287 msg_puts(_("\n process ID: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002288 msg_outnum(char_to_long(b0.b0_pid));
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002289#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002290 if (swapfile_process_running(&b0, fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002291 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002292 msg_puts(_(" (STILL RUNNING)"));
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002293# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002294 process_still_running = TRUE;
2295# endif
2296 }
2297#endif
2298 }
2299
2300 if (b0_magic_wrong(&b0))
2301 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002302#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002303 if (STRNCMP(b0.b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002304 msg_puts(_("\n [not usable with this version of Vim]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002305 else
2306#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002307 msg_puts(_("\n [not usable on this computer]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002308 }
2309 }
2310 }
2311 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002312 msg_puts(_(" [cannot be read]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002313 close(fd);
2314 }
2315 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002316 msg_puts(_(" [cannot be opened]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002317 msg_putchar('\n');
2318
Bram Moolenaar63d25552019-05-10 21:28:38 +02002319 return st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002320}
2321
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002322/*
2323 * Return TRUE if the swap file looks OK and there are no changes, thus it can
2324 * be safely deleted.
2325 */
zeertzjq3c5999e2022-03-23 13:54:51 +00002326 static int
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002327swapfile_unchanged(char_u *fname)
2328{
2329 stat_T st;
2330 int fd;
2331 struct block0 b0;
2332 int ret = TRUE;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002333
2334 // must be able to stat the swap file
2335 if (mch_stat((char *)fname, &st) == -1)
2336 return FALSE;
2337
2338 // must be able to read the first block
2339 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2340 if (fd < 0)
2341 return FALSE;
2342 if (read_eintr(fd, &b0, sizeof(b0)) != sizeof(b0))
2343 {
2344 close(fd);
2345 return FALSE;
2346 }
2347
2348 // the ID and magic number must be correct
2349 if (ml_check_b0_id(&b0) == FAIL|| b0_magic_wrong(&b0))
2350 ret = FALSE;
2351
2352 // must be unchanged
2353 if (b0.b0_dirty)
2354 ret = FALSE;
2355
2356#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf8835082020-11-09 21:04:17 +01002357 // Host name must be known and must equal the current host name, otherwise
2358 // comparing pid is meaningless.
2359 if (*(b0.b0_hname) == NUL)
2360 {
2361 ret = FALSE;
2362 }
2363 else
2364 {
2365 char_u hostname[B0_HNAME_SIZE];
2366
2367 mch_get_host_name(hostname, B0_HNAME_SIZE);
2368 hostname[B0_HNAME_SIZE - 1] = NUL;
Bram Moolenaare79cdb62020-11-21 13:51:16 +01002369 b0.b0_hname[B0_HNAME_SIZE - 1] = NUL; // in case of corruption
Bram Moolenaarf8835082020-11-09 21:04:17 +01002370 if (STRICMP(b0.b0_hname, hostname) != 0)
2371 ret = FALSE;
2372 }
2373
Bram Moolenaar32aa1022019-11-02 22:54:41 +01002374 // process must be known and not be running
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002375 if (char_to_long(b0.b0_pid) == 0L || swapfile_process_running(&b0, fname))
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002376 ret = FALSE;
2377#endif
2378
Bram Moolenaarf8835082020-11-09 21:04:17 +01002379 // We do not check the user, it should be irrelevant for whether the swap
2380 // file is still useful.
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002381
2382 close(fd);
2383 return ret;
2384}
2385
Bram Moolenaar071d4272004-06-13 20:20:40 +00002386 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002387recov_file_names(char_u **names, char_u *path, int prepend_dot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002388{
2389 int num_names;
2390
Bram Moolenaar071d4272004-06-13 20:20:40 +00002391 /*
2392 * (Win32 and Win64) never short names, but do prepend a dot.
2393 * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both.
2394 * Only use the short name if it is different.
2395 */
2396 char_u *p;
2397 int i;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002398# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002399 int shortname = curbuf->b_shortname;
2400
2401 curbuf->b_shortname = FALSE;
2402# endif
2403
2404 num_names = 0;
2405
2406 /*
2407 * May also add the file name with a dot prepended, for swap file in same
2408 * dir as original file.
2409 */
2410 if (prepend_dot)
2411 {
2412 names[num_names] = modname(path, (char_u *)".sw?", TRUE);
2413 if (names[num_names] == NULL)
2414 goto end;
2415 ++num_names;
2416 }
2417
2418 /*
2419 * Form the normal swap file name pattern by appending ".sw?".
2420 */
2421#ifdef VMS
2422 names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE);
2423#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002425#endif
2426 if (names[num_names] == NULL)
2427 goto end;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002428 if (num_names >= 1) // check if we have the same name twice
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 {
2430 p = names[num_names - 1];
2431 i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]);
2432 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002433 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434
2435 if (STRCMP(p, names[num_names]) != 0)
2436 ++num_names;
2437 else
2438 vim_free(names[num_names]);
2439 }
2440 else
2441 ++num_names;
2442
Bram Moolenaar4f974752019-02-17 17:44:42 +01002443# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002444 /*
2445 * Also try with 'shortname' set, in case the file is on a DOS filesystem.
2446 */
2447 curbuf->b_shortname = TRUE;
2448#ifdef VMS
2449 names[num_names] = modname(path, (char_u *)"_sw%", FALSE);
2450#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 names[num_names] = modname(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002452#endif
2453 if (names[num_names] == NULL)
2454 goto end;
2455
2456 /*
2457 * Remove the one from 'shortname', if it's the same as with 'noshortname'.
2458 */
2459 p = names[num_names];
2460 i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]);
2461 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002462 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002463 if (STRCMP(names[num_names - 1], p) == 0)
2464 vim_free(names[num_names]);
2465 else
2466 ++num_names;
2467# endif
2468
2469end:
Bram Moolenaar4f974752019-02-17 17:44:42 +01002470# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002471 curbuf->b_shortname = shortname;
2472# endif
2473
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474 return num_names;
2475}
2476
2477/*
2478 * sync all memlines
2479 *
2480 * If 'check_file' is TRUE, check if original file exists and was not changed.
2481 * If 'check_char' is TRUE, stop syncing when character becomes available, but
2482 * always sync at least one block.
2483 */
2484 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002485ml_sync_all(int check_file, int check_char)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002486{
2487 buf_T *buf;
Bram Moolenaar8767f522016-07-01 17:17:39 +02002488 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002489
Bram Moolenaar29323592016-07-24 22:04:11 +02002490 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002491 {
Christian Brabandtf573c6e2021-06-20 14:02:16 +02002492 if (buf->b_ml.ml_mfp == NULL
2493 || buf->b_ml.ml_mfp->mf_fname == NULL
2494 || buf->b_ml.ml_mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002495 continue; // no file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002496
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002497 ml_flush_line(buf); // flush buffered line
2498 // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH);
2500 if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp)
2501 && buf->b_ffname != NULL)
2502 {
2503 /*
2504 * If the original file does not exist anymore or has been changed
2505 * call ml_preserve() to get rid of all negative numbered blocks.
2506 */
2507 if (mch_stat((char *)buf->b_ffname, &st) == -1
2508 || st.st_mtime != buf->b_mtime_read
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01002509#ifdef ST_MTIM_NSEC
2510 || st.ST_MTIM_NSEC != buf->b_mtime_read_ns
2511#endif
Bram Moolenaar914703b2010-05-31 21:59:46 +02002512 || st.st_size != buf->b_orig_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002513 {
2514 ml_preserve(buf, FALSE);
2515 did_check_timestamps = FALSE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002516 need_check_timestamps = TRUE; // give message later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002517 }
2518 }
Bram Moolenaar3a2a60c2023-05-27 18:02:55 +01002519 if (buf->b_ml.ml_mfp->mf_dirty == MF_DIRTY_YES)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002520 {
2521 (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0)
2522 | (bufIsChanged(buf) ? MFS_FLUSH : 0));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002523 if (check_char && ui_char_avail()) // character available now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002524 break;
2525 }
2526 }
2527}
2528
2529/*
2530 * sync one buffer, including negative blocks
2531 *
2532 * after this all the blocks are in the swap file
2533 *
2534 * Used for the :preserve command and when the original file has been
2535 * changed or deleted.
2536 *
2537 * when message is TRUE the success of preserving is reported
2538 */
2539 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002540ml_preserve(buf_T *buf, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002541{
2542 bhdr_T *hp;
2543 linenr_T lnum;
2544 memfile_T *mfp = buf->b_ml.ml_mfp;
2545 int status;
2546 int got_int_save = got_int;
2547
2548 if (mfp == NULL || mfp->mf_fname == NULL)
2549 {
2550 if (message)
Bram Moolenaareaaac012022-01-02 17:00:40 +00002551 emsg(_(e_cannot_preserve_there_is_no_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 return;
2553 }
2554
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002555 // We only want to stop when interrupted here, not when interrupted
2556 // before.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 got_int = FALSE;
2558
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002559 ml_flush_line(buf); // flush buffered line
2560 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002561 status = mf_sync(mfp, MFS_ALL | MFS_FLUSH);
2562
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002563 // stack is invalid after mf_sync(.., MFS_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 buf->b_ml.ml_stack_top = 0;
2565
2566 /*
2567 * Some of the data blocks may have been changed from negative to
2568 * positive block number. In that case the pointer blocks need to be
2569 * updated.
2570 *
2571 * We don't know in which pointer block the references are, so we visit
2572 * all data blocks until there are no more translations to be done (or
2573 * we hit the end of the file, which can only happen in case a write fails,
2574 * e.g. when file system if full).
2575 * ml_find_line() does the work by translating the negative block numbers
2576 * when getting the first line of each data block.
2577 */
2578 if (mf_need_trans(mfp) && !got_int)
2579 {
2580 lnum = 1;
2581 while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count)
2582 {
2583 hp = ml_find_line(buf, lnum, ML_FIND);
2584 if (hp == NULL)
2585 {
2586 status = FAIL;
2587 goto theend;
2588 }
2589 CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum");
2590 lnum = buf->b_ml.ml_locked_high + 1;
2591 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002592 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
2593 // sync the updated pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002594 if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL)
2595 status = FAIL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002596 buf->b_ml.ml_stack_top = 0; // stack is invalid now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 }
2598theend:
2599 got_int |= got_int_save;
2600
2601 if (message)
2602 {
2603 if (status == OK)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002604 msg(_("File preserved"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605 else
Bram Moolenaareaaac012022-01-02 17:00:40 +00002606 emsg(_(e_preserve_failed));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 }
2608}
2609
2610/*
2611 * NOTE: The pointer returned by the ml_get_*() functions only remains valid
2612 * until the next call!
2613 * line1 = ml_get(1);
2614 * line2 = ml_get(2); // line1 is now invalid!
2615 * Make a copy of the line if necessary.
2616 */
2617/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002618 * Return a pointer to a (read-only copy of a) line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 *
2620 * On failure an error message is given and IObuff is returned (to avoid
2621 * having to check for error everywhere).
2622 */
2623 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002624ml_get(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002625{
2626 return ml_get_buf(curbuf, lnum, FALSE);
2627}
2628
2629/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002630 * Return pointer to position "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 */
2632 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002633ml_get_pos(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002634{
2635 return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col);
2636}
2637
2638/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002639 * Return pointer to cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002640 */
2641 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002642ml_get_curline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002643{
2644 return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE);
2645}
2646
2647/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002648 * Return pointer to cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002649 */
2650 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002651ml_get_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002652{
2653 return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) +
2654 curwin->w_cursor.col);
2655}
2656
2657/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002658 * Return a pointer to a line in a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00002659 *
2660 * "will_change": if TRUE mark the buffer dirty (chars in the line will be
2661 * changed)
2662 */
2663 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002664ml_get_buf(
2665 buf_T *buf,
2666 linenr_T lnum,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002667 int will_change) // line will be changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002668{
Bram Moolenaarad40f022007-02-13 03:01:39 +00002669 bhdr_T *hp;
2670 DATA_BL *dp;
Bram Moolenaarad40f022007-02-13 03:01:39 +00002671 static int recursive = 0;
Bram Moolenaar96e7a592021-11-25 13:52:37 +00002672 static char_u questions[4];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002673
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002674 if (lnum > buf->b_ml.ml_line_count) // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002675 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002676 if (recursive == 0)
2677 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002678 // Avoid giving this message for a recursive call, may happen when
2679 // the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002680 ++recursive;
RestorerZ68ebcee2023-05-31 17:12:14 +01002681 siemsg(e_ml_get_invalid_lnum_nr, lnum);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002682 --recursive;
2683 }
Bram Moolenaarf9435e42022-02-16 16:33:28 +00002684 ml_flush_line(buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002685errorret:
Bram Moolenaar96e7a592021-11-25 13:52:37 +00002686 STRCPY(questions, "???");
Bram Moolenaaradfde112019-05-25 22:11:45 +02002687 buf->b_ml.ml_line_len = 4;
Bram Moolenaarf9435e42022-02-16 16:33:28 +00002688 buf->b_ml.ml_line_lnum = lnum;
Bram Moolenaar96e7a592021-11-25 13:52:37 +00002689 return questions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002690 }
Bram Moolenaaradfde112019-05-25 22:11:45 +02002691 if (lnum <= 0) // pretend line 0 is line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002692 lnum = 1;
2693
Bram Moolenaaradfde112019-05-25 22:11:45 +02002694 if (buf->b_ml.ml_mfp == NULL) // there are no lines
2695 {
2696 buf->b_ml.ml_line_len = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002697 return (char_u *)"";
Bram Moolenaaradfde112019-05-25 22:11:45 +02002698 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002699
Bram Moolenaar37d619f2010-03-10 14:46:26 +01002700 /*
2701 * See if it is the same line as requested last time.
2702 * Otherwise may need to flush last used line.
2703 * Don't use the last used line when 'swapfile' is reset, need to load all
2704 * blocks.
2705 */
Bram Moolenaar47b8b152007-02-07 02:41:57 +00002706 if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002707 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002708 unsigned start, end;
2709 colnr_T len;
2710 int idx;
2711
Bram Moolenaar071d4272004-06-13 20:20:40 +00002712 ml_flush_line(buf);
2713
2714 /*
2715 * Find the data block containing the line.
2716 * This also fills the stack with the blocks from the root to the data
2717 * block and releases any locked block.
2718 */
2719 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
2720 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002721 if (recursive == 0)
2722 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002723 // Avoid giving this message for a recursive call, may happen
2724 // when the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002725 ++recursive;
Bram Moolenaarcb868932019-10-26 20:56:21 +02002726 get_trans_bufname(buf);
2727 shorten_dir(NameBuff);
RestorerZ68ebcee2023-05-31 17:12:14 +01002728 siemsg(e_ml_get_cannot_find_line_nr_in_buffer_nr_str,
Bram Moolenaarcb868932019-10-26 20:56:21 +02002729 lnum, buf->b_fnum, NameBuff);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002730 --recursive;
2731 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002732 goto errorret;
2733 }
2734
2735 dp = (DATA_BL *)(hp->bh_data);
2736
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002737 idx = lnum - buf->b_ml.ml_locked_low;
2738 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
2739 // The text ends where the previous line starts. The first line ends
2740 // at the end of the block.
2741 if (idx == 0)
2742 end = dp->db_txt_end;
2743 else
2744 end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
2745 len = end - start;
2746
2747 buf->b_ml.ml_line_ptr = (char_u *)dp + start;
2748 buf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002749 buf->b_ml.ml_line_lnum = lnum;
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002750 buf->b_ml.ml_flags &= ~(ML_LINE_DIRTY | ML_ALLOCATED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002751 }
2752 if (will_change)
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002753 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002754 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002755#ifdef FEAT_EVAL
2756 if (ml_get_alloc_lines && (buf->b_ml.ml_flags & ML_ALLOCATED))
2757 // can't make the change in the data block
2758 buf->b_ml.ml_flags |= ML_LINE_DIRTY;
2759#endif
2760 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002761
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002762#ifdef FEAT_EVAL
2763 if (ml_get_alloc_lines
2764 && (buf->b_ml.ml_flags & (ML_LINE_DIRTY | ML_ALLOCATED)) == 0)
2765 {
2766 char_u *p = alloc(buf->b_ml.ml_line_len);
2767
2768 // make sure the text is in allocated memory
2769 if (p != NULL)
2770 {
2771 memmove(p, buf->b_ml.ml_line_ptr, buf->b_ml.ml_line_len);
2772 buf->b_ml.ml_line_ptr = p;
2773 buf->b_ml.ml_flags |= ML_ALLOCATED;
2774 if (will_change)
2775 // can't make the change in the data block
2776 buf->b_ml.ml_flags |= ML_LINE_DIRTY;
2777 }
2778 }
2779#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00002780 return buf->b_ml.ml_line_ptr;
2781}
2782
2783/*
2784 * Check if a line that was just obtained by a call to ml_get
2785 * is in allocated memory.
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01002786 * This ignores ML_ALLOCATED to get the same behavior as without the test
2787 * override.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002788 */
2789 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002790ml_line_alloced(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791{
2792 return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY);
2793}
2794
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002795#ifdef FEAT_PROP_POPUP
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002796/*
2797 * Add text properties that continue from the previous line.
2798 */
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002799 static void
2800add_text_props_for_append(
2801 buf_T *buf,
2802 linenr_T lnum,
2803 char_u **line,
2804 int *len,
2805 char_u **tofree)
2806{
2807 int round;
2808 int new_prop_count = 0;
2809 int count;
2810 int n;
2811 char_u *props;
Bram Moolenaarea781452019-09-04 18:53:12 +02002812 int new_len = 0; // init for gcc
Bram Moolenaar8f13d822020-09-12 21:04:23 +02002813 char_u *new_line = NULL;
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002814 textprop_T prop;
2815
2816 // Make two rounds:
2817 // 1. calculate the extra space needed
2818 // 2. allocate the space and fill it
2819 for (round = 1; round <= 2; ++round)
2820 {
2821 if (round == 2)
2822 {
2823 if (new_prop_count == 0)
2824 return; // nothing to do
2825 new_len = *len + new_prop_count * sizeof(textprop_T);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002826 new_line = alloc(new_len);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002827 if (new_line == NULL)
2828 return;
2829 mch_memmove(new_line, *line, *len);
2830 new_prop_count = 0;
2831 }
2832
2833 // Get the line above to find any props that continue in the next
2834 // line.
2835 count = get_text_props(buf, lnum, &props, FALSE);
2836 for (n = 0; n < count; ++n)
2837 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002838 mch_memmove(&prop, props + n * sizeof(textprop_T),
2839 sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002840 if (prop.tp_flags & TP_FLAG_CONT_NEXT)
2841 {
2842 if (round == 2)
2843 {
2844 prop.tp_flags |= TP_FLAG_CONT_PREV;
2845 prop.tp_col = 1;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002846 prop.tp_len = *len; // not exactly the right length
2847 mch_memmove(new_line + *len + new_prop_count
2848 * sizeof(textprop_T), &prop, sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002849 }
2850 ++new_prop_count;
2851 }
2852 }
2853 }
2854 *line = new_line;
2855 *tofree = new_line;
2856 *len = new_len;
2857}
2858#endif
2859
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002861ml_append_int(
2862 buf_T *buf,
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002863 linenr_T lnum, // append after this line (can be 0)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002864 char_u *line_arg, // text of the new line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002865 colnr_T len_arg, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002866 int flags) // ML_APPEND_ flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002867{
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002868 char_u *line = line_arg;
2869 colnr_T len = len_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002870 int i;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002871 int line_count; // number of indexes in current block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 int offset;
2873 int from, to;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002874 int space_needed; // space needed for new line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002875 int page_size;
2876 int page_count;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002877 int db_idx; // index for lnum in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002878 bhdr_T *hp;
2879 memfile_T *mfp;
2880 DATA_BL *dp;
2881 PTR_BL *pp;
2882 infoptr_T *ip;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002883#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002884 char_u *tofree = NULL;
Bram Moolenaar50652b02022-08-07 21:48:37 +01002885# ifdef FEAT_BYTEOFF
2886 colnr_T text_len = 0; // text len with NUL without text properties
2887# endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002888#endif
2889 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002890
Bram Moolenaar071d4272004-06-13 20:20:40 +00002891 if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002892 return FAIL; // lnum out of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00002893
2894 if (lowest_marked && lowest_marked > lnum)
2895 lowest_marked = lnum + 1;
2896
2897 if (len == 0)
Bram Moolenaar50652b02022-08-07 21:48:37 +01002898 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002899 len = (colnr_T)STRLEN(line) + 1; // space needed for the text
Bram Moolenaar50652b02022-08-07 21:48:37 +01002900#if defined(FEAT_PROP_POPUP) && defined(FEAT_BYTEOFF)
2901 text_len = len;
2902#endif
2903 }
2904#if defined(FEAT_PROP_POPUP) && defined(FEAT_BYTEOFF)
2905 else if (curbuf->b_has_textprop)
2906 // "len" may include text properties, get the length of the text.
2907 text_len = (colnr_T)STRLEN(line) + 1;
2908 else
2909 text_len = len;
2910#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002911
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002912#ifdef FEAT_PROP_POPUP
Bram Moolenaar840f91f2021-05-26 22:32:10 +02002913 if (curbuf->b_has_textprop && lnum > 0
2914 && !(flags & (ML_APPEND_UNDO | ML_APPEND_NOPROP)))
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002915 // Add text properties that continue from the previous line.
2916 add_text_props_for_append(buf, lnum, &line, &len, &tofree);
2917#endif
2918
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002919 space_needed = len + INDEX_SIZE; // space needed for text + index
Bram Moolenaar071d4272004-06-13 20:20:40 +00002920
2921 mfp = buf->b_ml.ml_mfp;
2922 page_size = mfp->mf_page_size;
2923
2924/*
2925 * find the data block containing the previous line
2926 * This also fills the stack with the blocks from the root to the data block
2927 * This also releases any locked block.
2928 */
2929 if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum,
2930 ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002931 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002932
2933 buf->b_ml.ml_flags &= ~ML_EMPTY;
2934
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002935 if (lnum == 0) // got line one instead, correct db_idx
2936 db_idx = -1; // careful, it is negative!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002937 else
2938 db_idx = lnum - buf->b_ml.ml_locked_low;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002939 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002940 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2941
2942 dp = (DATA_BL *)(hp->bh_data);
2943
2944/*
2945 * If
2946 * - there is not enough room in the current block
2947 * - appending to the last line in the block
2948 * - not appending to the last line in the file
2949 * insert in front of the next block.
2950 */
2951 if ((int)dp->db_free < space_needed && db_idx == line_count - 1
2952 && lnum < buf->b_ml.ml_line_count)
2953 {
2954 /*
2955 * Now that the line is not going to be inserted in the block that we
2956 * expected, the line count has to be adjusted in the pointer blocks
2957 * by using ml_locked_lineadd.
2958 */
2959 --(buf->b_ml.ml_locked_lineadd);
2960 --(buf->b_ml.ml_locked_high);
2961 if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002962 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002963
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002964 db_idx = -1; // careful, it is negative!
2965 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2967 CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1");
2968
2969 dp = (DATA_BL *)(hp->bh_data);
2970 }
2971
2972 ++buf->b_ml.ml_line_count;
2973
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002974 if ((int)dp->db_free >= space_needed) // enough room in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 {
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002976 /*
2977 * Insert the new line in an existing data block, or in the data block
2978 * allocated above.
2979 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 dp->db_txt_start -= len;
2981 dp->db_free -= space_needed;
2982 ++(dp->db_line_count);
2983
2984 /*
2985 * move the text of the lines that follow to the front
2986 * adjust the indexes of the lines that follow
2987 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002988 if (line_count > db_idx + 1) // if there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002989 {
2990 /*
2991 * Offset is the start of the previous line.
2992 * This will become the character just after the new line.
2993 */
2994 if (db_idx < 0)
2995 offset = dp->db_txt_end;
2996 else
2997 offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK);
2998 mch_memmove((char *)dp + dp->db_txt_start,
2999 (char *)dp + dp->db_txt_start + len,
3000 (size_t)(offset - (dp->db_txt_start + len)));
3001 for (i = line_count - 1; i > db_idx; --i)
3002 dp->db_index[i + 1] = dp->db_index[i] - len;
3003 dp->db_index[db_idx + 1] = offset - len;
3004 }
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003005 else
3006 // add line at the end (which is the start of the text)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003007 dp->db_index[db_idx + 1] = dp->db_txt_start;
3008
3009 /*
3010 * copy the text into the block
3011 */
3012 mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003013 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003014 dp->db_index[db_idx + 1] |= DB_MARKED;
3015
3016 /*
3017 * Mark the block dirty.
3018 */
3019 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003020 if (!(flags & ML_APPEND_NEW))
Bram Moolenaar071d4272004-06-13 20:20:40 +00003021 buf->b_ml.ml_flags |= ML_LOCKED_POS;
3022 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003023 else // not enough space in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003025 long line_count_left, line_count_right;
3026 int page_count_left, page_count_right;
3027 bhdr_T *hp_left;
3028 bhdr_T *hp_right;
3029 bhdr_T *hp_new;
3030 int lines_moved;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003031 int data_moved = 0; // init to shut up gcc
3032 int total_moved = 0; // init to shut up gcc
Bram Moolenaar071d4272004-06-13 20:20:40 +00003033 DATA_BL *dp_right, *dp_left;
3034 int stack_idx;
3035 int in_left;
3036 int lineadd;
3037 blocknr_T bnum_left, bnum_right;
3038 linenr_T lnum_left, lnum_right;
3039 int pb_idx;
3040 PTR_BL *pp_new;
3041
3042 /*
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003043 * There is not enough room, we have to create a new data block and
3044 * copy some lines into it.
3045 * Then we have to insert an entry in the pointer block.
3046 * If this pointer block also is full, we go up another block, and so
3047 * on, up to the root if necessary.
3048 * The line counts in the pointer blocks have already been adjusted by
3049 * ml_find_line().
3050 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00003051 * We are going to allocate a new data block. Depending on the
3052 * situation it will be put to the left or right of the existing
3053 * block. If possible we put the new line in the left block and move
3054 * the lines after it to the right block. Otherwise the new line is
3055 * also put in the right block. This method is more efficient when
3056 * inserting a lot of lines at one place.
3057 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003058 if (db_idx < 0) // left block is new, right block is existing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003059 {
3060 lines_moved = 0;
3061 in_left = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003062 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003064 else // left block is existing, right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 {
3066 lines_moved = line_count - db_idx - 1;
3067 if (lines_moved == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003068 in_left = FALSE; // put new line in right block
3069 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00003070 else
3071 {
3072 data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) -
3073 dp->db_txt_start;
3074 total_moved = data_moved + lines_moved * INDEX_SIZE;
3075 if ((int)dp->db_free + total_moved >= space_needed)
3076 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003077 in_left = TRUE; // put new line in left block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003078 space_needed = total_moved;
3079 }
3080 else
3081 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003082 in_left = FALSE; // put new line in right block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003083 space_needed += total_moved;
3084 }
3085 }
3086 }
3087
3088 page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003089 if ((hp_new = ml_new_data(mfp, flags & ML_APPEND_NEW, page_count))
3090 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003091 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003092 // correct line counts in pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00003093 --(buf->b_ml.ml_locked_lineadd);
3094 --(buf->b_ml.ml_locked_high);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003095 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003097 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098 {
3099 hp_left = hp_new;
3100 hp_right = hp;
3101 line_count_left = 0;
3102 line_count_right = line_count;
3103 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003104 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003105 {
3106 hp_left = hp;
3107 hp_right = hp_new;
3108 line_count_left = line_count;
3109 line_count_right = 0;
3110 }
3111 dp_right = (DATA_BL *)(hp_right->bh_data);
3112 dp_left = (DATA_BL *)(hp_left->bh_data);
3113 bnum_left = hp_left->bh_bnum;
3114 bnum_right = hp_right->bh_bnum;
3115 page_count_left = hp_left->bh_page_count;
3116 page_count_right = hp_right->bh_page_count;
3117
3118 /*
3119 * May move the new line into the right/new block.
3120 */
3121 if (!in_left)
3122 {
3123 dp_right->db_txt_start -= len;
3124 dp_right->db_free -= len + INDEX_SIZE;
3125 dp_right->db_index[0] = dp_right->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003126 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003127 dp_right->db_index[0] |= DB_MARKED;
3128
3129 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3130 line, (size_t)len);
3131 ++line_count_right;
3132 }
3133 /*
3134 * may move lines from the left/old block to the right/new one.
3135 */
3136 if (lines_moved)
3137 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00003138 dp_right->db_txt_start -= data_moved;
3139 dp_right->db_free -= total_moved;
3140 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3141 (char *)dp_left + dp_left->db_txt_start,
3142 (size_t)data_moved);
3143 offset = dp_right->db_txt_start - dp_left->db_txt_start;
3144 dp_left->db_txt_start += data_moved;
3145 dp_left->db_free += total_moved;
3146
3147 /*
3148 * update indexes in the new block
3149 */
3150 for (to = line_count_right, from = db_idx + 1;
3151 from < line_count_left; ++from, ++to)
3152 dp_right->db_index[to] = dp->db_index[from] + offset;
3153 line_count_right += lines_moved;
3154 line_count_left -= lines_moved;
3155 }
3156
3157 /*
3158 * May move the new line into the left (old or new) block.
3159 */
3160 if (in_left)
3161 {
3162 dp_left->db_txt_start -= len;
3163 dp_left->db_free -= len + INDEX_SIZE;
3164 dp_left->db_index[line_count_left] = dp_left->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003165 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003166 dp_left->db_index[line_count_left] |= DB_MARKED;
3167 mch_memmove((char *)dp_left + dp_left->db_txt_start,
3168 line, (size_t)len);
3169 ++line_count_left;
3170 }
3171
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003172 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003173 {
3174 lnum_left = lnum + 1;
3175 lnum_right = 0;
3176 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003177 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003178 {
3179 lnum_left = 0;
3180 if (in_left)
3181 lnum_right = lnum + 2;
3182 else
3183 lnum_right = lnum + 1;
3184 }
3185 dp_left->db_line_count = line_count_left;
3186 dp_right->db_line_count = line_count_right;
3187
3188 /*
3189 * release the two data blocks
3190 * The new one (hp_new) already has a correct blocknumber.
3191 * The old one (hp, in ml_locked) gets a positive blocknumber if
3192 * we changed it and we are not editing a new file.
3193 */
3194 if (lines_moved || in_left)
3195 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003196 if (!(flags & ML_APPEND_NEW) && db_idx >= 0 && in_left)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003197 buf->b_ml.ml_flags |= ML_LOCKED_POS;
3198 mf_put(mfp, hp_new, TRUE, FALSE);
3199
3200 /*
3201 * flush the old data block
3202 * set ml_locked_lineadd to 0, because the updating of the
3203 * pointer blocks is done below
3204 */
3205 lineadd = buf->b_ml.ml_locked_lineadd;
3206 buf->b_ml.ml_locked_lineadd = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003207 ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003208
3209 /*
3210 * update pointer blocks for the new data block
3211 */
3212 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3213 --stack_idx)
3214 {
3215 ip = &(buf->b_ml.ml_stack[stack_idx]);
3216 pb_idx = ip->ip_index;
3217 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003218 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003219 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003220 if (pp->pb_id != PTR_ID)
3221 {
RestorerZ68ebcee2023-05-31 17:12:14 +01003222 iemsg(e_pointer_block_id_wrong_three);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003223 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003224 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003225 }
3226 /*
3227 * TODO: If the pointer block is full and we are adding at the end
3228 * try to insert in front of the next block
3229 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003230 // block not full, add one entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003231 if (pp->pb_count < pp->pb_count_max)
3232 {
3233 if (pb_idx + 1 < (int)pp->pb_count)
3234 mch_memmove(&pp->pb_pointer[pb_idx + 2],
3235 &pp->pb_pointer[pb_idx + 1],
3236 (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN));
3237 ++pp->pb_count;
3238 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3239 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3240 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3241 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3242 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3243 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3244
3245 if (lnum_left != 0)
3246 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3247 if (lnum_right != 0)
3248 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3249
3250 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003251 buf->b_ml.ml_stack_top = stack_idx + 1; // truncate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003252
3253 if (lineadd)
3254 {
3255 --(buf->b_ml.ml_stack_top);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003256 // fix line count for rest of blocks in the stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003257 ml_lineadd(buf, lineadd);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003258 // fix stack itself
Bram Moolenaar071d4272004-06-13 20:20:40 +00003259 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
3260 lineadd;
3261 ++(buf->b_ml.ml_stack_top);
3262 }
3263
3264 /*
3265 * We are finished, break the loop here.
3266 */
3267 break;
3268 }
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003269 // pointer block full
3270 /*
3271 * split the pointer block
3272 * allocate a new pointer block
3273 * move some of the pointer into the new block
3274 * prepare for updating the parent block
3275 */
3276 for (;;) // do this twice when splitting block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003277 {
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003278 hp_new = ml_new_ptr(mfp);
3279 if (hp_new == NULL) // TODO: try to fix tree
3280 goto theend;
3281 pp_new = (PTR_BL *)(hp_new->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003282
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003283 if (hp->bh_bnum != 1)
3284 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003285
Bram Moolenaar071d4272004-06-13 20:20:40 +00003286 /*
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003287 * if block 1 becomes full the tree is given an extra level
3288 * The pointers from block 1 are moved into the new block.
3289 * block 1 is updated to point to the new block
3290 * then continue to split the new block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003291 */
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003292 mch_memmove(pp_new, pp, (size_t)page_size);
3293 pp->pb_count = 1;
3294 pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum;
3295 pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count;
3296 pp->pb_pointer[0].pe_old_lnum = 1;
3297 pp->pb_pointer[0].pe_page_count = 1;
3298 mf_put(mfp, hp, TRUE, FALSE); // release block 1
3299 hp = hp_new; // new block is to be split
3300 pp = pp_new;
3301 CHECK(stack_idx != 0, _("stack_idx should be 0"));
3302 ip->ip_index = 0;
3303 ++stack_idx; // do block 1 again later
3304 }
3305 /*
3306 * move the pointers after the current one to the new block
3307 * If there are none, the new entry will be in the new block.
3308 */
3309 total_moved = pp->pb_count - pb_idx - 1;
3310 if (total_moved)
3311 {
3312 mch_memmove(&pp_new->pb_pointer[0],
Bram Moolenaar071d4272004-06-13 20:20:40 +00003313 &pp->pb_pointer[pb_idx + 1],
3314 (size_t)(total_moved) * sizeof(PTR_EN));
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003315 pp_new->pb_count = total_moved;
3316 pp->pb_count -= total_moved - 1;
3317 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3318 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3319 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3320 if (lnum_right)
3321 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003322 }
=?UTF-8?q?Dundar=20G=C3=B6c?=f26c1612022-04-07 13:26:34 +01003323 else
3324 {
3325 pp_new->pb_count = 1;
3326 pp_new->pb_pointer[0].pe_bnum = bnum_right;
3327 pp_new->pb_pointer[0].pe_line_count = line_count_right;
3328 pp_new->pb_pointer[0].pe_page_count = page_count_right;
3329 pp_new->pb_pointer[0].pe_old_lnum = lnum_right;
3330 }
3331 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3332 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3333 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3334 if (lnum_left)
3335 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3336 lnum_left = 0;
3337 lnum_right = 0;
3338
3339 /*
3340 * recompute line counts
3341 */
3342 line_count_right = 0;
3343 for (i = 0; i < (int)pp_new->pb_count; ++i)
3344 line_count_right += pp_new->pb_pointer[i].pe_line_count;
3345 line_count_left = 0;
3346 for (i = 0; i < (int)pp->pb_count; ++i)
3347 line_count_left += pp->pb_pointer[i].pe_line_count;
3348
3349 bnum_left = hp->bh_bnum;
3350 bnum_right = hp_new->bh_bnum;
3351 page_count_left = 1;
3352 page_count_right = 1;
3353 mf_put(mfp, hp, TRUE, FALSE);
3354 mf_put(mfp, hp_new, TRUE, FALSE);
3355
Bram Moolenaar071d4272004-06-13 20:20:40 +00003356 }
3357
3358 /*
3359 * Safety check: fallen out of for loop?
3360 */
3361 if (stack_idx < 0)
3362 {
RestorerZ68ebcee2023-05-31 17:12:14 +01003363 iemsg(e_updated_too_many_blocks);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003364 buf->b_ml.ml_stack_top = 0; // invalidate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003365 }
3366 }
3367
3368#ifdef FEAT_BYTEOFF
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003369 // The line was inserted below 'lnum'
Bram Moolenaar50652b02022-08-07 21:48:37 +01003370 ml_updatechunk(buf, lnum + 1,
3371# ifdef FEAT_PROP_POPUP
3372 (long)text_len
3373# else
3374 (long)len
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003375# endif
Bram Moolenaar50652b02022-08-07 21:48:37 +01003376 , ML_CHNK_ADDLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377#endif
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003378
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003380 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003381 {
3382 if (STRLEN(line) > 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003383 netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line));
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003384 netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003385 (char_u *)"\n", 1);
3386 }
3387#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003388#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003389 if (buf->b_write_to_channel)
3390 channel_write_new_lines(buf);
3391#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003392 ret = OK;
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003393
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003394theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003395#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003396 vim_free(tofree);
3397#endif
3398 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399}
3400
3401/*
Bram Moolenaar250e3112019-07-15 23:02:14 +02003402 * Flush any pending change and call ml_append_int()
3403 */
3404 static int
3405ml_append_flush(
3406 buf_T *buf,
3407 linenr_T lnum, // append after this line (can be 0)
3408 char_u *line, // text of the new line
3409 colnr_T len, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003410 int flags) // ML_APPEND_ flags
Bram Moolenaar250e3112019-07-15 23:02:14 +02003411{
3412 if (lnum > buf->b_ml.ml_line_count)
3413 return FAIL; // lnum out of range
3414
3415 if (buf->b_ml.ml_line_lnum != 0)
3416 // This may also invoke ml_append_int().
3417 ml_flush_line(buf);
3418
3419#ifdef FEAT_EVAL
3420 // When inserting above recorded changes: flush the changes before changing
3421 // the text. Then flush the cached line, it may become invalid.
3422 may_invoke_listeners(buf, lnum + 1, lnum + 1, 1);
3423 if (buf->b_ml.ml_line_lnum != 0)
3424 ml_flush_line(buf);
3425#endif
3426
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003427 return ml_append_int(buf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003428}
3429
3430/*
3431 * Append a line after lnum (may be 0 to insert a line in front of the file).
3432 * "line" does not need to be allocated, but can't be another line in a
3433 * buffer, unlocking may make it invalid.
3434 *
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003435 * "newfile": TRUE when starting to edit a new file, meaning that pe_old_lnum
Bram Moolenaar250e3112019-07-15 23:02:14 +02003436 * will be set for recovery
3437 * Check: The caller of this function should probably also call
3438 * appended_lines().
3439 *
3440 * return FAIL for failure, OK otherwise
3441 */
3442 int
3443ml_append(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003444 linenr_T lnum, // append after this line (can be 0)
3445 char_u *line, // text of the new line
3446 colnr_T len, // length of new line, including NUL, or 0
3447 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003448{
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003449 return ml_append_flags(lnum, line, len, newfile ? ML_APPEND_NEW : 0);
3450}
3451
3452 int
3453ml_append_flags(
3454 linenr_T lnum, // append after this line (can be 0)
3455 char_u *line, // text of the new line
3456 colnr_T len, // length of new line, including NUL, or 0
3457 int flags) // ML_APPEND_ values
3458{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003459 // When starting up, we might still need to create the memfile
Bram Moolenaar250e3112019-07-15 23:02:14 +02003460 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
3461 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003462 return ml_append_flush(curbuf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003463}
3464
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003465
Bram Moolenaar9f28eeb2022-05-16 10:04:51 +01003466#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(FEAT_PROP_POPUP) \
3467 || defined(PROTO)
Bram Moolenaar250e3112019-07-15 23:02:14 +02003468/*
3469 * Like ml_append() but for an arbitrary buffer. The buffer must already have
3470 * a memline.
3471 */
3472 int
3473ml_append_buf(
3474 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003475 linenr_T lnum, // append after this line (can be 0)
3476 char_u *line, // text of the new line
3477 colnr_T len, // length of new line, including NUL, or 0
3478 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003479{
3480 if (buf->b_ml.ml_mfp == NULL)
3481 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003482 return ml_append_flush(buf, lnum, line, len, newfile ? ML_APPEND_NEW : 0);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003483}
3484#endif
3485
3486/*
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003487 * Replace line "lnum", with buffering, in current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003488 *
Bram Moolenaar1056d982006-03-09 22:37:52 +00003489 * If "copy" is TRUE, make a copy of the line, otherwise the line has been
Bram Moolenaar071d4272004-06-13 20:20:40 +00003490 * copied to allocated memory already.
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003491 * If "copy" is FALSE the "line" may be freed to add text properties!
3492 * Do not use it after calling ml_replace().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003493 *
3494 * Check: The caller of this function should probably also call
Bram Moolenaara4d158b2022-08-14 14:17:45 +01003495 * changed_lines(), unless update_screen(UPD_NOT_VALID) is used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 *
3497 * return FAIL for failure, OK otherwise
3498 */
3499 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003500ml_replace(linenr_T lnum, char_u *line, int copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003501{
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003502 colnr_T len = -1;
3503
3504 if (line != NULL)
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003505 len = (colnr_T)STRLEN(line);
Bram Moolenaarccae4672019-01-04 15:09:57 +01003506 return ml_replace_len(lnum, line, len, FALSE, copy);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003507}
3508
Bram Moolenaarccae4672019-01-04 15:09:57 +01003509/*
3510 * Replace a line for the current buffer. Like ml_replace() with:
3511 * "len_arg" is the length of the text, excluding NUL.
3512 * If "has_props" is TRUE then "line_arg" includes the text properties and
3513 * "len_arg" includes the NUL of the text.
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01003514 * When "copy" is TRUE copy the text into allocated memory, otherwise
3515 * "line_arg" must be allocated and will be consumed here.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003516 */
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003517 int
Bram Moolenaarccae4672019-01-04 15:09:57 +01003518ml_replace_len(
3519 linenr_T lnum,
3520 char_u *line_arg,
3521 colnr_T len_arg,
3522 int has_props,
3523 int copy)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003524{
3525 char_u *line = line_arg;
3526 colnr_T len = len_arg;
3527
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003528 if (line == NULL) // just checking...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003529 return FAIL;
3530
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003531 // When starting up, we might still need to create the memfile
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003532 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003533 return FAIL;
3534
Bram Moolenaarccae4672019-01-04 15:09:57 +01003535 if (!has_props)
3536 ++len; // include the NUL after the text
3537 if (copy)
3538 {
3539 // copy the line to allocated memory
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003540#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003541 if (has_props)
3542 line = vim_memsave(line, len);
3543 else
3544#endif
3545 line = vim_strnsave(line, len - 1);
3546 if (line == NULL)
3547 return FAIL;
3548 }
3549
Bram Moolenaar071d4272004-06-13 20:20:40 +00003550#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003551 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003552 {
3553 netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum)));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003554 netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003555 }
3556#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003557 if (curbuf->b_ml.ml_line_lnum != lnum)
3558 {
3559 // another line is buffered, flush it
3560 ml_flush_line(curbuf);
3561
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003562#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003563 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003564 // Need to fetch the old line to copy over any text properties.
3565 ml_get_buf(curbuf, lnum, TRUE);
3566#endif
3567 }
3568
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003569#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003570 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003571 {
3572 size_t oldtextlen = STRLEN(curbuf->b_ml.ml_line_ptr) + 1;
3573
3574 if (oldtextlen < (size_t)curbuf->b_ml.ml_line_len)
3575 {
3576 char_u *newline;
3577 size_t textproplen = curbuf->b_ml.ml_line_len - oldtextlen;
3578
3579 // Need to copy over text properties, stored after the text.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003580 newline = alloc(len + (int)textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003581 if (newline != NULL)
3582 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01003583 mch_memmove(newline, line, len);
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02003584 mch_memmove(newline + len, curbuf->b_ml.ml_line_ptr
3585 + oldtextlen, textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003586 vim_free(line);
3587 line = newline;
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003588 len += (colnr_T)textproplen;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003589 }
3590 }
3591 }
3592#endif
3593
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01003594 if (curbuf->b_ml.ml_flags & (ML_LINE_DIRTY | ML_ALLOCATED))
3595 vim_free(curbuf->b_ml.ml_line_ptr); // free allocated line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003596
Bram Moolenaar071d4272004-06-13 20:20:40 +00003597 curbuf->b_ml.ml_line_ptr = line;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003598 curbuf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003599 curbuf->b_ml.ml_line_lnum = lnum;
3600 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
3601
3602 return OK;
3603}
3604
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003605#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003606/*
3607 * Adjust text properties in line "lnum" for a deleted line.
Paul Ollis1bdc60e2022-05-15 22:24:55 +01003608 * When "above" is true this is the line above the deleted line, otherwise this
3609 * is the line below the deleted line.
3610 * "del_props[del_props_len]" are the properties of the deleted line.
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003611 */
3612 static void
3613adjust_text_props_for_delete(
3614 buf_T *buf,
3615 linenr_T lnum,
3616 char_u *del_props,
3617 int del_props_len,
3618 int above)
3619{
3620 int did_get_line = FALSE;
3621 int done_del;
3622 int done_this;
3623 textprop_T prop_del;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003624 bhdr_T *hp;
3625 DATA_BL *dp;
3626 int idx;
3627 int line_start;
3628 long line_size;
3629 int this_props_len;
3630 char_u *text;
3631 size_t textlen;
3632 int found;
3633
3634 for (done_del = 0; done_del < del_props_len; done_del += sizeof(textprop_T))
3635 {
3636 mch_memmove(&prop_del, del_props + done_del, sizeof(textprop_T));
3637 if ((above && (prop_del.tp_flags & TP_FLAG_CONT_PREV)
3638 && !(prop_del.tp_flags & TP_FLAG_CONT_NEXT))
3639 || (!above && (prop_del.tp_flags & TP_FLAG_CONT_NEXT)
3640 && !(prop_del.tp_flags & TP_FLAG_CONT_PREV)))
3641 {
3642 if (!did_get_line)
3643 {
3644 did_get_line = TRUE;
3645 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
3646 return;
3647
3648 dp = (DATA_BL *)(hp->bh_data);
3649 idx = lnum - buf->b_ml.ml_locked_low;
3650 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3651 if (idx == 0) // first line in block, text at the end
3652 line_size = dp->db_txt_end - line_start;
3653 else
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003654 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK)
3655 - line_start;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003656 text = (char_u *)dp + line_start;
3657 textlen = STRLEN(text) + 1;
3658 if ((long)textlen >= line_size)
3659 {
3660 if (above)
3661 internal_error("no text property above deleted line");
3662 else
3663 internal_error("no text property below deleted line");
3664 return;
3665 }
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003666 this_props_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003667 }
3668
3669 found = FALSE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003670 for (done_this = 0; done_this < this_props_len;
3671 done_this += sizeof(textprop_T))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003672 {
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003673 int flag = above ? TP_FLAG_CONT_NEXT
3674 : TP_FLAG_CONT_PREV;
3675 textprop_T prop_this;
3676
Paul Ollis1bdc60e2022-05-15 22:24:55 +01003677 mch_memmove(&prop_this, text + textlen + done_this,
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003678 sizeof(textprop_T));
3679 if ((prop_this.tp_flags & flag)
3680 && prop_del.tp_id == prop_this.tp_id
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003681 && prop_del.tp_type == prop_this.tp_type)
3682 {
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003683 found = TRUE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003684 prop_this.tp_flags &= ~flag;
Paul Ollis1bdc60e2022-05-15 22:24:55 +01003685 mch_memmove(text + textlen + done_this, &prop_this,
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003686 sizeof(textprop_T));
3687 break;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003688 }
3689 }
3690 if (!found)
3691 {
3692 if (above)
3693 internal_error("text property above deleted line not found");
3694 else
3695 internal_error("text property below deleted line not found");
3696 }
3697
3698 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3699 }
3700 }
3701}
3702#endif
3703
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704/*
Bram Moolenaar4033c552017-09-16 20:54:51 +02003705 * Delete line "lnum" in the current buffer.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003706 * When "flags" has ML_DEL_MESSAGE may give a "No lines in buffer" message.
3707 * When "flags" has ML_DEL_UNDO this is called from undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003708 *
3709 * return FAIL for failure, OK otherwise
3710 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 static int
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003712ml_delete_int(buf_T *buf, linenr_T lnum, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713{
3714 bhdr_T *hp;
3715 memfile_T *mfp;
3716 DATA_BL *dp;
3717 PTR_BL *pp;
3718 infoptr_T *ip;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003719 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003720 int idx;
3721 int stack_idx;
3722 int text_start;
3723 int line_start;
3724 long line_size;
3725 int i;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003726 int ret = FAIL;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003727#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003728 char_u *textprop_save = NULL;
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003729 long textprop_len = 0;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003730#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003731
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 if (lowest_marked && lowest_marked > lnum)
3733 lowest_marked--;
3734
3735/*
3736 * If the file becomes empty the last line is replaced by an empty line.
3737 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003738 if (buf->b_ml.ml_line_count == 1) // file becomes empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003739 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003740 if ((flags & ML_DEL_MESSAGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741#ifdef FEAT_NETBEANS_INTG
3742 && !netbeansSuppressNoLines
3743#endif
3744 )
Bram Moolenaar238a5642006-02-21 22:12:05 +00003745 set_keep_msg((char_u *)_(no_lines_msg), 0);
3746
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003747 // FEAT_BYTEOFF already handled in there, don't worry 'bout it below
Bram Moolenaar071d4272004-06-13 20:20:40 +00003748 i = ml_replace((linenr_T)1, (char_u *)"", TRUE);
3749 buf->b_ml.ml_flags |= ML_EMPTY;
3750
3751 return i;
3752 }
3753
3754/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003755 * Find the data block containing the line.
3756 * This also fills the stack with the blocks from the root to the data block.
3757 * This also releases any locked block..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003758 */
3759 mfp = buf->b_ml.ml_mfp;
3760 if (mfp == NULL)
3761 return FAIL;
3762
3763 if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL)
3764 return FAIL;
3765
3766 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003767 // compute line count before the delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003768 count = (long)(buf->b_ml.ml_locked_high)
3769 - (long)(buf->b_ml.ml_locked_low) + 2;
3770 idx = lnum - buf->b_ml.ml_locked_low;
3771
3772 --buf->b_ml.ml_line_count;
3773
3774 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003775 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003776 line_size = dp->db_txt_end - line_start;
3777 else
3778 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start;
3779
3780#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003781 if (netbeans_active())
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003782 netbeans_removed(buf, lnum, 0, line_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003783#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003784#ifdef FEAT_PROP_POPUP
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003785 // If there are text properties compute their byte length.
3786 // if needed make a copy, so that we can update properties in preceding and
3787 // following lines.
3788 if (buf->b_has_textprop)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003789 {
3790 size_t textlen = STRLEN((char_u *)dp + line_start) + 1;
3791
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003792 textprop_len = line_size - (long)textlen;
3793 if (!(flags & (ML_DEL_UNDO | ML_DEL_NOPROP)) && textprop_len > 0)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003794 textprop_save = vim_memsave((char_u *)dp + line_start + textlen,
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003795 textprop_len);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003796 }
3797#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003798
3799/*
3800 * special case: If there is only one line in the data block it becomes empty.
3801 * Then we have to remove the entry, pointing to this data block, from the
3802 * pointer block. If this pointer block also becomes empty, we go up another
3803 * block, and so on, up to the root if necessary.
3804 * The line counts in the pointer blocks have already been adjusted by
3805 * ml_find_line().
3806 */
3807 if (count == 1)
3808 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003809 mf_free(mfp, hp); // free the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003810 buf->b_ml.ml_locked = NULL;
3811
Bram Moolenaare60acc12011-05-10 16:41:25 +02003812 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3813 --stack_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003814 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003815 buf->b_ml.ml_stack_top = 0; // stack is invalid when failing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003816 ip = &(buf->b_ml.ml_stack[stack_idx]);
3817 idx = ip->ip_index;
3818 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003819 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003820 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003821 if (pp->pb_id != PTR_ID)
3822 {
RestorerZ68ebcee2023-05-31 17:12:14 +01003823 iemsg(e_pointer_block_id_wrong_four);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003824 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003825 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003826 }
3827 count = --(pp->pb_count);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003828 if (count == 0) // the pointer block becomes empty!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003829 mf_free(mfp, hp);
3830 else
3831 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003832 if (count != idx) // move entries after the deleted one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003833 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1],
3834 (size_t)(count - idx) * sizeof(PTR_EN));
3835 mf_put(mfp, hp, TRUE, FALSE);
3836
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003837 buf->b_ml.ml_stack_top = stack_idx; // truncate stack
3838 // fix line count for rest of blocks in the stack
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003839 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840 {
3841 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
3842 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003843 buf->b_ml.ml_locked_lineadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 }
3845 ++(buf->b_ml.ml_stack_top);
3846
3847 break;
3848 }
3849 }
3850 CHECK(stack_idx < 0, _("deleted block 1?"));
3851 }
3852 else
3853 {
3854 /*
3855 * delete the text by moving the next lines forwards
3856 */
3857 text_start = dp->db_txt_start;
3858 mch_memmove((char *)dp + text_start + line_size,
3859 (char *)dp + text_start, (size_t)(line_start - text_start));
3860
3861 /*
3862 * delete the index by moving the next indexes backwards
3863 * Adjust the indexes for the text movement.
3864 */
3865 for (i = idx; i < count - 1; ++i)
3866 dp->db_index[i] = dp->db_index[i + 1] + line_size;
3867
3868 dp->db_free += line_size + INDEX_SIZE;
3869 dp->db_txt_start += line_size;
3870 --(dp->db_line_count);
3871
3872 /*
3873 * mark the block dirty and make sure it is in the file (for recovery)
3874 */
3875 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3876 }
3877
3878#ifdef FEAT_BYTEOFF
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003879 ml_updatechunk(buf, lnum, line_size
3880# ifdef FEAT_PROP_POPUP
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003881 - textprop_len
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003882# endif
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003883 , ML_CHNK_DELLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003884#endif
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003885 ret = OK;
3886
3887theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003888#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003889 if (textprop_save != NULL)
3890 {
3891 // Adjust text properties in the line above and below.
3892 if (lnum > 1)
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003893 adjust_text_props_for_delete(buf, lnum - 1, textprop_save,
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003894 (int)textprop_len, TRUE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003895 if (lnum <= buf->b_ml.ml_line_count)
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003896 adjust_text_props_for_delete(buf, lnum, textprop_save,
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01003897 (int)textprop_len, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003898 }
3899 vim_free(textprop_save);
3900#endif
3901 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003902}
3903
3904/*
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003905 * Delete line "lnum" in the current buffer.
3906 * When "message" is TRUE may give a "No lines in buffer" message.
3907 *
3908 * Check: The caller of this function should probably also call
3909 * deleted_lines() after this.
3910 *
3911 * return FAIL for failure, OK otherwise
3912 */
3913 int
Bram Moolenaarca70c072020-05-30 20:30:46 +02003914ml_delete(linenr_T lnum)
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003915{
Bram Moolenaarca70c072020-05-30 20:30:46 +02003916 return ml_delete_flags(lnum, 0);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003917}
3918
3919/*
3920 * Like ml_delete() but using flags (see ml_delete_int()).
3921 */
3922 int
3923ml_delete_flags(linenr_T lnum, int flags)
3924{
3925 ml_flush_line(curbuf);
3926 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
3927 return FAIL;
3928
3929#ifdef FEAT_EVAL
3930 // When inserting above recorded changes: flush the changes before changing
3931 // the text.
3932 may_invoke_listeners(curbuf, lnum, lnum + 1, -1);
3933#endif
3934
3935 return ml_delete_int(curbuf, lnum, flags);
3936}
3937
3938/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003939 * set the DB_MARKED flag for line 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003940 */
3941 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003942ml_setmarked(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003943{
3944 bhdr_T *hp;
3945 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003946 // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count
3948 || curbuf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003949 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003950
3951 if (lowest_marked == 0 || lowest_marked > lnum)
3952 lowest_marked = lnum;
3953
3954 /*
3955 * find the data block containing the line
3956 * This also fills the stack with the blocks from the root to the data block
3957 * This also releases any locked block.
3958 */
3959 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003960 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003961
3962 dp = (DATA_BL *)(hp->bh_data);
3963 dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED;
3964 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3965}
3966
3967/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003968 * find the first line with its DB_MARKED flag set
Bram Moolenaar071d4272004-06-13 20:20:40 +00003969 */
3970 linenr_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003971ml_firstmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003972{
3973 bhdr_T *hp;
3974 DATA_BL *dp;
3975 linenr_T lnum;
3976 int i;
3977
3978 if (curbuf->b_ml.ml_mfp == NULL)
3979 return (linenr_T) 0;
3980
3981 /*
3982 * The search starts with lowest_marked line. This is the last line where
3983 * a mark was found, adjusted by inserting/deleting lines.
3984 */
3985 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3986 {
3987 /*
3988 * Find the data block containing the line.
3989 * This also fills the stack with the blocks from the root to the data
3990 * block This also releases any locked block.
3991 */
3992 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003993 return (linenr_T)0; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003994
3995 dp = (DATA_BL *)(hp->bh_data);
3996
3997 for (i = lnum - curbuf->b_ml.ml_locked_low;
3998 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3999 if ((dp->db_index[i]) & DB_MARKED)
4000 {
4001 (dp->db_index[i]) &= DB_INDEX_MASK;
4002 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
4003 lowest_marked = lnum + 1;
4004 return lnum;
4005 }
4006 }
4007
4008 return (linenr_T) 0;
4009}
4010
Bram Moolenaar071d4272004-06-13 20:20:40 +00004011/*
4012 * clear all DB_MARKED flags
4013 */
4014 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004015ml_clearmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004016{
4017 bhdr_T *hp;
4018 DATA_BL *dp;
4019 linenr_T lnum;
4020 int i;
4021
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004022 if (curbuf->b_ml.ml_mfp == NULL) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 return;
4024
4025 /*
4026 * The search starts with line lowest_marked.
4027 */
4028 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
4029 {
4030 /*
4031 * Find the data block containing the line.
4032 * This also fills the stack with the blocks from the root to the data
4033 * block and releases any locked block.
4034 */
4035 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004036 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00004037
4038 dp = (DATA_BL *)(hp->bh_data);
4039
4040 for (i = lnum - curbuf->b_ml.ml_locked_low;
4041 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
4042 if ((dp->db_index[i]) & DB_MARKED)
4043 {
4044 (dp->db_index[i]) &= DB_INDEX_MASK;
4045 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
4046 }
4047 }
4048
4049 lowest_marked = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004050}
4051
4052/*
4053 * flush ml_line if necessary
4054 */
4055 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004056ml_flush_line(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004057{
4058 bhdr_T *hp;
4059 DATA_BL *dp;
4060 linenr_T lnum;
4061 char_u *new_line;
4062 char_u *old_line;
4063 colnr_T new_len;
4064 int old_len;
4065 int extra;
4066 int idx;
4067 int start;
4068 int count;
4069 int i;
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004070 static int entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004071
4072 if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004073 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004074
4075 if (buf->b_ml.ml_flags & ML_LINE_DIRTY)
4076 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004077 // This code doesn't work recursively, but Netbeans may call back here
4078 // when obtaining the cursor position.
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004079 if (entered)
4080 return;
4081 entered = TRUE;
4082
Bram Moolenaar071d4272004-06-13 20:20:40 +00004083 lnum = buf->b_ml.ml_line_lnum;
4084 new_line = buf->b_ml.ml_line_ptr;
4085
4086 hp = ml_find_line(buf, lnum, ML_FIND);
4087 if (hp == NULL)
RestorerZ68ebcee2023-05-31 17:12:14 +01004088 siemsg(e_cannot_find_line_nr, lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089 else
4090 {
4091 dp = (DATA_BL *)(hp->bh_data);
4092 idx = lnum - buf->b_ml.ml_locked_low;
4093 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
4094 old_line = (char_u *)dp + start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004095 if (idx == 0) // line is last in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004096 old_len = dp->db_txt_end - start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004097 else // text of previous line follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098 old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01004099 new_len = buf->b_ml.ml_line_len;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004100 extra = new_len - old_len; // negative if lines gets smaller
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101
4102 /*
4103 * if new line fits in data block, replace directly
4104 */
4105 if ((int)dp->db_free >= extra)
4106 {
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004107#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar14c75302021-08-15 14:28:40 +02004108 int old_prop_len = 0;
Paul Ollis4c3d21a2022-05-24 21:26:37 +01004109 if (buf->b_has_textprop)
4110 old_prop_len = old_len - (int)STRLEN(old_line) - 1;
Bram Moolenaar14c75302021-08-15 14:28:40 +02004111#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004112 // if the length changes and there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004113 count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1;
4114 if (extra != 0 && idx < count - 1)
4115 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004116 // move text of following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 mch_memmove((char *)dp + dp->db_txt_start - extra,
4118 (char *)dp + dp->db_txt_start,
4119 (size_t)(start - dp->db_txt_start));
4120
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004121 // adjust pointers of this and following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122 for (i = idx + 1; i < count; ++i)
4123 dp->db_index[i] -= extra;
4124 }
4125 dp->db_index[idx] -= extra;
4126
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004127 // adjust free space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004128 dp->db_free -= extra;
4129 dp->db_txt_start -= extra;
4130
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004131 // copy new line into the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004132 mch_memmove(old_line - extra, new_line, (size_t)new_len);
4133 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004134#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004135 // The else case is already covered by the insert and delete
Bram Moolenaar14c75302021-08-15 14:28:40 +02004136 if (buf->b_has_textprop)
4137 {
4138 // Do not count the size of any text properties.
4139 extra += old_prop_len;
Bram Moolenaar434df7a2021-08-16 21:15:32 +02004140 extra -= new_len - (int)STRLEN(new_line) - 1;
Bram Moolenaar14c75302021-08-15 14:28:40 +02004141 }
4142 if (extra != 0)
4143 ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144#endif
4145 }
4146 else
4147 {
4148 /*
4149 * Cannot do it in one data block: Delete and append.
4150 * Append first, because ml_delete_int() cannot delete the
4151 * last line in a buffer, which causes trouble for a buffer
4152 * that has only one line.
4153 * Don't forget to copy the mark!
4154 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004155 // How about handling errors???
Bram Moolenaara9d4b842020-05-30 14:46:52 +02004156 (void)ml_append_int(buf, lnum, new_line, new_len,
Bram Moolenaar840f91f2021-05-26 22:32:10 +02004157 ((dp->db_index[idx] & DB_MARKED) ? ML_APPEND_MARK : 0)
4158#ifdef FEAT_PROP_POPUP
4159 | ML_APPEND_NOPROP
4160#endif
4161 );
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02004162 (void)ml_delete_int(buf, lnum, ML_DEL_NOPROP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004163 }
4164 }
4165 vim_free(new_line);
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004166
4167 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004168 }
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01004169 else if (buf->b_ml.ml_flags & ML_ALLOCATED)
4170 vim_free(buf->b_ml.ml_line_ptr);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004171
Bram Moolenaarfa4873c2022-06-30 22:13:59 +01004172 buf->b_ml.ml_flags &= ~(ML_LINE_DIRTY | ML_ALLOCATED);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004173 buf->b_ml.ml_line_lnum = 0;
4174}
4175
4176/*
4177 * create a new, empty, data block
4178 */
4179 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004180ml_new_data(memfile_T *mfp, int negative, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004181{
4182 bhdr_T *hp;
4183 DATA_BL *dp;
4184
4185 if ((hp = mf_new(mfp, negative, page_count)) == NULL)
4186 return NULL;
4187
4188 dp = (DATA_BL *)(hp->bh_data);
4189 dp->db_id = DATA_ID;
4190 dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size;
4191 dp->db_free = dp->db_txt_start - HEADER_SIZE;
4192 dp->db_line_count = 0;
4193
4194 return hp;
4195}
4196
4197/*
4198 * create a new, empty, pointer block
4199 */
4200 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004201ml_new_ptr(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202{
4203 bhdr_T *hp;
4204 PTR_BL *pp;
4205
4206 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
4207 return NULL;
4208
4209 pp = (PTR_BL *)(hp->bh_data);
4210 pp->pb_id = PTR_ID;
4211 pp->pb_count = 0;
Bram Moolenaarb67ba032023-04-22 21:14:26 +01004212 pp->pb_count_max = PB_COUNT_MAX(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004213
4214 return hp;
4215}
4216
4217/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01004218 * Lookup line 'lnum' in a memline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004219 *
4220 * action: if ML_DELETE or ML_INSERT the line count is updated while searching
4221 * if ML_FLUSH only flush a locked block
4222 * if ML_FIND just find the line
4223 *
4224 * If the block was found it is locked and put in ml_locked.
4225 * The stack is updated to lead to the locked block. The ip_high field in
4226 * the stack is updated to reflect the last line in the block AFTER the
4227 * insert or delete, also if the pointer block has not been updated yet. But
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004228 * if ml_locked != NULL ml_locked_lineadd must be added to ip_high.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004229 *
4230 * return: NULL for failure, pointer to block header otherwise
4231 */
4232 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004233ml_find_line(buf_T *buf, linenr_T lnum, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234{
4235 DATA_BL *dp;
4236 PTR_BL *pp;
4237 infoptr_T *ip;
4238 bhdr_T *hp;
4239 memfile_T *mfp;
4240 linenr_T t;
4241 blocknr_T bnum, bnum2;
4242 int dirty;
4243 linenr_T low, high;
4244 int top;
4245 int page_count;
4246 int idx;
4247
4248 mfp = buf->b_ml.ml_mfp;
4249
4250 /*
4251 * If there is a locked block check if the wanted line is in it.
4252 * If not, flush and release the locked block.
4253 * Don't do this for ML_INSERT_SAME, because the stack need to be updated.
4254 * Don't do this for ML_FLUSH, because we want to flush the locked block.
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004255 * Don't do this when 'swapfile' is reset, we want to load all the blocks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256 */
4257 if (buf->b_ml.ml_locked)
4258 {
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004259 if (ML_SIMPLE(action)
4260 && buf->b_ml.ml_locked_low <= lnum
4261 && buf->b_ml.ml_locked_high >= lnum
4262 && !mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004263 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004264 // remember to update pointer blocks and stack later
Bram Moolenaar071d4272004-06-13 20:20:40 +00004265 if (action == ML_INSERT)
4266 {
4267 ++(buf->b_ml.ml_locked_lineadd);
4268 ++(buf->b_ml.ml_locked_high);
4269 }
4270 else if (action == ML_DELETE)
4271 {
4272 --(buf->b_ml.ml_locked_lineadd);
4273 --(buf->b_ml.ml_locked_high);
4274 }
4275 return (buf->b_ml.ml_locked);
4276 }
4277
4278 mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY,
4279 buf->b_ml.ml_flags & ML_LOCKED_POS);
4280 buf->b_ml.ml_locked = NULL;
4281
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004282 /*
4283 * If lines have been added or deleted in the locked block, need to
4284 * update the line count in pointer blocks.
4285 */
4286 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004287 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
4288 }
4289
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004290 if (action == ML_FLUSH) // nothing else to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 return NULL;
4292
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004293 bnum = 1; // start at the root of the tree
Bram Moolenaar071d4272004-06-13 20:20:40 +00004294 page_count = 1;
4295 low = 1;
4296 high = buf->b_ml.ml_line_count;
4297
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004298 if (action == ML_FIND) // first try stack entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00004299 {
4300 for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top)
4301 {
4302 ip = &(buf->b_ml.ml_stack[top]);
4303 if (ip->ip_low <= lnum && ip->ip_high >= lnum)
4304 {
4305 bnum = ip->ip_bnum;
4306 low = ip->ip_low;
4307 high = ip->ip_high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004308 buf->b_ml.ml_stack_top = top; // truncate stack at prev entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 break;
4310 }
4311 }
4312 if (top < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004313 buf->b_ml.ml_stack_top = 0; // not found, start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004314 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004315 else // ML_DELETE or ML_INSERT
4316 buf->b_ml.ml_stack_top = 0; // start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004317
4318/*
4319 * search downwards in the tree until a data block is found
4320 */
4321 for (;;)
4322 {
4323 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
4324 goto error_noblock;
4325
4326 /*
4327 * update high for insert/delete
4328 */
4329 if (action == ML_INSERT)
4330 ++high;
4331 else if (action == ML_DELETE)
4332 --high;
4333
4334 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004335 if (dp->db_id == DATA_ID) // data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 {
4337 buf->b_ml.ml_locked = hp;
4338 buf->b_ml.ml_locked_low = low;
4339 buf->b_ml.ml_locked_high = high;
4340 buf->b_ml.ml_locked_lineadd = 0;
4341 buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS);
4342 return hp;
4343 }
4344
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004345 pp = (PTR_BL *)(dp); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004346 if (pp->pb_id != PTR_ID)
4347 {
RestorerZ68ebcee2023-05-31 17:12:14 +01004348 iemsg(e_pointer_block_id_wrong);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004349 goto error_block;
4350 }
4351
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004352 if ((top = ml_add_stack(buf)) < 0) // add new entry to stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00004353 goto error_block;
4354 ip = &(buf->b_ml.ml_stack[top]);
4355 ip->ip_bnum = bnum;
4356 ip->ip_low = low;
4357 ip->ip_high = high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004358 ip->ip_index = -1; // index not known yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004359
4360 dirty = FALSE;
4361 for (idx = 0; idx < (int)pp->pb_count; ++idx)
4362 {
4363 t = pp->pb_pointer[idx].pe_line_count;
4364 CHECK(t == 0, _("pe_line_count is zero"));
4365 if ((low += t) > lnum)
4366 {
4367 ip->ip_index = idx;
4368 bnum = pp->pb_pointer[idx].pe_bnum;
4369 page_count = pp->pb_pointer[idx].pe_page_count;
4370 high = low - 1;
4371 low -= t;
4372
4373 /*
4374 * a negative block number may have been changed
4375 */
4376 if (bnum < 0)
4377 {
4378 bnum2 = mf_trans_del(mfp, bnum);
4379 if (bnum != bnum2)
4380 {
4381 bnum = bnum2;
4382 pp->pb_pointer[idx].pe_bnum = bnum;
4383 dirty = TRUE;
4384 }
4385 }
4386
4387 break;
4388 }
4389 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004390 if (idx >= (int)pp->pb_count) // past the end: something wrong!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004391 {
4392 if (lnum > buf->b_ml.ml_line_count)
RestorerZ68ebcee2023-05-31 17:12:14 +01004393 siemsg(e_line_number_out_of_range_nr_past_the_end,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004394 lnum - buf->b_ml.ml_line_count);
4395
4396 else
RestorerZ68ebcee2023-05-31 17:12:14 +01004397 siemsg(e_line_count_wrong_in_block_nr, bnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004398 goto error_block;
4399 }
4400 if (action == ML_DELETE)
4401 {
4402 pp->pb_pointer[idx].pe_line_count--;
4403 dirty = TRUE;
4404 }
4405 else if (action == ML_INSERT)
4406 {
4407 pp->pb_pointer[idx].pe_line_count++;
4408 dirty = TRUE;
4409 }
4410 mf_put(mfp, hp, dirty, FALSE);
4411 }
4412
4413error_block:
4414 mf_put(mfp, hp, FALSE, FALSE);
4415error_noblock:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004416 /*
4417 * If action is ML_DELETE or ML_INSERT we have to correct the tree for
4418 * the incremented/decremented line counts, because there won't be a line
4419 * inserted/deleted after all.
4420 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004421 if (action == ML_DELETE)
4422 ml_lineadd(buf, 1);
4423 else if (action == ML_INSERT)
4424 ml_lineadd(buf, -1);
4425 buf->b_ml.ml_stack_top = 0;
4426 return NULL;
4427}
4428
4429/*
4430 * add an entry to the info pointer stack
4431 *
4432 * return -1 for failure, number of the new entry otherwise
4433 */
4434 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004435ml_add_stack(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004436{
4437 int top;
4438 infoptr_T *newstack;
4439
4440 top = buf->b_ml.ml_stack_top;
4441
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004442 // may have to increase the stack size
Bram Moolenaar071d4272004-06-13 20:20:40 +00004443 if (top == buf->b_ml.ml_stack_size)
4444 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004445 CHECK(top > 0, _("Stack size increases")); // more than 5 levels???
Bram Moolenaar071d4272004-06-13 20:20:40 +00004446
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004447 newstack = ALLOC_MULT(infoptr_T, buf->b_ml.ml_stack_size + STACK_INCR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004448 if (newstack == NULL)
4449 return -1;
Bram Moolenaarfbd302f2015-08-08 18:23:46 +02004450 if (top > 0)
4451 mch_memmove(newstack, buf->b_ml.ml_stack,
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004452 (size_t)top * sizeof(infoptr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004453 vim_free(buf->b_ml.ml_stack);
4454 buf->b_ml.ml_stack = newstack;
4455 buf->b_ml.ml_stack_size += STACK_INCR;
4456 }
4457
4458 buf->b_ml.ml_stack_top++;
4459 return top;
4460}
4461
4462/*
4463 * Update the pointer blocks on the stack for inserted/deleted lines.
4464 * The stack itself is also updated.
4465 *
4466 * When a insert/delete line action fails, the line is not inserted/deleted,
4467 * but the pointer blocks have already been updated. That is fixed here by
4468 * walking through the stack.
4469 *
4470 * Count is the number of lines added, negative if lines have been deleted.
4471 */
4472 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004473ml_lineadd(buf_T *buf, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474{
4475 int idx;
4476 infoptr_T *ip;
4477 PTR_BL *pp;
4478 memfile_T *mfp = buf->b_ml.ml_mfp;
4479 bhdr_T *hp;
4480
4481 for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx)
4482 {
4483 ip = &(buf->b_ml.ml_stack[idx]);
4484 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
4485 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004486 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004487 if (pp->pb_id != PTR_ID)
4488 {
4489 mf_put(mfp, hp, FALSE, FALSE);
RestorerZ68ebcee2023-05-31 17:12:14 +01004490 iemsg(e_pointer_block_id_wrong_two);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004491 break;
4492 }
4493 pp->pb_pointer[ip->ip_index].pe_line_count += count;
4494 ip->ip_high += count;
4495 mf_put(mfp, hp, TRUE, FALSE);
4496 }
4497}
4498
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004499#if defined(HAVE_READLINK) || defined(PROTO)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004500/*
4501 * Resolve a symlink in the last component of a file name.
4502 * Note that f_resolve() does it for every part of the path, we don't do that
4503 * here.
4504 * If it worked returns OK and the resolved link in "buf[MAXPATHL]".
4505 * Otherwise returns FAIL.
4506 */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004507 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004508resolve_symlink(char_u *fname, char_u *buf)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004509{
4510 char_u tmp[MAXPATHL];
4511 int ret;
4512 int depth = 0;
4513
4514 if (fname == NULL)
4515 return FAIL;
4516
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004517 // Put the result so far in tmp[], starting with the original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004518 vim_strncpy(tmp, fname, MAXPATHL - 1);
4519
4520 for (;;)
4521 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004522 // Limit symlink depth to 100, catch recursive loops.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004523 if (++depth == 100)
4524 {
Bram Moolenaar677658a2022-01-05 16:09:06 +00004525 semsg(_(e_symlink_loop_for_str), fname);
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004526 return FAIL;
4527 }
4528
4529 ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1);
4530 if (ret <= 0)
4531 {
Bram Moolenaarcc984262005-12-23 22:19:46 +00004532 if (errno == EINVAL || errno == ENOENT)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004533 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004534 // Found non-symlink or not existing file, stop here.
4535 // When at the first level use the unmodified name, skip the
4536 // call to vim_FullName().
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004537 if (depth == 1)
4538 return FAIL;
4539
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004540 // Use the resolved name in tmp[].
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004541 break;
4542 }
4543
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004544 // There must be some error reading links, use original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004545 return FAIL;
4546 }
4547 buf[ret] = NUL;
4548
4549 /*
4550 * Check whether the symlink is relative or absolute.
4551 * If it's relative, build a new path based on the directory
4552 * portion of the filename (if any) and the path the symlink
4553 * points to.
4554 */
4555 if (mch_isFullName(buf))
4556 STRCPY(tmp, buf);
4557 else
4558 {
4559 char_u *tail;
4560
4561 tail = gettail(tmp);
4562 if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL)
4563 return FAIL;
4564 STRCPY(tail, buf);
4565 }
4566 }
4567
4568 /*
4569 * Try to resolve the full name of the file so that the swapfile name will
4570 * be consistent even when opening a relative symlink from different
4571 * working directories.
4572 */
4573 return vim_FullName(tmp, buf, MAXPATHL, TRUE);
4574}
4575#endif
4576
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577/*
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004578 * Make swap file name out of the file name and a directory name.
4579 * Returns pointer to allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004580 */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004581 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004582makeswapname(
4583 char_u *fname,
4584 char_u *ffname UNUSED,
4585 buf_T *buf,
4586 char_u *dir_name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004587{
4588 char_u *r, *s;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02004589 char_u *fname_res = fname;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004590#ifdef HAVE_READLINK
4591 char_u fname_buf[MAXPATHL];
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004592
4593 // Expand symlink in the file name, so that we put the swap file with the
4594 // actual file instead of with the symlink.
4595 if (resolve_symlink(fname, fname_buf) == OK)
4596 fname_res = fname_buf;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004597#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004598
Bram Moolenaar4f974752019-02-17 17:44:42 +01004599#if defined(UNIX) || defined(MSWIN) // Need _very_ long file names
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01004600 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01004601
4602 s = dir_name + len;
4603 if (after_pathsep(dir_name, s) && len > 1 && s[-1] == s[-2])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004604 { // Ends with '//', Use Full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004605 r = NULL;
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004606 if ((s = make_percent_swname(dir_name, fname_res)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004607 {
4608 r = modname(s, (char_u *)".swp", FALSE);
4609 vim_free(s);
4610 }
4611 return r;
4612 }
4613#endif
4614
4615 r = buf_modname(
Bram Moolenaar071d4272004-06-13 20:20:40 +00004616 (buf->b_p_sn || buf->b_shortname),
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004617 fname_res,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004618 (char_u *)
Bram Moolenaare60acc12011-05-10 16:41:25 +02004619#if defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004620 "_swp",
4621#else
4622 ".swp",
4623#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004624 // Prepend a '.' to the swap file name for the current directory.
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004625 dir_name[0] == '.' && dir_name[1] == NUL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004626 if (r == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004627 return NULL;
4628
4629 s = get_file_in_dir(r, dir_name);
4630 vim_free(r);
4631 return s;
4632}
4633
4634/*
4635 * Get file name to use for swap file or backup file.
4636 * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir'
4637 * option "dname".
4638 * - If "dname" is ".", return "fname" (swap file in dir of file).
4639 * - If "dname" starts with "./", insert "dname" in "fname" (swap file
4640 * relative to dir of file).
4641 * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific
4642 * dir).
4643 *
4644 * The return value is an allocated string and can be NULL.
4645 */
4646 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004647get_file_in_dir(
4648 char_u *fname,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004649 char_u *dname) // don't use "dirname", it is a global for Alpha
Bram Moolenaar071d4272004-06-13 20:20:40 +00004650{
4651 char_u *t;
4652 char_u *tail;
4653 char_u *retval;
4654 int save_char;
4655
4656 tail = gettail(fname);
4657
4658 if (dname[0] == '.' && dname[1] == NUL)
4659 retval = vim_strsave(fname);
4660 else if (dname[0] == '.' && vim_ispathsep(dname[1]))
4661 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004662 if (tail == fname) // no path before file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004663 retval = concat_fnames(dname + 2, tail, TRUE);
4664 else
4665 {
4666 save_char = *tail;
4667 *tail = NUL;
4668 t = concat_fnames(fname, dname + 2, TRUE);
4669 *tail = save_char;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004670 if (t == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 retval = NULL;
4672 else
4673 {
4674 retval = concat_fnames(t, tail, TRUE);
4675 vim_free(t);
4676 }
4677 }
4678 }
4679 else
4680 retval = concat_fnames(dname, tail, TRUE);
4681
Bram Moolenaar4f974752019-02-17 17:44:42 +01004682#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004683 if (retval != NULL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004684 for (t = gettail(retval); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004685 if (*t == ':')
4686 *t = '%';
4687#endif
4688
Bram Moolenaar071d4272004-06-13 20:20:40 +00004689 return retval;
4690}
4691
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004692/*
4693 * Print the ATTENTION message: info about an existing swap file.
4694 */
4695 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004696attention_message(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004697 buf_T *buf, // buffer being edited
4698 char_u *fname) // swap file name
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004699{
Bram Moolenaar8767f522016-07-01 17:17:39 +02004700 stat_T st;
Bram Moolenaar63d25552019-05-10 21:28:38 +02004701 time_t swap_mtime;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004702
4703 ++no_wait_return;
Bram Moolenaareaaac012022-01-02 17:00:40 +00004704 (void)emsg(_(e_attention));
Bram Moolenaar32526b32019-01-19 17:43:09 +01004705 msg_puts(_("\nFound a swap file by the name \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004706 msg_home_replace(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004707 msg_puts("\"\n");
Bram Moolenaar63d25552019-05-10 21:28:38 +02004708 swap_mtime = swapfile_info(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004709 msg_puts(_("While opening file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004710 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004711 msg_puts("\"\n");
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004712 if (mch_stat((char *)buf->b_fname, &st) == -1)
4713 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004714 msg_puts(_(" CANNOT BE FOUND"));
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004715 }
4716 else
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004717 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004718 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02004719 msg_puts(get_ctime(st.st_mtime, TRUE));
4720 if (swap_mtime != 0 && st.st_mtime > swap_mtime)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004721 msg_puts(_(" NEWER than swap file!\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004722 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004723 // Some of these messages are long to allow translation to
4724 // other languages.
Bram Moolenaar32526b32019-01-19 17:43:09 +01004725 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"));
4726 msg_puts(_("(2) An edit session for this file crashed.\n"));
4727 msg_puts(_(" If this is the case, use \":recover\" or \"vim -r "));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004728 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004729 msg_puts(_("\"\n to recover the changes (see \":help recovery\").\n"));
4730 msg_puts(_(" If you did this already, delete the swap file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004731 msg_outtrans(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004732 msg_puts(_("\"\n to avoid this message.\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004733 cmdline_row = msg_row;
4734 --no_wait_return;
4735}
4736
Bram Moolenaar188639d2022-04-04 16:57:21 +01004737typedef enum {
4738 SEA_CHOICE_NONE = 0,
4739 SEA_CHOICE_READONLY = 1,
4740 SEA_CHOICE_EDIT = 2,
4741 SEA_CHOICE_RECOVER = 3,
4742 SEA_CHOICE_DELETE = 4,
4743 SEA_CHOICE_QUIT = 5,
4744 SEA_CHOICE_ABORT = 6
4745} sea_choice_T;
4746
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004747#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004748/*
4749 * Trigger the SwapExists autocommands.
Bram Moolenaar188639d2022-04-04 16:57:21 +01004750 * Returns a value for equivalent to do_dialog().
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004751 */
Bram Moolenaar188639d2022-04-04 16:57:21 +01004752 static sea_choice_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004753do_swapexists(buf_T *buf, char_u *fname)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004754{
4755 set_vim_var_string(VV_SWAPNAME, fname, -1);
4756 set_vim_var_string(VV_SWAPCHOICE, NULL, -1);
4757
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004758 // Trigger SwapExists autocommands with <afile> set to the file being
4759 // edited. Disallow changing directory here.
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004760 ++allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004761 apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL);
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004762 --allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004763
4764 set_vim_var_string(VV_SWAPNAME, NULL, -1);
4765
4766 switch (*get_vim_var_str(VV_SWAPCHOICE))
4767 {
Bram Moolenaar188639d2022-04-04 16:57:21 +01004768 case 'o': return SEA_CHOICE_READONLY;
4769 case 'e': return SEA_CHOICE_EDIT;
4770 case 'r': return SEA_CHOICE_RECOVER;
4771 case 'd': return SEA_CHOICE_DELETE;
4772 case 'q': return SEA_CHOICE_QUIT;
4773 case 'a': return SEA_CHOICE_ABORT;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004774 }
4775
Bram Moolenaar188639d2022-04-04 16:57:21 +01004776 return SEA_CHOICE_NONE;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004777}
4778#endif
4779
Bram Moolenaar071d4272004-06-13 20:20:40 +00004780/*
4781 * Find out what name to use for the swap file for buffer 'buf'.
4782 *
4783 * Several names are tried to find one that does not exist
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004784 * Returns the name in allocated memory or NULL.
Bram Moolenaarf541c362011-10-26 11:44:18 +02004785 * When out of memory "dirp" is set to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004786 *
4787 * Note: If BASENAMELEN is not correct, you will get error messages for
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004788 * not being able to open the swap or undo file
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004789 * Note: May trigger SwapExists autocmd, pointers may change!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004790 */
4791 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004792findswapname(
4793 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004794 char_u **dirp, // pointer to list of directories
4795 char_u *old_fname) // don't give warning for this file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004796{
4797 char_u *fname;
4798 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004799 char_u *dir_name;
4800#ifdef AMIGA
4801 BPTR fh;
4802#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004803 int r;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004804 char_u *buf_fname = buf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004805
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004806#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004807# define CREATE_DUMMY_FILE
4808 FILE *dummyfd = NULL;
4809
Bram Moolenaar4f974752019-02-17 17:44:42 +01004810# ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004811 if (buf_fname != NULL && !mch_isFullName(buf_fname)
4812 && vim_strchr(gettail(buf_fname), ':'))
4813 {
4814 char_u *t;
4815
4816 buf_fname = vim_strsave(buf_fname);
4817 if (buf_fname == NULL)
4818 buf_fname = buf->b_fname;
4819 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004820 for (t = gettail(buf_fname); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004821 if (*t == ':')
4822 *t = '%';
4823 }
4824# endif
4825
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004826 /*
4827 * If we start editing a new file, e.g. "test.doc", which resides on an
4828 * MSDOS compatible filesystem, it is possible that the file
4829 * "test.doc.swp" which we create will be exactly the same file. To avoid
4830 * this problem we temporarily create "test.doc". Don't do this when the
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00004831 * check below for an 8.3 file name is used.
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004832 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004833 if (!(buf->b_p_sn || buf->b_shortname) && buf_fname != NULL
4834 && mch_getperm(buf_fname) < 0)
4835 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004836#endif
4837
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004838 /*
4839 * Isolate a directory name from *dirp and put it in dir_name.
4840 * First allocate some memory to put the directory name in.
4841 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004842 dir_name = alloc(STRLEN(*dirp) + 1);
Bram Moolenaarf541c362011-10-26 11:44:18 +02004843 if (dir_name == NULL)
4844 *dirp = NULL;
4845 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004846 (void)copy_option_part(dirp, dir_name, 31000, ",");
4847
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004848 /*
4849 * we try different names until we find one that does not exist yet
4850 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004851 if (dir_name == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004852 fname = NULL;
4853 else
Bram Moolenaar69c35002013-11-04 02:54:12 +01004854 fname = makeswapname(buf_fname, buf->b_ffname, buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004855
4856 for (;;)
4857 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004858 if (fname == NULL) // must be out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004860 if ((n = (int)STRLEN(fname)) == 0) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00004861 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01004862 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004863 break;
4864 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004865#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004866/*
4867 * Some systems have a MS-DOS compatible filesystem that use 8.3 character
4868 * file names. If this is the first try and the swap file name does not fit in
4869 * 8.3, detect if this is the case, set shortname and try again.
4870 */
4871 if (fname[n - 2] == 'w' && fname[n - 1] == 'p'
4872 && !(buf->b_p_sn || buf->b_shortname))
4873 {
4874 char_u *tail;
4875 char_u *fname2;
Bram Moolenaar8767f522016-07-01 17:17:39 +02004876 stat_T s1, s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004877 int f1, f2;
4878 int created1 = FALSE, created2 = FALSE;
4879 int same = FALSE;
4880
4881 /*
4882 * Check if swapfile name does not fit in 8.3:
4883 * It either contains two dots, is longer than 8 chars, or starts
4884 * with a dot.
4885 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004886 tail = gettail(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 if ( vim_strchr(tail, '.') != NULL
4888 || STRLEN(tail) > (size_t)8
4889 || *gettail(fname) == '.')
4890 {
4891 fname2 = alloc(n + 2);
4892 if (fname2 != NULL)
4893 {
4894 STRCPY(fname2, fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004895 // if fname == "xx.xx.swp", fname2 = "xx.xx.swx"
4896 // if fname == ".xx.swp", fname2 = ".xx.swpx"
4897 // if fname == "123456789.swp", fname2 = "12345678x.swp"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004898 if (vim_strchr(tail, '.') != NULL)
4899 fname2[n - 1] = 'x';
4900 else if (*gettail(fname) == '.')
4901 {
4902 fname2[n] = 'x';
4903 fname2[n + 1] = NUL;
4904 }
4905 else
4906 fname2[n - 5] += 1;
4907 /*
4908 * may need to create the files to be able to use mch_stat()
4909 */
4910 f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4911 if (f1 < 0)
4912 {
4913 f1 = mch_open_rw((char *)fname,
4914 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004915 created1 = TRUE;
4916 }
4917 if (f1 >= 0)
4918 {
4919 f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0);
4920 if (f2 < 0)
4921 {
4922 f2 = mch_open_rw((char *)fname2,
4923 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
4924 created2 = TRUE;
4925 }
4926 if (f2 >= 0)
4927 {
4928 /*
4929 * Both files exist now. If mch_stat() returns the
4930 * same device and inode they are the same file.
4931 */
4932 if (mch_fstat(f1, &s1) != -1
4933 && mch_fstat(f2, &s2) != -1
4934 && s1.st_dev == s2.st_dev
4935 && s1.st_ino == s2.st_ino)
4936 same = TRUE;
4937 close(f2);
4938 if (created2)
4939 mch_remove(fname2);
4940 }
4941 close(f1);
4942 if (created1)
4943 mch_remove(fname);
4944 }
4945 vim_free(fname2);
4946 if (same)
4947 {
4948 buf->b_shortname = TRUE;
4949 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004950 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004951 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004952 continue; // try again with b_shortname set
Bram Moolenaar071d4272004-06-13 20:20:40 +00004953 }
4954 }
4955 }
4956 }
4957#endif
4958 /*
4959 * check if the swapfile already exists
4960 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004961 if (mch_getperm(fname) < 0) // it does not exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962 {
4963#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02004964 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004965
4966 /*
4967 * Extra security check: When a swap file is a symbolic link, this
4968 * is most likely a symlink attack.
4969 */
4970 if (mch_lstat((char *)fname, &sb) < 0)
4971#else
4972# ifdef AMIGA
4973 fh = Open((UBYTE *)fname, (long)MODE_NEWFILE);
4974 /*
4975 * on the Amiga mch_getperm() will return -1 when the file exists
4976 * but is being used by another program. This happens if you edit
4977 * a file twice.
4978 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004979 if (fh != (BPTR)NULL) // can open file, OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 {
4981 Close(fh);
4982 mch_remove(fname);
4983 break;
4984 }
4985 if (IoErr() != ERROR_OBJECT_IN_USE
4986 && IoErr() != ERROR_OBJECT_EXISTS)
4987# endif
4988#endif
4989 break;
4990 }
4991
4992 /*
4993 * A file name equal to old_fname is OK to use.
4994 */
4995 if (old_fname != NULL && fnamecmp(fname, old_fname) == 0)
4996 break;
4997
4998 /*
4999 * get here when file already exists
5000 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005001 if (fname[n - 2] == 'w' && fname[n - 1] == 'p') // first try
Bram Moolenaar071d4272004-06-13 20:20:40 +00005002 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 /*
5004 * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp
5005 * and file.doc are the same file. To guess if this problem is
5006 * present try if file.doc.swx exists. If it does, we set
5007 * buf->b_shortname and try file_doc.swp (dots replaced by
5008 * underscores for this file), and try again. If it doesn't we
5009 * assume that "file.doc.swp" already exists.
5010 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005011 if (!(buf->b_p_sn || buf->b_shortname)) // not tried yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00005012 {
5013 fname[n - 1] = 'x';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005014 r = mch_getperm(fname); // try "file.swx"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005015 fname[n - 1] = 'p';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005016 if (r >= 0) // "file.swx" seems to exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00005017 {
5018 buf->b_shortname = TRUE;
5019 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01005020 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00005021 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005022 continue; // try again with '.' replaced with '_'
Bram Moolenaar071d4272004-06-13 20:20:40 +00005023 }
5024 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005025 /*
5026 * If we get here the ".swp" file really exists.
5027 * Give an error message, unless recovering, no file name, we are
5028 * viewing a help file or when the path of the file is different
5029 * (happens when all .swp files are in one directory).
5030 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01005031 if (!recoverymode && buf_fname != NULL
Bram Moolenaar2debf1c2019-08-04 20:44:19 +02005032 && !buf->b_help
5033 && !(buf->b_flags & (BF_DUMMY | BF_NO_SEA)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005034 {
5035 int fd;
5036 struct block0 b0;
5037 int differ = FALSE;
5038
5039 /*
5040 * Try to read block 0 from the swap file to get the original
5041 * file name (and inode number).
5042 */
5043 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
5044 if (fd >= 0)
5045 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01005046 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005047 {
5048 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005049 * If the swapfile has the same directory as the
5050 * buffer don't compare the directory names, they can
5051 * have a different mountpoint.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005053 if (b0.b0_flags & B0_SAME_DIR)
5054 {
5055 if (fnamecmp(gettail(buf->b_ffname),
5056 gettail(b0.b0_fname)) != 0
5057 || !same_directory(fname, buf->b_ffname))
Bram Moolenaar900b4d72005-12-12 22:05:50 +00005058 {
5059#ifdef CHECK_INODE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005060 // Symlinks may point to the same file even
5061 // when the name differs, need to check the
5062 // inode too.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00005063 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
5064 if (fnamecmp_ino(buf->b_ffname, NameBuff,
5065 char_to_long(b0.b0_ino)))
5066#endif
5067 differ = TRUE;
5068 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005069 }
5070 else
5071 {
5072 /*
5073 * The name in the swap file may be
5074 * "~user/path/file". Expand it first.
5075 */
5076 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005077#ifdef CHECK_INODE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005078 if (fnamecmp_ino(buf->b_ffname, NameBuff,
Bram Moolenaar900b4d72005-12-12 22:05:50 +00005079 char_to_long(b0.b0_ino)))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005080 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005081#else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005082 if (fnamecmp(NameBuff, buf->b_ffname) != 0)
5083 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005084#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005085 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005086 }
5087 close(fd);
5088 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005089
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005090 // give the ATTENTION message when there is an old swap file
5091 // for the current file, and the buffer was not recovered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005092 if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED)
5093 && vim_strchr(p_shm, SHM_ATTENTION) == NULL)
5094 {
Bram Moolenaar188639d2022-04-04 16:57:21 +01005095 sea_choice_T choice = SEA_CHOICE_NONE;
5096 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005097#ifdef CREATE_DUMMY_FILE
Bram Moolenaar188639d2022-04-04 16:57:21 +01005098 int did_use_dummy = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005099
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005100 // Avoid getting a warning for the file being created
5101 // outside of Vim, it was created at the start of this
5102 // function. Delete the file now, because Vim might exit
5103 // here if the window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005104 if (dummyfd != NULL)
5105 {
5106 fclose(dummyfd);
5107 dummyfd = NULL;
Bram Moolenaar69c35002013-11-04 02:54:12 +01005108 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 did_use_dummy = TRUE;
5110 }
5111#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005112
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005113#ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 process_still_running = FALSE;
5115#endif
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005116 // It's safe to delete the swap file if all these are true:
5117 // - the edited file exists
5118 // - the swap file has no changes and looks OK
5119 if (mch_stat((char *)buf->b_fname, &st) == 0
5120 && swapfile_unchanged(fname))
5121 {
Bram Moolenaar188639d2022-04-04 16:57:21 +01005122 choice = SEA_CHOICE_DELETE;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005123 if (p_verbose > 0)
5124 verb_msg(_("Found a swap file that is not useful, deleting it"));
5125 }
5126
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005127#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005128 /*
5129 * If there is an SwapExists autocommand and we can handle
5130 * the response, trigger it. It may return 0 to ask the
5131 * user anyway.
5132 */
Bram Moolenaar188639d2022-04-04 16:57:21 +01005133 if (choice == SEA_CHOICE_NONE
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005134 && swap_exists_action != SEA_NONE
Bram Moolenaar69c35002013-11-04 02:54:12 +01005135 && has_autocmd(EVENT_SWAPEXISTS, buf_fname, buf))
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005136 choice = do_swapexists(buf, fname);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005137#endif
Bram Moolenaar188639d2022-04-04 16:57:21 +01005138
5139 if (choice == SEA_CHOICE_NONE
5140 && swap_exists_action == SEA_READONLY)
5141 {
5142 // always open readonly.
5143 choice = SEA_CHOICE_READONLY;
5144 }
5145
5146 if (choice == SEA_CHOICE_NONE)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005147 {
5148#ifdef FEAT_GUI
Bram Moolenaar798184c2018-10-07 20:48:39 +02005149 // If we are supposed to start the GUI but it wasn't
5150 // completely started yet, start it now. This makes
5151 // the messages displayed in the Vim window when
5152 // loading a session from the .gvimrc file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005153 if (gui.starting && !gui.in_use)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005154 gui_start(NULL);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005155#endif
Bram Moolenaar798184c2018-10-07 20:48:39 +02005156 // Show info about the existing swap file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005157 attention_message(buf, fname);
5158
Bram Moolenaar798184c2018-10-07 20:48:39 +02005159 // We don't want a 'q' typed at the more-prompt
5160 // interrupt loading a file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005161 got_int = FALSE;
Bram Moolenaar798184c2018-10-07 20:48:39 +02005162
5163 // If vimrc has "simalt ~x" we don't want it to
5164 // interfere with the prompt here.
Bram Moolenaar6a2633b2018-10-07 23:16:36 +02005165 flush_buffers(FLUSH_TYPEAHEAD);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005166 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005167
5168#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaar188639d2022-04-04 16:57:21 +01005169 if (swap_exists_action != SEA_NONE
5170 && choice == SEA_CHOICE_NONE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005171 {
5172 char_u *name;
Bram Moolenaar188639d2022-04-04 16:57:21 +01005173 int dialog_result;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005174
Bram Moolenaar964b3742019-05-24 18:54:09 +02005175 name = alloc(STRLEN(fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005176 + STRLEN(_("Swap file \""))
Bram Moolenaar964b3742019-05-24 18:54:09 +02005177 + STRLEN(_("\" already exists!")) + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005178 if (name != NULL)
5179 {
5180 STRCPY(name, _("Swap file \""));
5181 home_replace(NULL, fname, name + STRLEN(name),
5182 1000, TRUE);
5183 STRCAT(name, _("\" already exists!"));
5184 }
Bram Moolenaar188639d2022-04-04 16:57:21 +01005185 dialog_result = do_dialog(VIM_WARNING,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005186 (char_u *)_("VIM - ATTENTION"),
5187 name == NULL
5188 ? (char_u *)_("Swap file already exists!")
5189 : name,
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005190# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005191 process_still_running
5192 ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") :
5193# endif
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005194 (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 +00005195
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005196# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar188639d2022-04-04 16:57:21 +01005197 if (process_still_running && dialog_result >= 4)
5198 // compensate for missing "Delete it" button
5199 dialog_result++;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005200# endif
Bram Moolenaar188639d2022-04-04 16:57:21 +01005201 choice = dialog_result;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005202 vim_free(name);
5203
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005204 // pretend screen didn't scroll, need redraw anyway
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005205 msg_scrolled = 0;
Bram Moolenaara4d158b2022-08-14 14:17:45 +01005206 redraw_all_later(UPD_NOT_VALID);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005207 }
5208#endif
5209
Bram Moolenaar188639d2022-04-04 16:57:21 +01005210 switch (choice)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005211 {
Bram Moolenaar188639d2022-04-04 16:57:21 +01005212 case SEA_CHOICE_READONLY:
5213 buf->b_p_ro = TRUE;
5214 break;
5215 case SEA_CHOICE_EDIT:
5216 break;
5217 case SEA_CHOICE_RECOVER:
5218 swap_exists_action = SEA_RECOVER;
5219 break;
5220 case SEA_CHOICE_DELETE:
5221 mch_remove(fname);
5222 break;
5223 case SEA_CHOICE_QUIT:
5224 swap_exists_action = SEA_QUIT;
5225 break;
5226 case SEA_CHOICE_ABORT:
5227 swap_exists_action = SEA_QUIT;
5228 got_int = TRUE;
5229 break;
5230 case SEA_CHOICE_NONE:
5231 msg_puts("\n");
5232 if (msg_silent == 0)
5233 // call wait_return() later
5234 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005235 break;
5236 }
Bram Moolenaar188639d2022-04-04 16:57:21 +01005237
5238 // If the file was deleted this fname can be used.
5239 if (choice != SEA_CHOICE_NONE && mch_getperm(fname) < 0)
5240 break;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005241
5242#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005243 // Going to try another name, need the dummy file again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005244 if (did_use_dummy)
Bram Moolenaar69c35002013-11-04 02:54:12 +01005245 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005246#endif
5247 }
5248 }
5249 }
5250
5251 /*
5252 * Change the ".swp" extension to find another file that can be used.
5253 * First decrement the last char: ".swo", ".swn", etc.
5254 * If that still isn't enough decrement the last but one char: ".svz"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005255 * Can happen when editing many "No Name" buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005256 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005257 if (fname[n - 1] == 'a') // ".s?a"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005258 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005259 if (fname[n - 2] == 'a') // ".saa": tried enough, give up
Bram Moolenaar071d4272004-06-13 20:20:40 +00005260 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00005261 emsg(_(e_too_many_swap_files_found));
Bram Moolenaard23a8232018-02-10 18:45:26 +01005262 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005263 break;
5264 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005265 --fname[n - 2]; // ".svz", ".suz", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 fname[n - 1] = 'z' + 1;
5267 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005268 --fname[n - 1]; // ".swo", ".swn", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 }
5270
5271 vim_free(dir_name);
5272#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005273 if (dummyfd != NULL) // file has been created temporarily
Bram Moolenaar071d4272004-06-13 20:20:40 +00005274 {
5275 fclose(dummyfd);
Bram Moolenaar69c35002013-11-04 02:54:12 +01005276 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005277 }
5278#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005279#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01005280 if (buf_fname != buf->b_fname)
5281 vim_free(buf_fname);
5282#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005283 return fname;
5284}
5285
5286 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005287b0_magic_wrong(ZERO_BL *b0p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288{
5289 return (b0p->b0_magic_long != (long)B0_MAGIC_LONG
5290 || b0p->b0_magic_int != (int)B0_MAGIC_INT
5291 || b0p->b0_magic_short != (short)B0_MAGIC_SHORT
5292 || b0p->b0_magic_char != B0_MAGIC_CHAR);
5293}
5294
5295#ifdef CHECK_INODE
5296/*
5297 * Compare current file name with file name from swap file.
5298 * Try to use inode numbers when possible.
5299 * Return non-zero when files are different.
5300 *
5301 * When comparing file names a few things have to be taken into consideration:
5302 * - When working over a network the full path of a file depends on the host.
5303 * We check the inode number if possible. It is not 100% reliable though,
5304 * because the device number cannot be used over a network.
5305 * - When a file does not exist yet (editing a new file) there is no inode
5306 * number.
5307 * - The file name in a swap file may not be valid on the current host. The
5308 * "~user" form is used whenever possible to avoid this.
5309 *
5310 * This is getting complicated, let's make a table:
5311 *
5312 * ino_c ino_s fname_c fname_s differ =
5313 *
5314 * both files exist -> compare inode numbers:
5315 * != 0 != 0 X X ino_c != ino_s
5316 *
5317 * inode number(s) unknown, file names available -> compare file names
5318 * == 0 X OK OK fname_c != fname_s
5319 * X == 0 OK OK fname_c != fname_s
5320 *
5321 * current file doesn't exist, file for swap file exist, file name(s) not
5322 * available -> probably different
5323 * == 0 != 0 FAIL X TRUE
5324 * == 0 != 0 X FAIL TRUE
5325 *
5326 * current file exists, inode for swap unknown, file name(s) not
5327 * available -> probably different
5328 * != 0 == 0 FAIL X TRUE
5329 * != 0 == 0 X FAIL TRUE
5330 *
5331 * current file doesn't exist, inode for swap unknown, one file name not
5332 * available -> probably different
5333 * == 0 == 0 FAIL OK TRUE
5334 * == 0 == 0 OK FAIL TRUE
5335 *
5336 * current file doesn't exist, inode for swap unknown, both file names not
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005337 * available -> compare file names
5338 * == 0 == 0 FAIL FAIL fname_c != fname_s
Bram Moolenaar071d4272004-06-13 20:20:40 +00005339 *
5340 * Note that when the ino_t is 64 bits, only the last 32 will be used. This
5341 * can't be changed without making the block 0 incompatible with 32 bit
5342 * versions.
5343 */
5344
5345 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005346fnamecmp_ino(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005347 char_u *fname_c, // current file name
5348 char_u *fname_s, // file name from swap file
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005349 long ino_block0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005350{
Bram Moolenaar8767f522016-07-01 17:17:39 +02005351 stat_T st;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005352 ino_t ino_c = 0; // ino of current file
5353 ino_t ino_s; // ino of file from swap file
5354 char_u buf_c[MAXPATHL]; // full path of fname_c
5355 char_u buf_s[MAXPATHL]; // full path of fname_s
5356 int retval_c; // flag: buf_c valid
5357 int retval_s; // flag: buf_s valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00005358
5359 if (mch_stat((char *)fname_c, &st) == 0)
5360 ino_c = (ino_t)st.st_ino;
5361
5362 /*
5363 * First we try to get the inode from the file name, because the inode in
5364 * the swap file may be outdated. If that fails (e.g. this path is not
5365 * valid on this machine), use the inode from block 0.
5366 */
5367 if (mch_stat((char *)fname_s, &st) == 0)
5368 ino_s = (ino_t)st.st_ino;
5369 else
5370 ino_s = (ino_t)ino_block0;
5371
5372 if (ino_c && ino_s)
5373 return (ino_c != ino_s);
5374
5375 /*
5376 * One of the inode numbers is unknown, try a forced vim_FullName() and
5377 * compare the file names.
5378 */
5379 retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE);
5380 retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE);
5381 if (retval_c == OK && retval_s == OK)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005382 return STRCMP(buf_c, buf_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005383
5384 /*
5385 * Can't compare inodes or file names, guess that the files are different,
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005386 * unless both appear not to exist at all, then compare with the file name
5387 * in the swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005388 */
5389 if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005390 return STRCMP(fname_c, fname_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005391 return TRUE;
5392}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005393#endif // CHECK_INODE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005394
5395/*
5396 * Move a long integer into a four byte character array.
5397 * Used for machine independency in block zero.
5398 */
5399 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005400long_to_char(long n, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005401{
5402 s[0] = (char_u)(n & 0xff);
5403 n = (unsigned)n >> 8;
5404 s[1] = (char_u)(n & 0xff);
5405 n = (unsigned)n >> 8;
5406 s[2] = (char_u)(n & 0xff);
5407 n = (unsigned)n >> 8;
5408 s[3] = (char_u)(n & 0xff);
5409}
5410
5411 static long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005412char_to_long(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005413{
5414 long retval;
5415
5416 retval = s[3];
5417 retval <<= 8;
5418 retval |= s[2];
5419 retval <<= 8;
5420 retval |= s[1];
5421 retval <<= 8;
5422 retval |= s[0];
5423
5424 return retval;
5425}
5426
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005427/*
5428 * Set the flags in the first block of the swap file:
5429 * - file is modified or not: buf->b_changed
5430 * - 'fileformat'
5431 * - 'fileencoding'
5432 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005433 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005434ml_setflags(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005435{
5436 bhdr_T *hp;
5437 ZERO_BL *b0p;
5438
5439 if (!buf->b_ml.ml_mfp)
5440 return;
5441 for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
5442 {
5443 if (hp->bh_bnum == 0)
5444 {
5445 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005446 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
5447 b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK)
5448 | (get_fileformat(buf) + 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005449 add_b0_fenc(b0p, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005450 hp->bh_flags |= BH_DIRTY;
5451 mf_sync(buf->b_ml.ml_mfp, MFS_ZERO);
5452 break;
5453 }
5454 }
5455}
5456
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005457#if defined(FEAT_CRYPT) || defined(PROTO)
5458/*
5459 * If "data" points to a data block encrypt the text in it and return a copy
5460 * in allocated memory. Return NULL when out of memory.
5461 * Otherwise return "data".
5462 */
5463 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005464ml_encrypt_data(
5465 memfile_T *mfp,
5466 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005467 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005468 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005469{
5470 DATA_BL *dp = (DATA_BL *)data;
5471 char_u *head_end;
5472 char_u *text_start;
5473 char_u *new_data;
5474 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005475 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005476
5477 if (dp->db_id != DATA_ID)
5478 return data;
5479
Bram Moolenaarbc563362015-06-09 18:35:25 +02005480 state = ml_crypt_prepare(mfp, offset, FALSE);
5481 if (state == NULL)
5482 return data;
5483
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005484 new_data = alloc(size);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005485 if (new_data == NULL)
5486 return NULL;
5487 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5488 text_start = (char_u *)dp + dp->db_txt_start;
5489 text_len = size - dp->db_txt_start;
5490
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005491 // Copy the header and the text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005492 mch_memmove(new_data, dp, head_end - (char_u *)dp);
5493
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005494 // Encrypt the text.
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005495 crypt_encode(state, text_start, text_len, new_data + dp->db_txt_start,
5496 FALSE);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005497 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005498
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005499 // Clear the gap.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005500 if (head_end < text_start)
5501 vim_memset(new_data + (head_end - data), 0, text_start - head_end);
5502
5503 return new_data;
5504}
5505
5506/*
Bram Moolenaarbc563362015-06-09 18:35:25 +02005507 * Decrypt the text in "data" if it points to an encrypted data block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005508 */
5509 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005510ml_decrypt_data(
5511 memfile_T *mfp,
5512 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005513 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005514 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005515{
5516 DATA_BL *dp = (DATA_BL *)data;
5517 char_u *head_end;
5518 char_u *text_start;
5519 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005520 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005521
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005522 if (dp->db_id != DATA_ID)
5523 return;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005524
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005525 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5526 text_start = (char_u *)dp + dp->db_txt_start;
5527 text_len = dp->db_txt_end - dp->db_txt_start;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005528
Yegappan Lakshmanane8575982023-01-14 12:32:28 +00005529 if (head_end > text_start || dp->db_txt_start > size
5530 || dp->db_txt_end > size)
5531 return; // data was messed up
5532
5533 state = ml_crypt_prepare(mfp, offset, TRUE);
5534 if (state == NULL)
5535 return;
5536
5537 // Decrypt the text in place.
5538 crypt_decode_inplace(state, text_start, text_len, FALSE);
5539 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005540}
5541
5542/*
5543 * Prepare for encryption/decryption, using the key, seed and offset.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005544 * Return an allocated cryptstate_T *.
Christian Brabandtaae58342023-04-23 17:50:22 +01005545 * Note: Encryption not supported for SODIUM
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005546 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005547 static cryptstate_T *
Bram Moolenaar8767f522016-07-01 17:17:39 +02005548ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005549{
5550 buf_T *buf = mfp->mf_buffer;
5551 char_u salt[50];
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005552 int method_nr;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005553 char_u *key;
Christian Brabandtaae58342023-04-23 17:50:22 +01005554 crypt_arg_T arg;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005555
Christian Brabandtaae58342023-04-23 17:50:22 +01005556 CLEAR_FIELD(arg);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005557 if (reading && mfp->mf_old_key != NULL)
5558 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005559 // Reading back blocks with the previous key/method/seed.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005560 method_nr = mfp->mf_old_cm;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005561 key = mfp->mf_old_key;
Christian Brabandtaae58342023-04-23 17:50:22 +01005562 arg.cat_seed = mfp->mf_old_seed;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005563 }
5564 else
5565 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005566 method_nr = crypt_get_method_nr(buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005567 key = buf->b_p_key;
Christian Brabandtaae58342023-04-23 17:50:22 +01005568 arg.cat_seed = mfp->mf_seed;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005569 }
Christian Brabandtaae58342023-04-23 17:50:22 +01005570
Bram Moolenaarbc563362015-06-09 18:35:25 +02005571 if (*key == NUL)
5572 return NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005573
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005574 if (method_nr == CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005575 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005576 // For PKzip: Append the offset to the key, so that we use a different
5577 // key for every block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005578 vim_snprintf((char *)salt, sizeof(salt), "%s%ld", key, (long)offset);
Christian Brabandtaae58342023-04-23 17:50:22 +01005579 arg.cat_seed = NULL;
5580 arg.cat_init_from_file = FALSE;
5581
5582 return crypt_create(method_nr, salt, &arg);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005583 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005584
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005585 // Using blowfish or better: add salt and seed. We use the byte offset
5586 // of the block for the salt.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005587 vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
Christian Brabandtaae58342023-04-23 17:50:22 +01005588
5589 arg.cat_salt = salt;
5590 arg.cat_salt_len = (int)STRLEN(salt);
5591 arg.cat_seed_len = MF_SEED_LEN;
5592 arg.cat_add_len = 0;
5593 arg.cat_add = NULL;
5594 arg.cat_init_from_file = FALSE;
5595
5596 return crypt_create(method_nr, key, &arg);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005597}
5598
5599#endif
5600
5601
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602#if defined(FEAT_BYTEOFF) || defined(PROTO)
5603
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005604#define MLCS_MAXL 800 // max no of lines in chunk
5605#define MLCS_MINL 400 // should be half of MLCS_MAXL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606
5607/*
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02005608 * Keep information for finding byte offset of a line, updtype may be one of:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005609 * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it
5610 * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called.
5611 * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it
5612 * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity.
5613 */
5614 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005615ml_updatechunk(
5616 buf_T *buf,
5617 linenr_T line,
5618 long len,
5619 int updtype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620{
5621 static buf_T *ml_upd_lastbuf = NULL;
5622 static linenr_T ml_upd_lastline;
5623 static linenr_T ml_upd_lastcurline;
5624 static int ml_upd_lastcurix;
5625
5626 linenr_T curline = ml_upd_lastcurline;
5627 int curix = ml_upd_lastcurix;
5628 long size;
5629 chunksize_T *curchnk;
5630 int rest;
5631 bhdr_T *hp;
5632 DATA_BL *dp;
5633
5634 if (buf->b_ml.ml_usedchunks == -1 || len == 0)
5635 return;
5636 if (buf->b_ml.ml_chunksize == NULL)
5637 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005638 buf->b_ml.ml_chunksize = ALLOC_MULT(chunksize_T, 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005639 if (buf->b_ml.ml_chunksize == NULL)
5640 {
5641 buf->b_ml.ml_usedchunks = -1;
5642 return;
5643 }
5644 buf->b_ml.ml_numchunks = 100;
5645 buf->b_ml.ml_usedchunks = 1;
5646 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
5647 buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1;
5648 }
5649
5650 if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1)
5651 {
5652 /*
5653 * First line in empty buffer from ml_flush_line() -- reset
5654 */
5655 buf->b_ml.ml_usedchunks = 1;
5656 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01005657 buf->b_ml.ml_chunksize[0].mlcs_totalsize = (long)buf->b_ml.ml_line_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005658 return;
5659 }
5660
5661 /*
5662 * Find chunk that our line belongs to, curline will be at start of the
5663 * chunk.
5664 */
5665 if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1
5666 || updtype != ML_CHNK_ADDLINE)
5667 {
5668 for (curline = 1, curix = 0;
5669 curix < buf->b_ml.ml_usedchunks - 1
5670 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5671 curix++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005672 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005673 }
Bram Moolenaara9a8e042018-10-30 22:15:55 +01005674 else if (curix < buf->b_ml.ml_usedchunks - 1
5675 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005676 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005677 // Adjust cached curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005678 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5679 curix++;
5680 }
5681 curchnk = buf->b_ml.ml_chunksize + curix;
5682
5683 if (updtype == ML_CHNK_DELLINE)
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00005684 len = -len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005685 curchnk->mlcs_totalsize += len;
5686 if (updtype == ML_CHNK_ADDLINE)
5687 {
5688 curchnk->mlcs_numlines++;
5689
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005690 // May resize here so we don't have to do it in both cases below
Bram Moolenaar071d4272004-06-13 20:20:40 +00005691 if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks)
5692 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005693 chunksize_T *t_chunksize = buf->b_ml.ml_chunksize;
5694
Bram Moolenaar071d4272004-06-13 20:20:40 +00005695 buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2;
Bram Moolenaar51b6eb42020-08-22 15:19:18 +02005696 buf->b_ml.ml_chunksize = vim_realloc(buf->b_ml.ml_chunksize,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005697 sizeof(chunksize_T) * buf->b_ml.ml_numchunks);
5698 if (buf->b_ml.ml_chunksize == NULL)
5699 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005700 // Hmmmm, Give up on offset for this buffer
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005701 vim_free(t_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005702 buf->b_ml.ml_usedchunks = -1;
5703 return;
5704 }
5705 }
5706
5707 if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL)
5708 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005709 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005710 int idx;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005711 int end_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005712 int text_end;
5713 int linecnt;
5714
5715 mch_memmove(buf->b_ml.ml_chunksize + curix + 1,
5716 buf->b_ml.ml_chunksize + curix,
5717 (buf->b_ml.ml_usedchunks - curix) *
5718 sizeof(chunksize_T));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005719 // Compute length of first half of lines in the split chunk
Bram Moolenaar071d4272004-06-13 20:20:40 +00005720 size = 0;
5721 linecnt = 0;
5722 while (curline < buf->b_ml.ml_line_count
5723 && linecnt < MLCS_MINL)
5724 {
5725 if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5726 {
5727 buf->b_ml.ml_usedchunks = -1;
5728 return;
5729 }
5730 dp = (DATA_BL *)(hp->bh_data);
5731 count = (long)(buf->b_ml.ml_locked_high) -
5732 (long)(buf->b_ml.ml_locked_low) + 1;
5733 idx = curline - buf->b_ml.ml_locked_low;
5734 curline = buf->b_ml.ml_locked_high + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005735
5736 // compute index of last line to use in this MEMLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005737 rest = count - idx;
5738 if (linecnt + rest > MLCS_MINL)
5739 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005740 end_idx = idx + MLCS_MINL - linecnt - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005741 linecnt = MLCS_MINL;
5742 }
5743 else
5744 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005745 end_idx = count - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005746 linecnt += rest;
5747 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005748#ifdef FEAT_PROP_POPUP
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005749 if (buf->b_has_textprop)
5750 {
5751 int i;
5752
5753 // We cannot use the text pointers to get the text length,
5754 // the text prop info would also be counted. Go over the
5755 // lines.
5756 for (i = end_idx; i < idx; ++i)
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01005757 size += (int)STRLEN((char_u *)dp
5758 + (dp->db_index[i] & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005759 }
5760 else
5761#endif
5762 {
Bram Moolenaar14c75302021-08-15 14:28:40 +02005763 if (idx == 0) // first line in block, text at the end
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005764 text_end = dp->db_txt_end;
5765 else
5766 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01005767 size += text_end
5768 - ((dp->db_index[end_idx]) & DB_INDEX_MASK);
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005769 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005770 }
5771 buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt;
5772 buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt;
5773 buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size;
5774 buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size;
5775 buf->b_ml.ml_usedchunks++;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005776 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005777 return;
5778 }
5779 else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL
5780 && curix == buf->b_ml.ml_usedchunks - 1
5781 && buf->b_ml.ml_line_count - line <= 1)
5782 {
5783 /*
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005784 * We are in the last chunk and it is cheap to create a new one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 * after this. Do it now to avoid the loop above later on
5786 */
5787 curchnk = buf->b_ml.ml_chunksize + curix + 1;
5788 buf->b_ml.ml_usedchunks++;
5789 if (line == buf->b_ml.ml_line_count)
5790 {
5791 curchnk->mlcs_numlines = 0;
5792 curchnk->mlcs_totalsize = 0;
5793 }
5794 else
5795 {
5796 /*
5797 * Line is just prior to last, move count for last
5798 * This is the common case when loading a new file
5799 */
5800 hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND);
5801 if (hp == NULL)
5802 {
5803 buf->b_ml.ml_usedchunks = -1;
5804 return;
5805 }
5806 dp = (DATA_BL *)(hp->bh_data);
5807 if (dp->db_line_count == 1)
5808 rest = dp->db_txt_end - dp->db_txt_start;
5809 else
5810 rest =
5811 ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK)
5812 - dp->db_txt_start;
5813 curchnk->mlcs_totalsize = rest;
5814 curchnk->mlcs_numlines = 1;
5815 curchnk[-1].mlcs_totalsize -= rest;
5816 curchnk[-1].mlcs_numlines -= 1;
5817 }
5818 }
5819 }
5820 else if (updtype == ML_CHNK_DELLINE)
5821 {
5822 curchnk->mlcs_numlines--;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005823 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01005824 if (curix < buf->b_ml.ml_usedchunks - 1
5825 && curchnk->mlcs_numlines + curchnk[1].mlcs_numlines
5826 <= MLCS_MINL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005827 {
5828 curix++;
5829 curchnk = buf->b_ml.ml_chunksize + curix;
5830 }
5831 else if (curix == 0 && curchnk->mlcs_numlines <= 0)
5832 {
5833 buf->b_ml.ml_usedchunks--;
5834 mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1,
5835 buf->b_ml.ml_usedchunks * sizeof(chunksize_T));
5836 return;
5837 }
5838 else if (curix == 0 || (curchnk->mlcs_numlines > 10
Bram Moolenaare5a0e8c2022-08-09 21:37:55 +01005839 && curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines
5840 > MLCS_MINL))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 {
5842 return;
5843 }
5844
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005845 // Collapse chunks
Bram Moolenaar071d4272004-06-13 20:20:40 +00005846 curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines;
5847 curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize;
5848 buf->b_ml.ml_usedchunks--;
5849 if (curix < buf->b_ml.ml_usedchunks)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 mch_memmove(buf->b_ml.ml_chunksize + curix,
5851 buf->b_ml.ml_chunksize + curix + 1,
5852 (buf->b_ml.ml_usedchunks - curix) *
5853 sizeof(chunksize_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00005854 return;
5855 }
5856 ml_upd_lastbuf = buf;
5857 ml_upd_lastline = line;
5858 ml_upd_lastcurline = curline;
5859 ml_upd_lastcurix = curix;
5860}
5861
5862/*
5863 * Find offset for line or line with offset.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005864 * Find line with offset if "lnum" is 0; return remaining offset in offp
5865 * Find offset of line if "lnum" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005866 * return -1 if information is not available
5867 */
5868 long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005869ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870{
5871 linenr_T curline;
5872 int curix;
5873 long size;
5874 bhdr_T *hp;
5875 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005876 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005877 int idx;
5878 int start_idx;
5879 int text_end;
5880 long offset;
5881 int len;
5882 int ffdos = (get_fileformat(buf) == EOL_DOS);
5883 int extra = 0;
5884
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005885 // take care of cached line first
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005886 ml_flush_line(curbuf);
5887
Bram Moolenaar071d4272004-06-13 20:20:40 +00005888 if (buf->b_ml.ml_usedchunks == -1
5889 || buf->b_ml.ml_chunksize == NULL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005890 || lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005891 return -1;
5892
5893 if (offp == NULL)
5894 offset = 0;
5895 else
5896 offset = *offp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005897 if (lnum == 0 && offset <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005898 return 1; // Not a "find offset" and offset 0 _must_ be in line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005899 /*
5900 * Find the last chunk before the one containing our line. Last chunk is
Bram Moolenaar14c75302021-08-15 14:28:40 +02005901 * special because it will never qualify.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005902 */
5903 curline = 1;
5904 curix = size = 0;
5905 while (curix < buf->b_ml.ml_usedchunks - 1
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005906 && ((lnum != 0
5907 && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005908 || (offset != 0
5909 && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize
=?UTF-8?q?Dundar=20G=C3=B6c?=d5cec1f2022-01-29 15:19:23 +00005910 + (long)ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005911 {
5912 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5913 size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize;
5914 if (offset && ffdos)
5915 size += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5916 curix++;
5917 }
5918
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005919 while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005920 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005921#ifdef FEAT_PROP_POPUP
5922 size_t textprop_total = 0;
5923#endif
5924
Bram Moolenaar071d4272004-06-13 20:20:40 +00005925 if (curline > buf->b_ml.ml_line_count
5926 || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5927 return -1;
5928 dp = (DATA_BL *)(hp->bh_data);
5929 count = (long)(buf->b_ml.ml_locked_high) -
5930 (long)(buf->b_ml.ml_locked_low) + 1;
5931 start_idx = idx = curline - buf->b_ml.ml_locked_low;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005932 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 text_end = dp->db_txt_end;
5934 else
5935 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005936 // Compute index of last line to use in this MEMLINE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005937 if (lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005939 if (curline + (count - idx) >= lnum)
5940 idx += lnum - curline - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005941 else
5942 idx = count - 1;
5943 }
5944 else
5945 {
5946 extra = 0;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005947 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005948 {
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005949#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005950 size_t textprop_size = 0;
5951
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005952 if (buf->b_has_textprop)
5953 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005954 char_u *l1, *l2;
5955
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005956 // compensate for the extra bytes taken by textprops
5957 l1 = (char_u *)dp + ((dp->db_index[idx]) & DB_INDEX_MASK);
5958 l2 = (char_u *)dp + (idx == 0 ? dp->db_txt_end
5959 : ((dp->db_index[idx - 1]) & DB_INDEX_MASK));
5960 textprop_size = (l2 - l1) - (STRLEN(l1) + 1);
5961 }
5962#endif
5963 if (!(offset >= size
5964 + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK)
5965#ifdef FEAT_PROP_POPUP
Bram Moolenaar94b6fb72020-01-17 21:00:59 +01005966 - (long)(textprop_total + textprop_size)
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005967#endif
5968 + ffdos))
5969 break;
5970
Bram Moolenaar071d4272004-06-13 20:20:40 +00005971 if (ffdos)
5972 size++;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005973#ifdef FEAT_PROP_POPUP
5974 textprop_total += textprop_size;
5975#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005976 if (idx == count - 1)
5977 {
5978 extra = 1;
5979 break;
5980 }
5981 idx++;
5982 }
5983 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005984#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005985 if (buf->b_has_textprop && lnum != 0)
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005986 {
5987 int i;
5988
5989 // cannot use the db_index pointer, need to get the actual text
5990 // lengths.
5991 len = 0;
5992 for (i = start_idx; i <= idx; ++i)
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005993 {
5994 char_u *p = (char_u *)dp + ((dp->db_index[i]) & DB_INDEX_MASK);
5995 len += (int)STRLEN(p) + 1;
5996 }
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005997 }
5998 else
5999#endif
Bram Moolenaar59ff6402021-01-30 17:16:28 +01006000 len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK)
6001#ifdef FEAT_PROP_POPUP
6002 - (long)textprop_total
6003#endif
6004 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006005 size += len;
6006 if (offset != 0 && size >= offset)
6007 {
6008 if (size + ffdos == offset)
6009 *offp = 0;
6010 else if (idx == start_idx)
6011 *offp = offset - size + len;
6012 else
6013 *offp = offset - size + len
Bram Moolenaar59ff6402021-01-30 17:16:28 +01006014 - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK))
6015#ifdef FEAT_PROP_POPUP
6016 + (long)textprop_total
6017#endif
6018 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006019 curline += idx - start_idx + extra;
6020 if (curline > buf->b_ml.ml_line_count)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01006021 return -1; // exactly one byte beyond the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00006022 return curline;
6023 }
6024 curline = buf->b_ml.ml_locked_high + 1;
6025 }
6026
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00006027 if (lnum != 0)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00006028 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01006029 // Count extra CR characters.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00006030 if (ffdos)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00006031 size += lnum - 1;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00006032
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01006033 // Don't count the last line break if 'noeol' and ('bin' or
6034 // 'nofixeol').
Bram Moolenaar34d72d42015-07-17 14:18:08 +02006035 if ((!buf->b_p_fixeol || buf->b_p_bin) && !buf->b_p_eol
Bram Moolenaarc26f7c62018-08-20 22:53:04 +02006036 && lnum > buf->b_ml.ml_line_count)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00006037 size -= ffdos + 1;
6038 }
6039
Bram Moolenaar071d4272004-06-13 20:20:40 +00006040 return size;
6041}
6042
6043/*
6044 * Goto byte in buffer with offset 'cnt'.
6045 */
6046 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01006047goto_byte(long cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00006048{
6049 long boff = cnt;
6050 linenr_T lnum;
6051
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01006052 ml_flush_line(curbuf); // cached line may be dirty
Bram Moolenaar071d4272004-06-13 20:20:40 +00006053 setpcmark();
6054 if (boff)
6055 --boff;
6056 lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01006057 if (lnum < 1) // past the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00006058 {
6059 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
6060 curwin->w_curswant = MAXCOL;
6061 coladvance((colnr_T)MAXCOL);
6062 }
6063 else
6064 {
6065 curwin->w_cursor.lnum = lnum;
6066 curwin->w_cursor.col = (colnr_T)boff;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00006067 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00006068 curwin->w_set_curswant = TRUE;
6069 }
6070 check_cursor();
6071
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01006072 // Make sure the cursor is on the first byte of a multi-byte char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00006073 if (has_mbyte)
6074 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00006075}
6076#endif