blob: 9c15fa7743b15087235011e3d961a918d080c9e7 [file] [log] [blame]
Bram Moolenaaredf3f972016-08-29 22:49:24 +02001/* vi:set ts=8 sts=4 sw=4 noet:
Bram Moolenaar071d4272004-06-13 20:20:40 +00002 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 * See README.txt for an overview of the Vim source code.
8 */
9
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010010// for debugging
11// #define CHECK(c, s) do { if (c) emsg((s)); } while (0)
Bram Moolenaar6f470022018-04-10 18:47:20 +020012#define CHECK(c, s) do { /**/ } while (0)
Bram Moolenaar071d4272004-06-13 20:20:40 +000013
14/*
15 * memline.c: Contains the functions for appending, deleting and changing the
Bram Moolenaar4770d092006-01-12 23:22:24 +000016 * text lines. The memfile functions are used to store the information in
17 * blocks of memory, backed up by a file. The structure of the information is
18 * a tree. The root of the tree is a pointer block. The leaves of the tree
19 * are data blocks. In between may be several layers of pointer blocks,
20 * forming branches.
Bram Moolenaar071d4272004-06-13 20:20:40 +000021 *
22 * Three types of blocks are used:
23 * - Block nr 0 contains information for recovery
24 * - Pointer blocks contain list of pointers to other blocks.
25 * - Data blocks contain the actual text.
26 *
27 * Block nr 0 contains the block0 structure (see below).
28 *
29 * Block nr 1 is the first pointer block. It is the root of the tree.
30 * Other pointer blocks are branches.
31 *
32 * If a line is too big to fit in a single page, the block containing that
33 * line is made big enough to hold the line. It may span several pages.
34 * Otherwise all blocks are one page.
35 *
36 * A data block that was filled when starting to edit a file and was not
37 * changed since then, can have a negative block number. This means that it
38 * has not yet been assigned a place in the file. When recovering, the lines
39 * in this data block can be read from the original file. When the block is
40 * changed (lines appended/deleted/changed) or when it is flushed it gets a
41 * positive number. Use mf_trans_del() to get the new number, before calling
42 * mf_get().
43 */
44
Bram Moolenaar071d4272004-06-13 20:20:40 +000045#include "vim.h"
46
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010047#ifndef UNIX // it's in os_unix.h for Unix
Bram Moolenaar071d4272004-06-13 20:20:40 +000048# include <time.h>
49#endif
50
Bram Moolenaar5a6404c2006-11-01 17:12:57 +000051#if defined(SASC) || defined(__amigaos4__)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010052# include <proto/dos.h> // for Open() and Close()
Bram Moolenaar071d4272004-06-13 20:20:40 +000053#endif
54
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010055typedef struct block0 ZERO_BL; // contents of the first block
56typedef struct pointer_block PTR_BL; // contents of a pointer block
57typedef struct data_block DATA_BL; // contents of a data block
58typedef struct pointer_entry PTR_EN; // block/line-count pair
Bram Moolenaar071d4272004-06-13 20:20:40 +000059
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010060#define DATA_ID (('d' << 8) + 'a') // data block id
61#define PTR_ID (('p' << 8) + 't') // pointer block id
62#define BLOCK0_ID0 'b' // block 0 id 0
63#define BLOCK0_ID1 '0' // block 0 id 1
64#define BLOCK0_ID1_C0 'c' // block 0 id 1 'cm' 0
65#define BLOCK0_ID1_C1 'C' // block 0 id 1 'cm' 1
66#define BLOCK0_ID1_C2 'd' // block 0 id 1 'cm' 2
Christian Brabandtf573c6e2021-06-20 14:02:16 +020067#define BLOCK0_ID1_C3 'S' // block 0 id 1 'cm' 3 - but not actually used
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020068
69#if defined(FEAT_CRYPT)
70static int id1_codes[] = {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010071 BLOCK0_ID1_C0, // CRYPT_M_ZIP
72 BLOCK0_ID1_C1, // CRYPT_M_BF
73 BLOCK0_ID1_C2, // CRYPT_M_BF2
Christian Brabandtf573c6e2021-06-20 14:02:16 +020074 BLOCK0_ID1_C3, // CRYPT_M_SOD - Unused!
Bram Moolenaar8f4ac012014-08-10 13:38:34 +020075};
76#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000077
78/*
79 * pointer to a block, used in a pointer block
80 */
81struct pointer_entry
82{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010083 blocknr_T pe_bnum; // block number
84 linenr_T pe_line_count; // number of lines in this branch
85 linenr_T pe_old_lnum; // lnum for this block (for recovery)
86 int pe_page_count; // number of pages in block pe_bnum
Bram Moolenaar071d4272004-06-13 20:20:40 +000087};
88
89/*
90 * A pointer block contains a list of branches in the tree.
91 */
92struct pointer_block
93{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +010094 short_u pb_id; // ID for pointer block: PTR_ID
95 short_u pb_count; // number of pointers in this block
96 short_u pb_count_max; // maximum value for pb_count
97 PTR_EN pb_pointer[1]; // list of pointers to blocks (actually longer)
98 // followed by empty space until end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +000099};
100
101/*
102 * A data block is a leaf in the tree.
103 *
104 * The text of the lines is at the end of the block. The text of the first line
105 * in the block is put at the end, the text of the second line in front of it,
106 * etc. Thus the order of the lines is the opposite of the line number.
107 */
108struct data_block
109{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100110 short_u db_id; // ID for data block: DATA_ID
111 unsigned db_free; // free space available
112 unsigned db_txt_start; // byte where text starts
113 unsigned db_txt_end; // byte just after data block
114 linenr_T db_line_count; // number of lines in this block
115 unsigned db_index[1]; // index for start of line (actually bigger)
Bram Moolenaar4b96df52020-01-26 22:00:26 +0100116 // followed by empty space up to db_txt_start
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100117 // followed by the text in the lines until
118 // end of page
Bram Moolenaar071d4272004-06-13 20:20:40 +0000119};
120
121/*
122 * The low bits of db_index hold the actual index. The topmost bit is
123 * used for the global command to be able to mark a line.
124 * This method is not clean, but otherwise there would be at least one extra
125 * byte used for each line.
126 * The mark has to be in this place to keep it with the correct line when other
127 * lines are inserted or deleted.
128 */
129#define DB_MARKED ((unsigned)1 << ((sizeof(unsigned) * 8) - 1))
130#define DB_INDEX_MASK (~DB_MARKED)
131
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100132#define INDEX_SIZE (sizeof(unsigned)) // size of one db_index entry
133#define HEADER_SIZE (sizeof(DATA_BL) - INDEX_SIZE) // size of data block header
Bram Moolenaar071d4272004-06-13 20:20:40 +0000134
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100135#define B0_FNAME_SIZE_ORG 900 // what it was in older versions
136#define B0_FNAME_SIZE_NOCRYPT 898 // 2 bytes used for other things
137#define B0_FNAME_SIZE_CRYPT 890 // 10 bytes used for other things
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000138#define B0_UNAME_SIZE 40
139#define B0_HNAME_SIZE 40
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140/*
141 * Restrict the numbers to 32 bits, otherwise most compilers will complain.
142 * This won't detect a 64 bit machine that only swaps a byte in the top 32
143 * bits, but that is crazy anyway.
144 */
145#define B0_MAGIC_LONG 0x30313233L
146#define B0_MAGIC_INT 0x20212223L
147#define B0_MAGIC_SHORT 0x10111213L
148#define B0_MAGIC_CHAR 0x55
149
150/*
151 * Block zero holds all info about the swap file.
152 *
153 * NOTE: DEFINITION OF BLOCK 0 SHOULD NOT CHANGE! It would make all existing
154 * swap files unusable!
155 *
156 * If size of block0 changes anyway, adjust MIN_SWAP_PAGE_SIZE in vim.h!!
157 *
Bram Moolenaarbae0c162007-05-10 19:30:25 +0000158 * This block is built up of single bytes, to make it portable across
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159 * different machines. b0_magic_* is used to check the byte order and size of
160 * variables, because the rest of the swap file is not portable.
161 */
162struct block0
163{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100164 char_u b0_id[2]; // id for block 0: BLOCK0_ID0 and BLOCK0_ID1,
165 // BLOCK0_ID1_C0, BLOCK0_ID1_C1, etc.
166 char_u b0_version[10]; // Vim version string
167 char_u b0_page_size[4];// number of bytes per page
168 char_u b0_mtime[4]; // last modification time of file
169 char_u b0_ino[4]; // inode of b0_fname
170 char_u b0_pid[4]; // process id of creator (or 0)
171 char_u b0_uname[B0_UNAME_SIZE]; // name of user (uid if no name)
172 char_u b0_hname[B0_HNAME_SIZE]; // host name (if it has a name)
173 char_u b0_fname[B0_FNAME_SIZE_ORG]; // name of file being edited
174 long b0_magic_long; // check for byte order of long
175 int b0_magic_int; // check for byte order of int
176 short b0_magic_short; // check for byte order of short
177 char_u b0_magic_char; // check for last char
Bram Moolenaar071d4272004-06-13 20:20:40 +0000178};
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000179
180/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000181 * Note: b0_dirty and b0_flags are put at the end of the file name. For very
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000182 * long file names in older versions of Vim they are invalid.
183 * The 'fileencoding' comes before b0_flags, with a NUL in front. But only
184 * when there is room, for very long file names it's omitted.
185 */
186#define B0_DIRTY 0x55
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200187#define b0_dirty b0_fname[B0_FNAME_SIZE_ORG - 1]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000188
189/*
190 * The b0_flags field is new in Vim 7.0.
191 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200192#define b0_flags b0_fname[B0_FNAME_SIZE_ORG - 2]
193
194/*
195 * Crypt seed goes here, 8 bytes. New in Vim 7.3.
196 * Without encryption these bytes may be used for 'fenc'.
197 */
198#define b0_seed b0_fname[B0_FNAME_SIZE_ORG - 2 - MF_SEED_LEN]
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000199
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100200// The lowest two bits contain the fileformat. Zero means it's not set
201// (compatible with Vim 6.x), otherwise it's EOL_UNIX + 1, EOL_DOS + 1 or
202// EOL_MAC + 1.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000203#define B0_FF_MASK 3
204
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100205// Swap file is in directory of edited file. Used to find the file from
206// different mount points.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000207#define B0_SAME_DIR 4
208
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100209// The 'fileencoding' is at the end of b0_fname[], with a NUL in front of it.
210// When empty there is only the NUL.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000211#define B0_HAS_FENC 8
Bram Moolenaar071d4272004-06-13 20:20:40 +0000212
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100213#define STACK_INCR 5 // nr of entries added to ml_stack at a time
Bram Moolenaar071d4272004-06-13 20:20:40 +0000214
215/*
216 * The line number where the first mark may be is remembered.
217 * If it is 0 there are no marks at all.
218 * (always used for the current buffer only, no buffer change possible while
219 * executing a global command).
220 */
221static linenr_T lowest_marked = 0;
222
223/*
224 * arguments for ml_find_line()
225 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100226#define ML_DELETE 0x11 // delete line
227#define ML_INSERT 0x12 // insert line
228#define ML_FIND 0x13 // just find the line
229#define ML_FLUSH 0x02 // flush locked block
230#define ML_SIMPLE(x) (x & 0x10) // DEL, INS or FIND
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100232// argument for ml_upd_block0()
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200233typedef enum {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100234 UB_FNAME = 0 // update timestamp and filename
235 , UB_SAME_DIR // update the B0_SAME_DIR flag
236 , UB_CRYPT // update crypt key
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200237} upd_block0_T;
238
239#ifdef FEAT_CRYPT
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100240static void ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200241#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100242static void ml_upd_block0(buf_T *buf, upd_block0_T what);
243static void set_b0_fname(ZERO_BL *, buf_T *buf);
244static void set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100245static void add_b0_fenc(ZERO_BL *b0p, buf_T *buf);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100246static time_t swapfile_info(char_u *);
247static int recov_file_names(char_u **, char_u *, int prepend_dot);
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100248static char_u *findswapname(buf_T *, char_u **, char_u *);
249static void ml_flush_line(buf_T *);
250static bhdr_T *ml_new_data(memfile_T *, int, int);
251static bhdr_T *ml_new_ptr(memfile_T *);
252static bhdr_T *ml_find_line(buf_T *, linenr_T, int);
253static int ml_add_stack(buf_T *);
254static void ml_lineadd(buf_T *, int);
255static int b0_magic_wrong(ZERO_BL *);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256#ifdef CHECK_INODE
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100257static int fnamecmp_ino(char_u *, char_u *, long);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000258#endif
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100259static void long_to_char(long, char_u *);
260static long char_to_long(char_u *);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200261#ifdef FEAT_CRYPT
Bram Moolenaar8767f522016-07-01 17:17:39 +0200262static cryptstate_T *ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200263#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000264#ifdef FEAT_BYTEOFF
Bram Moolenaar92b8b2d2016-01-29 22:36:45 +0100265static void ml_updatechunk(buf_T *buf, long line, long len, int updtype);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000266#endif
267
268/*
Bram Moolenaar4770d092006-01-12 23:22:24 +0000269 * Open a new memline for "buf".
Bram Moolenaar071d4272004-06-13 20:20:40 +0000270 *
Bram Moolenaar4770d092006-01-12 23:22:24 +0000271 * Return FAIL for failure, OK otherwise.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000272 */
273 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100274ml_open(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000275{
276 memfile_T *mfp;
277 bhdr_T *hp = NULL;
278 ZERO_BL *b0p;
279 PTR_BL *pp;
280 DATA_BL *dp;
281
Bram Moolenaar4770d092006-01-12 23:22:24 +0000282 /*
283 * init fields in memline struct
284 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100285 buf->b_ml.ml_stack_size = 0; // no stack yet
286 buf->b_ml.ml_stack = NULL; // no stack yet
287 buf->b_ml.ml_stack_top = 0; // nothing in the stack
288 buf->b_ml.ml_locked = NULL; // no cached block
289 buf->b_ml.ml_line_lnum = 0; // no cached line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000290#ifdef FEAT_BYTEOFF
Bram Moolenaar4770d092006-01-12 23:22:24 +0000291 buf->b_ml.ml_chunksize = NULL;
Bram Moolenaardf9070e2021-08-25 17:31:37 +0200292 buf->b_ml.ml_usedchunks = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000293#endif
294
Bram Moolenaare1004402020-10-24 20:49:43 +0200295 if (cmdmod.cmod_flags & CMOD_NOSWAPFILE)
Bram Moolenaar5803ae62014-03-23 16:04:02 +0100296 buf->b_p_swf = FALSE;
297
Bram Moolenaar4770d092006-01-12 23:22:24 +0000298 /*
299 * When 'updatecount' is non-zero swap file may be opened later.
300 */
301 if (p_uc && buf->b_p_swf)
302 buf->b_may_swap = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000303 else
Bram Moolenaar4770d092006-01-12 23:22:24 +0000304 buf->b_may_swap = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000305
Bram Moolenaar4770d092006-01-12 23:22:24 +0000306 /*
307 * Open the memfile. No swap file is created yet.
308 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309 mfp = mf_open(NULL, 0);
310 if (mfp == NULL)
311 goto error;
312
Bram Moolenaar4770d092006-01-12 23:22:24 +0000313 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200314#ifdef FEAT_CRYPT
315 mfp->mf_buffer = buf;
316#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000317 buf->b_ml.ml_flags = ML_EMPTY;
318 buf->b_ml.ml_line_count = 1;
Bram Moolenaar592e0a22004-07-03 16:05:59 +0000319#ifdef FEAT_LINEBREAK
320 curwin->w_nrwidth_line_count = 0;
321#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000322
Bram Moolenaar071d4272004-06-13 20:20:40 +0000323/*
324 * fill block0 struct and write page 0
325 */
326 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
327 goto error;
328 if (hp->bh_bnum != 0)
329 {
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000330 iemsg(_(e_didnt_get_block_nr_zero));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000331 goto error;
332 }
333 b0p = (ZERO_BL *)(hp->bh_data);
334
335 b0p->b0_id[0] = BLOCK0_ID0;
336 b0p->b0_id[1] = BLOCK0_ID1;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000337 b0p->b0_magic_long = (long)B0_MAGIC_LONG;
338 b0p->b0_magic_int = (int)B0_MAGIC_INT;
339 b0p->b0_magic_short = (short)B0_MAGIC_SHORT;
340 b0p->b0_magic_char = B0_MAGIC_CHAR;
Bram Moolenaar22c10562018-05-26 17:35:27 +0200341 mch_memmove(b0p->b0_version, "VIM ", 4);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000342 STRNCPY(b0p->b0_version + 4, Version, 6);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000343 long_to_char((long)mfp->mf_page_size, b0p->b0_page_size);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000344
Bram Moolenaar76b92b22006-03-24 22:46:53 +0000345#ifdef FEAT_SPELL
346 if (!buf->b_spell)
347#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000348 {
349 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
350 b0p->b0_flags = get_fileformat(buf) + 1;
351 set_b0_fname(b0p, buf);
352 (void)get_user_name(b0p->b0_uname, B0_UNAME_SIZE);
353 b0p->b0_uname[B0_UNAME_SIZE - 1] = NUL;
354 mch_get_host_name(b0p->b0_hname, B0_HNAME_SIZE);
355 b0p->b0_hname[B0_HNAME_SIZE - 1] = NUL;
356 long_to_char(mch_get_pid(), b0p->b0_pid);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200357#ifdef FEAT_CRYPT
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200358 ml_set_b0_crypt(buf, b0p);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200359#endif
Bram Moolenaar4770d092006-01-12 23:22:24 +0000360 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361
362 /*
363 * Always sync block number 0 to disk, so we can check the file name in
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200364 * the swap file in findswapname(). Don't do this for a help files or
365 * a spell buffer though.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000366 * Only works when there's a swapfile, otherwise it's done when the file
367 * is created.
368 */
369 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000370 if (!buf->b_help && !B_SPELL(buf))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000371 (void)mf_sync(mfp, 0);
372
Bram Moolenaar4770d092006-01-12 23:22:24 +0000373 /*
374 * Fill in root pointer block and write page 1.
375 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000376 if ((hp = ml_new_ptr(mfp)) == NULL)
377 goto error;
378 if (hp->bh_bnum != 1)
379 {
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000380 iemsg(_(e_didnt_get_block_nr_one));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000381 goto error;
382 }
383 pp = (PTR_BL *)(hp->bh_data);
384 pp->pb_count = 1;
385 pp->pb_pointer[0].pe_bnum = 2;
386 pp->pb_pointer[0].pe_page_count = 1;
387 pp->pb_pointer[0].pe_old_lnum = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100388 pp->pb_pointer[0].pe_line_count = 1; // line count after insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +0000389 mf_put(mfp, hp, TRUE, FALSE);
390
Bram Moolenaar4770d092006-01-12 23:22:24 +0000391 /*
392 * Allocate first data block and create an empty line 1.
393 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000394 if ((hp = ml_new_data(mfp, FALSE, 1)) == NULL)
395 goto error;
396 if (hp->bh_bnum != 2)
397 {
Bram Moolenaar9a846fb2022-01-01 21:59:18 +0000398 iemsg(_(e_didnt_get_block_nr_two));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000399 goto error;
400 }
401
402 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100403 dp->db_index[0] = --dp->db_txt_start; // at end of block
Bram Moolenaar071d4272004-06-13 20:20:40 +0000404 dp->db_free -= 1 + INDEX_SIZE;
405 dp->db_line_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100406 *((char_u *)dp + dp->db_txt_start) = NUL; // empty line
Bram Moolenaar071d4272004-06-13 20:20:40 +0000407
408 return OK;
409
410error:
411 if (mfp != NULL)
412 {
413 if (hp)
414 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100415 mf_close(mfp, TRUE); // will also free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000416 }
Bram Moolenaar4770d092006-01-12 23:22:24 +0000417 buf->b_ml.ml_mfp = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000418 return FAIL;
419}
420
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200421#if defined(FEAT_CRYPT) || defined(PROTO)
422/*
Bram Moolenaar2be79502014-08-13 21:58:28 +0200423 * Prepare encryption for "buf" for the current key and method.
424 */
425 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100426ml_set_mfp_crypt(buf_T *buf)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200427{
428 if (*buf->b_p_key != NUL)
429 {
430 int method_nr = crypt_get_method_nr(buf);
431
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200432 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
Bram Moolenaar2be79502014-08-13 21:58:28 +0200433 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100434 // Generate a seed and store it in the memfile.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200435 sha2_seed(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN, NULL, 0);
436 }
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200437#ifdef FEAT_SODIUM
438 else if (method_nr == CRYPT_M_SOD)
K.Takata1a8825d2022-01-19 13:32:57 +0000439 crypt_sodium_randombytes_buf(buf->b_ml.ml_mfp->mf_seed,
440 MF_SEED_LEN);
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200441 #endif
Bram Moolenaar2be79502014-08-13 21:58:28 +0200442 }
443}
444
445/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200446 * Prepare encryption for "buf" with block 0 "b0p".
447 */
448 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100449ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200450{
451 if (*buf->b_p_key == NUL)
452 b0p->b0_id[1] = BLOCK0_ID1;
453 else
454 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200455 int method_nr = crypt_get_method_nr(buf);
456
457 b0p->b0_id[1] = id1_codes[method_nr];
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200458 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200459 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100460 // Generate a seed and store it in block 0 and in the memfile.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200461 sha2_seed(&b0p->b0_seed, MF_SEED_LEN, NULL, 0);
462 mch_memmove(buf->b_ml.ml_mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
463 }
464 }
465}
466
467/*
468 * Called after the crypt key or 'cryptmethod' was changed for "buf".
469 * Will apply this to the swapfile.
470 * "old_key" is the previous key. It is equal to buf->b_p_key when
471 * 'cryptmethod' is changed.
Bram Moolenaar49771f42010-07-20 17:32:38 +0200472 * "old_cm" is the previous 'cryptmethod'. It is equal to the current
473 * 'cryptmethod' when 'key' is changed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200474 */
475 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100476ml_set_crypt_key(
477 buf_T *buf,
478 char_u *old_key,
479 char_u *old_cm)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200480{
481 memfile_T *mfp = buf->b_ml.ml_mfp;
482 bhdr_T *hp;
483 int page_count;
484 int idx;
485 long error;
486 infoptr_T *ip;
487 PTR_BL *pp;
488 DATA_BL *dp;
489 blocknr_T bnum;
490 int top;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200491 int old_method;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200492
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200493 if (mfp == NULL || mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100494 return; // no memfile yet, nothing to do
Bram Moolenaarbc563362015-06-09 18:35:25 +0200495 old_method = crypt_method_nr_from_name(old_cm);
496
Christian Brabandt226b28b2021-06-21 21:08:08 +0200497 // Swapfile encryption not supported by XChaCha20
498 if (crypt_get_method_nr(buf) == CRYPT_M_SOD && *buf->b_p_key != NUL)
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200499 {
500 // close the swapfile
501 mf_close_file(buf, TRUE);
502 buf->b_p_swf = FALSE;
503 return;
504 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100505 // First make sure the swapfile is in a consistent state, using the old
506 // key and method.
Bram Moolenaarbc563362015-06-09 18:35:25 +0200507 {
508 char_u *new_key = buf->b_p_key;
509 char_u *new_buf_cm = buf->b_p_cm;
510
511 buf->b_p_key = old_key;
512 buf->b_p_cm = old_cm;
513 ml_preserve(buf, FALSE);
514 buf->b_p_key = new_key;
515 buf->b_p_cm = new_buf_cm;
516 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200517
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100518 // Set the key, method and seed to be used for reading, these must be the
519 // old values.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200520 mfp->mf_old_key = old_key;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200521 mfp->mf_old_cm = old_method;
522 if (old_method > 0 && *old_key != NUL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200523 mch_memmove(mfp->mf_old_seed, mfp->mf_seed, MF_SEED_LEN);
524
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100525 // Update block 0 with the crypt flag and may set a new seed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200526 ml_upd_block0(buf, UB_CRYPT);
527
528 if (mfp->mf_infile_count > 2)
529 {
530 /*
531 * Need to read back all data blocks from disk, decrypt them with the
532 * old key/method and mark them to be written. The algorithm is
533 * similar to what happens in ml_recover(), but we skip negative block
534 * numbers.
535 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100536 ml_flush_line(buf); // flush buffered line
537 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200538
539 hp = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100540 bnum = 1; // start with block 1
541 page_count = 1; // which is 1 page
542 idx = 0; // start with first index in block 1
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200543 error = 0;
544 buf->b_ml.ml_stack_top = 0;
Bram Moolenaard23a8232018-02-10 18:45:26 +0100545 VIM_CLEAR(buf->b_ml.ml_stack);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100546 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200547
548 for ( ; !got_int; line_breakcheck())
549 {
550 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100551 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200552
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100553 // get the block (pointer or data)
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +0000554 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200555 {
556 if (bnum == 1)
557 break;
558 ++error;
559 }
560 else
561 {
562 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100563 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200564 {
565 if (pp->pb_count == 0)
566 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100567 // empty block?
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200568 ++error;
569 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100570 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200571 {
572 if (pp->pb_pointer[idx].pe_bnum < 0)
573 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100574 // Skip data block with negative block number.
575 // Should not happen, because of the ml_preserve()
576 // above. Get same block again for next index.
Bram Moolenaar4b7214e2019-01-03 21:55:32 +0100577 ++idx;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200578 continue;
579 }
580
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100581 // going one block deeper in the tree, new entry in
582 // stack
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200583 if ((top = ml_add_stack(buf)) < 0)
584 {
585 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100586 break; // out of memory
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200587 }
588 ip = &(buf->b_ml.ml_stack[top]);
589 ip->ip_bnum = bnum;
590 ip->ip_index = idx;
591
592 bnum = pp->pb_pointer[idx].pe_bnum;
593 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200594 idx = 0;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200595 continue;
596 }
597 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100598 else // not a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200599 {
600 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100601 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200602 ++error;
603 else
604 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100605 // It is a data block, need to write it back to disk.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200606 mf_put(mfp, hp, TRUE, FALSE);
607 hp = NULL;
608 }
609 }
610 }
611
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100612 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200613 break;
614
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100615 // go one block up in the tree
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200616 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
617 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100618 idx = ip->ip_index + 1; // go to next index
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200619 page_count = 1;
620 }
Bram Moolenaarbc563362015-06-09 18:35:25 +0200621 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100622 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +0100623
624 if (error > 0)
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +0000625 emsg(_(e_error_while_updating_swap_file_crypt));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200626 }
627
628 mfp->mf_old_key = NULL;
629}
630#endif
631
Bram Moolenaar071d4272004-06-13 20:20:40 +0000632/*
633 * ml_setname() is called when the file name of "buf" has been changed.
634 * It may rename the swap file.
635 */
636 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100637ml_setname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000638{
639 int success = FALSE;
640 memfile_T *mfp;
641 char_u *fname;
642 char_u *dirp;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100643#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 char_u *p;
645#endif
646
647 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100648 if (mfp->mf_fd < 0) // there is no swap file yet
Bram Moolenaar071d4272004-06-13 20:20:40 +0000649 {
650 /*
651 * When 'updatecount' is 0 and 'noswapfile' there is no swap file.
652 * For help files we will make a swap file now.
653 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200654 if (p_uc != 0 && (cmdmod.cmod_flags & CMOD_NOSWAPFILE) == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100655 ml_open_file(buf); // create a swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000656 return;
657 }
658
659 /*
660 * Try all directories in the 'directory' option.
661 */
662 dirp = p_dir;
663 for (;;)
664 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100665 if (*dirp == NUL) // tried all directories, fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000666 break;
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000667 fname = findswapname(buf, &dirp, mfp->mf_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100668 // alloc's fname
669 if (dirp == NULL) // out of memory
Bram Moolenaarf541c362011-10-26 11:44:18 +0200670 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100671 if (fname == NULL) // no file name found for this dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000672 continue;
673
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100674#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000675 /*
676 * Set full pathname for swap file now, because a ":!cd dir" may
677 * change directory without us knowing it.
678 */
679 p = FullName_save(fname, FALSE);
680 vim_free(fname);
681 fname = p;
682 if (fname == NULL)
683 continue;
684#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100685 // if the file name is the same we don't have to do anything
Bram Moolenaar071d4272004-06-13 20:20:40 +0000686 if (fnamecmp(fname, mfp->mf_fname) == 0)
687 {
688 vim_free(fname);
689 success = TRUE;
690 break;
691 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100692 // need to close the swap file before renaming
Bram Moolenaar071d4272004-06-13 20:20:40 +0000693 if (mfp->mf_fd >= 0)
694 {
695 close(mfp->mf_fd);
696 mfp->mf_fd = -1;
697 }
698
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100699 // try to rename the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000700 if (vim_rename(mfp->mf_fname, fname) == 0)
701 {
702 success = TRUE;
703 vim_free(mfp->mf_fname);
704 mfp->mf_fname = fname;
705 vim_free(mfp->mf_ffname);
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100706#if defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100707 mfp->mf_ffname = NULL; // mf_fname is full pathname already
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708#else
709 mf_set_ffname(mfp);
710#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200711 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000712 break;
713 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100714 vim_free(fname); // this fname didn't work, try another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000715 }
716
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100717 if (mfp->mf_fd == -1) // need to (re)open the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 {
719 mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0);
720 if (mfp->mf_fd < 0)
721 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100722 // could not (re)open the swap file, what can we do????
Bram Moolenaareaaac012022-01-02 17:00:40 +0000723 emsg(_(e_oops_lost_the_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724 return;
725 }
Bram Moolenaarf05da212009-11-17 16:13:15 +0000726#ifdef HAVE_FD_CLOEXEC
727 {
728 int fdflags = fcntl(mfp->mf_fd, F_GETFD);
729 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +0100730 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +0000731 }
732#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000733 }
734 if (!success)
Bram Moolenaareaaac012022-01-02 17:00:40 +0000735 emsg(_(e_could_not_rename_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736}
737
738/*
739 * Open a file for the memfile for all buffers that are not readonly or have
740 * been modified.
741 * Used when 'updatecount' changes from zero to non-zero.
742 */
743 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100744ml_open_files(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000745{
746 buf_T *buf;
747
Bram Moolenaar29323592016-07-24 22:04:11 +0200748 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000749 if (!buf->b_p_ro || buf->b_changed)
750 ml_open_file(buf);
751}
752
753/*
754 * Open a swap file for an existing memfile, if there is no swap file yet.
755 * If we are unable to find a file name, mf_fname will be NULL
756 * and the memfile will be in memory only (no recovery possible).
757 */
758 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100759ml_open_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000760{
761 memfile_T *mfp;
762 char_u *fname;
763 char_u *dirp;
764
765 mfp = buf->b_ml.ml_mfp;
Bram Moolenaare1004402020-10-24 20:49:43 +0200766 if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf
767 || (cmdmod.cmod_flags & CMOD_NOSWAPFILE))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100768 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +0000769
Bram Moolenaara1956f62006-03-12 22:18:00 +0000770#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100771 // For a spell buffer use a temp file name.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000772 if (buf->b_spell)
773 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +0200774 fname = vim_tempname('s', FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000775 if (fname != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100776 (void)mf_open_file(mfp, fname); // consumes fname!
Bram Moolenaar4770d092006-01-12 23:22:24 +0000777 buf->b_may_swap = FALSE;
778 return;
779 }
780#endif
781
Bram Moolenaar071d4272004-06-13 20:20:40 +0000782 /*
783 * Try all directories in 'directory' option.
784 */
785 dirp = p_dir;
786 for (;;)
787 {
788 if (*dirp == NUL)
789 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100790 // There is a small chance that between choosing the swap file name
791 // and creating it, another Vim creates the file. In that case the
792 // creation will fail and we will use another directory.
793 fname = findswapname(buf, &dirp, NULL); // allocates fname
Bram Moolenaarf541c362011-10-26 11:44:18 +0200794 if (dirp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100795 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000796 if (fname == NULL)
797 continue;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100798 if (mf_open_file(mfp, fname) == OK) // consumes fname!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000799 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100800#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000801 /*
802 * set full pathname for swap file now, because a ":!cd dir" may
803 * change directory without us knowing it.
804 */
805 mf_fullname(mfp);
806#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200807 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000808
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100809 // Flush block zero, so others can read it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000810 if (mf_sync(mfp, MFS_ZERO) == OK)
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000811 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100812 // Mark all blocks that should be in the swapfile as dirty.
813 // Needed for when the 'swapfile' option was reset, so that
814 // the swap file was deleted, and then on again.
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000815 mf_set_dirty(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000816 break;
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000817 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100818 // Writing block 0 failed: close the file and try another dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000819 mf_close_file(buf, FALSE);
820 }
821 }
822
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200823 if (*p_dir != NUL && mfp->mf_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000824 {
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200825 need_wait_return = TRUE; // call wait_return later
Bram Moolenaar071d4272004-06-13 20:20:40 +0000826 ++no_wait_return;
Bram Moolenaareaaac012022-01-02 17:00:40 +0000827 (void)semsg(_(e_unable_to_open_swap_file_for_str_recovery_impossible),
Bram Moolenaare1704ba2012-10-03 18:25:00 +0200828 buf_spname(buf) != NULL ? buf_spname(buf) : buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 --no_wait_return;
830 }
831
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100832 // don't try to open a swap file again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000833 buf->b_may_swap = FALSE;
834}
835
836/*
837 * If still need to create a swap file, and starting to edit a not-readonly
838 * file, or reading into an existing buffer, create a swap file now.
839 */
840 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100841check_need_swap(
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200842 int newfile) // reading file into new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000843{
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200844 int old_msg_silent = msg_silent; // might be reset by an E325 message
845
Bram Moolenaar071d4272004-06-13 20:20:40 +0000846 if (curbuf->b_may_swap && (!curbuf->b_p_ro || !newfile))
847 ml_open_file(curbuf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200848 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000849}
850
851/*
852 * Close memline for buffer 'buf'.
853 * If 'del_file' is TRUE, delete the swap file
854 */
855 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100856ml_close(buf_T *buf, int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000857{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100858 if (buf->b_ml.ml_mfp == NULL) // not open
Bram Moolenaar071d4272004-06-13 20:20:40 +0000859 return;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100860 mf_close(buf->b_ml.ml_mfp, del_file); // close the .swp file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000861 if (buf->b_ml.ml_line_lnum != 0 && (buf->b_ml.ml_flags & ML_LINE_DIRTY))
862 vim_free(buf->b_ml.ml_line_ptr);
863 vim_free(buf->b_ml.ml_stack);
864#ifdef FEAT_BYTEOFF
Bram Moolenaard23a8232018-02-10 18:45:26 +0100865 VIM_CLEAR(buf->b_ml.ml_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000866#endif
867 buf->b_ml.ml_mfp = NULL;
868
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100869 // Reset the "recovered" flag, give the ATTENTION prompt the next time
870 // this buffer is loaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000871 buf->b_flags &= ~BF_RECOVERED;
872}
873
874/*
875 * Close all existing memlines and memfiles.
876 * Only used when exiting.
877 * When 'del_file' is TRUE, delete the memfiles.
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000878 * But don't delete files that were ":preserve"d when we are POSIX compatible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000879 */
880 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100881ml_close_all(int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000882{
883 buf_T *buf;
884
Bram Moolenaar29323592016-07-24 22:04:11 +0200885 FOR_ALL_BUFFERS(buf)
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000886 ml_close(buf, del_file && ((buf->b_flags & BF_PRESERVED) == 0
887 || vim_strchr(p_cpo, CPO_PRESERVE) == NULL));
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100888#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100889 spell_delete_wordlist(); // delete the internal wordlist
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100890#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000891#ifdef TEMPDIRNAMES
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100892 vim_deltempdir(); // delete created temp directory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000893#endif
894}
895
896/*
897 * Close all memfiles for not modified buffers.
898 * Only use just before exiting!
899 */
900 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100901ml_close_notmod(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000902{
903 buf_T *buf;
904
Bram Moolenaar29323592016-07-24 22:04:11 +0200905 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000906 if (!bufIsChanged(buf))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100907 ml_close(buf, TRUE); // close all not-modified buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000908}
909
910/*
911 * Update the timestamp in the .swp file.
912 * Used when the file has been written.
913 */
914 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100915ml_timestamp(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000916{
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200917 ml_upd_block0(buf, UB_FNAME);
918}
919
920/*
921 * Return FAIL when the ID of "b0p" is wrong.
922 */
923 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100924ml_check_b0_id(ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200925{
926 if (b0p->b0_id[0] != BLOCK0_ID0
927 || (b0p->b0_id[1] != BLOCK0_ID1
928 && b0p->b0_id[1] != BLOCK0_ID1_C0
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200929 && b0p->b0_id[1] != BLOCK0_ID1_C1
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200930 && b0p->b0_id[1] != BLOCK0_ID1_C2
931 && b0p->b0_id[1] != BLOCK0_ID1_C3)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200932 )
933 return FAIL;
934 return OK;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000935}
936
937/*
938 * Update the timestamp or the B0_SAME_DIR flag of the .swp file.
939 */
940 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100941ml_upd_block0(buf_T *buf, upd_block0_T what)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000942{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000943 memfile_T *mfp;
944 bhdr_T *hp;
945 ZERO_BL *b0p;
946
947 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200948 if (mfp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000949 return;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200950 hp = mf_get(mfp, (blocknr_T)0, 1);
951 if (hp == NULL)
952 {
953#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100954 // Possibly update the seed in the memfile before there is a block0.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200955 if (what == UB_CRYPT)
956 ml_set_mfp_crypt(buf);
957#endif
958 return;
959 }
960
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200962 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaareaaac012022-01-02 17:00:40 +0000963 iemsg(_(e_ml_upd_block0_didnt_get_block_zero));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000965 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200966 if (what == UB_FNAME)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000967 set_b0_fname(b0p, buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200968#ifdef FEAT_CRYPT
969 else if (what == UB_CRYPT)
970 ml_set_b0_crypt(buf, b0p);
971#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100972 else // what == UB_SAME_DIR
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000973 set_b0_dir_flag(b0p, buf);
974 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000975 mf_put(mfp, hp, TRUE, FALSE);
976}
977
978/*
979 * Write file name and timestamp into block 0 of a swap file.
980 * Also set buf->b_mtime.
981 * Don't use NameBuff[]!!!
982 */
983 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100984set_b0_fname(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000985{
Bram Moolenaar8767f522016-07-01 17:17:39 +0200986 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987
988 if (buf->b_ffname == NULL)
989 b0p->b0_fname[0] = NUL;
990 else
991 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100992#if defined(MSWIN) || defined(AMIGA)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100993 // Systems that cannot translate "~user" back into a path: copy the
994 // file name unmodified. Do use slashes instead of backslashes for
995 // portability.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200996 vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000997# ifdef BACKSLASH_IN_FILENAME
998 forward_slash(b0p->b0_fname);
999# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001000#else
1001 size_t flen, ulen;
1002 char_u uname[B0_UNAME_SIZE];
1003
1004 /*
1005 * For a file under the home directory of the current user, we try to
1006 * replace the home directory path with "~user". This helps when
1007 * editing the same file on different machines over a network.
1008 * First replace home dir path with "~/" with home_replace().
1009 * Then insert the user name to get "~user/".
1010 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001011 home_replace(NULL, buf->b_ffname, b0p->b0_fname,
1012 B0_FNAME_SIZE_CRYPT, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001013 if (b0p->b0_fname[0] == '~')
1014 {
1015 flen = STRLEN(b0p->b0_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001016 // If there is no user name or it is too long, don't use "~/"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001017 if (get_user_name(uname, B0_UNAME_SIZE) == FAIL
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001018 || (ulen = STRLEN(uname)) + flen > B0_FNAME_SIZE_CRYPT - 1)
1019 vim_strncpy(b0p->b0_fname, buf->b_ffname,
1020 B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021 else
1022 {
1023 mch_memmove(b0p->b0_fname + ulen + 1, b0p->b0_fname + 1, flen);
1024 mch_memmove(b0p->b0_fname + 1, uname, ulen);
1025 }
1026 }
1027#endif
1028 if (mch_stat((char *)buf->b_ffname, &st) >= 0)
1029 {
1030 long_to_char((long)st.st_mtime, b0p->b0_mtime);
1031#ifdef CHECK_INODE
1032 long_to_char((long)st.st_ino, b0p->b0_ino);
1033#endif
1034 buf_store_time(buf, &st, buf->b_ffname);
1035 buf->b_mtime_read = buf->b_mtime;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001036 buf->b_mtime_read_ns = buf->b_mtime_ns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001037 }
1038 else
1039 {
1040 long_to_char(0L, b0p->b0_mtime);
1041#ifdef CHECK_INODE
1042 long_to_char(0L, b0p->b0_ino);
1043#endif
1044 buf->b_mtime = 0;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001045 buf->b_mtime_ns = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001046 buf->b_mtime_read = 0;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001047 buf->b_mtime_read_ns = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001048 buf->b_orig_size = 0;
1049 buf->b_orig_mode = 0;
1050 }
1051 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001052
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001053 // Also add the 'fileencoding' if there is room.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001054 add_b0_fenc(b0p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001055}
1056
1057/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001058 * Update the B0_SAME_DIR flag of the swap file. It's set if the file and the
1059 * swapfile for "buf" are in the same directory.
1060 * This is fail safe: if we are not sure the directories are equal the flag is
1061 * not set.
1062 */
1063 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001064set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001065{
1066 if (same_directory(buf->b_ml.ml_mfp->mf_fname, buf->b_ffname))
1067 b0p->b0_flags |= B0_SAME_DIR;
1068 else
1069 b0p->b0_flags &= ~B0_SAME_DIR;
1070}
1071
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001072/*
1073 * When there is room, add the 'fileencoding' to block zero.
1074 */
1075 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001076add_b0_fenc(
1077 ZERO_BL *b0p,
1078 buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001079{
1080 int n;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001081 int size = B0_FNAME_SIZE_NOCRYPT;
1082
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001083#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001084 // Without encryption use the same offset as in Vim 7.2 to be compatible.
1085 // With encryption it's OK to move elsewhere, the swap file is not
1086 // compatible anyway.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001087 if (*buf->b_p_key != NUL)
1088 size = B0_FNAME_SIZE_CRYPT;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001089#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001090
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001091 n = (int)STRLEN(buf->b_p_fenc);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001092 if ((int)STRLEN(b0p->b0_fname) + n + 1 > size)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001093 b0p->b0_flags &= ~B0_HAS_FENC;
1094 else
1095 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001096 mch_memmove((char *)b0p->b0_fname + size - n,
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001097 (char *)buf->b_p_fenc, (size_t)n);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001098 *(b0p->b0_fname + size - n - 1) = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001099 b0p->b0_flags |= B0_HAS_FENC;
1100 }
1101}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001102
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001103#if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO_UPTIME)
1104# include <sys/sysinfo.h>
1105#endif
1106
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001107#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001108/*
1109 * Return TRUE if the process with number "b0p->b0_pid" is still running.
1110 * "swap_fname" is the name of the swap file, if it's from before a reboot then
1111 * the result is FALSE;
1112 */
1113 static int
1114swapfile_process_running(ZERO_BL *b0p, char_u *swap_fname UNUSED)
1115{
Bram Moolenaare2982d62021-10-06 11:27:21 +01001116#if defined(HAVE_SYSINFO) && defined(HAVE_SYSINFO_UPTIME)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001117 stat_T st;
1118 struct sysinfo sinfo;
1119
1120 // If the system rebooted after when the swap file was written then the
1121 // process can't be running now.
1122 if (mch_stat((char *)swap_fname, &st) != -1
1123 && sysinfo(&sinfo) == 0
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001124 && st.st_mtime < time(NULL) - (
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001125# ifdef FEAT_EVAL
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001126 override_sysinfo_uptime >= 0 ? override_sysinfo_uptime :
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001127# endif
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001128 sinfo.uptime))
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001129 return FALSE;
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001130# endif
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001131 return mch_process_running(char_to_long(b0p->b0_pid));
1132}
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001133#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001134
1135/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001136 * Try to recover curbuf from the .swp file.
Bram Moolenaar99499b12019-05-23 21:35:48 +02001137 * If "checkext" is TRUE, check the extension and detect whether it is
1138 * a swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001139 */
1140 void
Bram Moolenaar99499b12019-05-23 21:35:48 +02001141ml_recover(int checkext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001142{
1143 buf_T *buf = NULL;
1144 memfile_T *mfp = NULL;
1145 char_u *fname;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001146 char_u *fname_used = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001147 bhdr_T *hp = NULL;
1148 ZERO_BL *b0p;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001149 int b0_ff;
1150 char_u *b0_fenc = NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001151#ifdef FEAT_CRYPT
1152 int b0_cm = -1;
1153#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001154 PTR_BL *pp;
1155 DATA_BL *dp;
1156 infoptr_T *ip;
1157 blocknr_T bnum;
1158 int page_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001159 stat_T org_stat, swp_stat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001160 int len;
1161 int directly;
1162 linenr_T lnum;
1163 char_u *p;
1164 int i;
1165 long error;
1166 int cannot_open;
1167 linenr_T line_count;
1168 int has_error;
1169 int idx;
1170 int top;
1171 int txt_start;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001172 off_T size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001173 int called_from_main;
1174 int serious_error = TRUE;
1175 long mtime;
1176 int attr;
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001177 int orig_file_status = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001178
1179 recoverymode = TRUE;
1180 called_from_main = (curbuf->b_ml.ml_mfp == NULL);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001181 attr = HL_ATTR(HLF_E);
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001182
1183 /*
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001184 * 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 +00001185 * Otherwise a search is done to find the swap file(s).
1186 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187 fname = curbuf->b_fname;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001188 if (fname == NULL) // When there is no file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001189 fname = (char_u *)"";
1190 len = (int)STRLEN(fname);
Bram Moolenaar99499b12019-05-23 21:35:48 +02001191 if (checkext && len >= 4 &&
Bram Moolenaare60acc12011-05-10 16:41:25 +02001192#if defined(VMS)
Bram Moolenaar79518e22017-02-17 16:31:35 +01001193 STRNICMP(fname + len - 4, "_s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001194#else
Bram Moolenaar79518e22017-02-17 16:31:35 +01001195 STRNICMP(fname + len - 4, ".s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001197 == 0
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001198 && vim_strchr((char_u *)"abcdefghijklmnopqrstuvw",
1199 TOLOWER_ASC(fname[len - 2])) != NULL
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001200 && ASCII_ISALPHA(fname[len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001201 {
1202 directly = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001203 fname_used = vim_strsave(fname); // make a copy for mf_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001204 }
1205 else
1206 {
1207 directly = FALSE;
1208
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001209 // count the number of matching swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001210 len = recover_names(fname, FALSE, 0, NULL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001211 if (len == 0) // no swap files found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001212 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001213 semsg(_(e_no_swap_file_found_for_str), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001214 goto theend;
1215 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001216 if (len == 1) // one swap file found, use it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001217 i = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001218 else // several swap files found, choose
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001220 // list the names of the swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001221 (void)recover_names(fname, TRUE, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001222 msg_putchar('\n');
Bram Moolenaar32526b32019-01-19 17:43:09 +01001223 msg_puts(_("Enter number of swap file to use (0 to quit): "));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001224 i = get_number(FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001225 if (i < 1 || i > len)
1226 goto theend;
1227 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001228 // get the swap file name that will be used
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001229 (void)recover_names(fname, FALSE, i, &fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001230 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001231 if (fname_used == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001232 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001233
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001234 // When called from main() still need to initialize storage structure
Bram Moolenaar4770d092006-01-12 23:22:24 +00001235 if (called_from_main && ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001236 getout(1);
1237
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001238 /*
1239 * Allocate a buffer structure for the swap file that is used for recovery.
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001240 * Only the memline and crypt information in it are really used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001241 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001242 buf = ALLOC_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 if (buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001245
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001246 /*
1247 * init fields in memline struct
1248 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001249 buf->b_ml.ml_stack_size = 0; // no stack yet
1250 buf->b_ml.ml_stack = NULL; // no stack yet
1251 buf->b_ml.ml_stack_top = 0; // nothing in the stack
1252 buf->b_ml.ml_line_lnum = 0; // no cached line
1253 buf->b_ml.ml_locked = NULL; // no locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001254 buf->b_ml.ml_flags = 0;
Bram Moolenaar0fe849a2010-07-25 15:11:11 +02001255#ifdef FEAT_CRYPT
1256 buf->b_p_key = empty_option;
1257 buf->b_p_cm = empty_option;
1258#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001259
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001260 /*
1261 * open the memfile from the old swap file
1262 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001263 p = vim_strsave(fname_used); // save "fname_used" for the message:
1264 // mf_open() will consume "fname_used"!
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001265 mfp = mf_open(fname_used, O_RDONLY);
1266 fname_used = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001267 if (mfp == NULL || mfp->mf_fd < 0)
1268 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001269 if (fname_used != NULL)
Bram Moolenaareaaac012022-01-02 17:00:40 +00001270 semsg(_(e_cannot_open_str), fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001271 goto theend;
1272 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001273 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001274#ifdef FEAT_CRYPT
1275 mfp->mf_buffer = buf;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001276#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001277
1278 /*
1279 * The page size set in mf_open() might be different from the page size
1280 * used in the swap file, we must get it from block 0. But to read block
1281 * 0 we need a page size. Use the minimal size for block 0 here, it will
1282 * be set to the real value below.
1283 */
1284 mfp->mf_page_size = MIN_SWAP_PAGE_SIZE;
1285
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001286 /*
1287 * try to read block 0
1288 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001289 if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL)
1290 {
1291 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001292 msg_puts_attr(_("Unable to read block 0 from "), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001293 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001294 msg_puts_attr(_("\nMaybe no changes were made or Vim did not update the swap file."),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 attr | MSG_HIST);
1296 msg_end();
1297 goto theend;
1298 }
1299 b0p = (ZERO_BL *)(hp->bh_data);
1300 if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0)
1301 {
1302 msg_start();
1303 msg_outtrans_attr(mfp->mf_fname, MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001304 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001305 MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001306 msg_puts_attr(_("Use Vim version 3.0.\n"), MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001307 msg_end();
1308 goto theend;
1309 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001310 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001312 semsg(_(e_str_does_not_look_like_vim_swap_file), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001313 goto theend;
1314 }
1315 if (b0_magic_wrong(b0p))
1316 {
1317 msg_start();
1318 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001319#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001320 if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001321 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001322 attr | MSG_HIST);
1323 else
1324#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001325 msg_puts_attr(_(" cannot be used on this computer.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001326 attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001327 msg_puts_attr(_("The file was created on "), attr | MSG_HIST);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001328 // avoid going past the end of a corrupted hostname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001329 b0p->b0_fname[0] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001330 msg_puts_attr((char *)b0p->b0_hname, attr | MSG_HIST);
1331 msg_puts_attr(_(",\nor the file has been damaged."), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001332 msg_end();
1333 goto theend;
1334 }
Bram Moolenaar1c536282007-04-26 15:21:56 +00001335
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001336#ifdef FEAT_CRYPT
K.Takataeeec2542021-06-02 13:28:16 +02001337 for (i = 0; i < (int)ARRAY_LENGTH(id1_codes); ++i)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001338 if (id1_codes[i] == b0p->b0_id[1])
1339 b0_cm = i;
1340 if (b0_cm > 0)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001341 mch_memmove(mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001342 crypt_set_cm_option(buf, b0_cm < 0 ? 0 : b0_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001343#else
1344 if (b0p->b0_id[1] != BLOCK0_ID1)
1345 {
Bram Moolenaar9d00e4a2022-01-05 17:49:15 +00001346 semsg(_(e_str_is_encrypted_and_this_version_of_vim_does_not_support_encryption), mfp->mf_fname);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001347 goto theend;
1348 }
1349#endif
1350
Bram Moolenaar071d4272004-06-13 20:20:40 +00001351 /*
1352 * If we guessed the wrong page size, we have to recalculate the
1353 * highest block number in the file.
1354 */
1355 if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size))
1356 {
Bram Moolenaar1c536282007-04-26 15:21:56 +00001357 unsigned previous_page_size = mfp->mf_page_size;
1358
Bram Moolenaar071d4272004-06-13 20:20:40 +00001359 mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size));
Bram Moolenaar1c536282007-04-26 15:21:56 +00001360 if (mfp->mf_page_size < previous_page_size)
1361 {
1362 msg_start();
1363 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001364 msg_puts_attr(_(" has been damaged (page size is smaller than minimum value).\n"),
Bram Moolenaar1c536282007-04-26 15:21:56 +00001365 attr | MSG_HIST);
1366 msg_end();
1367 goto theend;
1368 }
Bram Moolenaar8767f522016-07-01 17:17:39 +02001369 if ((size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001370 mfp->mf_blocknr_max = 0; // no file or empty file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001371 else
1372 mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size);
1373 mfp->mf_infile_count = mfp->mf_blocknr_max;
Bram Moolenaar1c536282007-04-26 15:21:56 +00001374
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001375 // need to reallocate the memory used to store the data
Bram Moolenaar1c536282007-04-26 15:21:56 +00001376 p = alloc(mfp->mf_page_size);
1377 if (p == NULL)
1378 goto theend;
1379 mch_memmove(p, hp->bh_data, previous_page_size);
1380 vim_free(hp->bh_data);
1381 hp->bh_data = p;
1382 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 }
1384
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001385 /*
1386 * If .swp file name given directly, use name from swap file for buffer.
1387 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001388 if (directly)
1389 {
1390 expand_env(b0p->b0_fname, NameBuff, MAXPATHL);
1391 if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL)
1392 goto theend;
1393 }
1394
1395 home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001396 smsg(_("Using swap file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001397
1398 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02001399 vim_strncpy(NameBuff, buf_spname(curbuf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001400 else
1401 home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001402 smsg(_("Original file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 msg_putchar('\n');
1404
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001405 /*
1406 * check date of swap file and original file
1407 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001408 mtime = char_to_long(b0p->b0_mtime);
1409 if (curbuf->b_ffname != NULL
1410 && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1
1411 && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1
1412 && org_stat.st_mtime > swp_stat.st_mtime)
1413 || org_stat.st_mtime != mtime))
Bram Moolenaareaaac012022-01-02 17:00:40 +00001414 emsg(_(e_warning_original_file_may_have_been_changed));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001415 out_flush();
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001416
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001417 // Get the 'fileformat' and 'fileencoding' from block zero.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001418 b0_ff = (b0p->b0_flags & B0_FF_MASK);
1419 if (b0p->b0_flags & B0_HAS_FENC)
1420 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001421 int fnsize = B0_FNAME_SIZE_NOCRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001422
1423#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001424 // Use the same size as in add_b0_fenc().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001425 if (b0p->b0_id[1] != BLOCK0_ID1)
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001426 fnsize = B0_FNAME_SIZE_CRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001427#endif
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001428 for (p = b0p->b0_fname + fnsize; p > b0p->b0_fname && p[-1] != NUL; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001429 ;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001430 b0_fenc = vim_strnsave(p, b0p->b0_fname + fnsize - p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001431 }
1432
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001433 mf_put(mfp, hp, FALSE, FALSE); // release block 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001434 hp = NULL;
1435
1436 /*
1437 * Now that we are sure that the file is going to be recovered, clear the
1438 * contents of the current buffer.
1439 */
1440 while (!(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001441 ml_delete((linenr_T)1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001442
1443 /*
1444 * Try reading the original file to obtain the values of 'fileformat',
1445 * 'fileencoding', etc. Ignore errors. The text itself is not used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001446 * When the file is encrypted the user is asked to enter the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001447 */
1448 if (curbuf->b_ffname != NULL)
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001449 orig_file_status = readfile(curbuf->b_ffname, NULL, (linenr_T)0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001451
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001452#ifdef FEAT_CRYPT
1453 if (b0_cm >= 0)
1454 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001455 // Need to ask the user for the crypt key. If this fails we continue
1456 // without a key, will probably get garbage text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001457 if (*curbuf->b_p_key != NUL)
1458 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001459 smsg(_("Swap file is encrypted: \"%s\""), fname_used);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001460 msg_puts(_("\nIf you entered a new crypt key but did not write the text file,"));
1461 msg_puts(_("\nenter the new crypt key."));
1462 msg_puts(_("\nIf you wrote the text file after changing the crypt key press enter"));
1463 msg_puts(_("\nto use the same key for text file and swap file"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001464 }
1465 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001466 smsg(_(need_key_msg), fname_used);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001467 buf->b_p_key = crypt_get_key(FALSE, FALSE);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001468 if (buf->b_p_key == NULL)
1469 buf->b_p_key = curbuf->b_p_key;
1470 else if (*buf->b_p_key == NUL)
1471 {
1472 vim_free(buf->b_p_key);
1473 buf->b_p_key = curbuf->b_p_key;
1474 }
1475 if (buf->b_p_key == NULL)
1476 buf->b_p_key = empty_option;
1477 }
1478#endif
1479
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001480 // Use the 'fileformat' and 'fileencoding' as stored in the swap file.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001481 if (b0_ff != 0)
1482 set_fileformat(b0_ff - 1, OPT_LOCAL);
1483 if (b0_fenc != NULL)
1484 {
1485 set_option_value((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL);
1486 vim_free(b0_fenc);
1487 }
Bram Moolenaarc024b462019-06-08 18:07:21 +02001488 unchanged(curbuf, TRUE, TRUE);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001489
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001490 bnum = 1; // start with block 1
1491 page_count = 1; // which is 1 page
1492 lnum = 0; // append after line 0 in curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00001493 line_count = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001494 idx = 0; // start with first index in block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001495 error = 0;
1496 buf->b_ml.ml_stack_top = 0;
1497 buf->b_ml.ml_stack = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001498 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00001499
1500 if (curbuf->b_ffname == NULL)
1501 cannot_open = TRUE;
1502 else
1503 cannot_open = FALSE;
1504
1505 serious_error = FALSE;
1506 for ( ; !got_int; line_breakcheck())
1507 {
1508 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001509 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001510
1511 /*
1512 * get block
1513 */
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00001514 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001515 {
1516 if (bnum == 1)
1517 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001518 semsg(_(e_unable_to_read_block_one_from_str), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001519 goto theend;
1520 }
1521 ++error;
1522 ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"),
1523 (colnr_T)0, TRUE);
1524 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001525 else // there is a block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001526 {
1527 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001528 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001529 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001530 // check line count when using pointer block first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001531 if (idx == 0 && line_count != 0)
1532 {
1533 for (i = 0; i < (int)pp->pb_count; ++i)
1534 line_count -= pp->pb_pointer[i].pe_line_count;
1535 if (line_count != 0)
1536 {
1537 ++error;
1538 ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"),
1539 (colnr_T)0, TRUE);
1540 }
1541 }
1542
1543 if (pp->pb_count == 0)
1544 {
1545 ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"),
1546 (colnr_T)0, TRUE);
1547 ++error;
1548 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001549 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaar071d4272004-06-13 20:20:40 +00001550 {
1551 if (pp->pb_pointer[idx].pe_bnum < 0)
1552 {
1553 /*
1554 * Data block with negative block number.
1555 * Try to read lines from the original file.
1556 * This is slow, but it works.
1557 */
1558 if (!cannot_open)
1559 {
1560 line_count = pp->pb_pointer[idx].pe_line_count;
1561 if (readfile(curbuf->b_ffname, NULL, lnum,
1562 pp->pb_pointer[idx].pe_old_lnum - 1,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001563 line_count, NULL, 0) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001564 cannot_open = TRUE;
1565 else
1566 lnum += line_count;
1567 }
1568 if (cannot_open)
1569 {
1570 ++error;
1571 ml_append(lnum++, (char_u *)_("???LINES MISSING"),
1572 (colnr_T)0, TRUE);
1573 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001574 ++idx; // get same block again for next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001575 continue;
1576 }
1577
1578 /*
1579 * going one block deeper in the tree
1580 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001581 if ((top = ml_add_stack(buf)) < 0) // new entry in stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001582 {
1583 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001584 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001585 }
1586 ip = &(buf->b_ml.ml_stack[top]);
1587 ip->ip_bnum = bnum;
1588 ip->ip_index = idx;
1589
1590 bnum = pp->pb_pointer[idx].pe_bnum;
1591 line_count = pp->pb_pointer[idx].pe_line_count;
1592 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaar986a0032011-06-13 01:07:27 +02001593 idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001594 continue;
1595 }
1596 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001597 else // not a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001598 {
1599 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001600 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001601 {
1602 if (bnum == 1)
1603 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00001604 semsg(_(e_block_one_id_wrong_str_not_swp_file),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001605 mfp->mf_fname);
1606 goto theend;
1607 }
1608 ++error;
1609 ml_append(lnum++, (char_u *)_("???BLOCK MISSING"),
1610 (colnr_T)0, TRUE);
1611 }
1612 else
1613 {
1614 /*
1615 * it is a data block
1616 * Append all the lines in this block
1617 */
1618 has_error = FALSE;
1619 /*
1620 * check length of block
1621 * if wrong, use length in pointer block
1622 */
1623 if (page_count * mfp->mf_page_size != dp->db_txt_end)
1624 {
1625 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"),
1626 (colnr_T)0, TRUE);
1627 ++error;
1628 has_error = TRUE;
1629 dp->db_txt_end = page_count * mfp->mf_page_size;
1630 }
1631
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001632 // make sure there is a NUL at the end of the block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001633 *((char_u *)dp + dp->db_txt_end - 1) = NUL;
1634
1635 /*
1636 * check number of lines in block
1637 * if wrong, use count in data block
1638 */
1639 if (line_count != dp->db_line_count)
1640 {
1641 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"),
1642 (colnr_T)0, TRUE);
1643 ++error;
1644 has_error = TRUE;
1645 }
1646
1647 for (i = 0; i < dp->db_line_count; ++i)
1648 {
1649 txt_start = (dp->db_index[i] & DB_INDEX_MASK);
Bram Moolenaar740885b2009-11-03 14:33:17 +00001650 if (txt_start <= (int)HEADER_SIZE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001651 || txt_start >= (int)dp->db_txt_end)
1652 {
1653 p = (char_u *)"???";
1654 ++error;
1655 }
1656 else
1657 p = (char_u *)dp + txt_start;
1658 ml_append(lnum++, p, (colnr_T)0, TRUE);
1659 }
1660 if (has_error)
Bram Moolenaar740885b2009-11-03 14:33:17 +00001661 ml_append(lnum++, (char_u *)_("???END"),
1662 (colnr_T)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001663 }
1664 }
1665 }
1666
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001667 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaar071d4272004-06-13 20:20:40 +00001668 break;
1669
1670 /*
1671 * go one block up in the tree
1672 */
1673 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
1674 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001675 idx = ip->ip_index + 1; // go to next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001676 page_count = 1;
1677 }
1678
1679 /*
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001680 * Compare the buffer contents with the original file. When they differ
1681 * set the 'modified' flag.
1682 * Lines 1 - lnum are the new contents.
1683 * Lines lnum + 1 to ml_line_count are the original contents.
1684 * Line ml_line_count + 1 in the dummy empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001685 */
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001686 if (orig_file_status != OK || curbuf->b_ml.ml_line_count != lnum * 2 + 1)
1687 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001688 // Recovering an empty file results in two lines and the first line is
1689 // empty. Don't set the modified flag then.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001690 if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
1691 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001692 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001693 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001694 }
1695 }
1696 else
1697 {
1698 for (idx = 1; idx <= lnum; ++idx)
1699 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001700 // Need to copy one line, fetching the other one may flush it.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001701 p = vim_strsave(ml_get(idx));
1702 i = STRCMP(p, ml_get(idx + lnum));
1703 vim_free(p);
1704 if (i != 0)
1705 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001706 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001707 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001708 break;
1709 }
1710 }
1711 }
1712
1713 /*
1714 * Delete the lines from the original file and the dummy line from the
1715 * empty buffer. These will now be after the last line in the buffer.
1716 */
1717 while (curbuf->b_ml.ml_line_count > lnum
1718 && !(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001719 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001720 curbuf->b_flags |= BF_RECOVERED;
Bram Moolenaare3f50ad2021-06-09 12:33:40 +02001721 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001722
1723 recoverymode = FALSE;
1724 if (got_int)
Bram Moolenaareaaac012022-01-02 17:00:40 +00001725 emsg(_(e_recovery_interrupted));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001726 else if (error)
1727 {
1728 ++no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001729 msg(">>>>>>>>>>>>>");
Bram Moolenaareaaac012022-01-02 17:00:40 +00001730 emsg(_(e_errors_detected_while_recovering_look_for_lines_starting_with_questions));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001731 --no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001732 msg(_("See \":help E312\" for more information."));
1733 msg(">>>>>>>>>>>>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001734 }
1735 else
1736 {
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001737 if (curbuf->b_changed)
1738 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001739 msg(_("Recovery completed. You should check if everything is OK."));
1740 msg_puts(_("\n(You might want to write out this file under another name\n"));
1741 msg_puts(_("and run diff with the original file to check for changes)"));
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001742 }
1743 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001744 msg(_("Recovery completed. Buffer contents equals file contents."));
Bram Moolenaarf8835082020-11-09 21:04:17 +01001745 msg_puts(_("\nYou may want to delete the .swp file now."));
1746#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001747 if (swapfile_process_running(b0p, fname_used))
Bram Moolenaarf8835082020-11-09 21:04:17 +01001748 {
1749 // Warn there could be an active Vim on the same file, the user may
1750 // want to kill it.
1751 msg_puts(_("\nNote: process STILL RUNNING: "));
1752 msg_outnum(char_to_long(b0p->b0_pid));
1753 }
1754#endif
1755 msg_puts("\n\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001756 cmdline_row = msg_row;
1757 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001758#ifdef FEAT_CRYPT
1759 if (*buf->b_p_key != NUL && STRCMP(curbuf->b_p_key, buf->b_p_key) != 0)
1760 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001761 msg_puts(_("Using crypt key from swap file for the text file.\n"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001762 set_option_value((char_u *)"key", 0L, buf->b_p_key, OPT_LOCAL);
1763 }
1764#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001765 redraw_curbuf_later(NOT_VALID);
1766
1767theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001768 vim_free(fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001769 recoverymode = FALSE;
1770 if (mfp != NULL)
1771 {
1772 if (hp != NULL)
1773 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001774 mf_close(mfp, FALSE); // will also vim_free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001775 }
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001776 if (buf != NULL)
1777 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001778#ifdef FEAT_CRYPT
1779 if (buf->b_p_key != curbuf->b_p_key)
1780 free_string_option(buf->b_p_key);
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001781 free_string_option(buf->b_p_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001782#endif
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001783 vim_free(buf->b_ml.ml_stack);
1784 vim_free(buf);
1785 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001786 if (serious_error && called_from_main)
1787 ml_close(curbuf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001788 else
1789 {
1790 apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf);
1791 apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf);
1792 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001793}
1794
1795/*
1796 * Find the names of swap files in current directory and the directory given
1797 * with the 'directory' option.
1798 *
1799 * Used to:
1800 * - list the swap files for "vim -r"
1801 * - count the number of swap files when recovering
1802 * - list the swap files when recovering
1803 * - find the name of the n'th swap file when recovering
1804 */
1805 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001806recover_names(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001807 char_u *fname, // base for swap file name
1808 int list, // when TRUE, list the swap file names
1809 int nr, // when non-zero, return nr'th swap file name
1810 char_u **fname_out) // result when "nr" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001811{
1812 int num_names;
1813 char_u *(names[6]);
1814 char_u *tail;
1815 char_u *p;
1816 int num_files;
1817 int file_count = 0;
1818 char_u **files;
1819 int i;
1820 char_u *dirp;
1821 char_u *dir_name;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001822 char_u *fname_res = NULL;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001823#ifdef HAVE_READLINK
1824 char_u fname_buf[MAXPATHL];
Bram Moolenaar64354da2010-05-25 21:37:17 +02001825#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001826
Bram Moolenaar64354da2010-05-25 21:37:17 +02001827 if (fname != NULL)
1828 {
1829#ifdef HAVE_READLINK
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001830 // Expand symlink in the file name, because the swap file is created
1831 // with the actual file instead of with the symlink.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001832 if (resolve_symlink(fname, fname_buf) == OK)
1833 fname_res = fname_buf;
1834 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001835#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001836 fname_res = fname;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001837 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001838
1839 if (list)
1840 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001841 // use msg() to start the scrolling properly
Bram Moolenaar32526b32019-01-19 17:43:09 +01001842 msg(_("Swap files found:"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001843 msg_putchar('\n');
1844 }
1845
1846 /*
1847 * Do the loop for every directory in 'directory'.
1848 * First allocate some memory to put the directory name in.
1849 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001850 dir_name = alloc(STRLEN(p_dir) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001851 dirp = p_dir;
1852 while (dir_name != NULL && *dirp)
1853 {
1854 /*
1855 * Isolate a directory name from *dirp and put it in dir_name (we know
1856 * it is large enough, so use 31000 for length).
1857 * Advance dirp to next directory name.
1858 */
1859 (void)copy_option_part(&dirp, dir_name, 31000, ",");
1860
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001861 if (dir_name[0] == '.' && dir_name[1] == NUL) // check current dir
Bram Moolenaar071d4272004-06-13 20:20:40 +00001862 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001863 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001864 {
1865#ifdef VMS
1866 names[0] = vim_strsave((char_u *)"*_sw%");
1867#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868 names[0] = vim_strsave((char_u *)"*.sw?");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001869#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001870#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001871 // For Unix names starting with a dot are special. MS-Windows
1872 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001873 names[1] = vim_strsave((char_u *)".*.sw?");
1874 names[2] = vim_strsave((char_u *)".sw?");
1875 num_names = 3;
1876#else
1877# ifdef VMS
1878 names[1] = vim_strsave((char_u *)".*_sw%");
1879 num_names = 2;
1880# else
1881 num_names = 1;
1882# endif
1883#endif
1884 }
1885 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001886 num_names = recov_file_names(names, fname_res, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001887 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001888 else // check directory dir_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001889 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001890 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001891 {
1892#ifdef VMS
1893 names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE);
1894#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895 names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001896#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001897#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001898 // For Unix names starting with a dot are special. MS-Windows
1899 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001900 names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
1901 names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
1902 num_names = 3;
1903#else
1904# ifdef VMS
1905 names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE);
1906 num_names = 2;
1907# else
1908 num_names = 1;
1909# endif
1910#endif
1911 }
1912 else
1913 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001914#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01001915 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01001916
1917 p = dir_name + len;
1918 if (after_pathsep(dir_name, p) && len > 1 && p[-1] == p[-2])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001919 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001920 // Ends with '//', Use Full path for swap name
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001921 tail = make_percent_swname(dir_name, fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001922 }
1923 else
1924#endif
1925 {
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001926 tail = gettail(fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001927 tail = concat_fnames(dir_name, tail, TRUE);
1928 }
1929 if (tail == NULL)
1930 num_names = 0;
1931 else
1932 {
1933 num_names = recov_file_names(names, tail, FALSE);
1934 vim_free(tail);
1935 }
1936 }
1937 }
1938
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02001939 // check for out-of-memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001940 for (i = 0; i < num_names; ++i)
1941 {
1942 if (names[i] == NULL)
1943 {
1944 for (i = 0; i < num_names; ++i)
1945 vim_free(names[i]);
1946 num_names = 0;
1947 }
1948 }
1949 if (num_names == 0)
1950 num_files = 0;
1951 else if (expand_wildcards(num_names, names, &num_files, &files,
Bram Moolenaar99499b12019-05-23 21:35:48 +02001952 EW_NOTENV|EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001953 num_files = 0;
1954
1955 /*
1956 * When no swap file found, wildcard expansion might have failed (e.g.
1957 * not able to execute the shell).
1958 * Try finding a swap file by simply adding ".swp" to the file name.
1959 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001960 if (*dirp == NUL && file_count + num_files == 0 && fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001961 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001962 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001963 char_u *swapname;
1964
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001965 swapname = modname(fname_res,
Bram Moolenaare60acc12011-05-10 16:41:25 +02001966#if defined(VMS)
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001967 (char_u *)"_swp", FALSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001968#else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001969 (char_u *)".swp", TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001970#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001971 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001972 if (swapname != NULL)
1973 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001974 if (mch_stat((char *)swapname, &st) != -1) // It exists!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001975 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001976 files = ALLOC_ONE(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001977 if (files != NULL)
1978 {
1979 files[0] = swapname;
1980 swapname = NULL;
1981 num_files = 1;
1982 }
1983 }
1984 vim_free(swapname);
1985 }
1986 }
1987
1988 /*
1989 * remove swapfile name of the current buffer, it must be ignored
1990 */
1991 if (curbuf->b_ml.ml_mfp != NULL
1992 && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL)
1993 {
1994 for (i = 0; i < num_files; ++i)
Bram Moolenaar99499b12019-05-23 21:35:48 +02001995 // Do not expand wildcards, on windows would try to expand
1996 // "%tmp%" in "%tmp%file".
1997 if (fullpathcmp(p, files[i], TRUE, FALSE) & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001998 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02001999 // Remove the name from files[i]. Move further entries
2000 // down. When the array becomes empty free it here, since
2001 // FreeWild() won't be called below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002002 vim_free(files[i]);
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00002003 if (--num_files == 0)
2004 vim_free(files);
2005 else
2006 for ( ; i < num_files; ++i)
2007 files[i] = files[i + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002008 }
2009 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002010 if (nr > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002011 {
2012 file_count += num_files;
2013 if (nr <= file_count)
2014 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002015 *fname_out = vim_strsave(
2016 files[nr - 1 + num_files - file_count]);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002017 dirp = (char_u *)""; // stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002018 }
2019 }
2020 else if (list)
2021 {
2022 if (dir_name[0] == '.' && dir_name[1] == NUL)
2023 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002024 if (fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002025 msg_puts(_(" In current directory:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002026 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002027 msg_puts(_(" Using specified name:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002028 }
2029 else
2030 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002031 msg_puts(_(" In directory "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002032 msg_home_replace(dir_name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002033 msg_puts(":\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002034 }
2035
2036 if (num_files)
2037 {
2038 for (i = 0; i < num_files; ++i)
2039 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002040 // print the swap file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002041 msg_outnum((long)++file_count);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002042 msg_puts(". ");
2043 msg_puts((char *)gettail(files[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002044 msg_putchar('\n');
2045 (void)swapfile_info(files[i]);
2046 }
2047 }
2048 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002049 msg_puts(_(" -- none --\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002050 out_flush();
2051 }
2052 else
2053 file_count += num_files;
2054
2055 for (i = 0; i < num_names; ++i)
2056 vim_free(names[i]);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002057 if (num_files > 0)
2058 FreeWild(num_files, files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002059 }
2060 vim_free(dir_name);
2061 return file_count;
2062}
2063
Bram Moolenaar4f974752019-02-17 17:44:42 +01002064#if defined(UNIX) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002065/*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002066 * Need _very_ long file names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002067 * Append the full path to name with path separators made into percent
Bram Moolenaar8b0e62c2021-10-19 22:12:25 +01002068 * signs, to "dir". An unnamed buffer is handled as "" (<currentdir>/"")
2069 * The last character in "dir" must be an extra slash or backslash, it is
2070 * removed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071 */
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002072 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002073make_percent_swname(char_u *dir, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002074{
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002075 char_u *d = NULL, *s, *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002076
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002077 f = fix_fname(name != NULL ? name : (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 if (f != NULL)
2079 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002080 s = alloc(STRLEN(f) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002081 if (s != NULL)
2082 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002083 STRCPY(s, f);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002084 for (d = s; *d != NUL; MB_PTR_ADV(d))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002085 if (vim_ispathsep(*d))
2086 *d = '%';
Bram Moolenaar8b0e62c2021-10-19 22:12:25 +01002087
2088 dir[STRLEN(dir) - 1] = NUL; // remove one trailing slash
Bram Moolenaar071d4272004-06-13 20:20:40 +00002089 d = concat_fnames(dir, s, TRUE);
2090 vim_free(s);
2091 }
2092 vim_free(f);
2093 }
2094 return d;
2095}
2096#endif
2097
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002098#if (defined(UNIX) || defined(VMS) || defined(MSWIN)) \
2099 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
2100# define HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002101static int process_still_running;
2102#endif
2103
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002104#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002105/*
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002106 * Return information found in swapfile "fname" in dictionary "d".
2107 * This is used by the swapinfo() function.
2108 */
2109 void
2110get_b0_dict(char_u *fname, dict_T *d)
2111{
2112 int fd;
2113 struct block0 b0;
2114
2115 if ((fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
2116 {
2117 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
2118 {
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002119 if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002120 dict_add_string(d, "error", (char_u *)"Not a swap file");
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002121 else if (b0_magic_wrong(&b0))
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002122 dict_add_string(d, "error", (char_u *)"Magic number mismatch");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002123 else
2124 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002125 // we have swap information
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002126 dict_add_string_len(d, "version", b0.b0_version, 10);
2127 dict_add_string_len(d, "user", b0.b0_uname, B0_UNAME_SIZE);
2128 dict_add_string_len(d, "host", b0.b0_hname, B0_HNAME_SIZE);
2129 dict_add_string_len(d, "fname", b0.b0_fname, B0_FNAME_SIZE_ORG);
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002130
2131 dict_add_number(d, "pid", char_to_long(b0.b0_pid));
2132 dict_add_number(d, "mtime", char_to_long(b0.b0_mtime));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002133 dict_add_number(d, "dirty", b0.b0_dirty ? 1 : 0);
2134# ifdef CHECK_INODE
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002135 dict_add_number(d, "inode", char_to_long(b0.b0_ino));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002136# endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002137 }
2138 }
2139 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002140 dict_add_string(d, "error", (char_u *)"Cannot read file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002141 close(fd);
2142 }
2143 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002144 dict_add_string(d, "error", (char_u *)"Cannot open file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002145}
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002146#endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002147
2148/*
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002149 * Give information about an existing swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002150 * Returns timestamp (0 when unknown).
2151 */
2152 static time_t
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002153swapfile_info(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002154{
Bram Moolenaar8767f522016-07-01 17:17:39 +02002155 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002156 int fd;
2157 struct block0 b0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158#ifdef UNIX
2159 char_u uname[B0_UNAME_SIZE];
2160#endif
2161
Bram Moolenaar63d25552019-05-10 21:28:38 +02002162 // print the swap file date
Bram Moolenaar071d4272004-06-13 20:20:40 +00002163 if (mch_stat((char *)fname, &st) != -1)
2164 {
2165#ifdef UNIX
Bram Moolenaar63d25552019-05-10 21:28:38 +02002166 // print name of owner of the file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK)
2168 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002169 msg_puts(_(" owned by: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002170 msg_outtrans(uname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002171 msg_puts(_(" dated: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 }
2173 else
2174#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002175 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02002176 msg_puts(get_ctime(st.st_mtime, TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002177 }
Bram Moolenaar63d25552019-05-10 21:28:38 +02002178 else
2179 st.st_mtime = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002180
2181 /*
2182 * print the original file name
2183 */
2184 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2185 if (fd >= 0)
2186 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01002187 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002188 {
2189 if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0)
2190 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002191 msg_puts(_(" [from Vim version 3.0]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002192 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002193 else if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002194 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002195 msg_puts(_(" [does not look like a Vim swap file]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002196 }
2197 else
2198 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002199 msg_puts(_(" file name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002200 if (b0.b0_fname[0] == NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002201 msg_puts(_("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202 else
2203 msg_outtrans(b0.b0_fname);
2204
Bram Moolenaar32526b32019-01-19 17:43:09 +01002205 msg_puts(_("\n modified: "));
2206 msg_puts(b0.b0_dirty ? _("YES") : _("no"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002207
2208 if (*(b0.b0_uname) != NUL)
2209 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002210 msg_puts(_("\n user name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002211 msg_outtrans(b0.b0_uname);
2212 }
2213
2214 if (*(b0.b0_hname) != NUL)
2215 {
2216 if (*(b0.b0_uname) != NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002217 msg_puts(_(" host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002218 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002219 msg_puts(_("\n host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002220 msg_outtrans(b0.b0_hname);
2221 }
2222
2223 if (char_to_long(b0.b0_pid) != 0L)
2224 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002225 msg_puts(_("\n process ID: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002226 msg_outnum(char_to_long(b0.b0_pid));
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002227#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002228 if (swapfile_process_running(&b0, fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002229 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002230 msg_puts(_(" (STILL RUNNING)"));
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002231# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002232 process_still_running = TRUE;
2233# endif
2234 }
2235#endif
2236 }
2237
2238 if (b0_magic_wrong(&b0))
2239 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002240#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 if (STRNCMP(b0.b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002242 msg_puts(_("\n [not usable with this version of Vim]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002243 else
2244#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002245 msg_puts(_("\n [not usable on this computer]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 }
2247 }
2248 }
2249 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002250 msg_puts(_(" [cannot be read]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002251 close(fd);
2252 }
2253 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002254 msg_puts(_(" [cannot be opened]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002255 msg_putchar('\n');
2256
Bram Moolenaar63d25552019-05-10 21:28:38 +02002257 return st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002258}
2259
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002260/*
2261 * Return TRUE if the swap file looks OK and there are no changes, thus it can
2262 * be safely deleted.
2263 */
2264 static time_t
2265swapfile_unchanged(char_u *fname)
2266{
2267 stat_T st;
2268 int fd;
2269 struct block0 b0;
2270 int ret = TRUE;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002271
2272 // must be able to stat the swap file
2273 if (mch_stat((char *)fname, &st) == -1)
2274 return FALSE;
2275
2276 // must be able to read the first block
2277 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2278 if (fd < 0)
2279 return FALSE;
2280 if (read_eintr(fd, &b0, sizeof(b0)) != sizeof(b0))
2281 {
2282 close(fd);
2283 return FALSE;
2284 }
2285
2286 // the ID and magic number must be correct
2287 if (ml_check_b0_id(&b0) == FAIL|| b0_magic_wrong(&b0))
2288 ret = FALSE;
2289
2290 // must be unchanged
2291 if (b0.b0_dirty)
2292 ret = FALSE;
2293
2294#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf8835082020-11-09 21:04:17 +01002295 // Host name must be known and must equal the current host name, otherwise
2296 // comparing pid is meaningless.
2297 if (*(b0.b0_hname) == NUL)
2298 {
2299 ret = FALSE;
2300 }
2301 else
2302 {
2303 char_u hostname[B0_HNAME_SIZE];
2304
2305 mch_get_host_name(hostname, B0_HNAME_SIZE);
2306 hostname[B0_HNAME_SIZE - 1] = NUL;
Bram Moolenaare79cdb62020-11-21 13:51:16 +01002307 b0.b0_hname[B0_HNAME_SIZE - 1] = NUL; // in case of corruption
Bram Moolenaarf8835082020-11-09 21:04:17 +01002308 if (STRICMP(b0.b0_hname, hostname) != 0)
2309 ret = FALSE;
2310 }
2311
Bram Moolenaar32aa1022019-11-02 22:54:41 +01002312 // process must be known and not be running
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002313 if (char_to_long(b0.b0_pid) == 0L || swapfile_process_running(&b0, fname))
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002314 ret = FALSE;
2315#endif
2316
Bram Moolenaarf8835082020-11-09 21:04:17 +01002317 // We do not check the user, it should be irrelevant for whether the swap
2318 // file is still useful.
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002319
2320 close(fd);
2321 return ret;
2322}
2323
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002325recov_file_names(char_u **names, char_u *path, int prepend_dot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002326{
2327 int num_names;
2328
Bram Moolenaar071d4272004-06-13 20:20:40 +00002329 /*
2330 * (Win32 and Win64) never short names, but do prepend a dot.
2331 * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both.
2332 * Only use the short name if it is different.
2333 */
2334 char_u *p;
2335 int i;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002336# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002337 int shortname = curbuf->b_shortname;
2338
2339 curbuf->b_shortname = FALSE;
2340# endif
2341
2342 num_names = 0;
2343
2344 /*
2345 * May also add the file name with a dot prepended, for swap file in same
2346 * dir as original file.
2347 */
2348 if (prepend_dot)
2349 {
2350 names[num_names] = modname(path, (char_u *)".sw?", TRUE);
2351 if (names[num_names] == NULL)
2352 goto end;
2353 ++num_names;
2354 }
2355
2356 /*
2357 * Form the normal swap file name pattern by appending ".sw?".
2358 */
2359#ifdef VMS
2360 names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE);
2361#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002363#endif
2364 if (names[num_names] == NULL)
2365 goto end;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002366 if (num_names >= 1) // check if we have the same name twice
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367 {
2368 p = names[num_names - 1];
2369 i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]);
2370 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002371 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002372
2373 if (STRCMP(p, names[num_names]) != 0)
2374 ++num_names;
2375 else
2376 vim_free(names[num_names]);
2377 }
2378 else
2379 ++num_names;
2380
Bram Moolenaar4f974752019-02-17 17:44:42 +01002381# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002382 /*
2383 * Also try with 'shortname' set, in case the file is on a DOS filesystem.
2384 */
2385 curbuf->b_shortname = TRUE;
2386#ifdef VMS
2387 names[num_names] = modname(path, (char_u *)"_sw%", FALSE);
2388#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002389 names[num_names] = modname(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002390#endif
2391 if (names[num_names] == NULL)
2392 goto end;
2393
2394 /*
2395 * Remove the one from 'shortname', if it's the same as with 'noshortname'.
2396 */
2397 p = names[num_names];
2398 i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]);
2399 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002400 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002401 if (STRCMP(names[num_names - 1], p) == 0)
2402 vim_free(names[num_names]);
2403 else
2404 ++num_names;
2405# endif
2406
2407end:
Bram Moolenaar4f974752019-02-17 17:44:42 +01002408# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002409 curbuf->b_shortname = shortname;
2410# endif
2411
Bram Moolenaar071d4272004-06-13 20:20:40 +00002412 return num_names;
2413}
2414
2415/*
2416 * sync all memlines
2417 *
2418 * If 'check_file' is TRUE, check if original file exists and was not changed.
2419 * If 'check_char' is TRUE, stop syncing when character becomes available, but
2420 * always sync at least one block.
2421 */
2422 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002423ml_sync_all(int check_file, int check_char)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424{
2425 buf_T *buf;
Bram Moolenaar8767f522016-07-01 17:17:39 +02002426 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002427
Bram Moolenaar29323592016-07-24 22:04:11 +02002428 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429 {
Christian Brabandtf573c6e2021-06-20 14:02:16 +02002430 if (buf->b_ml.ml_mfp == NULL
2431 || buf->b_ml.ml_mfp->mf_fname == NULL
2432 || buf->b_ml.ml_mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002433 continue; // no file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002434
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002435 ml_flush_line(buf); // flush buffered line
2436 // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002437 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH);
2438 if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp)
2439 && buf->b_ffname != NULL)
2440 {
2441 /*
2442 * If the original file does not exist anymore or has been changed
2443 * call ml_preserve() to get rid of all negative numbered blocks.
2444 */
2445 if (mch_stat((char *)buf->b_ffname, &st) == -1
2446 || st.st_mtime != buf->b_mtime_read
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01002447#ifdef ST_MTIM_NSEC
2448 || st.ST_MTIM_NSEC != buf->b_mtime_read_ns
2449#endif
Bram Moolenaar914703b2010-05-31 21:59:46 +02002450 || st.st_size != buf->b_orig_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002451 {
2452 ml_preserve(buf, FALSE);
2453 did_check_timestamps = FALSE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002454 need_check_timestamps = TRUE; // give message later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002455 }
2456 }
2457 if (buf->b_ml.ml_mfp->mf_dirty)
2458 {
2459 (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0)
2460 | (bufIsChanged(buf) ? MFS_FLUSH : 0));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002461 if (check_char && ui_char_avail()) // character available now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002462 break;
2463 }
2464 }
2465}
2466
2467/*
2468 * sync one buffer, including negative blocks
2469 *
2470 * after this all the blocks are in the swap file
2471 *
2472 * Used for the :preserve command and when the original file has been
2473 * changed or deleted.
2474 *
2475 * when message is TRUE the success of preserving is reported
2476 */
2477 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002478ml_preserve(buf_T *buf, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002479{
2480 bhdr_T *hp;
2481 linenr_T lnum;
2482 memfile_T *mfp = buf->b_ml.ml_mfp;
2483 int status;
2484 int got_int_save = got_int;
2485
2486 if (mfp == NULL || mfp->mf_fname == NULL)
2487 {
2488 if (message)
Bram Moolenaareaaac012022-01-02 17:00:40 +00002489 emsg(_(e_cannot_preserve_there_is_no_swap_file));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 return;
2491 }
2492
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002493 // We only want to stop when interrupted here, not when interrupted
2494 // before.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002495 got_int = FALSE;
2496
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002497 ml_flush_line(buf); // flush buffered line
2498 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002499 status = mf_sync(mfp, MFS_ALL | MFS_FLUSH);
2500
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002501 // stack is invalid after mf_sync(.., MFS_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002502 buf->b_ml.ml_stack_top = 0;
2503
2504 /*
2505 * Some of the data blocks may have been changed from negative to
2506 * positive block number. In that case the pointer blocks need to be
2507 * updated.
2508 *
2509 * We don't know in which pointer block the references are, so we visit
2510 * all data blocks until there are no more translations to be done (or
2511 * we hit the end of the file, which can only happen in case a write fails,
2512 * e.g. when file system if full).
2513 * ml_find_line() does the work by translating the negative block numbers
2514 * when getting the first line of each data block.
2515 */
2516 if (mf_need_trans(mfp) && !got_int)
2517 {
2518 lnum = 1;
2519 while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count)
2520 {
2521 hp = ml_find_line(buf, lnum, ML_FIND);
2522 if (hp == NULL)
2523 {
2524 status = FAIL;
2525 goto theend;
2526 }
2527 CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum");
2528 lnum = buf->b_ml.ml_locked_high + 1;
2529 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002530 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
2531 // sync the updated pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002532 if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL)
2533 status = FAIL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002534 buf->b_ml.ml_stack_top = 0; // stack is invalid now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002535 }
2536theend:
2537 got_int |= got_int_save;
2538
2539 if (message)
2540 {
2541 if (status == OK)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002542 msg(_("File preserved"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002543 else
Bram Moolenaareaaac012022-01-02 17:00:40 +00002544 emsg(_(e_preserve_failed));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002545 }
2546}
2547
2548/*
2549 * NOTE: The pointer returned by the ml_get_*() functions only remains valid
2550 * until the next call!
2551 * line1 = ml_get(1);
2552 * line2 = ml_get(2); // line1 is now invalid!
2553 * Make a copy of the line if necessary.
2554 */
2555/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002556 * Return a pointer to a (read-only copy of a) line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002557 *
2558 * On failure an error message is given and IObuff is returned (to avoid
2559 * having to check for error everywhere).
2560 */
2561 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002562ml_get(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002563{
2564 return ml_get_buf(curbuf, lnum, FALSE);
2565}
2566
2567/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002568 * Return pointer to position "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002569 */
2570 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002571ml_get_pos(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002572{
2573 return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col);
2574}
2575
2576/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002577 * Return pointer to cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002578 */
2579 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002580ml_get_curline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002581{
2582 return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE);
2583}
2584
2585/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002586 * Return pointer to cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002587 */
2588 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002589ml_get_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002590{
2591 return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) +
2592 curwin->w_cursor.col);
2593}
2594
2595/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002596 * Return a pointer to a line in a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00002597 *
2598 * "will_change": if TRUE mark the buffer dirty (chars in the line will be
2599 * changed)
2600 */
2601 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002602ml_get_buf(
2603 buf_T *buf,
2604 linenr_T lnum,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002605 int will_change) // line will be changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002606{
Bram Moolenaarad40f022007-02-13 03:01:39 +00002607 bhdr_T *hp;
2608 DATA_BL *dp;
Bram Moolenaarad40f022007-02-13 03:01:39 +00002609 static int recursive = 0;
Bram Moolenaar96e7a592021-11-25 13:52:37 +00002610 static char_u questions[4];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002611
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002612 if (lnum > buf->b_ml.ml_line_count) // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002613 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002614 if (recursive == 0)
2615 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002616 // Avoid giving this message for a recursive call, may happen when
2617 // the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002618 ++recursive;
Bram Moolenaareaaac012022-01-02 17:00:40 +00002619 siemsg(_(e_ml_get_invalid_lnum_nr), lnum);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002620 --recursive;
2621 }
Bram Moolenaarf9435e42022-02-16 16:33:28 +00002622 ml_flush_line(buf);
2623 buf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002624errorret:
Bram Moolenaar96e7a592021-11-25 13:52:37 +00002625 STRCPY(questions, "???");
Bram Moolenaaradfde112019-05-25 22:11:45 +02002626 buf->b_ml.ml_line_len = 4;
Bram Moolenaarf9435e42022-02-16 16:33:28 +00002627 buf->b_ml.ml_line_lnum = lnum;
Bram Moolenaar96e7a592021-11-25 13:52:37 +00002628 return questions;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629 }
Bram Moolenaaradfde112019-05-25 22:11:45 +02002630 if (lnum <= 0) // pretend line 0 is line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002631 lnum = 1;
2632
Bram Moolenaaradfde112019-05-25 22:11:45 +02002633 if (buf->b_ml.ml_mfp == NULL) // there are no lines
2634 {
2635 buf->b_ml.ml_line_len = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002636 return (char_u *)"";
Bram Moolenaaradfde112019-05-25 22:11:45 +02002637 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002638
Bram Moolenaar37d619f2010-03-10 14:46:26 +01002639 /*
2640 * See if it is the same line as requested last time.
2641 * Otherwise may need to flush last used line.
2642 * Don't use the last used line when 'swapfile' is reset, need to load all
2643 * blocks.
2644 */
Bram Moolenaar47b8b152007-02-07 02:41:57 +00002645 if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002646 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002647 unsigned start, end;
2648 colnr_T len;
2649 int idx;
2650
Bram Moolenaar071d4272004-06-13 20:20:40 +00002651 ml_flush_line(buf);
2652
2653 /*
2654 * Find the data block containing the line.
2655 * This also fills the stack with the blocks from the root to the data
2656 * block and releases any locked block.
2657 */
2658 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
2659 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002660 if (recursive == 0)
2661 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002662 // Avoid giving this message for a recursive call, may happen
2663 // when the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002664 ++recursive;
Bram Moolenaarcb868932019-10-26 20:56:21 +02002665 get_trans_bufname(buf);
2666 shorten_dir(NameBuff);
Bram Moolenaareaaac012022-01-02 17:00:40 +00002667 siemsg(_(e_ml_get_cannot_find_line_nr_in_buffer_nr_str),
Bram Moolenaarcb868932019-10-26 20:56:21 +02002668 lnum, buf->b_fnum, NameBuff);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002669 --recursive;
2670 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002671 goto errorret;
2672 }
2673
2674 dp = (DATA_BL *)(hp->bh_data);
2675
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002676 idx = lnum - buf->b_ml.ml_locked_low;
2677 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
2678 // The text ends where the previous line starts. The first line ends
2679 // at the end of the block.
2680 if (idx == 0)
2681 end = dp->db_txt_end;
2682 else
2683 end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
2684 len = end - start;
2685
2686 buf->b_ml.ml_line_ptr = (char_u *)dp + start;
2687 buf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002688 buf->b_ml.ml_line_lnum = lnum;
2689 buf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
2690 }
2691 if (will_change)
2692 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
2693
2694 return buf->b_ml.ml_line_ptr;
2695}
2696
2697/*
2698 * Check if a line that was just obtained by a call to ml_get
2699 * is in allocated memory.
2700 */
2701 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002702ml_line_alloced(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002703{
2704 return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY);
2705}
2706
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002707#ifdef FEAT_PROP_POPUP
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002708/*
2709 * Add text properties that continue from the previous line.
2710 */
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002711 static void
2712add_text_props_for_append(
2713 buf_T *buf,
2714 linenr_T lnum,
2715 char_u **line,
2716 int *len,
2717 char_u **tofree)
2718{
2719 int round;
2720 int new_prop_count = 0;
2721 int count;
2722 int n;
2723 char_u *props;
Bram Moolenaarea781452019-09-04 18:53:12 +02002724 int new_len = 0; // init for gcc
Bram Moolenaar8f13d822020-09-12 21:04:23 +02002725 char_u *new_line = NULL;
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002726 textprop_T prop;
2727
2728 // Make two rounds:
2729 // 1. calculate the extra space needed
2730 // 2. allocate the space and fill it
2731 for (round = 1; round <= 2; ++round)
2732 {
2733 if (round == 2)
2734 {
2735 if (new_prop_count == 0)
2736 return; // nothing to do
2737 new_len = *len + new_prop_count * sizeof(textprop_T);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002738 new_line = alloc(new_len);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002739 if (new_line == NULL)
2740 return;
2741 mch_memmove(new_line, *line, *len);
2742 new_prop_count = 0;
2743 }
2744
2745 // Get the line above to find any props that continue in the next
2746 // line.
2747 count = get_text_props(buf, lnum, &props, FALSE);
2748 for (n = 0; n < count; ++n)
2749 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002750 mch_memmove(&prop, props + n * sizeof(textprop_T),
2751 sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002752 if (prop.tp_flags & TP_FLAG_CONT_NEXT)
2753 {
2754 if (round == 2)
2755 {
2756 prop.tp_flags |= TP_FLAG_CONT_PREV;
2757 prop.tp_col = 1;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002758 prop.tp_len = *len; // not exactly the right length
2759 mch_memmove(new_line + *len + new_prop_count
2760 * sizeof(textprop_T), &prop, sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002761 }
2762 ++new_prop_count;
2763 }
2764 }
2765 }
2766 *line = new_line;
2767 *tofree = new_line;
2768 *len = new_len;
2769}
2770#endif
2771
Bram Moolenaar071d4272004-06-13 20:20:40 +00002772 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002773ml_append_int(
2774 buf_T *buf,
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002775 linenr_T lnum, // append after this line (can be 0)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002776 char_u *line_arg, // text of the new line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002777 colnr_T len_arg, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002778 int flags) // ML_APPEND_ flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002779{
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002780 char_u *line = line_arg;
2781 colnr_T len = len_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002782 int i;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002783 int line_count; // number of indexes in current block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002784 int offset;
2785 int from, to;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002786 int space_needed; // space needed for new line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002787 int page_size;
2788 int page_count;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002789 int db_idx; // index for lnum in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790 bhdr_T *hp;
2791 memfile_T *mfp;
2792 DATA_BL *dp;
2793 PTR_BL *pp;
2794 infoptr_T *ip;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002795#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002796 char_u *tofree = NULL;
2797#endif
2798 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002799
Bram Moolenaar071d4272004-06-13 20:20:40 +00002800 if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002801 return FAIL; // lnum out of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00002802
2803 if (lowest_marked && lowest_marked > lnum)
2804 lowest_marked = lnum + 1;
2805
2806 if (len == 0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002807 len = (colnr_T)STRLEN(line) + 1; // space needed for the text
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002808
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002809#ifdef FEAT_PROP_POPUP
Bram Moolenaar840f91f2021-05-26 22:32:10 +02002810 if (curbuf->b_has_textprop && lnum > 0
2811 && !(flags & (ML_APPEND_UNDO | ML_APPEND_NOPROP)))
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002812 // Add text properties that continue from the previous line.
2813 add_text_props_for_append(buf, lnum, &line, &len, &tofree);
2814#endif
2815
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002816 space_needed = len + INDEX_SIZE; // space needed for text + index
Bram Moolenaar071d4272004-06-13 20:20:40 +00002817
2818 mfp = buf->b_ml.ml_mfp;
2819 page_size = mfp->mf_page_size;
2820
2821/*
2822 * find the data block containing the previous line
2823 * This also fills the stack with the blocks from the root to the data block
2824 * This also releases any locked block.
2825 */
2826 if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum,
2827 ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002828 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002829
2830 buf->b_ml.ml_flags &= ~ML_EMPTY;
2831
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002832 if (lnum == 0) // got line one instead, correct db_idx
2833 db_idx = -1; // careful, it is negative!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002834 else
2835 db_idx = lnum - buf->b_ml.ml_locked_low;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002836 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002837 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2838
2839 dp = (DATA_BL *)(hp->bh_data);
2840
2841/*
2842 * If
2843 * - there is not enough room in the current block
2844 * - appending to the last line in the block
2845 * - not appending to the last line in the file
2846 * insert in front of the next block.
2847 */
2848 if ((int)dp->db_free < space_needed && db_idx == line_count - 1
2849 && lnum < buf->b_ml.ml_line_count)
2850 {
2851 /*
2852 * Now that the line is not going to be inserted in the block that we
2853 * expected, the line count has to be adjusted in the pointer blocks
2854 * by using ml_locked_lineadd.
2855 */
2856 --(buf->b_ml.ml_locked_lineadd);
2857 --(buf->b_ml.ml_locked_high);
2858 if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002859 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002860
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002861 db_idx = -1; // careful, it is negative!
2862 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2864 CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1");
2865
2866 dp = (DATA_BL *)(hp->bh_data);
2867 }
2868
2869 ++buf->b_ml.ml_line_count;
2870
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002871 if ((int)dp->db_free >= space_needed) // enough room in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002872 {
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002873 /*
2874 * Insert the new line in an existing data block, or in the data block
2875 * allocated above.
2876 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 dp->db_txt_start -= len;
2878 dp->db_free -= space_needed;
2879 ++(dp->db_line_count);
2880
2881 /*
2882 * move the text of the lines that follow to the front
2883 * adjust the indexes of the lines that follow
2884 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002885 if (line_count > db_idx + 1) // if there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002886 {
2887 /*
2888 * Offset is the start of the previous line.
2889 * This will become the character just after the new line.
2890 */
2891 if (db_idx < 0)
2892 offset = dp->db_txt_end;
2893 else
2894 offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK);
2895 mch_memmove((char *)dp + dp->db_txt_start,
2896 (char *)dp + dp->db_txt_start + len,
2897 (size_t)(offset - (dp->db_txt_start + len)));
2898 for (i = line_count - 1; i > db_idx; --i)
2899 dp->db_index[i + 1] = dp->db_index[i] - len;
2900 dp->db_index[db_idx + 1] = offset - len;
2901 }
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002902 else
2903 // add line at the end (which is the start of the text)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002904 dp->db_index[db_idx + 1] = dp->db_txt_start;
2905
2906 /*
2907 * copy the text into the block
2908 */
2909 mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002910 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002911 dp->db_index[db_idx + 1] |= DB_MARKED;
2912
2913 /*
2914 * Mark the block dirty.
2915 */
2916 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002917 if (!(flags & ML_APPEND_NEW))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002918 buf->b_ml.ml_flags |= ML_LOCKED_POS;
2919 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002920 else // not enough space in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002922 long line_count_left, line_count_right;
2923 int page_count_left, page_count_right;
2924 bhdr_T *hp_left;
2925 bhdr_T *hp_right;
2926 bhdr_T *hp_new;
2927 int lines_moved;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002928 int data_moved = 0; // init to shut up gcc
2929 int total_moved = 0; // init to shut up gcc
Bram Moolenaar071d4272004-06-13 20:20:40 +00002930 DATA_BL *dp_right, *dp_left;
2931 int stack_idx;
2932 int in_left;
2933 int lineadd;
2934 blocknr_T bnum_left, bnum_right;
2935 linenr_T lnum_left, lnum_right;
2936 int pb_idx;
2937 PTR_BL *pp_new;
2938
2939 /*
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002940 * There is not enough room, we have to create a new data block and
2941 * copy some lines into it.
2942 * Then we have to insert an entry in the pointer block.
2943 * If this pointer block also is full, we go up another block, and so
2944 * on, up to the root if necessary.
2945 * The line counts in the pointer blocks have already been adjusted by
2946 * ml_find_line().
2947 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00002948 * We are going to allocate a new data block. Depending on the
2949 * situation it will be put to the left or right of the existing
2950 * block. If possible we put the new line in the left block and move
2951 * the lines after it to the right block. Otherwise the new line is
2952 * also put in the right block. This method is more efficient when
2953 * inserting a lot of lines at one place.
2954 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002955 if (db_idx < 0) // left block is new, right block is existing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002956 {
2957 lines_moved = 0;
2958 in_left = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002959 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002960 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002961 else // left block is existing, right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002962 {
2963 lines_moved = line_count - db_idx - 1;
2964 if (lines_moved == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002965 in_left = FALSE; // put new line in right block
2966 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002967 else
2968 {
2969 data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) -
2970 dp->db_txt_start;
2971 total_moved = data_moved + lines_moved * INDEX_SIZE;
2972 if ((int)dp->db_free + total_moved >= space_needed)
2973 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002974 in_left = TRUE; // put new line in left block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002975 space_needed = total_moved;
2976 }
2977 else
2978 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002979 in_left = FALSE; // put new line in right block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002980 space_needed += total_moved;
2981 }
2982 }
2983 }
2984
2985 page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002986 if ((hp_new = ml_new_data(mfp, flags & ML_APPEND_NEW, page_count))
2987 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002988 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002989 // correct line counts in pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002990 --(buf->b_ml.ml_locked_lineadd);
2991 --(buf->b_ml.ml_locked_high);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002992 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002994 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002995 {
2996 hp_left = hp_new;
2997 hp_right = hp;
2998 line_count_left = 0;
2999 line_count_right = line_count;
3000 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003001 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003002 {
3003 hp_left = hp;
3004 hp_right = hp_new;
3005 line_count_left = line_count;
3006 line_count_right = 0;
3007 }
3008 dp_right = (DATA_BL *)(hp_right->bh_data);
3009 dp_left = (DATA_BL *)(hp_left->bh_data);
3010 bnum_left = hp_left->bh_bnum;
3011 bnum_right = hp_right->bh_bnum;
3012 page_count_left = hp_left->bh_page_count;
3013 page_count_right = hp_right->bh_page_count;
3014
3015 /*
3016 * May move the new line into the right/new block.
3017 */
3018 if (!in_left)
3019 {
3020 dp_right->db_txt_start -= len;
3021 dp_right->db_free -= len + INDEX_SIZE;
3022 dp_right->db_index[0] = dp_right->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003023 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003024 dp_right->db_index[0] |= DB_MARKED;
3025
3026 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3027 line, (size_t)len);
3028 ++line_count_right;
3029 }
3030 /*
3031 * may move lines from the left/old block to the right/new one.
3032 */
3033 if (lines_moved)
3034 {
3035 /*
3036 */
3037 dp_right->db_txt_start -= data_moved;
3038 dp_right->db_free -= total_moved;
3039 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3040 (char *)dp_left + dp_left->db_txt_start,
3041 (size_t)data_moved);
3042 offset = dp_right->db_txt_start - dp_left->db_txt_start;
3043 dp_left->db_txt_start += data_moved;
3044 dp_left->db_free += total_moved;
3045
3046 /*
3047 * update indexes in the new block
3048 */
3049 for (to = line_count_right, from = db_idx + 1;
3050 from < line_count_left; ++from, ++to)
3051 dp_right->db_index[to] = dp->db_index[from] + offset;
3052 line_count_right += lines_moved;
3053 line_count_left -= lines_moved;
3054 }
3055
3056 /*
3057 * May move the new line into the left (old or new) block.
3058 */
3059 if (in_left)
3060 {
3061 dp_left->db_txt_start -= len;
3062 dp_left->db_free -= len + INDEX_SIZE;
3063 dp_left->db_index[line_count_left] = dp_left->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003064 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003065 dp_left->db_index[line_count_left] |= DB_MARKED;
3066 mch_memmove((char *)dp_left + dp_left->db_txt_start,
3067 line, (size_t)len);
3068 ++line_count_left;
3069 }
3070
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003071 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003072 {
3073 lnum_left = lnum + 1;
3074 lnum_right = 0;
3075 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003076 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003077 {
3078 lnum_left = 0;
3079 if (in_left)
3080 lnum_right = lnum + 2;
3081 else
3082 lnum_right = lnum + 1;
3083 }
3084 dp_left->db_line_count = line_count_left;
3085 dp_right->db_line_count = line_count_right;
3086
3087 /*
3088 * release the two data blocks
3089 * The new one (hp_new) already has a correct blocknumber.
3090 * The old one (hp, in ml_locked) gets a positive blocknumber if
3091 * we changed it and we are not editing a new file.
3092 */
3093 if (lines_moved || in_left)
3094 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003095 if (!(flags & ML_APPEND_NEW) && db_idx >= 0 && in_left)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003096 buf->b_ml.ml_flags |= ML_LOCKED_POS;
3097 mf_put(mfp, hp_new, TRUE, FALSE);
3098
3099 /*
3100 * flush the old data block
3101 * set ml_locked_lineadd to 0, because the updating of the
3102 * pointer blocks is done below
3103 */
3104 lineadd = buf->b_ml.ml_locked_lineadd;
3105 buf->b_ml.ml_locked_lineadd = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003106 ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003107
3108 /*
3109 * update pointer blocks for the new data block
3110 */
3111 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3112 --stack_idx)
3113 {
3114 ip = &(buf->b_ml.ml_stack[stack_idx]);
3115 pb_idx = ip->ip_index;
3116 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003117 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003118 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003119 if (pp->pb_id != PTR_ID)
3120 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00003121 iemsg(_(e_pointer_block_id_wrong_three));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003122 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003123 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003124 }
3125 /*
3126 * TODO: If the pointer block is full and we are adding at the end
3127 * try to insert in front of the next block
3128 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003129 // block not full, add one entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003130 if (pp->pb_count < pp->pb_count_max)
3131 {
3132 if (pb_idx + 1 < (int)pp->pb_count)
3133 mch_memmove(&pp->pb_pointer[pb_idx + 2],
3134 &pp->pb_pointer[pb_idx + 1],
3135 (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN));
3136 ++pp->pb_count;
3137 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3138 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3139 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3140 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3141 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3142 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3143
3144 if (lnum_left != 0)
3145 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3146 if (lnum_right != 0)
3147 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3148
3149 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003150 buf->b_ml.ml_stack_top = stack_idx + 1; // truncate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003151
3152 if (lineadd)
3153 {
3154 --(buf->b_ml.ml_stack_top);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003155 // fix line count for rest of blocks in the stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003156 ml_lineadd(buf, lineadd);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003157 // fix stack itself
Bram Moolenaar071d4272004-06-13 20:20:40 +00003158 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
3159 lineadd;
3160 ++(buf->b_ml.ml_stack_top);
3161 }
3162
3163 /*
3164 * We are finished, break the loop here.
3165 */
3166 break;
3167 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003168 else // pointer block full
Bram Moolenaar071d4272004-06-13 20:20:40 +00003169 {
3170 /*
3171 * split the pointer block
3172 * allocate a new pointer block
3173 * move some of the pointer into the new block
3174 * prepare for updating the parent block
3175 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003176 for (;;) // do this twice when splitting block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003177 {
3178 hp_new = ml_new_ptr(mfp);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003179 if (hp_new == NULL) // TODO: try to fix tree
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003180 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003181 pp_new = (PTR_BL *)(hp_new->bh_data);
3182
3183 if (hp->bh_bnum != 1)
3184 break;
3185
3186 /*
3187 * if block 1 becomes full the tree is given an extra level
3188 * The pointers from block 1 are moved into the new block.
3189 * block 1 is updated to point to the new block
3190 * then continue to split the new block
3191 */
3192 mch_memmove(pp_new, pp, (size_t)page_size);
3193 pp->pb_count = 1;
3194 pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum;
3195 pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count;
3196 pp->pb_pointer[0].pe_old_lnum = 1;
3197 pp->pb_pointer[0].pe_page_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003198 mf_put(mfp, hp, TRUE, FALSE); // release block 1
3199 hp = hp_new; // new block is to be split
Bram Moolenaar071d4272004-06-13 20:20:40 +00003200 pp = pp_new;
3201 CHECK(stack_idx != 0, _("stack_idx should be 0"));
3202 ip->ip_index = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003203 ++stack_idx; // do block 1 again later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003204 }
3205 /*
3206 * move the pointers after the current one to the new block
3207 * If there are none, the new entry will be in the new block.
3208 */
3209 total_moved = pp->pb_count - pb_idx - 1;
3210 if (total_moved)
3211 {
3212 mch_memmove(&pp_new->pb_pointer[0],
3213 &pp->pb_pointer[pb_idx + 1],
3214 (size_t)(total_moved) * sizeof(PTR_EN));
3215 pp_new->pb_count = total_moved;
3216 pp->pb_count -= total_moved - 1;
3217 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3218 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3219 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3220 if (lnum_right)
3221 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3222 }
3223 else
3224 {
3225 pp_new->pb_count = 1;
3226 pp_new->pb_pointer[0].pe_bnum = bnum_right;
3227 pp_new->pb_pointer[0].pe_line_count = line_count_right;
3228 pp_new->pb_pointer[0].pe_page_count = page_count_right;
3229 pp_new->pb_pointer[0].pe_old_lnum = lnum_right;
3230 }
3231 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3232 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3233 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3234 if (lnum_left)
3235 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3236 lnum_left = 0;
3237 lnum_right = 0;
3238
3239 /*
3240 * recompute line counts
3241 */
3242 line_count_right = 0;
3243 for (i = 0; i < (int)pp_new->pb_count; ++i)
3244 line_count_right += pp_new->pb_pointer[i].pe_line_count;
3245 line_count_left = 0;
3246 for (i = 0; i < (int)pp->pb_count; ++i)
3247 line_count_left += pp->pb_pointer[i].pe_line_count;
3248
3249 bnum_left = hp->bh_bnum;
3250 bnum_right = hp_new->bh_bnum;
3251 page_count_left = 1;
3252 page_count_right = 1;
3253 mf_put(mfp, hp, TRUE, FALSE);
3254 mf_put(mfp, hp_new, TRUE, FALSE);
3255 }
3256 }
3257
3258 /*
3259 * Safety check: fallen out of for loop?
3260 */
3261 if (stack_idx < 0)
3262 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00003263 iemsg(_(e_updated_too_many_blocks));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003264 buf->b_ml.ml_stack_top = 0; // invalidate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003265 }
3266 }
3267
3268#ifdef FEAT_BYTEOFF
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003269# ifdef FEAT_PROP_POPUP
3270 if (curbuf->b_has_textprop)
3271 // only use the space needed for the text, ignore properties
3272 len = (colnr_T)STRLEN(line) + 1;
3273# endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003274 // The line was inserted below 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 ml_updatechunk(buf, lnum + 1, (long)len, ML_CHNK_ADDLINE);
3276#endif
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003277
Bram Moolenaar071d4272004-06-13 20:20:40 +00003278#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003279 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003280 {
3281 if (STRLEN(line) > 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003282 netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line));
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003283 netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003284 (char_u *)"\n", 1);
3285 }
3286#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003287#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003288 if (buf->b_write_to_channel)
3289 channel_write_new_lines(buf);
3290#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003291 ret = OK;
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003292
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003293theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003294#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003295 vim_free(tofree);
3296#endif
3297 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003298}
3299
3300/*
Bram Moolenaar250e3112019-07-15 23:02:14 +02003301 * Flush any pending change and call ml_append_int()
3302 */
3303 static int
3304ml_append_flush(
3305 buf_T *buf,
3306 linenr_T lnum, // append after this line (can be 0)
3307 char_u *line, // text of the new line
3308 colnr_T len, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003309 int flags) // ML_APPEND_ flags
Bram Moolenaar250e3112019-07-15 23:02:14 +02003310{
3311 if (lnum > buf->b_ml.ml_line_count)
3312 return FAIL; // lnum out of range
3313
3314 if (buf->b_ml.ml_line_lnum != 0)
3315 // This may also invoke ml_append_int().
3316 ml_flush_line(buf);
3317
3318#ifdef FEAT_EVAL
3319 // When inserting above recorded changes: flush the changes before changing
3320 // the text. Then flush the cached line, it may become invalid.
3321 may_invoke_listeners(buf, lnum + 1, lnum + 1, 1);
3322 if (buf->b_ml.ml_line_lnum != 0)
3323 ml_flush_line(buf);
3324#endif
3325
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003326 return ml_append_int(buf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003327}
3328
3329/*
3330 * Append a line after lnum (may be 0 to insert a line in front of the file).
3331 * "line" does not need to be allocated, but can't be another line in a
3332 * buffer, unlocking may make it invalid.
3333 *
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003334 * "newfile": TRUE when starting to edit a new file, meaning that pe_old_lnum
Bram Moolenaar250e3112019-07-15 23:02:14 +02003335 * will be set for recovery
3336 * Check: The caller of this function should probably also call
3337 * appended_lines().
3338 *
3339 * return FAIL for failure, OK otherwise
3340 */
3341 int
3342ml_append(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003343 linenr_T lnum, // append after this line (can be 0)
3344 char_u *line, // text of the new line
3345 colnr_T len, // length of new line, including NUL, or 0
3346 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003347{
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003348 return ml_append_flags(lnum, line, len, newfile ? ML_APPEND_NEW : 0);
3349}
3350
3351 int
3352ml_append_flags(
3353 linenr_T lnum, // append after this line (can be 0)
3354 char_u *line, // text of the new line
3355 colnr_T len, // length of new line, including NUL, or 0
3356 int flags) // ML_APPEND_ values
3357{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003358 // When starting up, we might still need to create the memfile
Bram Moolenaar250e3112019-07-15 23:02:14 +02003359 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
3360 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003361 return ml_append_flush(curbuf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003362}
3363
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003364
Bram Moolenaar250e3112019-07-15 23:02:14 +02003365#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(PROTO)
3366/*
3367 * Like ml_append() but for an arbitrary buffer. The buffer must already have
3368 * a memline.
3369 */
3370 int
3371ml_append_buf(
3372 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003373 linenr_T lnum, // append after this line (can be 0)
3374 char_u *line, // text of the new line
3375 colnr_T len, // length of new line, including NUL, or 0
3376 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003377{
3378 if (buf->b_ml.ml_mfp == NULL)
3379 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003380 return ml_append_flush(buf, lnum, line, len, newfile ? ML_APPEND_NEW : 0);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003381}
3382#endif
3383
3384/*
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003385 * Replace line "lnum", with buffering, in current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003386 *
Bram Moolenaar1056d982006-03-09 22:37:52 +00003387 * If "copy" is TRUE, make a copy of the line, otherwise the line has been
Bram Moolenaar071d4272004-06-13 20:20:40 +00003388 * copied to allocated memory already.
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003389 * If "copy" is FALSE the "line" may be freed to add text properties!
3390 * Do not use it after calling ml_replace().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003391 *
3392 * Check: The caller of this function should probably also call
3393 * changed_lines(), unless update_screen(NOT_VALID) is used.
3394 *
3395 * return FAIL for failure, OK otherwise
3396 */
3397 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003398ml_replace(linenr_T lnum, char_u *line, int copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003399{
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003400 colnr_T len = -1;
3401
3402 if (line != NULL)
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003403 len = (colnr_T)STRLEN(line);
Bram Moolenaarccae4672019-01-04 15:09:57 +01003404 return ml_replace_len(lnum, line, len, FALSE, copy);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003405}
3406
Bram Moolenaarccae4672019-01-04 15:09:57 +01003407/*
3408 * Replace a line for the current buffer. Like ml_replace() with:
3409 * "len_arg" is the length of the text, excluding NUL.
3410 * If "has_props" is TRUE then "line_arg" includes the text properties and
3411 * "len_arg" includes the NUL of the text.
3412 */
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003413 int
Bram Moolenaarccae4672019-01-04 15:09:57 +01003414ml_replace_len(
3415 linenr_T lnum,
3416 char_u *line_arg,
3417 colnr_T len_arg,
3418 int has_props,
3419 int copy)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003420{
3421 char_u *line = line_arg;
3422 colnr_T len = len_arg;
3423
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003424 if (line == NULL) // just checking...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003425 return FAIL;
3426
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003427 // When starting up, we might still need to create the memfile
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003428 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003429 return FAIL;
3430
Bram Moolenaarccae4672019-01-04 15:09:57 +01003431 if (!has_props)
3432 ++len; // include the NUL after the text
3433 if (copy)
3434 {
3435 // copy the line to allocated memory
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003436#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003437 if (has_props)
3438 line = vim_memsave(line, len);
3439 else
3440#endif
3441 line = vim_strnsave(line, len - 1);
3442 if (line == NULL)
3443 return FAIL;
3444 }
3445
Bram Moolenaar071d4272004-06-13 20:20:40 +00003446#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003447 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003448 {
3449 netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum)));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003450 netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003451 }
3452#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003453 if (curbuf->b_ml.ml_line_lnum != lnum)
3454 {
3455 // another line is buffered, flush it
3456 ml_flush_line(curbuf);
Bram Moolenaarca79a5f2018-12-13 23:16:36 +01003457 curbuf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003458
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003459#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003460 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003461 // Need to fetch the old line to copy over any text properties.
3462 ml_get_buf(curbuf, lnum, TRUE);
3463#endif
3464 }
3465
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003466#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003467 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003468 {
3469 size_t oldtextlen = STRLEN(curbuf->b_ml.ml_line_ptr) + 1;
3470
3471 if (oldtextlen < (size_t)curbuf->b_ml.ml_line_len)
3472 {
3473 char_u *newline;
3474 size_t textproplen = curbuf->b_ml.ml_line_len - oldtextlen;
3475
3476 // Need to copy over text properties, stored after the text.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003477 newline = alloc(len + (int)textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003478 if (newline != NULL)
3479 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01003480 mch_memmove(newline, line, len);
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02003481 mch_memmove(newline + len, curbuf->b_ml.ml_line_ptr
3482 + oldtextlen, textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003483 vim_free(line);
3484 line = newline;
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003485 len += (colnr_T)textproplen;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003486 }
3487 }
3488 }
3489#endif
3490
Bram Moolenaarccae4672019-01-04 15:09:57 +01003491 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) // same line allocated
3492 vim_free(curbuf->b_ml.ml_line_ptr); // free it
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003493
Bram Moolenaar071d4272004-06-13 20:20:40 +00003494 curbuf->b_ml.ml_line_ptr = line;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003495 curbuf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003496 curbuf->b_ml.ml_line_lnum = lnum;
3497 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
3498
3499 return OK;
3500}
3501
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003502#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003503/*
3504 * Adjust text properties in line "lnum" for a deleted line.
3505 * When "above" is true this is the line above the deleted line.
3506 * "del_props" are the properties of the deleted line.
3507 */
3508 static void
3509adjust_text_props_for_delete(
3510 buf_T *buf,
3511 linenr_T lnum,
3512 char_u *del_props,
3513 int del_props_len,
3514 int above)
3515{
3516 int did_get_line = FALSE;
3517 int done_del;
3518 int done_this;
3519 textprop_T prop_del;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003520 bhdr_T *hp;
3521 DATA_BL *dp;
3522 int idx;
3523 int line_start;
3524 long line_size;
3525 int this_props_len;
3526 char_u *text;
3527 size_t textlen;
3528 int found;
3529
3530 for (done_del = 0; done_del < del_props_len; done_del += sizeof(textprop_T))
3531 {
3532 mch_memmove(&prop_del, del_props + done_del, sizeof(textprop_T));
3533 if ((above && (prop_del.tp_flags & TP_FLAG_CONT_PREV)
3534 && !(prop_del.tp_flags & TP_FLAG_CONT_NEXT))
3535 || (!above && (prop_del.tp_flags & TP_FLAG_CONT_NEXT)
3536 && !(prop_del.tp_flags & TP_FLAG_CONT_PREV)))
3537 {
3538 if (!did_get_line)
3539 {
3540 did_get_line = TRUE;
3541 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
3542 return;
3543
3544 dp = (DATA_BL *)(hp->bh_data);
3545 idx = lnum - buf->b_ml.ml_locked_low;
3546 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3547 if (idx == 0) // first line in block, text at the end
3548 line_size = dp->db_txt_end - line_start;
3549 else
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003550 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK)
3551 - line_start;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003552 text = (char_u *)dp + line_start;
3553 textlen = STRLEN(text) + 1;
3554 if ((long)textlen >= line_size)
3555 {
3556 if (above)
3557 internal_error("no text property above deleted line");
3558 else
3559 internal_error("no text property below deleted line");
3560 return;
3561 }
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003562 this_props_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003563 }
3564
3565 found = FALSE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003566 for (done_this = 0; done_this < this_props_len;
3567 done_this += sizeof(textprop_T))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003568 {
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003569 int flag = above ? TP_FLAG_CONT_NEXT
3570 : TP_FLAG_CONT_PREV;
3571 textprop_T prop_this;
3572
3573 mch_memmove(&prop_this, text + textlen + done_del,
3574 sizeof(textprop_T));
3575 if ((prop_this.tp_flags & flag)
3576 && prop_del.tp_id == prop_this.tp_id
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003577 && prop_del.tp_type == prop_this.tp_type)
3578 {
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003579 found = TRUE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003580 prop_this.tp_flags &= ~flag;
3581 mch_memmove(text + textlen + done_del, &prop_this,
3582 sizeof(textprop_T));
3583 break;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003584 }
3585 }
3586 if (!found)
3587 {
3588 if (above)
3589 internal_error("text property above deleted line not found");
3590 else
3591 internal_error("text property below deleted line not found");
3592 }
3593
3594 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3595 }
3596 }
3597}
3598#endif
3599
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600/*
Bram Moolenaar4033c552017-09-16 20:54:51 +02003601 * Delete line "lnum" in the current buffer.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003602 * When "flags" has ML_DEL_MESSAGE may give a "No lines in buffer" message.
3603 * When "flags" has ML_DEL_UNDO this is called from undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003604 *
3605 * return FAIL for failure, OK otherwise
3606 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 static int
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003608ml_delete_int(buf_T *buf, linenr_T lnum, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003609{
3610 bhdr_T *hp;
3611 memfile_T *mfp;
3612 DATA_BL *dp;
3613 PTR_BL *pp;
3614 infoptr_T *ip;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003615 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003616 int idx;
3617 int stack_idx;
3618 int text_start;
3619 int line_start;
3620 long line_size;
3621 int i;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003622 int ret = FAIL;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003623#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003624 char_u *textprop_save = NULL;
Bram Moolenaardf9070e2021-08-25 17:31:37 +02003625 int textprop_save_len = 0;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003626#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003627
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628 if (lowest_marked && lowest_marked > lnum)
3629 lowest_marked--;
3630
3631/*
3632 * If the file becomes empty the last line is replaced by an empty line.
3633 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003634 if (buf->b_ml.ml_line_count == 1) // file becomes empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003636 if ((flags & ML_DEL_MESSAGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003637#ifdef FEAT_NETBEANS_INTG
3638 && !netbeansSuppressNoLines
3639#endif
3640 )
Bram Moolenaar238a5642006-02-21 22:12:05 +00003641 set_keep_msg((char_u *)_(no_lines_msg), 0);
3642
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003643 // FEAT_BYTEOFF already handled in there, don't worry 'bout it below
Bram Moolenaar071d4272004-06-13 20:20:40 +00003644 i = ml_replace((linenr_T)1, (char_u *)"", TRUE);
3645 buf->b_ml.ml_flags |= ML_EMPTY;
3646
3647 return i;
3648 }
3649
3650/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003651 * Find the data block containing the line.
3652 * This also fills the stack with the blocks from the root to the data block.
3653 * This also releases any locked block..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003654 */
3655 mfp = buf->b_ml.ml_mfp;
3656 if (mfp == NULL)
3657 return FAIL;
3658
3659 if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL)
3660 return FAIL;
3661
3662 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003663 // compute line count before the delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003664 count = (long)(buf->b_ml.ml_locked_high)
3665 - (long)(buf->b_ml.ml_locked_low) + 2;
3666 idx = lnum - buf->b_ml.ml_locked_low;
3667
3668 --buf->b_ml.ml_line_count;
3669
3670 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003671 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003672 line_size = dp->db_txt_end - line_start;
3673 else
3674 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start;
3675
3676#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003677 if (netbeans_active())
=?UTF-8?q?Dundar=20G=C3=B6c?=420fabc2022-01-28 15:28:04 +00003678 netbeans_removed(buf, lnum, 0, line_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003679#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003680#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003681 // If there are text properties, make a copy, so that we can update
3682 // properties in preceding and following lines.
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003683 if (buf->b_has_textprop && !(flags & (ML_DEL_UNDO | ML_DEL_NOPROP)))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003684 {
3685 size_t textlen = STRLEN((char_u *)dp + line_start) + 1;
3686
3687 if ((long)textlen < line_size)
3688 {
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003689 textprop_save_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003690 textprop_save = vim_memsave((char_u *)dp + line_start + textlen,
3691 textprop_save_len);
3692 }
3693 }
3694#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003695
3696/*
3697 * special case: If there is only one line in the data block it becomes empty.
3698 * Then we have to remove the entry, pointing to this data block, from the
3699 * pointer block. If this pointer block also becomes empty, we go up another
3700 * block, and so on, up to the root if necessary.
3701 * The line counts in the pointer blocks have already been adjusted by
3702 * ml_find_line().
3703 */
3704 if (count == 1)
3705 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003706 mf_free(mfp, hp); // free the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003707 buf->b_ml.ml_locked = NULL;
3708
Bram Moolenaare60acc12011-05-10 16:41:25 +02003709 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3710 --stack_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003711 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003712 buf->b_ml.ml_stack_top = 0; // stack is invalid when failing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003713 ip = &(buf->b_ml.ml_stack[stack_idx]);
3714 idx = ip->ip_index;
3715 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003716 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003717 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003718 if (pp->pb_id != PTR_ID)
3719 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00003720 iemsg(_(e_pointer_block_id_wrong_four));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003722 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003723 }
3724 count = --(pp->pb_count);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003725 if (count == 0) // the pointer block becomes empty!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003726 mf_free(mfp, hp);
3727 else
3728 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003729 if (count != idx) // move entries after the deleted one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003730 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1],
3731 (size_t)(count - idx) * sizeof(PTR_EN));
3732 mf_put(mfp, hp, TRUE, FALSE);
3733
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003734 buf->b_ml.ml_stack_top = stack_idx; // truncate stack
3735 // fix line count for rest of blocks in the stack
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003736 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003737 {
3738 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
3739 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003740 buf->b_ml.ml_locked_lineadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003741 }
3742 ++(buf->b_ml.ml_stack_top);
3743
3744 break;
3745 }
3746 }
3747 CHECK(stack_idx < 0, _("deleted block 1?"));
3748 }
3749 else
3750 {
3751 /*
3752 * delete the text by moving the next lines forwards
3753 */
3754 text_start = dp->db_txt_start;
3755 mch_memmove((char *)dp + text_start + line_size,
3756 (char *)dp + text_start, (size_t)(line_start - text_start));
3757
3758 /*
3759 * delete the index by moving the next indexes backwards
3760 * Adjust the indexes for the text movement.
3761 */
3762 for (i = idx; i < count - 1; ++i)
3763 dp->db_index[i] = dp->db_index[i + 1] + line_size;
3764
3765 dp->db_free += line_size + INDEX_SIZE;
3766 dp->db_txt_start += line_size;
3767 --(dp->db_line_count);
3768
3769 /*
3770 * mark the block dirty and make sure it is in the file (for recovery)
3771 */
3772 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3773 }
3774
3775#ifdef FEAT_BYTEOFF
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003776 ml_updatechunk(buf, lnum, line_size
3777# ifdef FEAT_PROP_POPUP
3778 - textprop_save_len
3779# endif
3780 , ML_CHNK_DELLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003781#endif
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003782 ret = OK;
3783
3784theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003785#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003786 if (textprop_save != NULL)
3787 {
3788 // Adjust text properties in the line above and below.
3789 if (lnum > 1)
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003790 adjust_text_props_for_delete(buf, lnum - 1, textprop_save,
3791 textprop_save_len, TRUE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003792 if (lnum <= buf->b_ml.ml_line_count)
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003793 adjust_text_props_for_delete(buf, lnum, textprop_save,
3794 textprop_save_len, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003795 }
3796 vim_free(textprop_save);
3797#endif
3798 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003799}
3800
3801/*
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003802 * Delete line "lnum" in the current buffer.
3803 * When "message" is TRUE may give a "No lines in buffer" message.
3804 *
3805 * Check: The caller of this function should probably also call
3806 * deleted_lines() after this.
3807 *
3808 * return FAIL for failure, OK otherwise
3809 */
3810 int
Bram Moolenaarca70c072020-05-30 20:30:46 +02003811ml_delete(linenr_T lnum)
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003812{
Bram Moolenaarca70c072020-05-30 20:30:46 +02003813 return ml_delete_flags(lnum, 0);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003814}
3815
3816/*
3817 * Like ml_delete() but using flags (see ml_delete_int()).
3818 */
3819 int
3820ml_delete_flags(linenr_T lnum, int flags)
3821{
3822 ml_flush_line(curbuf);
3823 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
3824 return FAIL;
3825
3826#ifdef FEAT_EVAL
3827 // When inserting above recorded changes: flush the changes before changing
3828 // the text.
3829 may_invoke_listeners(curbuf, lnum, lnum + 1, -1);
3830#endif
3831
3832 return ml_delete_int(curbuf, lnum, flags);
3833}
3834
3835/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003836 * set the DB_MARKED flag for line 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003837 */
3838 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003839ml_setmarked(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003840{
3841 bhdr_T *hp;
3842 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003843 // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003844 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count
3845 || curbuf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003846 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003847
3848 if (lowest_marked == 0 || lowest_marked > lnum)
3849 lowest_marked = lnum;
3850
3851 /*
3852 * find the data block containing the line
3853 * This also fills the stack with the blocks from the root to the data block
3854 * This also releases any locked block.
3855 */
3856 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003857 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003858
3859 dp = (DATA_BL *)(hp->bh_data);
3860 dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED;
3861 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3862}
3863
3864/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003865 * find the first line with its DB_MARKED flag set
Bram Moolenaar071d4272004-06-13 20:20:40 +00003866 */
3867 linenr_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003868ml_firstmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003869{
3870 bhdr_T *hp;
3871 DATA_BL *dp;
3872 linenr_T lnum;
3873 int i;
3874
3875 if (curbuf->b_ml.ml_mfp == NULL)
3876 return (linenr_T) 0;
3877
3878 /*
3879 * The search starts with lowest_marked line. This is the last line where
3880 * a mark was found, adjusted by inserting/deleting lines.
3881 */
3882 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3883 {
3884 /*
3885 * Find the data block containing the line.
3886 * This also fills the stack with the blocks from the root to the data
3887 * block This also releases any locked block.
3888 */
3889 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003890 return (linenr_T)0; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003891
3892 dp = (DATA_BL *)(hp->bh_data);
3893
3894 for (i = lnum - curbuf->b_ml.ml_locked_low;
3895 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3896 if ((dp->db_index[i]) & DB_MARKED)
3897 {
3898 (dp->db_index[i]) &= DB_INDEX_MASK;
3899 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3900 lowest_marked = lnum + 1;
3901 return lnum;
3902 }
3903 }
3904
3905 return (linenr_T) 0;
3906}
3907
Bram Moolenaar071d4272004-06-13 20:20:40 +00003908/*
3909 * clear all DB_MARKED flags
3910 */
3911 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003912ml_clearmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003913{
3914 bhdr_T *hp;
3915 DATA_BL *dp;
3916 linenr_T lnum;
3917 int i;
3918
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003919 if (curbuf->b_ml.ml_mfp == NULL) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003920 return;
3921
3922 /*
3923 * The search starts with line lowest_marked.
3924 */
3925 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3926 {
3927 /*
3928 * Find the data block containing the line.
3929 * This also fills the stack with the blocks from the root to the data
3930 * block and releases any locked block.
3931 */
3932 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003933 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003934
3935 dp = (DATA_BL *)(hp->bh_data);
3936
3937 for (i = lnum - curbuf->b_ml.ml_locked_low;
3938 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3939 if ((dp->db_index[i]) & DB_MARKED)
3940 {
3941 (dp->db_index[i]) &= DB_INDEX_MASK;
3942 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3943 }
3944 }
3945
3946 lowest_marked = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003947}
3948
3949/*
3950 * flush ml_line if necessary
3951 */
3952 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003953ml_flush_line(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003954{
3955 bhdr_T *hp;
3956 DATA_BL *dp;
3957 linenr_T lnum;
3958 char_u *new_line;
3959 char_u *old_line;
3960 colnr_T new_len;
3961 int old_len;
3962 int extra;
3963 int idx;
3964 int start;
3965 int count;
3966 int i;
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003967 static int entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003968
3969 if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003970 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971
3972 if (buf->b_ml.ml_flags & ML_LINE_DIRTY)
3973 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003974 // This code doesn't work recursively, but Netbeans may call back here
3975 // when obtaining the cursor position.
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003976 if (entered)
3977 return;
3978 entered = TRUE;
3979
Bram Moolenaar071d4272004-06-13 20:20:40 +00003980 lnum = buf->b_ml.ml_line_lnum;
3981 new_line = buf->b_ml.ml_line_ptr;
3982
3983 hp = ml_find_line(buf, lnum, ML_FIND);
3984 if (hp == NULL)
Bram Moolenaareaaac012022-01-02 17:00:40 +00003985 siemsg(_(e_cannot_find_line_nr), lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 else
3987 {
3988 dp = (DATA_BL *)(hp->bh_data);
3989 idx = lnum - buf->b_ml.ml_locked_low;
3990 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3991 old_line = (char_u *)dp + start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003992 if (idx == 0) // line is last in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003993 old_len = dp->db_txt_end - start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003994 else // text of previous line follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00003995 old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003996 new_len = buf->b_ml.ml_line_len;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003997 extra = new_len - old_len; // negative if lines gets smaller
Bram Moolenaar071d4272004-06-13 20:20:40 +00003998
3999 /*
4000 * if new line fits in data block, replace directly
4001 */
4002 if ((int)dp->db_free >= extra)
4003 {
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004004#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar14c75302021-08-15 14:28:40 +02004005 int old_prop_len = 0;
4006#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004007 // if the length changes and there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1;
4009 if (extra != 0 && idx < count - 1)
4010 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004011 // move text of following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004012 mch_memmove((char *)dp + dp->db_txt_start - extra,
4013 (char *)dp + dp->db_txt_start,
4014 (size_t)(start - dp->db_txt_start));
4015
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004016 // adjust pointers of this and following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004017 for (i = idx + 1; i < count; ++i)
4018 dp->db_index[i] -= extra;
4019 }
4020 dp->db_index[idx] -= extra;
4021
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004022 // adjust free space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004023 dp->db_free -= extra;
4024 dp->db_txt_start -= extra;
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004025#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar14c75302021-08-15 14:28:40 +02004026 if (buf->b_has_textprop)
Bram Moolenaar434df7a2021-08-16 21:15:32 +02004027 old_prop_len = old_len - (int)STRLEN(new_line) - 1;
Bram Moolenaar14c75302021-08-15 14:28:40 +02004028#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004029
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004030 // copy new line into the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004031 mch_memmove(old_line - extra, new_line, (size_t)new_len);
4032 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004033#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004034 // The else case is already covered by the insert and delete
Bram Moolenaar14c75302021-08-15 14:28:40 +02004035 if (buf->b_has_textprop)
4036 {
4037 // Do not count the size of any text properties.
4038 extra += old_prop_len;
Bram Moolenaar434df7a2021-08-16 21:15:32 +02004039 extra -= new_len - (int)STRLEN(new_line) - 1;
Bram Moolenaar14c75302021-08-15 14:28:40 +02004040 }
4041 if (extra != 0)
4042 ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004043#endif
4044 }
4045 else
4046 {
4047 /*
4048 * Cannot do it in one data block: Delete and append.
4049 * Append first, because ml_delete_int() cannot delete the
4050 * last line in a buffer, which causes trouble for a buffer
4051 * that has only one line.
4052 * Don't forget to copy the mark!
4053 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004054 // How about handling errors???
Bram Moolenaara9d4b842020-05-30 14:46:52 +02004055 (void)ml_append_int(buf, lnum, new_line, new_len,
Bram Moolenaar840f91f2021-05-26 22:32:10 +02004056 ((dp->db_index[idx] & DB_MARKED) ? ML_APPEND_MARK : 0)
4057#ifdef FEAT_PROP_POPUP
4058 | ML_APPEND_NOPROP
4059#endif
4060 );
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02004061 (void)ml_delete_int(buf, lnum, ML_DEL_NOPROP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004062 }
4063 }
4064 vim_free(new_line);
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004065
4066 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004067 }
4068
4069 buf->b_ml.ml_line_lnum = 0;
4070}
4071
4072/*
4073 * create a new, empty, data block
4074 */
4075 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004076ml_new_data(memfile_T *mfp, int negative, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004077{
4078 bhdr_T *hp;
4079 DATA_BL *dp;
4080
4081 if ((hp = mf_new(mfp, negative, page_count)) == NULL)
4082 return NULL;
4083
4084 dp = (DATA_BL *)(hp->bh_data);
4085 dp->db_id = DATA_ID;
4086 dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size;
4087 dp->db_free = dp->db_txt_start - HEADER_SIZE;
4088 dp->db_line_count = 0;
4089
4090 return hp;
4091}
4092
4093/*
4094 * create a new, empty, pointer block
4095 */
4096 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004097ml_new_ptr(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004098{
4099 bhdr_T *hp;
4100 PTR_BL *pp;
4101
4102 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
4103 return NULL;
4104
4105 pp = (PTR_BL *)(hp->bh_data);
4106 pp->pb_id = PTR_ID;
4107 pp->pb_count = 0;
Bram Moolenaar20a825a2010-05-31 21:27:30 +02004108 pp->pb_count_max = (short_u)((mfp->mf_page_size - sizeof(PTR_BL))
4109 / sizeof(PTR_EN) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004110
4111 return hp;
4112}
4113
4114/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01004115 * Lookup line 'lnum' in a memline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004116 *
4117 * action: if ML_DELETE or ML_INSERT the line count is updated while searching
4118 * if ML_FLUSH only flush a locked block
4119 * if ML_FIND just find the line
4120 *
4121 * If the block was found it is locked and put in ml_locked.
4122 * The stack is updated to lead to the locked block. The ip_high field in
4123 * the stack is updated to reflect the last line in the block AFTER the
4124 * insert or delete, also if the pointer block has not been updated yet. But
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004125 * if ml_locked != NULL ml_locked_lineadd must be added to ip_high.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004126 *
4127 * return: NULL for failure, pointer to block header otherwise
4128 */
4129 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004130ml_find_line(buf_T *buf, linenr_T lnum, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004131{
4132 DATA_BL *dp;
4133 PTR_BL *pp;
4134 infoptr_T *ip;
4135 bhdr_T *hp;
4136 memfile_T *mfp;
4137 linenr_T t;
4138 blocknr_T bnum, bnum2;
4139 int dirty;
4140 linenr_T low, high;
4141 int top;
4142 int page_count;
4143 int idx;
4144
4145 mfp = buf->b_ml.ml_mfp;
4146
4147 /*
4148 * If there is a locked block check if the wanted line is in it.
4149 * If not, flush and release the locked block.
4150 * Don't do this for ML_INSERT_SAME, because the stack need to be updated.
4151 * Don't do this for ML_FLUSH, because we want to flush the locked block.
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004152 * Don't do this when 'swapfile' is reset, we want to load all the blocks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 */
4154 if (buf->b_ml.ml_locked)
4155 {
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004156 if (ML_SIMPLE(action)
4157 && buf->b_ml.ml_locked_low <= lnum
4158 && buf->b_ml.ml_locked_high >= lnum
4159 && !mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004160 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004161 // remember to update pointer blocks and stack later
Bram Moolenaar071d4272004-06-13 20:20:40 +00004162 if (action == ML_INSERT)
4163 {
4164 ++(buf->b_ml.ml_locked_lineadd);
4165 ++(buf->b_ml.ml_locked_high);
4166 }
4167 else if (action == ML_DELETE)
4168 {
4169 --(buf->b_ml.ml_locked_lineadd);
4170 --(buf->b_ml.ml_locked_high);
4171 }
4172 return (buf->b_ml.ml_locked);
4173 }
4174
4175 mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY,
4176 buf->b_ml.ml_flags & ML_LOCKED_POS);
4177 buf->b_ml.ml_locked = NULL;
4178
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004179 /*
4180 * If lines have been added or deleted in the locked block, need to
4181 * update the line count in pointer blocks.
4182 */
4183 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004184 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
4185 }
4186
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004187 if (action == ML_FLUSH) // nothing else to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004188 return NULL;
4189
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004190 bnum = 1; // start at the root of the tree
Bram Moolenaar071d4272004-06-13 20:20:40 +00004191 page_count = 1;
4192 low = 1;
4193 high = buf->b_ml.ml_line_count;
4194
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004195 if (action == ML_FIND) // first try stack entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00004196 {
4197 for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top)
4198 {
4199 ip = &(buf->b_ml.ml_stack[top]);
4200 if (ip->ip_low <= lnum && ip->ip_high >= lnum)
4201 {
4202 bnum = ip->ip_bnum;
4203 low = ip->ip_low;
4204 high = ip->ip_high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004205 buf->b_ml.ml_stack_top = top; // truncate stack at prev entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00004206 break;
4207 }
4208 }
4209 if (top < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004210 buf->b_ml.ml_stack_top = 0; // not found, start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004211 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004212 else // ML_DELETE or ML_INSERT
4213 buf->b_ml.ml_stack_top = 0; // start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004214
4215/*
4216 * search downwards in the tree until a data block is found
4217 */
4218 for (;;)
4219 {
4220 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
4221 goto error_noblock;
4222
4223 /*
4224 * update high for insert/delete
4225 */
4226 if (action == ML_INSERT)
4227 ++high;
4228 else if (action == ML_DELETE)
4229 --high;
4230
4231 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004232 if (dp->db_id == DATA_ID) // data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004233 {
4234 buf->b_ml.ml_locked = hp;
4235 buf->b_ml.ml_locked_low = low;
4236 buf->b_ml.ml_locked_high = high;
4237 buf->b_ml.ml_locked_lineadd = 0;
4238 buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS);
4239 return hp;
4240 }
4241
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004242 pp = (PTR_BL *)(dp); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004243 if (pp->pb_id != PTR_ID)
4244 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00004245 iemsg(_(e_pointer_block_id_wrong));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004246 goto error_block;
4247 }
4248
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004249 if ((top = ml_add_stack(buf)) < 0) // add new entry to stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00004250 goto error_block;
4251 ip = &(buf->b_ml.ml_stack[top]);
4252 ip->ip_bnum = bnum;
4253 ip->ip_low = low;
4254 ip->ip_high = high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004255 ip->ip_index = -1; // index not known yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004256
4257 dirty = FALSE;
4258 for (idx = 0; idx < (int)pp->pb_count; ++idx)
4259 {
4260 t = pp->pb_pointer[idx].pe_line_count;
4261 CHECK(t == 0, _("pe_line_count is zero"));
4262 if ((low += t) > lnum)
4263 {
4264 ip->ip_index = idx;
4265 bnum = pp->pb_pointer[idx].pe_bnum;
4266 page_count = pp->pb_pointer[idx].pe_page_count;
4267 high = low - 1;
4268 low -= t;
4269
4270 /*
4271 * a negative block number may have been changed
4272 */
4273 if (bnum < 0)
4274 {
4275 bnum2 = mf_trans_del(mfp, bnum);
4276 if (bnum != bnum2)
4277 {
4278 bnum = bnum2;
4279 pp->pb_pointer[idx].pe_bnum = bnum;
4280 dirty = TRUE;
4281 }
4282 }
4283
4284 break;
4285 }
4286 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004287 if (idx >= (int)pp->pb_count) // past the end: something wrong!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004288 {
4289 if (lnum > buf->b_ml.ml_line_count)
Bram Moolenaareaaac012022-01-02 17:00:40 +00004290 siemsg(_(e_line_number_out_of_range_nr_past_the_end),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004291 lnum - buf->b_ml.ml_line_count);
4292
4293 else
Bram Moolenaareaaac012022-01-02 17:00:40 +00004294 siemsg(_(e_line_count_wrong_in_block_nr), bnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004295 goto error_block;
4296 }
4297 if (action == ML_DELETE)
4298 {
4299 pp->pb_pointer[idx].pe_line_count--;
4300 dirty = TRUE;
4301 }
4302 else if (action == ML_INSERT)
4303 {
4304 pp->pb_pointer[idx].pe_line_count++;
4305 dirty = TRUE;
4306 }
4307 mf_put(mfp, hp, dirty, FALSE);
4308 }
4309
4310error_block:
4311 mf_put(mfp, hp, FALSE, FALSE);
4312error_noblock:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004313 /*
4314 * If action is ML_DELETE or ML_INSERT we have to correct the tree for
4315 * the incremented/decremented line counts, because there won't be a line
4316 * inserted/deleted after all.
4317 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004318 if (action == ML_DELETE)
4319 ml_lineadd(buf, 1);
4320 else if (action == ML_INSERT)
4321 ml_lineadd(buf, -1);
4322 buf->b_ml.ml_stack_top = 0;
4323 return NULL;
4324}
4325
4326/*
4327 * add an entry to the info pointer stack
4328 *
4329 * return -1 for failure, number of the new entry otherwise
4330 */
4331 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004332ml_add_stack(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004333{
4334 int top;
4335 infoptr_T *newstack;
4336
4337 top = buf->b_ml.ml_stack_top;
4338
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004339 // may have to increase the stack size
Bram Moolenaar071d4272004-06-13 20:20:40 +00004340 if (top == buf->b_ml.ml_stack_size)
4341 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004342 CHECK(top > 0, _("Stack size increases")); // more than 5 levels???
Bram Moolenaar071d4272004-06-13 20:20:40 +00004343
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004344 newstack = ALLOC_MULT(infoptr_T, buf->b_ml.ml_stack_size + STACK_INCR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004345 if (newstack == NULL)
4346 return -1;
Bram Moolenaarfbd302f2015-08-08 18:23:46 +02004347 if (top > 0)
4348 mch_memmove(newstack, buf->b_ml.ml_stack,
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004349 (size_t)top * sizeof(infoptr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004350 vim_free(buf->b_ml.ml_stack);
4351 buf->b_ml.ml_stack = newstack;
4352 buf->b_ml.ml_stack_size += STACK_INCR;
4353 }
4354
4355 buf->b_ml.ml_stack_top++;
4356 return top;
4357}
4358
4359/*
4360 * Update the pointer blocks on the stack for inserted/deleted lines.
4361 * The stack itself is also updated.
4362 *
4363 * When a insert/delete line action fails, the line is not inserted/deleted,
4364 * but the pointer blocks have already been updated. That is fixed here by
4365 * walking through the stack.
4366 *
4367 * Count is the number of lines added, negative if lines have been deleted.
4368 */
4369 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004370ml_lineadd(buf_T *buf, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004371{
4372 int idx;
4373 infoptr_T *ip;
4374 PTR_BL *pp;
4375 memfile_T *mfp = buf->b_ml.ml_mfp;
4376 bhdr_T *hp;
4377
4378 for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx)
4379 {
4380 ip = &(buf->b_ml.ml_stack[idx]);
4381 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
4382 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004383 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004384 if (pp->pb_id != PTR_ID)
4385 {
4386 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaareaaac012022-01-02 17:00:40 +00004387 iemsg(_(e_pointer_block_id_wrong_two));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004388 break;
4389 }
4390 pp->pb_pointer[ip->ip_index].pe_line_count += count;
4391 ip->ip_high += count;
4392 mf_put(mfp, hp, TRUE, FALSE);
4393 }
4394}
4395
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004396#if defined(HAVE_READLINK) || defined(PROTO)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004397/*
4398 * Resolve a symlink in the last component of a file name.
4399 * Note that f_resolve() does it for every part of the path, we don't do that
4400 * here.
4401 * If it worked returns OK and the resolved link in "buf[MAXPATHL]".
4402 * Otherwise returns FAIL.
4403 */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004404 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004405resolve_symlink(char_u *fname, char_u *buf)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004406{
4407 char_u tmp[MAXPATHL];
4408 int ret;
4409 int depth = 0;
4410
4411 if (fname == NULL)
4412 return FAIL;
4413
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004414 // Put the result so far in tmp[], starting with the original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004415 vim_strncpy(tmp, fname, MAXPATHL - 1);
4416
4417 for (;;)
4418 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004419 // Limit symlink depth to 100, catch recursive loops.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004420 if (++depth == 100)
4421 {
Bram Moolenaar677658a2022-01-05 16:09:06 +00004422 semsg(_(e_symlink_loop_for_str), fname);
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004423 return FAIL;
4424 }
4425
4426 ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1);
4427 if (ret <= 0)
4428 {
Bram Moolenaarcc984262005-12-23 22:19:46 +00004429 if (errno == EINVAL || errno == ENOENT)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004430 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004431 // Found non-symlink or not existing file, stop here.
4432 // When at the first level use the unmodified name, skip the
4433 // call to vim_FullName().
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004434 if (depth == 1)
4435 return FAIL;
4436
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004437 // Use the resolved name in tmp[].
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004438 break;
4439 }
4440
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004441 // There must be some error reading links, use original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004442 return FAIL;
4443 }
4444 buf[ret] = NUL;
4445
4446 /*
4447 * Check whether the symlink is relative or absolute.
4448 * If it's relative, build a new path based on the directory
4449 * portion of the filename (if any) and the path the symlink
4450 * points to.
4451 */
4452 if (mch_isFullName(buf))
4453 STRCPY(tmp, buf);
4454 else
4455 {
4456 char_u *tail;
4457
4458 tail = gettail(tmp);
4459 if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL)
4460 return FAIL;
4461 STRCPY(tail, buf);
4462 }
4463 }
4464
4465 /*
4466 * Try to resolve the full name of the file so that the swapfile name will
4467 * be consistent even when opening a relative symlink from different
4468 * working directories.
4469 */
4470 return vim_FullName(tmp, buf, MAXPATHL, TRUE);
4471}
4472#endif
4473
Bram Moolenaar071d4272004-06-13 20:20:40 +00004474/*
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004475 * Make swap file name out of the file name and a directory name.
4476 * Returns pointer to allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004477 */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004478 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004479makeswapname(
4480 char_u *fname,
4481 char_u *ffname UNUSED,
4482 buf_T *buf,
4483 char_u *dir_name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004484{
4485 char_u *r, *s;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02004486 char_u *fname_res = fname;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004487#ifdef HAVE_READLINK
4488 char_u fname_buf[MAXPATHL];
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004489
4490 // Expand symlink in the file name, so that we put the swap file with the
4491 // actual file instead of with the symlink.
4492 if (resolve_symlink(fname, fname_buf) == OK)
4493 fname_res = fname_buf;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004494#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495
Bram Moolenaar4f974752019-02-17 17:44:42 +01004496#if defined(UNIX) || defined(MSWIN) // Need _very_ long file names
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01004497 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01004498
4499 s = dir_name + len;
4500 if (after_pathsep(dir_name, s) && len > 1 && s[-1] == s[-2])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004501 { // Ends with '//', Use Full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004502 r = NULL;
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004503 if ((s = make_percent_swname(dir_name, fname_res)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 {
4505 r = modname(s, (char_u *)".swp", FALSE);
4506 vim_free(s);
4507 }
4508 return r;
4509 }
4510#endif
4511
4512 r = buf_modname(
Bram Moolenaar071d4272004-06-13 20:20:40 +00004513 (buf->b_p_sn || buf->b_shortname),
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004514 fname_res,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 (char_u *)
Bram Moolenaare60acc12011-05-10 16:41:25 +02004516#if defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004517 "_swp",
4518#else
4519 ".swp",
4520#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004521 // Prepend a '.' to the swap file name for the current directory.
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004522 dir_name[0] == '.' && dir_name[1] == NUL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004523 if (r == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004524 return NULL;
4525
4526 s = get_file_in_dir(r, dir_name);
4527 vim_free(r);
4528 return s;
4529}
4530
4531/*
4532 * Get file name to use for swap file or backup file.
4533 * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir'
4534 * option "dname".
4535 * - If "dname" is ".", return "fname" (swap file in dir of file).
4536 * - If "dname" starts with "./", insert "dname" in "fname" (swap file
4537 * relative to dir of file).
4538 * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific
4539 * dir).
4540 *
4541 * The return value is an allocated string and can be NULL.
4542 */
4543 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004544get_file_in_dir(
4545 char_u *fname,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004546 char_u *dname) // don't use "dirname", it is a global for Alpha
Bram Moolenaar071d4272004-06-13 20:20:40 +00004547{
4548 char_u *t;
4549 char_u *tail;
4550 char_u *retval;
4551 int save_char;
4552
4553 tail = gettail(fname);
4554
4555 if (dname[0] == '.' && dname[1] == NUL)
4556 retval = vim_strsave(fname);
4557 else if (dname[0] == '.' && vim_ispathsep(dname[1]))
4558 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004559 if (tail == fname) // no path before file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004560 retval = concat_fnames(dname + 2, tail, TRUE);
4561 else
4562 {
4563 save_char = *tail;
4564 *tail = NUL;
4565 t = concat_fnames(fname, dname + 2, TRUE);
4566 *tail = save_char;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004567 if (t == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004568 retval = NULL;
4569 else
4570 {
4571 retval = concat_fnames(t, tail, TRUE);
4572 vim_free(t);
4573 }
4574 }
4575 }
4576 else
4577 retval = concat_fnames(dname, tail, TRUE);
4578
Bram Moolenaar4f974752019-02-17 17:44:42 +01004579#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004580 if (retval != NULL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004581 for (t = gettail(retval); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004582 if (*t == ':')
4583 *t = '%';
4584#endif
4585
Bram Moolenaar071d4272004-06-13 20:20:40 +00004586 return retval;
4587}
4588
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004589/*
4590 * Print the ATTENTION message: info about an existing swap file.
4591 */
4592 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004593attention_message(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004594 buf_T *buf, // buffer being edited
4595 char_u *fname) // swap file name
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004596{
Bram Moolenaar8767f522016-07-01 17:17:39 +02004597 stat_T st;
Bram Moolenaar63d25552019-05-10 21:28:38 +02004598 time_t swap_mtime;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004599
4600 ++no_wait_return;
Bram Moolenaareaaac012022-01-02 17:00:40 +00004601 (void)emsg(_(e_attention));
Bram Moolenaar32526b32019-01-19 17:43:09 +01004602 msg_puts(_("\nFound a swap file by the name \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004603 msg_home_replace(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004604 msg_puts("\"\n");
Bram Moolenaar63d25552019-05-10 21:28:38 +02004605 swap_mtime = swapfile_info(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004606 msg_puts(_("While opening file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004607 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004608 msg_puts("\"\n");
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004609 if (mch_stat((char *)buf->b_fname, &st) == -1)
4610 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004611 msg_puts(_(" CANNOT BE FOUND"));
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004612 }
4613 else
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004614 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004615 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02004616 msg_puts(get_ctime(st.st_mtime, TRUE));
4617 if (swap_mtime != 0 && st.st_mtime > swap_mtime)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004618 msg_puts(_(" NEWER than swap file!\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004619 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004620 // Some of these messages are long to allow translation to
4621 // other languages.
Bram Moolenaar32526b32019-01-19 17:43:09 +01004622 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"));
4623 msg_puts(_("(2) An edit session for this file crashed.\n"));
4624 msg_puts(_(" If this is the case, use \":recover\" or \"vim -r "));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004625 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004626 msg_puts(_("\"\n to recover the changes (see \":help recovery\").\n"));
4627 msg_puts(_(" If you did this already, delete the swap file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004628 msg_outtrans(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004629 msg_puts(_("\"\n to avoid this message.\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004630 cmdline_row = msg_row;
4631 --no_wait_return;
4632}
4633
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004634#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004635/*
4636 * Trigger the SwapExists autocommands.
4637 * Returns a value for equivalent to do_dialog() (see below):
4638 * 0: still need to ask for a choice
4639 * 1: open read-only
4640 * 2: edit anyway
4641 * 3: recover
4642 * 4: delete it
4643 * 5: quit
4644 * 6: abort
4645 */
4646 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004647do_swapexists(buf_T *buf, char_u *fname)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004648{
4649 set_vim_var_string(VV_SWAPNAME, fname, -1);
4650 set_vim_var_string(VV_SWAPCHOICE, NULL, -1);
4651
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004652 // Trigger SwapExists autocommands with <afile> set to the file being
4653 // edited. Disallow changing directory here.
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004654 ++allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004655 apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL);
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004656 --allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004657
4658 set_vim_var_string(VV_SWAPNAME, NULL, -1);
4659
4660 switch (*get_vim_var_str(VV_SWAPCHOICE))
4661 {
4662 case 'o': return 1;
4663 case 'e': return 2;
4664 case 'r': return 3;
4665 case 'd': return 4;
4666 case 'q': return 5;
4667 case 'a': return 6;
4668 }
4669
4670 return 0;
4671}
4672#endif
4673
Bram Moolenaar071d4272004-06-13 20:20:40 +00004674/*
4675 * Find out what name to use for the swap file for buffer 'buf'.
4676 *
4677 * Several names are tried to find one that does not exist
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004678 * Returns the name in allocated memory or NULL.
Bram Moolenaarf541c362011-10-26 11:44:18 +02004679 * When out of memory "dirp" is set to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004680 *
4681 * Note: If BASENAMELEN is not correct, you will get error messages for
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004682 * not being able to open the swap or undo file
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004683 * Note: May trigger SwapExists autocmd, pointers may change!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 */
4685 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004686findswapname(
4687 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004688 char_u **dirp, // pointer to list of directories
4689 char_u *old_fname) // don't give warning for this file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690{
4691 char_u *fname;
4692 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004693 char_u *dir_name;
4694#ifdef AMIGA
4695 BPTR fh;
4696#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004697 int r;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004698 char_u *buf_fname = buf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004699
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004700#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004701# define CREATE_DUMMY_FILE
4702 FILE *dummyfd = NULL;
4703
Bram Moolenaar4f974752019-02-17 17:44:42 +01004704# ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004705 if (buf_fname != NULL && !mch_isFullName(buf_fname)
4706 && vim_strchr(gettail(buf_fname), ':'))
4707 {
4708 char_u *t;
4709
4710 buf_fname = vim_strsave(buf_fname);
4711 if (buf_fname == NULL)
4712 buf_fname = buf->b_fname;
4713 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004714 for (t = gettail(buf_fname); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004715 if (*t == ':')
4716 *t = '%';
4717 }
4718# endif
4719
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004720 /*
4721 * If we start editing a new file, e.g. "test.doc", which resides on an
4722 * MSDOS compatible filesystem, it is possible that the file
4723 * "test.doc.swp" which we create will be exactly the same file. To avoid
4724 * this problem we temporarily create "test.doc". Don't do this when the
Dominique Pelleaf4a61a2021-12-27 17:21:41 +00004725 * check below for an 8.3 file name is used.
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004726 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004727 if (!(buf->b_p_sn || buf->b_shortname) && buf_fname != NULL
4728 && mch_getperm(buf_fname) < 0)
4729 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004730#endif
4731
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004732 /*
4733 * Isolate a directory name from *dirp and put it in dir_name.
4734 * First allocate some memory to put the directory name in.
4735 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004736 dir_name = alloc(STRLEN(*dirp) + 1);
Bram Moolenaarf541c362011-10-26 11:44:18 +02004737 if (dir_name == NULL)
4738 *dirp = NULL;
4739 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740 (void)copy_option_part(dirp, dir_name, 31000, ",");
4741
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004742 /*
4743 * we try different names until we find one that does not exist yet
4744 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004745 if (dir_name == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 fname = NULL;
4747 else
Bram Moolenaar69c35002013-11-04 02:54:12 +01004748 fname = makeswapname(buf_fname, buf->b_ffname, buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004749
4750 for (;;)
4751 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004752 if (fname == NULL) // must be out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004753 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004754 if ((n = (int)STRLEN(fname)) == 0) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00004755 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01004756 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004757 break;
4758 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004759#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004760/*
4761 * Some systems have a MS-DOS compatible filesystem that use 8.3 character
4762 * file names. If this is the first try and the swap file name does not fit in
4763 * 8.3, detect if this is the case, set shortname and try again.
4764 */
4765 if (fname[n - 2] == 'w' && fname[n - 1] == 'p'
4766 && !(buf->b_p_sn || buf->b_shortname))
4767 {
4768 char_u *tail;
4769 char_u *fname2;
Bram Moolenaar8767f522016-07-01 17:17:39 +02004770 stat_T s1, s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004771 int f1, f2;
4772 int created1 = FALSE, created2 = FALSE;
4773 int same = FALSE;
4774
4775 /*
4776 * Check if swapfile name does not fit in 8.3:
4777 * It either contains two dots, is longer than 8 chars, or starts
4778 * with a dot.
4779 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004780 tail = gettail(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004781 if ( vim_strchr(tail, '.') != NULL
4782 || STRLEN(tail) > (size_t)8
4783 || *gettail(fname) == '.')
4784 {
4785 fname2 = alloc(n + 2);
4786 if (fname2 != NULL)
4787 {
4788 STRCPY(fname2, fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004789 // if fname == "xx.xx.swp", fname2 = "xx.xx.swx"
4790 // if fname == ".xx.swp", fname2 = ".xx.swpx"
4791 // if fname == "123456789.swp", fname2 = "12345678x.swp"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004792 if (vim_strchr(tail, '.') != NULL)
4793 fname2[n - 1] = 'x';
4794 else if (*gettail(fname) == '.')
4795 {
4796 fname2[n] = 'x';
4797 fname2[n + 1] = NUL;
4798 }
4799 else
4800 fname2[n - 5] += 1;
4801 /*
4802 * may need to create the files to be able to use mch_stat()
4803 */
4804 f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4805 if (f1 < 0)
4806 {
4807 f1 = mch_open_rw((char *)fname,
4808 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004809 created1 = TRUE;
4810 }
4811 if (f1 >= 0)
4812 {
4813 f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0);
4814 if (f2 < 0)
4815 {
4816 f2 = mch_open_rw((char *)fname2,
4817 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
4818 created2 = TRUE;
4819 }
4820 if (f2 >= 0)
4821 {
4822 /*
4823 * Both files exist now. If mch_stat() returns the
4824 * same device and inode they are the same file.
4825 */
4826 if (mch_fstat(f1, &s1) != -1
4827 && mch_fstat(f2, &s2) != -1
4828 && s1.st_dev == s2.st_dev
4829 && s1.st_ino == s2.st_ino)
4830 same = TRUE;
4831 close(f2);
4832 if (created2)
4833 mch_remove(fname2);
4834 }
4835 close(f1);
4836 if (created1)
4837 mch_remove(fname);
4838 }
4839 vim_free(fname2);
4840 if (same)
4841 {
4842 buf->b_shortname = TRUE;
4843 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004844 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004845 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004846 continue; // try again with b_shortname set
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 }
4848 }
4849 }
4850 }
4851#endif
4852 /*
4853 * check if the swapfile already exists
4854 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004855 if (mch_getperm(fname) < 0) // it does not exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004856 {
4857#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02004858 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004859
4860 /*
4861 * Extra security check: When a swap file is a symbolic link, this
4862 * is most likely a symlink attack.
4863 */
4864 if (mch_lstat((char *)fname, &sb) < 0)
4865#else
4866# ifdef AMIGA
4867 fh = Open((UBYTE *)fname, (long)MODE_NEWFILE);
4868 /*
4869 * on the Amiga mch_getperm() will return -1 when the file exists
4870 * but is being used by another program. This happens if you edit
4871 * a file twice.
4872 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004873 if (fh != (BPTR)NULL) // can open file, OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00004874 {
4875 Close(fh);
4876 mch_remove(fname);
4877 break;
4878 }
4879 if (IoErr() != ERROR_OBJECT_IN_USE
4880 && IoErr() != ERROR_OBJECT_EXISTS)
4881# endif
4882#endif
4883 break;
4884 }
4885
4886 /*
4887 * A file name equal to old_fname is OK to use.
4888 */
4889 if (old_fname != NULL && fnamecmp(fname, old_fname) == 0)
4890 break;
4891
4892 /*
4893 * get here when file already exists
4894 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004895 if (fname[n - 2] == 'w' && fname[n - 1] == 'p') // first try
Bram Moolenaar071d4272004-06-13 20:20:40 +00004896 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 /*
4898 * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp
4899 * and file.doc are the same file. To guess if this problem is
4900 * present try if file.doc.swx exists. If it does, we set
4901 * buf->b_shortname and try file_doc.swp (dots replaced by
4902 * underscores for this file), and try again. If it doesn't we
4903 * assume that "file.doc.swp" already exists.
4904 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004905 if (!(buf->b_p_sn || buf->b_shortname)) // not tried yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004906 {
4907 fname[n - 1] = 'x';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004908 r = mch_getperm(fname); // try "file.swx"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004909 fname[n - 1] = 'p';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004910 if (r >= 0) // "file.swx" seems to exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004911 {
4912 buf->b_shortname = TRUE;
4913 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004914 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004915 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004916 continue; // try again with '.' replaced with '_'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004917 }
4918 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 /*
4920 * If we get here the ".swp" file really exists.
4921 * Give an error message, unless recovering, no file name, we are
4922 * viewing a help file or when the path of the file is different
4923 * (happens when all .swp files are in one directory).
4924 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004925 if (!recoverymode && buf_fname != NULL
Bram Moolenaar2debf1c2019-08-04 20:44:19 +02004926 && !buf->b_help
4927 && !(buf->b_flags & (BF_DUMMY | BF_NO_SEA)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004928 {
4929 int fd;
4930 struct block0 b0;
4931 int differ = FALSE;
4932
4933 /*
4934 * Try to read block 0 from the swap file to get the original
4935 * file name (and inode number).
4936 */
4937 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4938 if (fd >= 0)
4939 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004940 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004941 {
4942 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004943 * If the swapfile has the same directory as the
4944 * buffer don't compare the directory names, they can
4945 * have a different mountpoint.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004946 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004947 if (b0.b0_flags & B0_SAME_DIR)
4948 {
4949 if (fnamecmp(gettail(buf->b_ffname),
4950 gettail(b0.b0_fname)) != 0
4951 || !same_directory(fname, buf->b_ffname))
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004952 {
4953#ifdef CHECK_INODE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004954 // Symlinks may point to the same file even
4955 // when the name differs, need to check the
4956 // inode too.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004957 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
4958 if (fnamecmp_ino(buf->b_ffname, NameBuff,
4959 char_to_long(b0.b0_ino)))
4960#endif
4961 differ = TRUE;
4962 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004963 }
4964 else
4965 {
4966 /*
4967 * The name in the swap file may be
4968 * "~user/path/file". Expand it first.
4969 */
4970 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971#ifdef CHECK_INODE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004972 if (fnamecmp_ino(buf->b_ffname, NameBuff,
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004973 char_to_long(b0.b0_ino)))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004974 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004975#else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004976 if (fnamecmp(NameBuff, buf->b_ffname) != 0)
4977 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004978#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004979 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004980 }
4981 close(fd);
4982 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004983
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004984 // give the ATTENTION message when there is an old swap file
4985 // for the current file, and the buffer was not recovered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004986 if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED)
4987 && vim_strchr(p_shm, SHM_ATTENTION) == NULL)
4988 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004989 int choice = 0;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004990 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004991#ifdef CREATE_DUMMY_FILE
4992 int did_use_dummy = FALSE;
4993
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004994 // Avoid getting a warning for the file being created
4995 // outside of Vim, it was created at the start of this
4996 // function. Delete the file now, because Vim might exit
4997 // here if the window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004998 if (dummyfd != NULL)
4999 {
5000 fclose(dummyfd);
5001 dummyfd = NULL;
Bram Moolenaar69c35002013-11-04 02:54:12 +01005002 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005003 did_use_dummy = TRUE;
5004 }
5005#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005006
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005007#ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005008 process_still_running = FALSE;
5009#endif
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005010 // It's safe to delete the swap file if all these are true:
5011 // - the edited file exists
5012 // - the swap file has no changes and looks OK
5013 if (mch_stat((char *)buf->b_fname, &st) == 0
5014 && swapfile_unchanged(fname))
5015 {
5016 choice = 4;
5017 if (p_verbose > 0)
5018 verb_msg(_("Found a swap file that is not useful, deleting it"));
5019 }
5020
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005021#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005022 /*
5023 * If there is an SwapExists autocommand and we can handle
5024 * the response, trigger it. It may return 0 to ask the
5025 * user anyway.
5026 */
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005027 if (choice == 0
5028 && swap_exists_action != SEA_NONE
Bram Moolenaar69c35002013-11-04 02:54:12 +01005029 && has_autocmd(EVENT_SWAPEXISTS, buf_fname, buf))
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005030 choice = do_swapexists(buf, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005031
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005032 if (choice == 0)
5033#endif
5034 {
5035#ifdef FEAT_GUI
Bram Moolenaar798184c2018-10-07 20:48:39 +02005036 // If we are supposed to start the GUI but it wasn't
5037 // completely started yet, start it now. This makes
5038 // the messages displayed in the Vim window when
5039 // loading a session from the .gvimrc file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005040 if (gui.starting && !gui.in_use)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005041 gui_start(NULL);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005042#endif
Bram Moolenaar798184c2018-10-07 20:48:39 +02005043 // Show info about the existing swap file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005044 attention_message(buf, fname);
5045
Bram Moolenaar798184c2018-10-07 20:48:39 +02005046 // We don't want a 'q' typed at the more-prompt
5047 // interrupt loading a file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005048 got_int = FALSE;
Bram Moolenaar798184c2018-10-07 20:48:39 +02005049
5050 // If vimrc has "simalt ~x" we don't want it to
5051 // interfere with the prompt here.
Bram Moolenaar6a2633b2018-10-07 23:16:36 +02005052 flush_buffers(FLUSH_TYPEAHEAD);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005053 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054
5055#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005056 if (swap_exists_action != SEA_NONE && choice == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005057 {
5058 char_u *name;
5059
Bram Moolenaar964b3742019-05-24 18:54:09 +02005060 name = alloc(STRLEN(fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005061 + STRLEN(_("Swap file \""))
Bram Moolenaar964b3742019-05-24 18:54:09 +02005062 + STRLEN(_("\" already exists!")) + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005063 if (name != NULL)
5064 {
5065 STRCPY(name, _("Swap file \""));
5066 home_replace(NULL, fname, name + STRLEN(name),
5067 1000, TRUE);
5068 STRCAT(name, _("\" already exists!"));
5069 }
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005070 choice = do_dialog(VIM_WARNING,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005071 (char_u *)_("VIM - ATTENTION"),
5072 name == NULL
5073 ? (char_u *)_("Swap file already exists!")
5074 : name,
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005075# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005076 process_still_running
5077 ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") :
5078# endif
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005079 (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 +00005080
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005081# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005082 if (process_still_running && choice >= 4)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005083 choice++; // Skip missing "Delete it" button
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005084# endif
5085 vim_free(name);
5086
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005087 // pretend screen didn't scroll, need redraw anyway
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005088 msg_scrolled = 0;
5089 redraw_all_later(NOT_VALID);
5090 }
5091#endif
5092
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005093 if (choice > 0)
5094 {
5095 switch (choice)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005096 {
5097 case 1:
5098 buf->b_p_ro = TRUE;
5099 break;
5100 case 2:
5101 break;
5102 case 3:
5103 swap_exists_action = SEA_RECOVER;
5104 break;
5105 case 4:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005106 mch_remove(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107 break;
5108 case 5:
5109 swap_exists_action = SEA_QUIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005110 break;
5111 case 6:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005112 swap_exists_action = SEA_QUIT;
5113 got_int = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005114 break;
5115 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005116
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005117 // If the file was deleted this fname can be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 if (mch_getperm(fname) < 0)
5119 break;
5120 }
5121 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005123 msg_puts("\n");
Bram Moolenaar4770d092006-01-12 23:22:24 +00005124 if (msg_silent == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005125 // call wait_return() later
Bram Moolenaar4770d092006-01-12 23:22:24 +00005126 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005127 }
5128
5129#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005130 // Going to try another name, need the dummy file again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005131 if (did_use_dummy)
Bram Moolenaar69c35002013-11-04 02:54:12 +01005132 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005133#endif
5134 }
5135 }
5136 }
5137
5138 /*
5139 * Change the ".swp" extension to find another file that can be used.
5140 * First decrement the last char: ".swo", ".swn", etc.
5141 * If that still isn't enough decrement the last but one char: ".svz"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005142 * Can happen when editing many "No Name" buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005143 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005144 if (fname[n - 1] == 'a') // ".s?a"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005145 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005146 if (fname[n - 2] == 'a') // ".saa": tried enough, give up
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 {
Bram Moolenaareaaac012022-01-02 17:00:40 +00005148 emsg(_(e_too_many_swap_files_found));
Bram Moolenaard23a8232018-02-10 18:45:26 +01005149 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005150 break;
5151 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005152 --fname[n - 2]; // ".svz", ".suz", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005153 fname[n - 1] = 'z' + 1;
5154 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005155 --fname[n - 1]; // ".swo", ".swn", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005156 }
5157
5158 vim_free(dir_name);
5159#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005160 if (dummyfd != NULL) // file has been created temporarily
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 {
5162 fclose(dummyfd);
Bram Moolenaar69c35002013-11-04 02:54:12 +01005163 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005164 }
5165#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005166#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01005167 if (buf_fname != buf->b_fname)
5168 vim_free(buf_fname);
5169#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005170 return fname;
5171}
5172
5173 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005174b0_magic_wrong(ZERO_BL *b0p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005175{
5176 return (b0p->b0_magic_long != (long)B0_MAGIC_LONG
5177 || b0p->b0_magic_int != (int)B0_MAGIC_INT
5178 || b0p->b0_magic_short != (short)B0_MAGIC_SHORT
5179 || b0p->b0_magic_char != B0_MAGIC_CHAR);
5180}
5181
5182#ifdef CHECK_INODE
5183/*
5184 * Compare current file name with file name from swap file.
5185 * Try to use inode numbers when possible.
5186 * Return non-zero when files are different.
5187 *
5188 * When comparing file names a few things have to be taken into consideration:
5189 * - When working over a network the full path of a file depends on the host.
5190 * We check the inode number if possible. It is not 100% reliable though,
5191 * because the device number cannot be used over a network.
5192 * - When a file does not exist yet (editing a new file) there is no inode
5193 * number.
5194 * - The file name in a swap file may not be valid on the current host. The
5195 * "~user" form is used whenever possible to avoid this.
5196 *
5197 * This is getting complicated, let's make a table:
5198 *
5199 * ino_c ino_s fname_c fname_s differ =
5200 *
5201 * both files exist -> compare inode numbers:
5202 * != 0 != 0 X X ino_c != ino_s
5203 *
5204 * inode number(s) unknown, file names available -> compare file names
5205 * == 0 X OK OK fname_c != fname_s
5206 * X == 0 OK OK fname_c != fname_s
5207 *
5208 * current file doesn't exist, file for swap file exist, file name(s) not
5209 * available -> probably different
5210 * == 0 != 0 FAIL X TRUE
5211 * == 0 != 0 X FAIL TRUE
5212 *
5213 * current file exists, inode for swap unknown, file name(s) not
5214 * available -> probably different
5215 * != 0 == 0 FAIL X TRUE
5216 * != 0 == 0 X FAIL TRUE
5217 *
5218 * current file doesn't exist, inode for swap unknown, one file name not
5219 * available -> probably different
5220 * == 0 == 0 FAIL OK TRUE
5221 * == 0 == 0 OK FAIL TRUE
5222 *
5223 * current file doesn't exist, inode for swap unknown, both file names not
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005224 * available -> compare file names
5225 * == 0 == 0 FAIL FAIL fname_c != fname_s
Bram Moolenaar071d4272004-06-13 20:20:40 +00005226 *
5227 * Note that when the ino_t is 64 bits, only the last 32 will be used. This
5228 * can't be changed without making the block 0 incompatible with 32 bit
5229 * versions.
5230 */
5231
5232 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005233fnamecmp_ino(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005234 char_u *fname_c, // current file name
5235 char_u *fname_s, // file name from swap file
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005236 long ino_block0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005237{
Bram Moolenaar8767f522016-07-01 17:17:39 +02005238 stat_T st;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005239 ino_t ino_c = 0; // ino of current file
5240 ino_t ino_s; // ino of file from swap file
5241 char_u buf_c[MAXPATHL]; // full path of fname_c
5242 char_u buf_s[MAXPATHL]; // full path of fname_s
5243 int retval_c; // flag: buf_c valid
5244 int retval_s; // flag: buf_s valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00005245
5246 if (mch_stat((char *)fname_c, &st) == 0)
5247 ino_c = (ino_t)st.st_ino;
5248
5249 /*
5250 * First we try to get the inode from the file name, because the inode in
5251 * the swap file may be outdated. If that fails (e.g. this path is not
5252 * valid on this machine), use the inode from block 0.
5253 */
5254 if (mch_stat((char *)fname_s, &st) == 0)
5255 ino_s = (ino_t)st.st_ino;
5256 else
5257 ino_s = (ino_t)ino_block0;
5258
5259 if (ino_c && ino_s)
5260 return (ino_c != ino_s);
5261
5262 /*
5263 * One of the inode numbers is unknown, try a forced vim_FullName() and
5264 * compare the file names.
5265 */
5266 retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE);
5267 retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE);
5268 if (retval_c == OK && retval_s == OK)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005269 return STRCMP(buf_c, buf_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005270
5271 /*
5272 * Can't compare inodes or file names, guess that the files are different,
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005273 * unless both appear not to exist at all, then compare with the file name
5274 * in the swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005275 */
5276 if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005277 return STRCMP(fname_c, fname_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005278 return TRUE;
5279}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005280#endif // CHECK_INODE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005281
5282/*
5283 * Move a long integer into a four byte character array.
5284 * Used for machine independency in block zero.
5285 */
5286 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005287long_to_char(long n, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005288{
5289 s[0] = (char_u)(n & 0xff);
5290 n = (unsigned)n >> 8;
5291 s[1] = (char_u)(n & 0xff);
5292 n = (unsigned)n >> 8;
5293 s[2] = (char_u)(n & 0xff);
5294 n = (unsigned)n >> 8;
5295 s[3] = (char_u)(n & 0xff);
5296}
5297
5298 static long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005299char_to_long(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005300{
5301 long retval;
5302
5303 retval = s[3];
5304 retval <<= 8;
5305 retval |= s[2];
5306 retval <<= 8;
5307 retval |= s[1];
5308 retval <<= 8;
5309 retval |= s[0];
5310
5311 return retval;
5312}
5313
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005314/*
5315 * Set the flags in the first block of the swap file:
5316 * - file is modified or not: buf->b_changed
5317 * - 'fileformat'
5318 * - 'fileencoding'
5319 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005320 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005321ml_setflags(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005322{
5323 bhdr_T *hp;
5324 ZERO_BL *b0p;
5325
5326 if (!buf->b_ml.ml_mfp)
5327 return;
5328 for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
5329 {
5330 if (hp->bh_bnum == 0)
5331 {
5332 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005333 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
5334 b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK)
5335 | (get_fileformat(buf) + 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005336 add_b0_fenc(b0p, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005337 hp->bh_flags |= BH_DIRTY;
5338 mf_sync(buf->b_ml.ml_mfp, MFS_ZERO);
5339 break;
5340 }
5341 }
5342}
5343
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005344#if defined(FEAT_CRYPT) || defined(PROTO)
5345/*
5346 * If "data" points to a data block encrypt the text in it and return a copy
5347 * in allocated memory. Return NULL when out of memory.
5348 * Otherwise return "data".
5349 */
5350 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005351ml_encrypt_data(
5352 memfile_T *mfp,
5353 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005354 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005355 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005356{
5357 DATA_BL *dp = (DATA_BL *)data;
5358 char_u *head_end;
5359 char_u *text_start;
5360 char_u *new_data;
5361 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005362 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005363
5364 if (dp->db_id != DATA_ID)
5365 return data;
5366
Bram Moolenaarbc563362015-06-09 18:35:25 +02005367 state = ml_crypt_prepare(mfp, offset, FALSE);
5368 if (state == NULL)
5369 return data;
5370
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005371 new_data = alloc(size);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005372 if (new_data == NULL)
5373 return NULL;
5374 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5375 text_start = (char_u *)dp + dp->db_txt_start;
5376 text_len = size - dp->db_txt_start;
5377
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005378 // Copy the header and the text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005379 mch_memmove(new_data, dp, head_end - (char_u *)dp);
5380
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005381 // Encrypt the text.
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005382 crypt_encode(state, text_start, text_len, new_data + dp->db_txt_start,
5383 FALSE);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005384 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005385
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005386 // Clear the gap.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005387 if (head_end < text_start)
5388 vim_memset(new_data + (head_end - data), 0, text_start - head_end);
5389
5390 return new_data;
5391}
5392
5393/*
Bram Moolenaarbc563362015-06-09 18:35:25 +02005394 * Decrypt the text in "data" if it points to an encrypted data block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005395 */
5396 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005397ml_decrypt_data(
5398 memfile_T *mfp,
5399 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005400 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005401 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005402{
5403 DATA_BL *dp = (DATA_BL *)data;
5404 char_u *head_end;
5405 char_u *text_start;
5406 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005407 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005408
5409 if (dp->db_id == DATA_ID)
5410 {
5411 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5412 text_start = (char_u *)dp + dp->db_txt_start;
5413 text_len = dp->db_txt_end - dp->db_txt_start;
5414
5415 if (head_end > text_start || dp->db_txt_start > size
5416 || dp->db_txt_end > size)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005417 return; // data was messed up
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005418
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005419 state = ml_crypt_prepare(mfp, offset, TRUE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005420 if (state != NULL)
5421 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005422 // Decrypt the text in place.
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005423 crypt_decode_inplace(state, text_start, text_len, FALSE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005424 crypt_free_state(state);
5425 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005426 }
5427}
5428
5429/*
5430 * Prepare for encryption/decryption, using the key, seed and offset.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005431 * Return an allocated cryptstate_T *.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005432 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005433 static cryptstate_T *
Bram Moolenaar8767f522016-07-01 17:17:39 +02005434ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005435{
5436 buf_T *buf = mfp->mf_buffer;
5437 char_u salt[50];
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005438 int method_nr;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005439 char_u *key;
5440 char_u *seed;
5441
5442 if (reading && mfp->mf_old_key != NULL)
5443 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005444 // Reading back blocks with the previous key/method/seed.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005445 method_nr = mfp->mf_old_cm;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005446 key = mfp->mf_old_key;
5447 seed = mfp->mf_old_seed;
5448 }
5449 else
5450 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005451 method_nr = crypt_get_method_nr(buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005452 key = buf->b_p_key;
5453 seed = mfp->mf_seed;
5454 }
Bram Moolenaarbc563362015-06-09 18:35:25 +02005455 if (*key == NUL)
5456 return NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005457
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005458 if (method_nr == CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005459 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005460 // For PKzip: Append the offset to the key, so that we use a different
5461 // key for every block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005462 vim_snprintf((char *)salt, sizeof(salt), "%s%ld", key, (long)offset);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005463 return crypt_create(method_nr, salt, NULL, 0, NULL, 0);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005464 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005465
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005466 // Using blowfish or better: add salt and seed. We use the byte offset
5467 // of the block for the salt.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005468 vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
5469 return crypt_create(method_nr, key, salt, (int)STRLEN(salt),
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005470 seed, MF_SEED_LEN);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005471}
5472
5473#endif
5474
5475
Bram Moolenaar071d4272004-06-13 20:20:40 +00005476#if defined(FEAT_BYTEOFF) || defined(PROTO)
5477
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005478#define MLCS_MAXL 800 // max no of lines in chunk
5479#define MLCS_MINL 400 // should be half of MLCS_MAXL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005480
5481/*
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02005482 * Keep information for finding byte offset of a line, updtype may be one of:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005483 * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it
5484 * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called.
5485 * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it
5486 * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity.
5487 */
5488 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005489ml_updatechunk(
5490 buf_T *buf,
5491 linenr_T line,
5492 long len,
5493 int updtype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005494{
5495 static buf_T *ml_upd_lastbuf = NULL;
5496 static linenr_T ml_upd_lastline;
5497 static linenr_T ml_upd_lastcurline;
5498 static int ml_upd_lastcurix;
5499
5500 linenr_T curline = ml_upd_lastcurline;
5501 int curix = ml_upd_lastcurix;
5502 long size;
5503 chunksize_T *curchnk;
5504 int rest;
5505 bhdr_T *hp;
5506 DATA_BL *dp;
5507
5508 if (buf->b_ml.ml_usedchunks == -1 || len == 0)
5509 return;
5510 if (buf->b_ml.ml_chunksize == NULL)
5511 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005512 buf->b_ml.ml_chunksize = ALLOC_MULT(chunksize_T, 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005513 if (buf->b_ml.ml_chunksize == NULL)
5514 {
5515 buf->b_ml.ml_usedchunks = -1;
5516 return;
5517 }
5518 buf->b_ml.ml_numchunks = 100;
5519 buf->b_ml.ml_usedchunks = 1;
5520 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
5521 buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1;
5522 }
5523
5524 if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1)
5525 {
5526 /*
5527 * First line in empty buffer from ml_flush_line() -- reset
5528 */
5529 buf->b_ml.ml_usedchunks = 1;
5530 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01005531 buf->b_ml.ml_chunksize[0].mlcs_totalsize = (long)buf->b_ml.ml_line_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005532 return;
5533 }
5534
5535 /*
5536 * Find chunk that our line belongs to, curline will be at start of the
5537 * chunk.
5538 */
5539 if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1
5540 || updtype != ML_CHNK_ADDLINE)
5541 {
5542 for (curline = 1, curix = 0;
5543 curix < buf->b_ml.ml_usedchunks - 1
5544 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5545 curix++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005546 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005547 }
Bram Moolenaara9a8e042018-10-30 22:15:55 +01005548 else if (curix < buf->b_ml.ml_usedchunks - 1
5549 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005551 // Adjust cached curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005552 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5553 curix++;
5554 }
5555 curchnk = buf->b_ml.ml_chunksize + curix;
5556
5557 if (updtype == ML_CHNK_DELLINE)
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00005558 len = -len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005559 curchnk->mlcs_totalsize += len;
5560 if (updtype == ML_CHNK_ADDLINE)
5561 {
5562 curchnk->mlcs_numlines++;
5563
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005564 // May resize here so we don't have to do it in both cases below
Bram Moolenaar071d4272004-06-13 20:20:40 +00005565 if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks)
5566 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005567 chunksize_T *t_chunksize = buf->b_ml.ml_chunksize;
5568
Bram Moolenaar071d4272004-06-13 20:20:40 +00005569 buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2;
Bram Moolenaar51b6eb42020-08-22 15:19:18 +02005570 buf->b_ml.ml_chunksize = vim_realloc(buf->b_ml.ml_chunksize,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005571 sizeof(chunksize_T) * buf->b_ml.ml_numchunks);
5572 if (buf->b_ml.ml_chunksize == NULL)
5573 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005574 // Hmmmm, Give up on offset for this buffer
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005575 vim_free(t_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005576 buf->b_ml.ml_usedchunks = -1;
5577 return;
5578 }
5579 }
5580
5581 if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL)
5582 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005583 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005584 int idx;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005585 int end_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005586 int text_end;
5587 int linecnt;
5588
5589 mch_memmove(buf->b_ml.ml_chunksize + curix + 1,
5590 buf->b_ml.ml_chunksize + curix,
5591 (buf->b_ml.ml_usedchunks - curix) *
5592 sizeof(chunksize_T));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005593 // Compute length of first half of lines in the split chunk
Bram Moolenaar071d4272004-06-13 20:20:40 +00005594 size = 0;
5595 linecnt = 0;
5596 while (curline < buf->b_ml.ml_line_count
5597 && linecnt < MLCS_MINL)
5598 {
5599 if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5600 {
5601 buf->b_ml.ml_usedchunks = -1;
5602 return;
5603 }
5604 dp = (DATA_BL *)(hp->bh_data);
5605 count = (long)(buf->b_ml.ml_locked_high) -
5606 (long)(buf->b_ml.ml_locked_low) + 1;
5607 idx = curline - buf->b_ml.ml_locked_low;
5608 curline = buf->b_ml.ml_locked_high + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005609
5610 // compute index of last line to use in this MEMLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 rest = count - idx;
5612 if (linecnt + rest > MLCS_MINL)
5613 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005614 end_idx = idx + MLCS_MINL - linecnt - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005615 linecnt = MLCS_MINL;
5616 }
5617 else
5618 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005619 end_idx = count - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005620 linecnt += rest;
5621 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005622#ifdef FEAT_PROP_POPUP
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005623 if (buf->b_has_textprop)
5624 {
5625 int i;
5626
5627 // We cannot use the text pointers to get the text length,
5628 // the text prop info would also be counted. Go over the
5629 // lines.
5630 for (i = end_idx; i < idx; ++i)
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01005631 size += (int)STRLEN((char_u *)dp + (dp->db_index[i] & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005632 }
5633 else
5634#endif
5635 {
Bram Moolenaar14c75302021-08-15 14:28:40 +02005636 if (idx == 0) // first line in block, text at the end
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005637 text_end = dp->db_txt_end;
5638 else
5639 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
5640 size += text_end - ((dp->db_index[end_idx]) & DB_INDEX_MASK);
5641 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005642 }
5643 buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt;
5644 buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt;
5645 buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size;
5646 buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size;
5647 buf->b_ml.ml_usedchunks++;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005648 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005649 return;
5650 }
5651 else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL
5652 && curix == buf->b_ml.ml_usedchunks - 1
5653 && buf->b_ml.ml_line_count - line <= 1)
5654 {
5655 /*
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005656 * We are in the last chunk and it is cheap to create a new one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005657 * after this. Do it now to avoid the loop above later on
5658 */
5659 curchnk = buf->b_ml.ml_chunksize + curix + 1;
5660 buf->b_ml.ml_usedchunks++;
5661 if (line == buf->b_ml.ml_line_count)
5662 {
5663 curchnk->mlcs_numlines = 0;
5664 curchnk->mlcs_totalsize = 0;
5665 }
5666 else
5667 {
5668 /*
5669 * Line is just prior to last, move count for last
5670 * This is the common case when loading a new file
5671 */
5672 hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND);
5673 if (hp == NULL)
5674 {
5675 buf->b_ml.ml_usedchunks = -1;
5676 return;
5677 }
5678 dp = (DATA_BL *)(hp->bh_data);
5679 if (dp->db_line_count == 1)
5680 rest = dp->db_txt_end - dp->db_txt_start;
5681 else
5682 rest =
5683 ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK)
5684 - dp->db_txt_start;
5685 curchnk->mlcs_totalsize = rest;
5686 curchnk->mlcs_numlines = 1;
5687 curchnk[-1].mlcs_totalsize -= rest;
5688 curchnk[-1].mlcs_numlines -= 1;
5689 }
5690 }
5691 }
5692 else if (updtype == ML_CHNK_DELLINE)
5693 {
5694 curchnk->mlcs_numlines--;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005695 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005696 if (curix < (buf->b_ml.ml_usedchunks - 1)
5697 && (curchnk->mlcs_numlines + curchnk[1].mlcs_numlines)
5698 <= MLCS_MINL)
5699 {
5700 curix++;
5701 curchnk = buf->b_ml.ml_chunksize + curix;
5702 }
5703 else if (curix == 0 && curchnk->mlcs_numlines <= 0)
5704 {
5705 buf->b_ml.ml_usedchunks--;
5706 mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1,
5707 buf->b_ml.ml_usedchunks * sizeof(chunksize_T));
5708 return;
5709 }
5710 else if (curix == 0 || (curchnk->mlcs_numlines > 10
5711 && (curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines)
5712 > MLCS_MINL))
5713 {
5714 return;
5715 }
5716
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005717 // Collapse chunks
Bram Moolenaar071d4272004-06-13 20:20:40 +00005718 curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines;
5719 curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize;
5720 buf->b_ml.ml_usedchunks--;
5721 if (curix < buf->b_ml.ml_usedchunks)
5722 {
5723 mch_memmove(buf->b_ml.ml_chunksize + curix,
5724 buf->b_ml.ml_chunksize + curix + 1,
5725 (buf->b_ml.ml_usedchunks - curix) *
5726 sizeof(chunksize_T));
5727 }
5728 return;
5729 }
5730 ml_upd_lastbuf = buf;
5731 ml_upd_lastline = line;
5732 ml_upd_lastcurline = curline;
5733 ml_upd_lastcurix = curix;
5734}
5735
5736/*
5737 * Find offset for line or line with offset.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005738 * Find line with offset if "lnum" is 0; return remaining offset in offp
5739 * Find offset of line if "lnum" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005740 * return -1 if information is not available
5741 */
5742 long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005743ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005744{
5745 linenr_T curline;
5746 int curix;
5747 long size;
5748 bhdr_T *hp;
5749 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005750 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005751 int idx;
5752 int start_idx;
5753 int text_end;
5754 long offset;
5755 int len;
5756 int ffdos = (get_fileformat(buf) == EOL_DOS);
5757 int extra = 0;
5758
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005759 // take care of cached line first
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005760 ml_flush_line(curbuf);
5761
Bram Moolenaar071d4272004-06-13 20:20:40 +00005762 if (buf->b_ml.ml_usedchunks == -1
5763 || buf->b_ml.ml_chunksize == NULL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005764 || lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005765 return -1;
5766
5767 if (offp == NULL)
5768 offset = 0;
5769 else
5770 offset = *offp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005771 if (lnum == 0 && offset <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005772 return 1; // Not a "find offset" and offset 0 _must_ be in line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773 /*
5774 * Find the last chunk before the one containing our line. Last chunk is
Bram Moolenaar14c75302021-08-15 14:28:40 +02005775 * special because it will never qualify.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005776 */
5777 curline = 1;
5778 curix = size = 0;
5779 while (curix < buf->b_ml.ml_usedchunks - 1
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005780 && ((lnum != 0
5781 && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005782 || (offset != 0
5783 && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize
=?UTF-8?q?Dundar=20G=C3=B6c?=d5cec1f2022-01-29 15:19:23 +00005784 + (long)ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 {
5786 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5787 size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize;
5788 if (offset && ffdos)
5789 size += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5790 curix++;
5791 }
5792
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005793 while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005794 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005795#ifdef FEAT_PROP_POPUP
5796 size_t textprop_total = 0;
5797#endif
5798
Bram Moolenaar071d4272004-06-13 20:20:40 +00005799 if (curline > buf->b_ml.ml_line_count
5800 || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5801 return -1;
5802 dp = (DATA_BL *)(hp->bh_data);
5803 count = (long)(buf->b_ml.ml_locked_high) -
5804 (long)(buf->b_ml.ml_locked_low) + 1;
5805 start_idx = idx = curline - buf->b_ml.ml_locked_low;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005806 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005807 text_end = dp->db_txt_end;
5808 else
5809 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005810 // Compute index of last line to use in this MEMLINE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005811 if (lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005812 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005813 if (curline + (count - idx) >= lnum)
5814 idx += lnum - curline - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005815 else
5816 idx = count - 1;
5817 }
5818 else
5819 {
5820 extra = 0;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005821 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005822 {
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005823#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005824 size_t textprop_size = 0;
5825
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005826 if (buf->b_has_textprop)
5827 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005828 char_u *l1, *l2;
5829
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005830 // compensate for the extra bytes taken by textprops
5831 l1 = (char_u *)dp + ((dp->db_index[idx]) & DB_INDEX_MASK);
5832 l2 = (char_u *)dp + (idx == 0 ? dp->db_txt_end
5833 : ((dp->db_index[idx - 1]) & DB_INDEX_MASK));
5834 textprop_size = (l2 - l1) - (STRLEN(l1) + 1);
5835 }
5836#endif
5837 if (!(offset >= size
5838 + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK)
5839#ifdef FEAT_PROP_POPUP
Bram Moolenaar94b6fb72020-01-17 21:00:59 +01005840 - (long)(textprop_total + textprop_size)
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005841#endif
5842 + ffdos))
5843 break;
5844
Bram Moolenaar071d4272004-06-13 20:20:40 +00005845 if (ffdos)
5846 size++;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005847#ifdef FEAT_PROP_POPUP
5848 textprop_total += textprop_size;
5849#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005850 if (idx == count - 1)
5851 {
5852 extra = 1;
5853 break;
5854 }
5855 idx++;
5856 }
5857 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005858#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005859 if (buf->b_has_textprop && lnum != 0)
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005860 {
5861 int i;
5862
5863 // cannot use the db_index pointer, need to get the actual text
5864 // lengths.
5865 len = 0;
5866 for (i = start_idx; i <= idx; ++i)
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005867 {
5868 char_u *p = (char_u *)dp + ((dp->db_index[i]) & DB_INDEX_MASK);
5869 len += (int)STRLEN(p) + 1;
5870 }
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005871 }
5872 else
5873#endif
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005874 len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK)
5875#ifdef FEAT_PROP_POPUP
5876 - (long)textprop_total
5877#endif
5878 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005879 size += len;
5880 if (offset != 0 && size >= offset)
5881 {
5882 if (size + ffdos == offset)
5883 *offp = 0;
5884 else if (idx == start_idx)
5885 *offp = offset - size + len;
5886 else
5887 *offp = offset - size + len
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005888 - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK))
5889#ifdef FEAT_PROP_POPUP
5890 + (long)textprop_total
5891#endif
5892 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005893 curline += idx - start_idx + extra;
5894 if (curline > buf->b_ml.ml_line_count)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005895 return -1; // exactly one byte beyond the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005896 return curline;
5897 }
5898 curline = buf->b_ml.ml_locked_high + 1;
5899 }
5900
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005901 if (lnum != 0)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005902 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005903 // Count extra CR characters.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005904 if (ffdos)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005905 size += lnum - 1;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005906
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005907 // Don't count the last line break if 'noeol' and ('bin' or
5908 // 'nofixeol').
Bram Moolenaar34d72d42015-07-17 14:18:08 +02005909 if ((!buf->b_p_fixeol || buf->b_p_bin) && !buf->b_p_eol
Bram Moolenaarc26f7c62018-08-20 22:53:04 +02005910 && lnum > buf->b_ml.ml_line_count)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005911 size -= ffdos + 1;
5912 }
5913
Bram Moolenaar071d4272004-06-13 20:20:40 +00005914 return size;
5915}
5916
5917/*
5918 * Goto byte in buffer with offset 'cnt'.
5919 */
5920 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005921goto_byte(long cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005922{
5923 long boff = cnt;
5924 linenr_T lnum;
5925
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005926 ml_flush_line(curbuf); // cached line may be dirty
Bram Moolenaar071d4272004-06-13 20:20:40 +00005927 setpcmark();
5928 if (boff)
5929 --boff;
5930 lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005931 if (lnum < 1) // past the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005932 {
5933 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5934 curwin->w_curswant = MAXCOL;
5935 coladvance((colnr_T)MAXCOL);
5936 }
5937 else
5938 {
5939 curwin->w_cursor.lnum = lnum;
5940 curwin->w_cursor.col = (colnr_T)boff;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005941 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005942 curwin->w_set_curswant = TRUE;
5943 }
5944 check_cursor();
5945
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005946 // Make sure the cursor is on the first byte of a multi-byte char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005947 if (has_mbyte)
5948 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005949}
5950#endif