blob: bfbf4e28074de64deff45bd082bb24d5a35fa112 [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 Moolenaarf9e3e092019-01-13 23:38:42 +0100330 iemsg(_("E298: Didn't get block nr 0?"));
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 Moolenaarf9e3e092019-01-13 23:38:42 +0100380 iemsg(_("E298: Didn't get block nr 1?"));
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 Moolenaarf9e3e092019-01-13 23:38:42 +0100398 iemsg(_("E298: Didn't get block nr 2?"));
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)
439 randombytes_buf(buf->b_ml.ml_mfp->mf_seed, MF_SEED_LEN);
440 #endif
Bram Moolenaar2be79502014-08-13 21:58:28 +0200441 }
442}
443
444/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200445 * Prepare encryption for "buf" with block 0 "b0p".
446 */
447 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100448ml_set_b0_crypt(buf_T *buf, ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200449{
450 if (*buf->b_p_key == NUL)
451 b0p->b0_id[1] = BLOCK0_ID1;
452 else
453 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200454 int method_nr = crypt_get_method_nr(buf);
455
456 b0p->b0_id[1] = id1_codes[method_nr];
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200457 if (method_nr > CRYPT_M_ZIP && method_nr < CRYPT_M_SOD)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200458 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100459 // Generate a seed and store it in block 0 and in the memfile.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200460 sha2_seed(&b0p->b0_seed, MF_SEED_LEN, NULL, 0);
461 mch_memmove(buf->b_ml.ml_mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
462 }
463 }
464}
465
466/*
467 * Called after the crypt key or 'cryptmethod' was changed for "buf".
468 * Will apply this to the swapfile.
469 * "old_key" is the previous key. It is equal to buf->b_p_key when
470 * 'cryptmethod' is changed.
Bram Moolenaar49771f42010-07-20 17:32:38 +0200471 * "old_cm" is the previous 'cryptmethod'. It is equal to the current
472 * 'cryptmethod' when 'key' is changed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200473 */
474 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100475ml_set_crypt_key(
476 buf_T *buf,
477 char_u *old_key,
478 char_u *old_cm)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200479{
480 memfile_T *mfp = buf->b_ml.ml_mfp;
481 bhdr_T *hp;
482 int page_count;
483 int idx;
484 long error;
485 infoptr_T *ip;
486 PTR_BL *pp;
487 DATA_BL *dp;
488 blocknr_T bnum;
489 int top;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200490 int old_method;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200491
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200492 if (mfp == NULL || mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100493 return; // no memfile yet, nothing to do
Bram Moolenaarbc563362015-06-09 18:35:25 +0200494 old_method = crypt_method_nr_from_name(old_cm);
495
Christian Brabandt226b28b2021-06-21 21:08:08 +0200496 // Swapfile encryption not supported by XChaCha20
497 if (crypt_get_method_nr(buf) == CRYPT_M_SOD && *buf->b_p_key != NUL)
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200498 {
499 // close the swapfile
500 mf_close_file(buf, TRUE);
501 buf->b_p_swf = FALSE;
502 return;
503 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100504 // First make sure the swapfile is in a consistent state, using the old
505 // key and method.
Bram Moolenaarbc563362015-06-09 18:35:25 +0200506 {
507 char_u *new_key = buf->b_p_key;
508 char_u *new_buf_cm = buf->b_p_cm;
509
510 buf->b_p_key = old_key;
511 buf->b_p_cm = old_cm;
512 ml_preserve(buf, FALSE);
513 buf->b_p_key = new_key;
514 buf->b_p_cm = new_buf_cm;
515 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200516
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100517 // Set the key, method and seed to be used for reading, these must be the
518 // old values.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200519 mfp->mf_old_key = old_key;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200520 mfp->mf_old_cm = old_method;
521 if (old_method > 0 && *old_key != NUL)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200522 mch_memmove(mfp->mf_old_seed, mfp->mf_seed, MF_SEED_LEN);
523
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100524 // Update block 0 with the crypt flag and may set a new seed.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200525 ml_upd_block0(buf, UB_CRYPT);
526
527 if (mfp->mf_infile_count > 2)
528 {
529 /*
530 * Need to read back all data blocks from disk, decrypt them with the
531 * old key/method and mark them to be written. The algorithm is
532 * similar to what happens in ml_recover(), but we skip negative block
533 * numbers.
534 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100535 ml_flush_line(buf); // flush buffered line
536 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200537
538 hp = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100539 bnum = 1; // start with block 1
540 page_count = 1; // which is 1 page
541 idx = 0; // start with first index in block 1
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200542 error = 0;
543 buf->b_ml.ml_stack_top = 0;
Bram Moolenaard23a8232018-02-10 18:45:26 +0100544 VIM_CLEAR(buf->b_ml.ml_stack);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100545 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200546
547 for ( ; !got_int; line_breakcheck())
548 {
549 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100550 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200551
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100552 // get the block (pointer or data)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200553 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
554 {
555 if (bnum == 1)
556 break;
557 ++error;
558 }
559 else
560 {
561 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100562 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200563 {
564 if (pp->pb_count == 0)
565 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100566 // empty block?
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200567 ++error;
568 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100569 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200570 {
571 if (pp->pb_pointer[idx].pe_bnum < 0)
572 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100573 // Skip data block with negative block number.
574 // Should not happen, because of the ml_preserve()
575 // above. Get same block again for next index.
Bram Moolenaar4b7214e2019-01-03 21:55:32 +0100576 ++idx;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200577 continue;
578 }
579
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100580 // going one block deeper in the tree, new entry in
581 // stack
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200582 if ((top = ml_add_stack(buf)) < 0)
583 {
584 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100585 break; // out of memory
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200586 }
587 ip = &(buf->b_ml.ml_stack[top]);
588 ip->ip_bnum = bnum;
589 ip->ip_index = idx;
590
591 bnum = pp->pb_pointer[idx].pe_bnum;
592 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaarbc563362015-06-09 18:35:25 +0200593 idx = 0;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200594 continue;
595 }
596 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100597 else // not a pointer block
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200598 {
599 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100600 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200601 ++error;
602 else
603 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100604 // It is a data block, need to write it back to disk.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200605 mf_put(mfp, hp, TRUE, FALSE);
606 hp = NULL;
607 }
608 }
609 }
610
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100611 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200612 break;
613
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100614 // go one block up in the tree
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200615 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
616 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100617 idx = ip->ip_index + 1; // go to next index
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200618 page_count = 1;
619 }
Bram Moolenaarbc563362015-06-09 18:35:25 +0200620 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100621 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +0100622
623 if (error > 0)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100624 emsg(_("E843: Error while updating swap file crypt"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200625 }
626
627 mfp->mf_old_key = NULL;
628}
629#endif
630
Bram Moolenaar071d4272004-06-13 20:20:40 +0000631/*
632 * ml_setname() is called when the file name of "buf" has been changed.
633 * It may rename the swap file.
634 */
635 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100636ml_setname(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000637{
638 int success = FALSE;
639 memfile_T *mfp;
640 char_u *fname;
641 char_u *dirp;
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100642#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000643 char_u *p;
644#endif
645
646 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100647 if (mfp->mf_fd < 0) // there is no swap file yet
Bram Moolenaar071d4272004-06-13 20:20:40 +0000648 {
649 /*
650 * When 'updatecount' is 0 and 'noswapfile' there is no swap file.
651 * For help files we will make a swap file now.
652 */
Bram Moolenaare1004402020-10-24 20:49:43 +0200653 if (p_uc != 0 && (cmdmod.cmod_flags & CMOD_NOSWAPFILE) == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100654 ml_open_file(buf); // create a swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000655 return;
656 }
657
658 /*
659 * Try all directories in the 'directory' option.
660 */
661 dirp = p_dir;
662 for (;;)
663 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100664 if (*dirp == NUL) // tried all directories, fail
Bram Moolenaar071d4272004-06-13 20:20:40 +0000665 break;
Bram Moolenaar8fc061c2004-12-29 21:03:02 +0000666 fname = findswapname(buf, &dirp, mfp->mf_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100667 // alloc's fname
668 if (dirp == NULL) // out of memory
Bram Moolenaarf541c362011-10-26 11:44:18 +0200669 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100670 if (fname == NULL) // no file name found for this dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000671 continue;
672
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100673#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000674 /*
675 * Set full pathname for swap file now, because a ":!cd dir" may
676 * change directory without us knowing it.
677 */
678 p = FullName_save(fname, FALSE);
679 vim_free(fname);
680 fname = p;
681 if (fname == NULL)
682 continue;
683#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100684 // if the file name is the same we don't have to do anything
Bram Moolenaar071d4272004-06-13 20:20:40 +0000685 if (fnamecmp(fname, mfp->mf_fname) == 0)
686 {
687 vim_free(fname);
688 success = TRUE;
689 break;
690 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100691 // need to close the swap file before renaming
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 if (mfp->mf_fd >= 0)
693 {
694 close(mfp->mf_fd);
695 mfp->mf_fd = -1;
696 }
697
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100698 // try to rename the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000699 if (vim_rename(mfp->mf_fname, fname) == 0)
700 {
701 success = TRUE;
702 vim_free(mfp->mf_fname);
703 mfp->mf_fname = fname;
704 vim_free(mfp->mf_ffname);
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100705#if defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100706 mfp->mf_ffname = NULL; // mf_fname is full pathname already
Bram Moolenaar071d4272004-06-13 20:20:40 +0000707#else
708 mf_set_ffname(mfp);
709#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200710 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000711 break;
712 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100713 vim_free(fname); // this fname didn't work, try another
Bram Moolenaar071d4272004-06-13 20:20:40 +0000714 }
715
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100716 if (mfp->mf_fd == -1) // need to (re)open the swap file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000717 {
718 mfp->mf_fd = mch_open((char *)mfp->mf_fname, O_RDWR | O_EXTRA, 0);
719 if (mfp->mf_fd < 0)
720 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100721 // could not (re)open the swap file, what can we do????
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100722 emsg(_("E301: Oops, lost the swap file!!!"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000723 return;
724 }
Bram Moolenaarf05da212009-11-17 16:13:15 +0000725#ifdef HAVE_FD_CLOEXEC
726 {
727 int fdflags = fcntl(mfp->mf_fd, F_GETFD);
728 if (fdflags >= 0 && (fdflags & FD_CLOEXEC) == 0)
Bram Moolenaarfbc4b4d2016-02-07 15:14:01 +0100729 (void)fcntl(mfp->mf_fd, F_SETFD, fdflags | FD_CLOEXEC);
Bram Moolenaarf05da212009-11-17 16:13:15 +0000730 }
731#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732 }
733 if (!success)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100734 emsg(_("E302: Could not rename swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000735}
736
737/*
738 * Open a file for the memfile for all buffers that are not readonly or have
739 * been modified.
740 * Used when 'updatecount' changes from zero to non-zero.
741 */
742 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100743ml_open_files(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000744{
745 buf_T *buf;
746
Bram Moolenaar29323592016-07-24 22:04:11 +0200747 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000748 if (!buf->b_p_ro || buf->b_changed)
749 ml_open_file(buf);
750}
751
752/*
753 * Open a swap file for an existing memfile, if there is no swap file yet.
754 * If we are unable to find a file name, mf_fname will be NULL
755 * and the memfile will be in memory only (no recovery possible).
756 */
757 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100758ml_open_file(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759{
760 memfile_T *mfp;
761 char_u *fname;
762 char_u *dirp;
763
764 mfp = buf->b_ml.ml_mfp;
Bram Moolenaare1004402020-10-24 20:49:43 +0200765 if (mfp == NULL || mfp->mf_fd >= 0 || !buf->b_p_swf
766 || (cmdmod.cmod_flags & CMOD_NOSWAPFILE))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100767 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +0000768
Bram Moolenaara1956f62006-03-12 22:18:00 +0000769#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100770 // For a spell buffer use a temp file name.
Bram Moolenaar4770d092006-01-12 23:22:24 +0000771 if (buf->b_spell)
772 {
Bram Moolenaare5c421c2015-03-31 13:33:08 +0200773 fname = vim_tempname('s', FALSE);
Bram Moolenaar4770d092006-01-12 23:22:24 +0000774 if (fname != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100775 (void)mf_open_file(mfp, fname); // consumes fname!
Bram Moolenaar4770d092006-01-12 23:22:24 +0000776 buf->b_may_swap = FALSE;
777 return;
778 }
779#endif
780
Bram Moolenaar071d4272004-06-13 20:20:40 +0000781 /*
782 * Try all directories in 'directory' option.
783 */
784 dirp = p_dir;
785 for (;;)
786 {
787 if (*dirp == NUL)
788 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100789 // There is a small chance that between choosing the swap file name
790 // and creating it, another Vim creates the file. In that case the
791 // creation will fail and we will use another directory.
792 fname = findswapname(buf, &dirp, NULL); // allocates fname
Bram Moolenaarf541c362011-10-26 11:44:18 +0200793 if (dirp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100794 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000795 if (fname == NULL)
796 continue;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100797 if (mf_open_file(mfp, fname) == OK) // consumes fname!
Bram Moolenaar071d4272004-06-13 20:20:40 +0000798 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100799#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000800 /*
801 * set full pathname for swap file now, because a ":!cd dir" may
802 * change directory without us knowing it.
803 */
804 mf_fullname(mfp);
805#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200806 ml_upd_block0(buf, UB_SAME_DIR);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000807
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100808 // Flush block zero, so others can read it
Bram Moolenaar071d4272004-06-13 20:20:40 +0000809 if (mf_sync(mfp, MFS_ZERO) == OK)
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000810 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100811 // Mark all blocks that should be in the swapfile as dirty.
812 // Needed for when the 'swapfile' option was reset, so that
813 // the swap file was deleted, and then on again.
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000814 mf_set_dirty(mfp);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000815 break;
Bram Moolenaarc32840f2006-01-14 21:23:38 +0000816 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100817 // Writing block 0 failed: close the file and try another dir
Bram Moolenaar071d4272004-06-13 20:20:40 +0000818 mf_close_file(buf, FALSE);
819 }
820 }
821
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200822 if (*p_dir != NUL && mfp->mf_fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000823 {
Bram Moolenaar00e192b2019-10-19 17:01:28 +0200824 need_wait_return = TRUE; // call wait_return later
Bram Moolenaar071d4272004-06-13 20:20:40 +0000825 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100826 (void)semsg(_("E303: Unable to open swap file for \"%s\", recovery impossible"),
Bram Moolenaare1704ba2012-10-03 18:25:00 +0200827 buf_spname(buf) != NULL ? buf_spname(buf) : buf->b_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000828 --no_wait_return;
829 }
830
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100831 // don't try to open a swap file again
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 buf->b_may_swap = FALSE;
833}
834
835/*
836 * If still need to create a swap file, and starting to edit a not-readonly
837 * file, or reading into an existing buffer, create a swap file now.
838 */
839 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100840check_need_swap(
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200841 int newfile) // reading file into new buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +0000842{
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200843 int old_msg_silent = msg_silent; // might be reset by an E325 message
844
Bram Moolenaar071d4272004-06-13 20:20:40 +0000845 if (curbuf->b_may_swap && (!curbuf->b_p_ro || !newfile))
846 ml_open_file(curbuf);
Bram Moolenaar2f0f8712018-08-21 18:50:18 +0200847 msg_silent = old_msg_silent;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000848}
849
850/*
851 * Close memline for buffer 'buf'.
852 * If 'del_file' is TRUE, delete the swap file
853 */
854 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100855ml_close(buf_T *buf, int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000856{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100857 if (buf->b_ml.ml_mfp == NULL) // not open
Bram Moolenaar071d4272004-06-13 20:20:40 +0000858 return;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100859 mf_close(buf->b_ml.ml_mfp, del_file); // close the .swp file
Bram Moolenaar071d4272004-06-13 20:20:40 +0000860 if (buf->b_ml.ml_line_lnum != 0 && (buf->b_ml.ml_flags & ML_LINE_DIRTY))
861 vim_free(buf->b_ml.ml_line_ptr);
862 vim_free(buf->b_ml.ml_stack);
863#ifdef FEAT_BYTEOFF
Bram Moolenaard23a8232018-02-10 18:45:26 +0100864 VIM_CLEAR(buf->b_ml.ml_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000865#endif
866 buf->b_ml.ml_mfp = NULL;
867
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100868 // Reset the "recovered" flag, give the ATTENTION prompt the next time
869 // this buffer is loaded.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000870 buf->b_flags &= ~BF_RECOVERED;
871}
872
873/*
874 * Close all existing memlines and memfiles.
875 * Only used when exiting.
876 * When 'del_file' is TRUE, delete the memfiles.
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000877 * But don't delete files that were ":preserve"d when we are POSIX compatible.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000878 */
879 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100880ml_close_all(int del_file)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000881{
882 buf_T *buf;
883
Bram Moolenaar29323592016-07-24 22:04:11 +0200884 FOR_ALL_BUFFERS(buf)
Bram Moolenaar81bf7082005-02-12 14:31:42 +0000885 ml_close(buf, del_file && ((buf->b_flags & BF_PRESERVED) == 0
886 || vim_strchr(p_cpo, CPO_PRESERVE) == NULL));
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100887#ifdef FEAT_SPELL
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100888 spell_delete_wordlist(); // delete the internal wordlist
Bram Moolenaar34b466e2013-11-28 17:41:46 +0100889#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000890#ifdef TEMPDIRNAMES
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100891 vim_deltempdir(); // delete created temp directory
Bram Moolenaar071d4272004-06-13 20:20:40 +0000892#endif
893}
894
895/*
896 * Close all memfiles for not modified buffers.
897 * Only use just before exiting!
898 */
899 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100900ml_close_notmod(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000901{
902 buf_T *buf;
903
Bram Moolenaar29323592016-07-24 22:04:11 +0200904 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000905 if (!bufIsChanged(buf))
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100906 ml_close(buf, TRUE); // close all not-modified buffers
Bram Moolenaar071d4272004-06-13 20:20:40 +0000907}
908
909/*
910 * Update the timestamp in the .swp file.
911 * Used when the file has been written.
912 */
913 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100914ml_timestamp(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000915{
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200916 ml_upd_block0(buf, UB_FNAME);
917}
918
919/*
920 * Return FAIL when the ID of "b0p" is wrong.
921 */
922 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100923ml_check_b0_id(ZERO_BL *b0p)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200924{
925 if (b0p->b0_id[0] != BLOCK0_ID0
926 || (b0p->b0_id[1] != BLOCK0_ID1
927 && b0p->b0_id[1] != BLOCK0_ID1_C0
Bram Moolenaar8f4ac012014-08-10 13:38:34 +0200928 && b0p->b0_id[1] != BLOCK0_ID1_C1
Christian Brabandtf573c6e2021-06-20 14:02:16 +0200929 && b0p->b0_id[1] != BLOCK0_ID1_C2
930 && b0p->b0_id[1] != BLOCK0_ID1_C3)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200931 )
932 return FAIL;
933 return OK;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000934}
935
936/*
937 * Update the timestamp or the B0_SAME_DIR flag of the .swp file.
938 */
939 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100940ml_upd_block0(buf_T *buf, upd_block0_T what)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000941{
Bram Moolenaar071d4272004-06-13 20:20:40 +0000942 memfile_T *mfp;
943 bhdr_T *hp;
944 ZERO_BL *b0p;
945
946 mfp = buf->b_ml.ml_mfp;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200947 if (mfp == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000948 return;
Bram Moolenaar2be79502014-08-13 21:58:28 +0200949 hp = mf_get(mfp, (blocknr_T)0, 1);
950 if (hp == NULL)
951 {
952#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100953 // Possibly update the seed in the memfile before there is a block0.
Bram Moolenaar2be79502014-08-13 21:58:28 +0200954 if (what == UB_CRYPT)
955 ml_set_mfp_crypt(buf);
956#endif
957 return;
958 }
959
Bram Moolenaar071d4272004-06-13 20:20:40 +0000960 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200961 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +0100962 iemsg(_("E304: ml_upd_block0(): Didn't get block 0??"));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000963 else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000964 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200965 if (what == UB_FNAME)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000966 set_b0_fname(b0p, buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200967#ifdef FEAT_CRYPT
968 else if (what == UB_CRYPT)
969 ml_set_b0_crypt(buf, b0p);
970#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100971 else // what == UB_SAME_DIR
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000972 set_b0_dir_flag(b0p, buf);
973 }
Bram Moolenaar071d4272004-06-13 20:20:40 +0000974 mf_put(mfp, hp, TRUE, FALSE);
975}
976
977/*
978 * Write file name and timestamp into block 0 of a swap file.
979 * Also set buf->b_mtime.
980 * Don't use NameBuff[]!!!
981 */
982 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +0100983set_b0_fname(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000984{
Bram Moolenaar8767f522016-07-01 17:17:39 +0200985 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986
987 if (buf->b_ffname == NULL)
988 b0p->b0_fname[0] = NUL;
989 else
990 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +0100991#if defined(MSWIN) || defined(AMIGA)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +0100992 // Systems that cannot translate "~user" back into a path: copy the
993 // file name unmodified. Do use slashes instead of backslashes for
994 // portability.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +0200995 vim_strncpy(b0p->b0_fname, buf->b_ffname, B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000996# ifdef BACKSLASH_IN_FILENAME
997 forward_slash(b0p->b0_fname);
998# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000999#else
1000 size_t flen, ulen;
1001 char_u uname[B0_UNAME_SIZE];
1002
1003 /*
1004 * For a file under the home directory of the current user, we try to
1005 * replace the home directory path with "~user". This helps when
1006 * editing the same file on different machines over a network.
1007 * First replace home dir path with "~/" with home_replace().
1008 * Then insert the user name to get "~user/".
1009 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001010 home_replace(NULL, buf->b_ffname, b0p->b0_fname,
1011 B0_FNAME_SIZE_CRYPT, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001012 if (b0p->b0_fname[0] == '~')
1013 {
1014 flen = STRLEN(b0p->b0_fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001015 // If there is no user name or it is too long, don't use "~/"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001016 if (get_user_name(uname, B0_UNAME_SIZE) == FAIL
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001017 || (ulen = STRLEN(uname)) + flen > B0_FNAME_SIZE_CRYPT - 1)
1018 vim_strncpy(b0p->b0_fname, buf->b_ffname,
1019 B0_FNAME_SIZE_CRYPT - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020 else
1021 {
1022 mch_memmove(b0p->b0_fname + ulen + 1, b0p->b0_fname + 1, flen);
1023 mch_memmove(b0p->b0_fname + 1, uname, ulen);
1024 }
1025 }
1026#endif
1027 if (mch_stat((char *)buf->b_ffname, &st) >= 0)
1028 {
1029 long_to_char((long)st.st_mtime, b0p->b0_mtime);
1030#ifdef CHECK_INODE
1031 long_to_char((long)st.st_ino, b0p->b0_ino);
1032#endif
1033 buf_store_time(buf, &st, buf->b_ffname);
1034 buf->b_mtime_read = buf->b_mtime;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001035 buf->b_mtime_read_ns = buf->b_mtime_ns;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001036 }
1037 else
1038 {
1039 long_to_char(0L, b0p->b0_mtime);
1040#ifdef CHECK_INODE
1041 long_to_char(0L, b0p->b0_ino);
1042#endif
1043 buf->b_mtime = 0;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001044 buf->b_mtime_ns = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001045 buf->b_mtime_read = 0;
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01001046 buf->b_mtime_read_ns = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001047 buf->b_orig_size = 0;
1048 buf->b_orig_mode = 0;
1049 }
1050 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001051
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001052 // Also add the 'fileencoding' if there is room.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001053 add_b0_fenc(b0p, curbuf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054}
1055
1056/*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001057 * Update the B0_SAME_DIR flag of the swap file. It's set if the file and the
1058 * swapfile for "buf" are in the same directory.
1059 * This is fail safe: if we are not sure the directories are equal the flag is
1060 * not set.
1061 */
1062 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001063set_b0_dir_flag(ZERO_BL *b0p, buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001064{
1065 if (same_directory(buf->b_ml.ml_mfp->mf_fname, buf->b_ffname))
1066 b0p->b0_flags |= B0_SAME_DIR;
1067 else
1068 b0p->b0_flags &= ~B0_SAME_DIR;
1069}
1070
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001071/*
1072 * When there is room, add the 'fileencoding' to block zero.
1073 */
1074 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001075add_b0_fenc(
1076 ZERO_BL *b0p,
1077 buf_T *buf)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001078{
1079 int n;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001080 int size = B0_FNAME_SIZE_NOCRYPT;
1081
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001082#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001083 // Without encryption use the same offset as in Vim 7.2 to be compatible.
1084 // With encryption it's OK to move elsewhere, the swap file is not
1085 // compatible anyway.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001086 if (*buf->b_p_key != NUL)
1087 size = B0_FNAME_SIZE_CRYPT;
Bram Moolenaarfc3abf42019-01-24 15:54:21 +01001088#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001089
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00001090 n = (int)STRLEN(buf->b_p_fenc);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001091 if ((int)STRLEN(b0p->b0_fname) + n + 1 > size)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001092 b0p->b0_flags &= ~B0_HAS_FENC;
1093 else
1094 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001095 mch_memmove((char *)b0p->b0_fname + size - n,
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001096 (char *)buf->b_p_fenc, (size_t)n);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001097 *(b0p->b0_fname + size - n - 1) = NUL;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001098 b0p->b0_flags |= B0_HAS_FENC;
1099 }
1100}
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001101
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001102#if defined(HAVE_SYS_SYSINFO_H) && defined(HAVE_SYSINFO_UPTIME)
1103# include <sys/sysinfo.h>
1104#endif
1105
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001106#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001107/*
1108 * Return TRUE if the process with number "b0p->b0_pid" is still running.
1109 * "swap_fname" is the name of the swap file, if it's from before a reboot then
1110 * the result is FALSE;
1111 */
1112 static int
1113swapfile_process_running(ZERO_BL *b0p, char_u *swap_fname UNUSED)
1114{
Bram Moolenaare2982d62021-10-06 11:27:21 +01001115#if defined(HAVE_SYSINFO) && defined(HAVE_SYSINFO_UPTIME)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001116 stat_T st;
1117 struct sysinfo sinfo;
1118
1119 // If the system rebooted after when the swap file was written then the
1120 // process can't be running now.
1121 if (mch_stat((char *)swap_fname, &st) != -1
1122 && sysinfo(&sinfo) == 0
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001123 && st.st_mtime < time(NULL) - (
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001124# ifdef FEAT_EVAL
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001125 override_sysinfo_uptime >= 0 ? override_sysinfo_uptime :
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001126# endif
Bram Moolenaar23b32a82021-03-10 21:55:46 +01001127 sinfo.uptime))
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001128 return FALSE;
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001129# endif
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001130 return mch_process_running(char_to_long(b0p->b0_pid));
1131}
=?UTF-8?q?Ola=20S=C3=B6der?=599a6e52021-07-06 20:15:46 +02001132#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001133
1134/*
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001135 * Try to recover curbuf from the .swp file.
Bram Moolenaar99499b12019-05-23 21:35:48 +02001136 * If "checkext" is TRUE, check the extension and detect whether it is
1137 * a swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001138 */
1139 void
Bram Moolenaar99499b12019-05-23 21:35:48 +02001140ml_recover(int checkext)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001141{
1142 buf_T *buf = NULL;
1143 memfile_T *mfp = NULL;
1144 char_u *fname;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001145 char_u *fname_used = NULL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001146 bhdr_T *hp = NULL;
1147 ZERO_BL *b0p;
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001148 int b0_ff;
1149 char_u *b0_fenc = NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001150#ifdef FEAT_CRYPT
1151 int b0_cm = -1;
1152#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001153 PTR_BL *pp;
1154 DATA_BL *dp;
1155 infoptr_T *ip;
1156 blocknr_T bnum;
1157 int page_count;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001158 stat_T org_stat, swp_stat;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001159 int len;
1160 int directly;
1161 linenr_T lnum;
1162 char_u *p;
1163 int i;
1164 long error;
1165 int cannot_open;
1166 linenr_T line_count;
1167 int has_error;
1168 int idx;
1169 int top;
1170 int txt_start;
Bram Moolenaar8767f522016-07-01 17:17:39 +02001171 off_T size;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172 int called_from_main;
1173 int serious_error = TRUE;
1174 long mtime;
1175 int attr;
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001176 int orig_file_status = NOTDONE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001177
1178 recoverymode = TRUE;
1179 called_from_main = (curbuf->b_ml.ml_mfp == NULL);
Bram Moolenaar8820b482017-03-16 17:23:31 +01001180 attr = HL_ATTR(HLF_E);
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001181
1182 /*
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001183 * 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 +00001184 * Otherwise a search is done to find the swap file(s).
1185 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001186 fname = curbuf->b_fname;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001187 if (fname == NULL) // When there is no file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001188 fname = (char_u *)"";
1189 len = (int)STRLEN(fname);
Bram Moolenaar99499b12019-05-23 21:35:48 +02001190 if (checkext && len >= 4 &&
Bram Moolenaare60acc12011-05-10 16:41:25 +02001191#if defined(VMS)
Bram Moolenaar79518e22017-02-17 16:31:35 +01001192 STRNICMP(fname + len - 4, "_s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001193#else
Bram Moolenaar79518e22017-02-17 16:31:35 +01001194 STRNICMP(fname + len - 4, ".s", 2)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001195#endif
Bram Moolenaar79518e22017-02-17 16:31:35 +01001196 == 0
Bram Moolenaaraf903e52017-12-02 15:11:22 +01001197 && vim_strchr((char_u *)"abcdefghijklmnopqrstuvw",
1198 TOLOWER_ASC(fname[len - 2])) != NULL
Bram Moolenaard0ba34a2009-11-03 12:06:23 +00001199 && ASCII_ISALPHA(fname[len - 1]))
Bram Moolenaar071d4272004-06-13 20:20:40 +00001200 {
1201 directly = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001202 fname_used = vim_strsave(fname); // make a copy for mf_open()
Bram Moolenaar071d4272004-06-13 20:20:40 +00001203 }
1204 else
1205 {
1206 directly = FALSE;
1207
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001208 // count the number of matching swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001209 len = recover_names(fname, FALSE, 0, NULL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001210 if (len == 0) // no swap files found
Bram Moolenaar071d4272004-06-13 20:20:40 +00001211 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001212 semsg(_("E305: No swap file found for %s"), fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001213 goto theend;
1214 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001215 if (len == 1) // one swap file found, use it
Bram Moolenaar071d4272004-06-13 20:20:40 +00001216 i = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001217 else // several swap files found, choose
Bram Moolenaar071d4272004-06-13 20:20:40 +00001218 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001219 // list the names of the swap files
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001220 (void)recover_names(fname, TRUE, 0, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001221 msg_putchar('\n');
Bram Moolenaar32526b32019-01-19 17:43:09 +01001222 msg_puts(_("Enter number of swap file to use (0 to quit): "));
Bram Moolenaar24bbcfe2005-06-28 23:32:02 +00001223 i = get_number(FALSE, NULL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001224 if (i < 1 || i > len)
1225 goto theend;
1226 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001227 // get the swap file name that will be used
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001228 (void)recover_names(fname, FALSE, i, &fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001229 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001230 if (fname_used == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001231 goto theend; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001232
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001233 // When called from main() still need to initialize storage structure
Bram Moolenaar4770d092006-01-12 23:22:24 +00001234 if (called_from_main && ml_open(curbuf) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001235 getout(1);
1236
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001237 /*
1238 * Allocate a buffer structure for the swap file that is used for recovery.
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001239 * Only the memline and crypt information in it are really used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001240 */
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001241 buf = ALLOC_ONE(buf_T);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001242 if (buf == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001243 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001244
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001245 /*
1246 * init fields in memline struct
1247 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001248 buf->b_ml.ml_stack_size = 0; // no stack yet
1249 buf->b_ml.ml_stack = NULL; // no stack yet
1250 buf->b_ml.ml_stack_top = 0; // nothing in the stack
1251 buf->b_ml.ml_line_lnum = 0; // no cached line
1252 buf->b_ml.ml_locked = NULL; // no locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001253 buf->b_ml.ml_flags = 0;
Bram Moolenaar0fe849a2010-07-25 15:11:11 +02001254#ifdef FEAT_CRYPT
1255 buf->b_p_key = empty_option;
1256 buf->b_p_cm = empty_option;
1257#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001258
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001259 /*
1260 * open the memfile from the old swap file
1261 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001262 p = vim_strsave(fname_used); // save "fname_used" for the message:
1263 // mf_open() will consume "fname_used"!
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001264 mfp = mf_open(fname_used, O_RDONLY);
1265 fname_used = p;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001266 if (mfp == NULL || mfp->mf_fd < 0)
1267 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001268 if (fname_used != NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001269 semsg(_("E306: Cannot open %s"), fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001270 goto theend;
1271 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001272 buf->b_ml.ml_mfp = mfp;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001273#ifdef FEAT_CRYPT
1274 mfp->mf_buffer = buf;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001275#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001276
1277 /*
1278 * The page size set in mf_open() might be different from the page size
1279 * used in the swap file, we must get it from block 0. But to read block
1280 * 0 we need a page size. Use the minimal size for block 0 here, it will
1281 * be set to the real value below.
1282 */
1283 mfp->mf_page_size = MIN_SWAP_PAGE_SIZE;
1284
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001285 /*
1286 * try to read block 0
1287 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001288 if ((hp = mf_get(mfp, (blocknr_T)0, 1)) == NULL)
1289 {
1290 msg_start();
Bram Moolenaar32526b32019-01-19 17:43:09 +01001291 msg_puts_attr(_("Unable to read block 0 from "), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001292 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001293 msg_puts_attr(_("\nMaybe no changes were made or Vim did not update the swap file."),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001294 attr | MSG_HIST);
1295 msg_end();
1296 goto theend;
1297 }
1298 b0p = (ZERO_BL *)(hp->bh_data);
1299 if (STRNCMP(b0p->b0_version, "VIM 3.0", 7) == 0)
1300 {
1301 msg_start();
1302 msg_outtrans_attr(mfp->mf_fname, MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001303 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001304 MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001305 msg_puts_attr(_("Use Vim version 3.0.\n"), MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001306 msg_end();
1307 goto theend;
1308 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001309 if (ml_check_b0_id(b0p) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001310 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001311 semsg(_("E307: %s does not look like a Vim swap file"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001312 goto theend;
1313 }
1314 if (b0_magic_wrong(b0p))
1315 {
1316 msg_start();
1317 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar48e330a2016-02-23 14:53:34 +01001318#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001319 if (STRNCMP(b0p->b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01001320 msg_puts_attr(_(" cannot be used with this version of Vim.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001321 attr | MSG_HIST);
1322 else
1323#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01001324 msg_puts_attr(_(" cannot be used on this computer.\n"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001325 attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001326 msg_puts_attr(_("The file was created on "), attr | MSG_HIST);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001327 // avoid going past the end of a corrupted hostname
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 b0p->b0_fname[0] = NUL;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001329 msg_puts_attr((char *)b0p->b0_hname, attr | MSG_HIST);
1330 msg_puts_attr(_(",\nor the file has been damaged."), attr | MSG_HIST);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001331 msg_end();
1332 goto theend;
1333 }
Bram Moolenaar1c536282007-04-26 15:21:56 +00001334
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001335#ifdef FEAT_CRYPT
K.Takataeeec2542021-06-02 13:28:16 +02001336 for (i = 0; i < (int)ARRAY_LENGTH(id1_codes); ++i)
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001337 if (id1_codes[i] == b0p->b0_id[1])
1338 b0_cm = i;
1339 if (b0_cm > 0)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001340 mch_memmove(mfp->mf_seed, &b0p->b0_seed, MF_SEED_LEN);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001341 crypt_set_cm_option(buf, b0_cm < 0 ? 0 : b0_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001342#else
1343 if (b0p->b0_id[1] != BLOCK0_ID1)
1344 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001345 semsg(_("E833: %s is encrypted and this version of Vim does not support encryption"), mfp->mf_fname);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001346 goto theend;
1347 }
1348#endif
1349
Bram Moolenaar071d4272004-06-13 20:20:40 +00001350 /*
1351 * If we guessed the wrong page size, we have to recalculate the
1352 * highest block number in the file.
1353 */
1354 if (mfp->mf_page_size != (unsigned)char_to_long(b0p->b0_page_size))
1355 {
Bram Moolenaar1c536282007-04-26 15:21:56 +00001356 unsigned previous_page_size = mfp->mf_page_size;
1357
Bram Moolenaar071d4272004-06-13 20:20:40 +00001358 mf_new_page_size(mfp, (unsigned)char_to_long(b0p->b0_page_size));
Bram Moolenaar1c536282007-04-26 15:21:56 +00001359 if (mfp->mf_page_size < previous_page_size)
1360 {
1361 msg_start();
1362 msg_outtrans_attr(mfp->mf_fname, attr | MSG_HIST);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001363 msg_puts_attr(_(" has been damaged (page size is smaller than minimum value).\n"),
Bram Moolenaar1c536282007-04-26 15:21:56 +00001364 attr | MSG_HIST);
1365 msg_end();
1366 goto theend;
1367 }
Bram Moolenaar8767f522016-07-01 17:17:39 +02001368 if ((size = vim_lseek(mfp->mf_fd, (off_T)0L, SEEK_END)) <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001369 mfp->mf_blocknr_max = 0; // no file or empty file
Bram Moolenaar071d4272004-06-13 20:20:40 +00001370 else
1371 mfp->mf_blocknr_max = (blocknr_T)(size / mfp->mf_page_size);
1372 mfp->mf_infile_count = mfp->mf_blocknr_max;
Bram Moolenaar1c536282007-04-26 15:21:56 +00001373
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001374 // need to reallocate the memory used to store the data
Bram Moolenaar1c536282007-04-26 15:21:56 +00001375 p = alloc(mfp->mf_page_size);
1376 if (p == NULL)
1377 goto theend;
1378 mch_memmove(p, hp->bh_data, previous_page_size);
1379 vim_free(hp->bh_data);
1380 hp->bh_data = p;
1381 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 }
1383
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001384 /*
1385 * If .swp file name given directly, use name from swap file for buffer.
1386 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001387 if (directly)
1388 {
1389 expand_env(b0p->b0_fname, NameBuff, MAXPATHL);
1390 if (setfname(curbuf, NameBuff, NULL, TRUE) == FAIL)
1391 goto theend;
1392 }
1393
1394 home_replace(NULL, mfp->mf_fname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001395 smsg(_("Using swap file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001396
1397 if (buf_spname(curbuf) != NULL)
Bram Moolenaare1704ba2012-10-03 18:25:00 +02001398 vim_strncpy(NameBuff, buf_spname(curbuf), MAXPATHL - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001399 else
1400 home_replace(NULL, curbuf->b_ffname, NameBuff, MAXPATHL, TRUE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001401 smsg(_("Original file \"%s\""), NameBuff);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001402 msg_putchar('\n');
1403
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001404 /*
1405 * check date of swap file and original file
1406 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001407 mtime = char_to_long(b0p->b0_mtime);
1408 if (curbuf->b_ffname != NULL
1409 && mch_stat((char *)curbuf->b_ffname, &org_stat) != -1
1410 && ((mch_stat((char *)mfp->mf_fname, &swp_stat) != -1
1411 && org_stat.st_mtime > swp_stat.st_mtime)
1412 || org_stat.st_mtime != mtime))
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001413 emsg(_("E308: Warning: Original file may have been changed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001414 out_flush();
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001415
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001416 // Get the 'fileformat' and 'fileencoding' from block zero.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001417 b0_ff = (b0p->b0_flags & B0_FF_MASK);
1418 if (b0p->b0_flags & B0_HAS_FENC)
1419 {
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001420 int fnsize = B0_FNAME_SIZE_NOCRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001421
1422#ifdef FEAT_CRYPT
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001423 // Use the same size as in add_b0_fenc().
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001424 if (b0p->b0_id[1] != BLOCK0_ID1)
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001425 fnsize = B0_FNAME_SIZE_CRYPT;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001426#endif
Bram Moolenaarf506c5b2010-06-22 06:28:58 +02001427 for (p = b0p->b0_fname + fnsize; p > b0p->b0_fname && p[-1] != NUL; --p)
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001428 ;
Bram Moolenaar71ccd032020-06-12 22:59:11 +02001429 b0_fenc = vim_strnsave(p, b0p->b0_fname + fnsize - p);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001430 }
1431
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001432 mf_put(mfp, hp, FALSE, FALSE); // release block 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001433 hp = NULL;
1434
1435 /*
1436 * Now that we are sure that the file is going to be recovered, clear the
1437 * contents of the current buffer.
1438 */
1439 while (!(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001440 ml_delete((linenr_T)1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001441
1442 /*
1443 * Try reading the original file to obtain the values of 'fileformat',
1444 * 'fileencoding', etc. Ignore errors. The text itself is not used.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001445 * When the file is encrypted the user is asked to enter the key.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001446 */
1447 if (curbuf->b_ffname != NULL)
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001448 orig_file_status = readfile(curbuf->b_ffname, NULL, (linenr_T)0,
Bram Moolenaar071d4272004-06-13 20:20:40 +00001449 (linenr_T)0, (linenr_T)MAXLNUM, NULL, READ_NEW);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001450
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001451#ifdef FEAT_CRYPT
1452 if (b0_cm >= 0)
1453 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001454 // Need to ask the user for the crypt key. If this fails we continue
1455 // without a key, will probably get garbage text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001456 if (*curbuf->b_p_key != NUL)
1457 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001458 smsg(_("Swap file is encrypted: \"%s\""), fname_used);
Bram Moolenaar32526b32019-01-19 17:43:09 +01001459 msg_puts(_("\nIf you entered a new crypt key but did not write the text file,"));
1460 msg_puts(_("\nenter the new crypt key."));
1461 msg_puts(_("\nIf you wrote the text file after changing the crypt key press enter"));
1462 msg_puts(_("\nto use the same key for text file and swap file"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001463 }
1464 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001465 smsg(_(need_key_msg), fname_used);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02001466 buf->b_p_key = crypt_get_key(FALSE, FALSE);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001467 if (buf->b_p_key == NULL)
1468 buf->b_p_key = curbuf->b_p_key;
1469 else if (*buf->b_p_key == NUL)
1470 {
1471 vim_free(buf->b_p_key);
1472 buf->b_p_key = curbuf->b_p_key;
1473 }
1474 if (buf->b_p_key == NULL)
1475 buf->b_p_key = empty_option;
1476 }
1477#endif
1478
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001479 // Use the 'fileformat' and 'fileencoding' as stored in the swap file.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001480 if (b0_ff != 0)
1481 set_fileformat(b0_ff - 1, OPT_LOCAL);
1482 if (b0_fenc != NULL)
1483 {
1484 set_option_value((char_u *)"fenc", 0L, b0_fenc, OPT_LOCAL);
1485 vim_free(b0_fenc);
1486 }
Bram Moolenaarc024b462019-06-08 18:07:21 +02001487 unchanged(curbuf, TRUE, TRUE);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001488
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001489 bnum = 1; // start with block 1
1490 page_count = 1; // which is 1 page
1491 lnum = 0; // append after line 0 in curbuf
Bram Moolenaar071d4272004-06-13 20:20:40 +00001492 line_count = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001493 idx = 0; // start with first index in block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00001494 error = 0;
1495 buf->b_ml.ml_stack_top = 0;
1496 buf->b_ml.ml_stack = NULL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001497 buf->b_ml.ml_stack_size = 0; // no stack yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00001498
1499 if (curbuf->b_ffname == NULL)
1500 cannot_open = TRUE;
1501 else
1502 cannot_open = FALSE;
1503
1504 serious_error = FALSE;
1505 for ( ; !got_int; line_breakcheck())
1506 {
1507 if (hp != NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001508 mf_put(mfp, hp, FALSE, FALSE); // release previous block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001509
1510 /*
1511 * get block
1512 */
1513 if ((hp = mf_get(mfp, (blocknr_T)bnum, page_count)) == NULL)
1514 {
1515 if (bnum == 1)
1516 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001517 semsg(_("E309: Unable to read block 1 from %s"), mfp->mf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001518 goto theend;
1519 }
1520 ++error;
1521 ml_append(lnum++, (char_u *)_("???MANY LINES MISSING"),
1522 (colnr_T)0, TRUE);
1523 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001524 else // there is a block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001525 {
1526 pp = (PTR_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001527 if (pp->pb_id == PTR_ID) // it is a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001528 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001529 // check line count when using pointer block first time
Bram Moolenaar071d4272004-06-13 20:20:40 +00001530 if (idx == 0 && line_count != 0)
1531 {
1532 for (i = 0; i < (int)pp->pb_count; ++i)
1533 line_count -= pp->pb_pointer[i].pe_line_count;
1534 if (line_count != 0)
1535 {
1536 ++error;
1537 ml_append(lnum++, (char_u *)_("???LINE COUNT WRONG"),
1538 (colnr_T)0, TRUE);
1539 }
1540 }
1541
1542 if (pp->pb_count == 0)
1543 {
1544 ml_append(lnum++, (char_u *)_("???EMPTY BLOCK"),
1545 (colnr_T)0, TRUE);
1546 ++error;
1547 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001548 else if (idx < (int)pp->pb_count) // go a block deeper
Bram Moolenaar071d4272004-06-13 20:20:40 +00001549 {
1550 if (pp->pb_pointer[idx].pe_bnum < 0)
1551 {
1552 /*
1553 * Data block with negative block number.
1554 * Try to read lines from the original file.
1555 * This is slow, but it works.
1556 */
1557 if (!cannot_open)
1558 {
1559 line_count = pp->pb_pointer[idx].pe_line_count;
1560 if (readfile(curbuf->b_ffname, NULL, lnum,
1561 pp->pb_pointer[idx].pe_old_lnum - 1,
Bram Moolenaare13b9af2017-01-13 22:01:02 +01001562 line_count, NULL, 0) != OK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001563 cannot_open = TRUE;
1564 else
1565 lnum += line_count;
1566 }
1567 if (cannot_open)
1568 {
1569 ++error;
1570 ml_append(lnum++, (char_u *)_("???LINES MISSING"),
1571 (colnr_T)0, TRUE);
1572 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001573 ++idx; // get same block again for next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001574 continue;
1575 }
1576
1577 /*
1578 * going one block deeper in the tree
1579 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001580 if ((top = ml_add_stack(buf)) < 0) // new entry in stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00001581 {
1582 ++error;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001583 break; // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001584 }
1585 ip = &(buf->b_ml.ml_stack[top]);
1586 ip->ip_bnum = bnum;
1587 ip->ip_index = idx;
1588
1589 bnum = pp->pb_pointer[idx].pe_bnum;
1590 line_count = pp->pb_pointer[idx].pe_line_count;
1591 page_count = pp->pb_pointer[idx].pe_page_count;
Bram Moolenaar986a0032011-06-13 01:07:27 +02001592 idx = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001593 continue;
1594 }
1595 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001596 else // not a pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001597 {
1598 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001599 if (dp->db_id != DATA_ID) // block id wrong
Bram Moolenaar071d4272004-06-13 20:20:40 +00001600 {
1601 if (bnum == 1)
1602 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001603 semsg(_("E310: Block 1 ID wrong (%s not a .swp file?)"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00001604 mfp->mf_fname);
1605 goto theend;
1606 }
1607 ++error;
1608 ml_append(lnum++, (char_u *)_("???BLOCK MISSING"),
1609 (colnr_T)0, TRUE);
1610 }
1611 else
1612 {
1613 /*
1614 * it is a data block
1615 * Append all the lines in this block
1616 */
1617 has_error = FALSE;
1618 /*
1619 * check length of block
1620 * if wrong, use length in pointer block
1621 */
1622 if (page_count * mfp->mf_page_size != dp->db_txt_end)
1623 {
1624 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may be messed up"),
1625 (colnr_T)0, TRUE);
1626 ++error;
1627 has_error = TRUE;
1628 dp->db_txt_end = page_count * mfp->mf_page_size;
1629 }
1630
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001631 // make sure there is a NUL at the end of the block
Bram Moolenaar071d4272004-06-13 20:20:40 +00001632 *((char_u *)dp + dp->db_txt_end - 1) = NUL;
1633
1634 /*
1635 * check number of lines in block
1636 * if wrong, use count in data block
1637 */
1638 if (line_count != dp->db_line_count)
1639 {
1640 ml_append(lnum++, (char_u *)_("??? from here until ???END lines may have been inserted/deleted"),
1641 (colnr_T)0, TRUE);
1642 ++error;
1643 has_error = TRUE;
1644 }
1645
1646 for (i = 0; i < dp->db_line_count; ++i)
1647 {
1648 txt_start = (dp->db_index[i] & DB_INDEX_MASK);
Bram Moolenaar740885b2009-11-03 14:33:17 +00001649 if (txt_start <= (int)HEADER_SIZE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001650 || txt_start >= (int)dp->db_txt_end)
1651 {
1652 p = (char_u *)"???";
1653 ++error;
1654 }
1655 else
1656 p = (char_u *)dp + txt_start;
1657 ml_append(lnum++, p, (colnr_T)0, TRUE);
1658 }
1659 if (has_error)
Bram Moolenaar740885b2009-11-03 14:33:17 +00001660 ml_append(lnum++, (char_u *)_("???END"),
1661 (colnr_T)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001662 }
1663 }
1664 }
1665
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001666 if (buf->b_ml.ml_stack_top == 0) // finished
Bram Moolenaar071d4272004-06-13 20:20:40 +00001667 break;
1668
1669 /*
1670 * go one block up in the tree
1671 */
1672 ip = &(buf->b_ml.ml_stack[--(buf->b_ml.ml_stack_top)]);
1673 bnum = ip->ip_bnum;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001674 idx = ip->ip_index + 1; // go to next index
Bram Moolenaar071d4272004-06-13 20:20:40 +00001675 page_count = 1;
1676 }
1677
1678 /*
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001679 * Compare the buffer contents with the original file. When they differ
1680 * set the 'modified' flag.
1681 * Lines 1 - lnum are the new contents.
1682 * Lines lnum + 1 to ml_line_count are the original contents.
1683 * Line ml_line_count + 1 in the dummy empty line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001684 */
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001685 if (orig_file_status != OK || curbuf->b_ml.ml_line_count != lnum * 2 + 1)
1686 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001687 // Recovering an empty file results in two lines and the first line is
1688 // empty. Don't set the modified flag then.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001689 if (!(curbuf->b_ml.ml_line_count == 2 && *ml_get(1) == NUL))
1690 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001691 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001692 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001693 }
1694 }
1695 else
1696 {
1697 for (idx = 1; idx <= lnum; ++idx)
1698 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001699 // Need to copy one line, fetching the other one may flush it.
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001700 p = vim_strsave(ml_get(idx));
1701 i = STRCMP(p, ml_get(idx + lnum));
1702 vim_free(p);
1703 if (i != 0)
1704 {
Bram Moolenaarec28d152019-05-11 18:36:34 +02001705 changed_internal();
Bram Moolenaar95c526e2017-02-25 14:59:34 +01001706 ++CHANGEDTICK(curbuf);
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001707 break;
1708 }
1709 }
1710 }
1711
1712 /*
1713 * Delete the lines from the original file and the dummy line from the
1714 * empty buffer. These will now be after the last line in the buffer.
1715 */
1716 while (curbuf->b_ml.ml_line_count > lnum
1717 && !(curbuf->b_ml.ml_flags & ML_EMPTY))
Bram Moolenaarca70c072020-05-30 20:30:46 +02001718 ml_delete(curbuf->b_ml.ml_line_count);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001719 curbuf->b_flags |= BF_RECOVERED;
Bram Moolenaare3f50ad2021-06-09 12:33:40 +02001720 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001721
1722 recoverymode = FALSE;
1723 if (got_int)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001724 emsg(_("E311: Recovery Interrupted"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001725 else if (error)
1726 {
1727 ++no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001728 msg(">>>>>>>>>>>>>");
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01001729 emsg(_("E312: Errors detected while recovering; look for lines starting with ???"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001730 --no_wait_return;
Bram Moolenaar32526b32019-01-19 17:43:09 +01001731 msg(_("See \":help E312\" for more information."));
1732 msg(">>>>>>>>>>>>>");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001733 }
1734 else
1735 {
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001736 if (curbuf->b_changed)
1737 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001738 msg(_("Recovery completed. You should check if everything is OK."));
1739 msg_puts(_("\n(You might want to write out this file under another name\n"));
1740 msg_puts(_("and run diff with the original file to check for changes)"));
Bram Moolenaarfc2d5bd2010-05-15 17:06:53 +02001741 }
1742 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01001743 msg(_("Recovery completed. Buffer contents equals file contents."));
Bram Moolenaarf8835082020-11-09 21:04:17 +01001744 msg_puts(_("\nYou may want to delete the .swp file now."));
1745#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01001746 if (swapfile_process_running(b0p, fname_used))
Bram Moolenaarf8835082020-11-09 21:04:17 +01001747 {
1748 // Warn there could be an active Vim on the same file, the user may
1749 // want to kill it.
1750 msg_puts(_("\nNote: process STILL RUNNING: "));
1751 msg_outnum(char_to_long(b0p->b0_pid));
1752 }
1753#endif
1754 msg_puts("\n\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001755 cmdline_row = msg_row;
1756 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001757#ifdef FEAT_CRYPT
1758 if (*buf->b_p_key != NUL && STRCMP(curbuf->b_p_key, buf->b_p_key) != 0)
1759 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01001760 msg_puts(_("Using crypt key from swap file for the text file.\n"));
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001761 set_option_value((char_u *)"key", 0L, buf->b_p_key, OPT_LOCAL);
1762 }
1763#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001764 redraw_curbuf_later(NOT_VALID);
1765
1766theend:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001767 vim_free(fname_used);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001768 recoverymode = FALSE;
1769 if (mfp != NULL)
1770 {
1771 if (hp != NULL)
1772 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001773 mf_close(mfp, FALSE); // will also vim_free(mfp->mf_fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001774 }
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001775 if (buf != NULL)
1776 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001777#ifdef FEAT_CRYPT
1778 if (buf->b_p_key != curbuf->b_p_key)
1779 free_string_option(buf->b_p_key);
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02001780 free_string_option(buf->b_p_cm);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001781#endif
Bram Moolenaardf88dda2007-01-09 13:34:50 +00001782 vim_free(buf->b_ml.ml_stack);
1783 vim_free(buf);
1784 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001785 if (serious_error && called_from_main)
1786 ml_close(curbuf, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001787 else
1788 {
1789 apply_autocmds(EVENT_BUFREADPOST, NULL, curbuf->b_fname, FALSE, curbuf);
1790 apply_autocmds(EVENT_BUFWINENTER, NULL, curbuf->b_fname, FALSE, curbuf);
1791 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001792}
1793
1794/*
1795 * Find the names of swap files in current directory and the directory given
1796 * with the 'directory' option.
1797 *
1798 * Used to:
1799 * - list the swap files for "vim -r"
1800 * - count the number of swap files when recovering
1801 * - list the swap files when recovering
1802 * - find the name of the n'th swap file when recovering
1803 */
1804 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01001805recover_names(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001806 char_u *fname, // base for swap file name
1807 int list, // when TRUE, list the swap file names
1808 int nr, // when non-zero, return nr'th swap file name
1809 char_u **fname_out) // result when "nr" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00001810{
1811 int num_names;
1812 char_u *(names[6]);
1813 char_u *tail;
1814 char_u *p;
1815 int num_files;
1816 int file_count = 0;
1817 char_u **files;
1818 int i;
1819 char_u *dirp;
1820 char_u *dir_name;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001821 char_u *fname_res = NULL;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001822#ifdef HAVE_READLINK
1823 char_u fname_buf[MAXPATHL];
Bram Moolenaar64354da2010-05-25 21:37:17 +02001824#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001825
Bram Moolenaar64354da2010-05-25 21:37:17 +02001826 if (fname != NULL)
1827 {
1828#ifdef HAVE_READLINK
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001829 // Expand symlink in the file name, because the swap file is created
1830 // with the actual file instead of with the symlink.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001831 if (resolve_symlink(fname, fname_buf) == OK)
1832 fname_res = fname_buf;
1833 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001834#endif
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001835 fname_res = fname;
Bram Moolenaar64354da2010-05-25 21:37:17 +02001836 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00001837
1838 if (list)
1839 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001840 // use msg() to start the scrolling properly
Bram Moolenaar32526b32019-01-19 17:43:09 +01001841 msg(_("Swap files found:"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001842 msg_putchar('\n');
1843 }
1844
1845 /*
1846 * Do the loop for every directory in 'directory'.
1847 * First allocate some memory to put the directory name in.
1848 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02001849 dir_name = alloc(STRLEN(p_dir) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001850 dirp = p_dir;
1851 while (dir_name != NULL && *dirp)
1852 {
1853 /*
1854 * Isolate a directory name from *dirp and put it in dir_name (we know
1855 * it is large enough, so use 31000 for length).
1856 * Advance dirp to next directory name.
1857 */
1858 (void)copy_option_part(&dirp, dir_name, 31000, ",");
1859
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001860 if (dir_name[0] == '.' && dir_name[1] == NUL) // check current dir
Bram Moolenaar071d4272004-06-13 20:20:40 +00001861 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001862 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001863 {
1864#ifdef VMS
1865 names[0] = vim_strsave((char_u *)"*_sw%");
1866#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001867 names[0] = vim_strsave((char_u *)"*.sw?");
Bram Moolenaar071d4272004-06-13 20:20:40 +00001868#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001869#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001870 // For Unix names starting with a dot are special. MS-Windows
1871 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001872 names[1] = vim_strsave((char_u *)".*.sw?");
1873 names[2] = vim_strsave((char_u *)".sw?");
1874 num_names = 3;
1875#else
1876# ifdef VMS
1877 names[1] = vim_strsave((char_u *)".*_sw%");
1878 num_names = 2;
1879# else
1880 num_names = 1;
1881# endif
1882#endif
1883 }
1884 else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001885 num_names = recov_file_names(names, fname_res, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001886 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001887 else // check directory dir_name
Bram Moolenaar071d4272004-06-13 20:20:40 +00001888 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001889 if (fname == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001890 {
1891#ifdef VMS
1892 names[0] = concat_fnames(dir_name, (char_u *)"*_sw%", TRUE);
1893#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00001894 names[0] = concat_fnames(dir_name, (char_u *)"*.sw?", TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001895#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01001896#if defined(UNIX) || defined(MSWIN)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001897 // For Unix names starting with a dot are special. MS-Windows
1898 // supports this too, on some file systems.
Bram Moolenaar071d4272004-06-13 20:20:40 +00001899 names[1] = concat_fnames(dir_name, (char_u *)".*.sw?", TRUE);
1900 names[2] = concat_fnames(dir_name, (char_u *)".sw?", TRUE);
1901 num_names = 3;
1902#else
1903# ifdef VMS
1904 names[1] = concat_fnames(dir_name, (char_u *)".*_sw%", TRUE);
1905 num_names = 2;
1906# else
1907 num_names = 1;
1908# endif
1909#endif
1910 }
1911 else
1912 {
Bram Moolenaar4f974752019-02-17 17:44:42 +01001913#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01001914 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01001915
1916 p = dir_name + len;
1917 if (after_pathsep(dir_name, p) && len > 1 && p[-1] == p[-2])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001918 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01001919 // Ends with '//', Use Full path for swap name
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001920 tail = make_percent_swname(dir_name, fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001921 }
1922 else
1923#endif
1924 {
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001925 tail = gettail(fname_res);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001926 tail = concat_fnames(dir_name, tail, TRUE);
1927 }
1928 if (tail == NULL)
1929 num_names = 0;
1930 else
1931 {
1932 num_names = recov_file_names(names, tail, FALSE);
1933 vim_free(tail);
1934 }
1935 }
1936 }
1937
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02001938 // check for out-of-memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00001939 for (i = 0; i < num_names; ++i)
1940 {
1941 if (names[i] == NULL)
1942 {
1943 for (i = 0; i < num_names; ++i)
1944 vim_free(names[i]);
1945 num_names = 0;
1946 }
1947 }
1948 if (num_names == 0)
1949 num_files = 0;
1950 else if (expand_wildcards(num_names, names, &num_files, &files,
Bram Moolenaar99499b12019-05-23 21:35:48 +02001951 EW_NOTENV|EW_KEEPALL|EW_FILE|EW_SILENT) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001952 num_files = 0;
1953
1954 /*
1955 * When no swap file found, wildcard expansion might have failed (e.g.
1956 * not able to execute the shell).
1957 * Try finding a swap file by simply adding ".swp" to the file name.
1958 */
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02001959 if (*dirp == NUL && file_count + num_files == 0 && fname != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001960 {
Bram Moolenaar8767f522016-07-01 17:17:39 +02001961 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001962 char_u *swapname;
1963
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001964 swapname = modname(fname_res,
Bram Moolenaare60acc12011-05-10 16:41:25 +02001965#if defined(VMS)
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001966 (char_u *)"_swp", FALSE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001967#else
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001968 (char_u *)".swp", TRUE
Bram Moolenaar071d4272004-06-13 20:20:40 +00001969#endif
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02001970 );
Bram Moolenaar071d4272004-06-13 20:20:40 +00001971 if (swapname != NULL)
1972 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001973 if (mch_stat((char *)swapname, &st) != -1) // It exists!
Bram Moolenaar071d4272004-06-13 20:20:40 +00001974 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02001975 files = ALLOC_ONE(char_u *);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001976 if (files != NULL)
1977 {
1978 files[0] = swapname;
1979 swapname = NULL;
1980 num_files = 1;
1981 }
1982 }
1983 vim_free(swapname);
1984 }
1985 }
1986
1987 /*
1988 * remove swapfile name of the current buffer, it must be ignored
1989 */
1990 if (curbuf->b_ml.ml_mfp != NULL
1991 && (p = curbuf->b_ml.ml_mfp->mf_fname) != NULL)
1992 {
1993 for (i = 0; i < num_files; ++i)
Bram Moolenaar99499b12019-05-23 21:35:48 +02001994 // Do not expand wildcards, on windows would try to expand
1995 // "%tmp%" in "%tmp%file".
1996 if (fullpathcmp(p, files[i], TRUE, FALSE) & FPC_SAME)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001997 {
Bram Moolenaar99499b12019-05-23 21:35:48 +02001998 // Remove the name from files[i]. Move further entries
1999 // down. When the array becomes empty free it here, since
2000 // FreeWild() won't be called below.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002001 vim_free(files[i]);
Bram Moolenaar9439cdd2009-04-22 13:39:36 +00002002 if (--num_files == 0)
2003 vim_free(files);
2004 else
2005 for ( ; i < num_files; ++i)
2006 files[i] = files[i + 1];
Bram Moolenaar071d4272004-06-13 20:20:40 +00002007 }
2008 }
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002009 if (nr > 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002010 {
2011 file_count += num_files;
2012 if (nr <= file_count)
2013 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002014 *fname_out = vim_strsave(
2015 files[nr - 1 + num_files - file_count]);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002016 dirp = (char_u *)""; // stop searching
Bram Moolenaar071d4272004-06-13 20:20:40 +00002017 }
2018 }
2019 else if (list)
2020 {
2021 if (dir_name[0] == '.' && dir_name[1] == NUL)
2022 {
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002023 if (fname == NULL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002024 msg_puts(_(" In current directory:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002025 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002026 msg_puts(_(" Using specified name:\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002027 }
2028 else
2029 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002030 msg_puts(_(" In directory "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002031 msg_home_replace(dir_name);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002032 msg_puts(":\n");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002033 }
2034
2035 if (num_files)
2036 {
2037 for (i = 0; i < num_files; ++i)
2038 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002039 // print the swap file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00002040 msg_outnum((long)++file_count);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002041 msg_puts(". ");
2042 msg_puts((char *)gettail(files[i]));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002043 msg_putchar('\n');
2044 (void)swapfile_info(files[i]);
2045 }
2046 }
2047 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002048 msg_puts(_(" -- none --\n"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002049 out_flush();
2050 }
2051 else
2052 file_count += num_files;
2053
2054 for (i = 0; i < num_names; ++i)
2055 vim_free(names[i]);
Bram Moolenaarfc1421e2006-04-20 22:17:20 +00002056 if (num_files > 0)
2057 FreeWild(num_files, files);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002058 }
2059 vim_free(dir_name);
2060 return file_count;
2061}
2062
Bram Moolenaar4f974752019-02-17 17:44:42 +01002063#if defined(UNIX) || defined(MSWIN) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002064/*
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002065 * Need _very_ long file names.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002066 * Append the full path to name with path separators made into percent
2067 * signs, to dir. An unnamed buffer is handled as "" (<currentdir>/"")
2068 */
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002069 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002070make_percent_swname(char_u *dir, char_u *name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002071{
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002072 char_u *d = NULL, *s, *f;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002073
Bram Moolenaarb782ba42018-08-07 21:39:28 +02002074 f = fix_fname(name != NULL ? name : (char_u *)"");
Bram Moolenaar071d4272004-06-13 20:20:40 +00002075 if (f != NULL)
2076 {
Bram Moolenaar964b3742019-05-24 18:54:09 +02002077 s = alloc(STRLEN(f) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002078 if (s != NULL)
2079 {
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002080 STRCPY(s, f);
Bram Moolenaar91acfff2017-03-12 19:22:36 +01002081 for (d = s; *d != NUL; MB_PTR_ADV(d))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00002082 if (vim_ispathsep(*d))
2083 *d = '%';
Bram Moolenaar071d4272004-06-13 20:20:40 +00002084 d = concat_fnames(dir, s, TRUE);
2085 vim_free(s);
2086 }
2087 vim_free(f);
2088 }
2089 return d;
2090}
2091#endif
2092
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002093#if (defined(UNIX) || defined(VMS) || defined(MSWIN)) \
2094 && (defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG))
2095# define HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002096static int process_still_running;
2097#endif
2098
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002099#if defined(FEAT_EVAL) || defined(PROTO)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002100/*
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002101 * Return information found in swapfile "fname" in dictionary "d".
2102 * This is used by the swapinfo() function.
2103 */
2104 void
2105get_b0_dict(char_u *fname, dict_T *d)
2106{
2107 int fd;
2108 struct block0 b0;
2109
2110 if ((fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0)) >= 0)
2111 {
2112 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
2113 {
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002114 if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002115 dict_add_string(d, "error", (char_u *)"Not a swap file");
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002116 else if (b0_magic_wrong(&b0))
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002117 dict_add_string(d, "error", (char_u *)"Magic number mismatch");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002118 else
2119 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002120 // we have swap information
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002121 dict_add_string_len(d, "version", b0.b0_version, 10);
2122 dict_add_string_len(d, "user", b0.b0_uname, B0_UNAME_SIZE);
2123 dict_add_string_len(d, "host", b0.b0_hname, B0_HNAME_SIZE);
2124 dict_add_string_len(d, "fname", b0.b0_fname, B0_FNAME_SIZE_ORG);
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002125
2126 dict_add_number(d, "pid", char_to_long(b0.b0_pid));
2127 dict_add_number(d, "mtime", char_to_long(b0.b0_mtime));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002128 dict_add_number(d, "dirty", b0.b0_dirty ? 1 : 0);
2129# ifdef CHECK_INODE
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002130 dict_add_number(d, "inode", char_to_long(b0.b0_ino));
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002131# endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002132 }
2133 }
2134 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002135 dict_add_string(d, "error", (char_u *)"Cannot read file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002136 close(fd);
2137 }
2138 else
Bram Moolenaare6fdf792018-12-26 22:57:42 +01002139 dict_add_string(d, "error", (char_u *)"Cannot open file");
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002140}
Bram Moolenaar47ad5652018-08-21 21:09:07 +02002141#endif
Bram Moolenaar00f123a2018-08-21 20:28:54 +02002142
2143/*
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00002144 * Give information about an existing swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002145 * Returns timestamp (0 when unknown).
2146 */
2147 static time_t
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002148swapfile_info(char_u *fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002149{
Bram Moolenaar8767f522016-07-01 17:17:39 +02002150 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002151 int fd;
2152 struct block0 b0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002153#ifdef UNIX
2154 char_u uname[B0_UNAME_SIZE];
2155#endif
2156
Bram Moolenaar63d25552019-05-10 21:28:38 +02002157 // print the swap file date
Bram Moolenaar071d4272004-06-13 20:20:40 +00002158 if (mch_stat((char *)fname, &st) != -1)
2159 {
2160#ifdef UNIX
Bram Moolenaar63d25552019-05-10 21:28:38 +02002161 // print name of owner of the file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002162 if (mch_get_uname(st.st_uid, uname, B0_UNAME_SIZE) == OK)
2163 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002164 msg_puts(_(" owned by: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002165 msg_outtrans(uname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01002166 msg_puts(_(" dated: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002167 }
2168 else
2169#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002170 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02002171 msg_puts(get_ctime(st.st_mtime, TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002172 }
Bram Moolenaar63d25552019-05-10 21:28:38 +02002173 else
2174 st.st_mtime = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002175
2176 /*
2177 * print the original file name
2178 */
2179 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2180 if (fd >= 0)
2181 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01002182 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002183 {
2184 if (STRNCMP(b0.b0_version, "VIM 3.0", 7) == 0)
2185 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002186 msg_puts(_(" [from Vim version 3.0]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002187 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02002188 else if (ml_check_b0_id(&b0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002189 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002190 msg_puts(_(" [does not look like a Vim swap file]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002191 }
2192 else
2193 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002194 msg_puts(_(" file name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002195 if (b0.b0_fname[0] == NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002196 msg_puts(_("[No Name]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002197 else
2198 msg_outtrans(b0.b0_fname);
2199
Bram Moolenaar32526b32019-01-19 17:43:09 +01002200 msg_puts(_("\n modified: "));
2201 msg_puts(b0.b0_dirty ? _("YES") : _("no"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002202
2203 if (*(b0.b0_uname) != NUL)
2204 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002205 msg_puts(_("\n user name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002206 msg_outtrans(b0.b0_uname);
2207 }
2208
2209 if (*(b0.b0_hname) != NUL)
2210 {
2211 if (*(b0.b0_uname) != NUL)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002212 msg_puts(_(" host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002213 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002214 msg_puts(_("\n host name: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002215 msg_outtrans(b0.b0_hname);
2216 }
2217
2218 if (char_to_long(b0.b0_pid) != 0L)
2219 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002220 msg_puts(_("\n process ID: "));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002221 msg_outnum(char_to_long(b0.b0_pid));
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002222#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002223 if (swapfile_process_running(&b0, fname))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002224 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01002225 msg_puts(_(" (STILL RUNNING)"));
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02002226# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00002227 process_still_running = TRUE;
2228# endif
2229 }
2230#endif
2231 }
2232
2233 if (b0_magic_wrong(&b0))
2234 {
Bram Moolenaar48e330a2016-02-23 14:53:34 +01002235#if defined(MSWIN)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002236 if (STRNCMP(b0.b0_hname, "PC ", 3) == 0)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002237 msg_puts(_("\n [not usable with this version of Vim]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002238 else
2239#endif
Bram Moolenaar32526b32019-01-19 17:43:09 +01002240 msg_puts(_("\n [not usable on this computer]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002241 }
2242 }
2243 }
2244 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002245 msg_puts(_(" [cannot be read]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002246 close(fd);
2247 }
2248 else
Bram Moolenaar32526b32019-01-19 17:43:09 +01002249 msg_puts(_(" [cannot be opened]"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002250 msg_putchar('\n');
2251
Bram Moolenaar63d25552019-05-10 21:28:38 +02002252 return st.st_mtime;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002253}
2254
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002255/*
2256 * Return TRUE if the swap file looks OK and there are no changes, thus it can
2257 * be safely deleted.
2258 */
2259 static time_t
2260swapfile_unchanged(char_u *fname)
2261{
2262 stat_T st;
2263 int fd;
2264 struct block0 b0;
2265 int ret = TRUE;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002266
2267 // must be able to stat the swap file
2268 if (mch_stat((char *)fname, &st) == -1)
2269 return FALSE;
2270
2271 // must be able to read the first block
2272 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
2273 if (fd < 0)
2274 return FALSE;
2275 if (read_eintr(fd, &b0, sizeof(b0)) != sizeof(b0))
2276 {
2277 close(fd);
2278 return FALSE;
2279 }
2280
2281 // the ID and magic number must be correct
2282 if (ml_check_b0_id(&b0) == FAIL|| b0_magic_wrong(&b0))
2283 ret = FALSE;
2284
2285 // must be unchanged
2286 if (b0.b0_dirty)
2287 ret = FALSE;
2288
2289#if defined(UNIX) || defined(MSWIN)
Bram Moolenaarf8835082020-11-09 21:04:17 +01002290 // Host name must be known and must equal the current host name, otherwise
2291 // comparing pid is meaningless.
2292 if (*(b0.b0_hname) == NUL)
2293 {
2294 ret = FALSE;
2295 }
2296 else
2297 {
2298 char_u hostname[B0_HNAME_SIZE];
2299
2300 mch_get_host_name(hostname, B0_HNAME_SIZE);
2301 hostname[B0_HNAME_SIZE - 1] = NUL;
Bram Moolenaare79cdb62020-11-21 13:51:16 +01002302 b0.b0_hname[B0_HNAME_SIZE - 1] = NUL; // in case of corruption
Bram Moolenaarf8835082020-11-09 21:04:17 +01002303 if (STRICMP(b0.b0_hname, hostname) != 0)
2304 ret = FALSE;
2305 }
2306
Bram Moolenaar32aa1022019-11-02 22:54:41 +01002307 // process must be known and not be running
Bram Moolenaarf52f0602021-03-10 21:26:37 +01002308 if (char_to_long(b0.b0_pid) == 0L || swapfile_process_running(&b0, fname))
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002309 ret = FALSE;
2310#endif
2311
Bram Moolenaarf8835082020-11-09 21:04:17 +01002312 // We do not check the user, it should be irrelevant for whether the swap
2313 // file is still useful.
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02002314
2315 close(fd);
2316 return ret;
2317}
2318
Bram Moolenaar071d4272004-06-13 20:20:40 +00002319 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002320recov_file_names(char_u **names, char_u *path, int prepend_dot)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002321{
2322 int num_names;
2323
Bram Moolenaar071d4272004-06-13 20:20:40 +00002324 /*
2325 * (Win32 and Win64) never short names, but do prepend a dot.
2326 * (Not MS-DOS or Win32 or Win64) maybe short name, maybe not: Try both.
2327 * Only use the short name if it is different.
2328 */
2329 char_u *p;
2330 int i;
Bram Moolenaar4f974752019-02-17 17:44:42 +01002331# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002332 int shortname = curbuf->b_shortname;
2333
2334 curbuf->b_shortname = FALSE;
2335# endif
2336
2337 num_names = 0;
2338
2339 /*
2340 * May also add the file name with a dot prepended, for swap file in same
2341 * dir as original file.
2342 */
2343 if (prepend_dot)
2344 {
2345 names[num_names] = modname(path, (char_u *)".sw?", TRUE);
2346 if (names[num_names] == NULL)
2347 goto end;
2348 ++num_names;
2349 }
2350
2351 /*
2352 * Form the normal swap file name pattern by appending ".sw?".
2353 */
2354#ifdef VMS
2355 names[num_names] = concat_fnames(path, (char_u *)"_sw%", FALSE);
2356#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002357 names[num_names] = concat_fnames(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002358#endif
2359 if (names[num_names] == NULL)
2360 goto end;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002361 if (num_names >= 1) // check if we have the same name twice
Bram Moolenaar071d4272004-06-13 20:20:40 +00002362 {
2363 p = names[num_names - 1];
2364 i = (int)STRLEN(names[num_names - 1]) - (int)STRLEN(names[num_names]);
2365 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002366 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002367
2368 if (STRCMP(p, names[num_names]) != 0)
2369 ++num_names;
2370 else
2371 vim_free(names[num_names]);
2372 }
2373 else
2374 ++num_names;
2375
Bram Moolenaar4f974752019-02-17 17:44:42 +01002376# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002377 /*
2378 * Also try with 'shortname' set, in case the file is on a DOS filesystem.
2379 */
2380 curbuf->b_shortname = TRUE;
2381#ifdef VMS
2382 names[num_names] = modname(path, (char_u *)"_sw%", FALSE);
2383#else
Bram Moolenaar071d4272004-06-13 20:20:40 +00002384 names[num_names] = modname(path, (char_u *)".sw?", FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00002385#endif
2386 if (names[num_names] == NULL)
2387 goto end;
2388
2389 /*
2390 * Remove the one from 'shortname', if it's the same as with 'noshortname'.
2391 */
2392 p = names[num_names];
2393 i = STRLEN(names[num_names]) - STRLEN(names[num_names - 1]);
2394 if (i > 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002395 p += i; // file name has been expanded to full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00002396 if (STRCMP(names[num_names - 1], p) == 0)
2397 vim_free(names[num_names]);
2398 else
2399 ++num_names;
2400# endif
2401
2402end:
Bram Moolenaar4f974752019-02-17 17:44:42 +01002403# ifndef MSWIN
Bram Moolenaar071d4272004-06-13 20:20:40 +00002404 curbuf->b_shortname = shortname;
2405# endif
2406
Bram Moolenaar071d4272004-06-13 20:20:40 +00002407 return num_names;
2408}
2409
2410/*
2411 * sync all memlines
2412 *
2413 * If 'check_file' is TRUE, check if original file exists and was not changed.
2414 * If 'check_char' is TRUE, stop syncing when character becomes available, but
2415 * always sync at least one block.
2416 */
2417 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002418ml_sync_all(int check_file, int check_char)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002419{
2420 buf_T *buf;
Bram Moolenaar8767f522016-07-01 17:17:39 +02002421 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002422
Bram Moolenaar29323592016-07-24 22:04:11 +02002423 FOR_ALL_BUFFERS(buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002424 {
Christian Brabandtf573c6e2021-06-20 14:02:16 +02002425 if (buf->b_ml.ml_mfp == NULL
2426 || buf->b_ml.ml_mfp->mf_fname == NULL
2427 || buf->b_ml.ml_mfp->mf_fd < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002428 continue; // no file
Bram Moolenaar071d4272004-06-13 20:20:40 +00002429
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002430 ml_flush_line(buf); // flush buffered line
2431 // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002432 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH);
2433 if (bufIsChanged(buf) && check_file && mf_need_trans(buf->b_ml.ml_mfp)
2434 && buf->b_ffname != NULL)
2435 {
2436 /*
2437 * If the original file does not exist anymore or has been changed
2438 * call ml_preserve() to get rid of all negative numbered blocks.
2439 */
2440 if (mch_stat((char *)buf->b_ffname, &st) == -1
2441 || st.st_mtime != buf->b_mtime_read
Leah Neukirchen0a7984a2021-10-14 21:27:55 +01002442#ifdef ST_MTIM_NSEC
2443 || st.ST_MTIM_NSEC != buf->b_mtime_read_ns
2444#endif
Bram Moolenaar914703b2010-05-31 21:59:46 +02002445 || st.st_size != buf->b_orig_size)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002446 {
2447 ml_preserve(buf, FALSE);
2448 did_check_timestamps = FALSE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002449 need_check_timestamps = TRUE; // give message later
Bram Moolenaar071d4272004-06-13 20:20:40 +00002450 }
2451 }
2452 if (buf->b_ml.ml_mfp->mf_dirty)
2453 {
2454 (void)mf_sync(buf->b_ml.ml_mfp, (check_char ? MFS_STOP : 0)
2455 | (bufIsChanged(buf) ? MFS_FLUSH : 0));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002456 if (check_char && ui_char_avail()) // character available now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002457 break;
2458 }
2459 }
2460}
2461
2462/*
2463 * sync one buffer, including negative blocks
2464 *
2465 * after this all the blocks are in the swap file
2466 *
2467 * Used for the :preserve command and when the original file has been
2468 * changed or deleted.
2469 *
2470 * when message is TRUE the success of preserving is reported
2471 */
2472 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002473ml_preserve(buf_T *buf, int message)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002474{
2475 bhdr_T *hp;
2476 linenr_T lnum;
2477 memfile_T *mfp = buf->b_ml.ml_mfp;
2478 int status;
2479 int got_int_save = got_int;
2480
2481 if (mfp == NULL || mfp->mf_fname == NULL)
2482 {
2483 if (message)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002484 emsg(_("E313: Cannot preserve, there is no swap file"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002485 return;
2486 }
2487
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002488 // We only want to stop when interrupted here, not when interrupted
2489 // before.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002490 got_int = FALSE;
2491
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002492 ml_flush_line(buf); // flush buffered line
2493 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002494 status = mf_sync(mfp, MFS_ALL | MFS_FLUSH);
2495
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002496 // stack is invalid after mf_sync(.., MFS_ALL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002497 buf->b_ml.ml_stack_top = 0;
2498
2499 /*
2500 * Some of the data blocks may have been changed from negative to
2501 * positive block number. In that case the pointer blocks need to be
2502 * updated.
2503 *
2504 * We don't know in which pointer block the references are, so we visit
2505 * all data blocks until there are no more translations to be done (or
2506 * we hit the end of the file, which can only happen in case a write fails,
2507 * e.g. when file system if full).
2508 * ml_find_line() does the work by translating the negative block numbers
2509 * when getting the first line of each data block.
2510 */
2511 if (mf_need_trans(mfp) && !got_int)
2512 {
2513 lnum = 1;
2514 while (mf_need_trans(mfp) && lnum <= buf->b_ml.ml_line_count)
2515 {
2516 hp = ml_find_line(buf, lnum, ML_FIND);
2517 if (hp == NULL)
2518 {
2519 status = FAIL;
2520 goto theend;
2521 }
2522 CHECK(buf->b_ml.ml_locked_low != lnum, "low != lnum");
2523 lnum = buf->b_ml.ml_locked_high + 1;
2524 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002525 (void)ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush locked block
2526 // sync the updated pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002527 if (mf_sync(mfp, MFS_ALL | MFS_FLUSH) == FAIL)
2528 status = FAIL;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002529 buf->b_ml.ml_stack_top = 0; // stack is invalid now
Bram Moolenaar071d4272004-06-13 20:20:40 +00002530 }
2531theend:
2532 got_int |= got_int_save;
2533
2534 if (message)
2535 {
2536 if (status == OK)
Bram Moolenaar32526b32019-01-19 17:43:09 +01002537 msg(_("File preserved"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002538 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002539 emsg(_("E314: Preserve failed"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00002540 }
2541}
2542
2543/*
2544 * NOTE: The pointer returned by the ml_get_*() functions only remains valid
2545 * until the next call!
2546 * line1 = ml_get(1);
2547 * line2 = ml_get(2); // line1 is now invalid!
2548 * Make a copy of the line if necessary.
2549 */
2550/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002551 * Return a pointer to a (read-only copy of a) line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002552 *
2553 * On failure an error message is given and IObuff is returned (to avoid
2554 * having to check for error everywhere).
2555 */
2556 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002557ml_get(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002558{
2559 return ml_get_buf(curbuf, lnum, FALSE);
2560}
2561
2562/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002563 * Return pointer to position "pos".
Bram Moolenaar071d4272004-06-13 20:20:40 +00002564 */
2565 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002566ml_get_pos(pos_T *pos)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002567{
2568 return (ml_get_buf(curbuf, pos->lnum, FALSE) + pos->col);
2569}
2570
2571/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002572 * Return pointer to cursor line.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002573 */
2574 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002575ml_get_curline(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002576{
2577 return ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE);
2578}
2579
2580/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002581 * Return pointer to cursor position.
Bram Moolenaar071d4272004-06-13 20:20:40 +00002582 */
2583 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002584ml_get_cursor(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002585{
2586 return (ml_get_buf(curbuf, curwin->w_cursor.lnum, FALSE) +
2587 curwin->w_cursor.col);
2588}
2589
2590/*
Bram Moolenaar2e2e13c2010-12-08 13:17:03 +01002591 * Return a pointer to a line in a specific buffer
Bram Moolenaar071d4272004-06-13 20:20:40 +00002592 *
2593 * "will_change": if TRUE mark the buffer dirty (chars in the line will be
2594 * changed)
2595 */
2596 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002597ml_get_buf(
2598 buf_T *buf,
2599 linenr_T lnum,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002600 int will_change) // line will be changed
Bram Moolenaar071d4272004-06-13 20:20:40 +00002601{
Bram Moolenaarad40f022007-02-13 03:01:39 +00002602 bhdr_T *hp;
2603 DATA_BL *dp;
Bram Moolenaarad40f022007-02-13 03:01:39 +00002604 static int recursive = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002605
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002606 if (lnum > buf->b_ml.ml_line_count) // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00002607 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002608 if (recursive == 0)
2609 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002610 // Avoid giving this message for a recursive call, may happen when
2611 // the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002612 ++recursive;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01002613 siemsg(_("E315: ml_get: invalid lnum: %ld"), lnum);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002614 --recursive;
2615 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002616errorret:
2617 STRCPY(IObuff, "???");
Bram Moolenaaradfde112019-05-25 22:11:45 +02002618 buf->b_ml.ml_line_len = 4;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002619 return IObuff;
2620 }
Bram Moolenaaradfde112019-05-25 22:11:45 +02002621 if (lnum <= 0) // pretend line 0 is line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00002622 lnum = 1;
2623
Bram Moolenaaradfde112019-05-25 22:11:45 +02002624 if (buf->b_ml.ml_mfp == NULL) // there are no lines
2625 {
2626 buf->b_ml.ml_line_len = 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002627 return (char_u *)"";
Bram Moolenaaradfde112019-05-25 22:11:45 +02002628 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002629
Bram Moolenaar37d619f2010-03-10 14:46:26 +01002630 /*
2631 * See if it is the same line as requested last time.
2632 * Otherwise may need to flush last used line.
2633 * Don't use the last used line when 'swapfile' is reset, need to load all
2634 * blocks.
2635 */
Bram Moolenaar47b8b152007-02-07 02:41:57 +00002636 if (buf->b_ml.ml_line_lnum != lnum || mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002637 {
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002638 unsigned start, end;
2639 colnr_T len;
2640 int idx;
2641
Bram Moolenaar071d4272004-06-13 20:20:40 +00002642 ml_flush_line(buf);
2643
2644 /*
2645 * Find the data block containing the line.
2646 * This also fills the stack with the blocks from the root to the data
2647 * block and releases any locked block.
2648 */
2649 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
2650 {
Bram Moolenaarad40f022007-02-13 03:01:39 +00002651 if (recursive == 0)
2652 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002653 // Avoid giving this message for a recursive call, may happen
2654 // when the GUI redraws part of the text.
Bram Moolenaarad40f022007-02-13 03:01:39 +00002655 ++recursive;
Bram Moolenaarcb868932019-10-26 20:56:21 +02002656 get_trans_bufname(buf);
2657 shorten_dir(NameBuff);
2658 siemsg(_("E316: ml_get: cannot find line %ld in buffer %d %s"),
2659 lnum, buf->b_fnum, NameBuff);
Bram Moolenaarad40f022007-02-13 03:01:39 +00002660 --recursive;
2661 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00002662 goto errorret;
2663 }
2664
2665 dp = (DATA_BL *)(hp->bh_data);
2666
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002667 idx = lnum - buf->b_ml.ml_locked_low;
2668 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
2669 // The text ends where the previous line starts. The first line ends
2670 // at the end of the block.
2671 if (idx == 0)
2672 end = dp->db_txt_end;
2673 else
2674 end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
2675 len = end - start;
2676
2677 buf->b_ml.ml_line_ptr = (char_u *)dp + start;
2678 buf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002679 buf->b_ml.ml_line_lnum = lnum;
2680 buf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
2681 }
2682 if (will_change)
2683 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
2684
2685 return buf->b_ml.ml_line_ptr;
2686}
2687
2688/*
2689 * Check if a line that was just obtained by a call to ml_get
2690 * is in allocated memory.
2691 */
2692 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002693ml_line_alloced(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002694{
2695 return (curbuf->b_ml.ml_flags & ML_LINE_DIRTY);
2696}
2697
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002698#ifdef FEAT_PROP_POPUP
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002699/*
2700 * Add text properties that continue from the previous line.
2701 */
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002702 static void
2703add_text_props_for_append(
2704 buf_T *buf,
2705 linenr_T lnum,
2706 char_u **line,
2707 int *len,
2708 char_u **tofree)
2709{
2710 int round;
2711 int new_prop_count = 0;
2712 int count;
2713 int n;
2714 char_u *props;
Bram Moolenaarea781452019-09-04 18:53:12 +02002715 int new_len = 0; // init for gcc
Bram Moolenaar8f13d822020-09-12 21:04:23 +02002716 char_u *new_line = NULL;
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002717 textprop_T prop;
2718
2719 // Make two rounds:
2720 // 1. calculate the extra space needed
2721 // 2. allocate the space and fill it
2722 for (round = 1; round <= 2; ++round)
2723 {
2724 if (round == 2)
2725 {
2726 if (new_prop_count == 0)
2727 return; // nothing to do
2728 new_len = *len + new_prop_count * sizeof(textprop_T);
Bram Moolenaar964b3742019-05-24 18:54:09 +02002729 new_line = alloc(new_len);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002730 if (new_line == NULL)
2731 return;
2732 mch_memmove(new_line, *line, *len);
2733 new_prop_count = 0;
2734 }
2735
2736 // Get the line above to find any props that continue in the next
2737 // line.
2738 count = get_text_props(buf, lnum, &props, FALSE);
2739 for (n = 0; n < count; ++n)
2740 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002741 mch_memmove(&prop, props + n * sizeof(textprop_T),
2742 sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002743 if (prop.tp_flags & TP_FLAG_CONT_NEXT)
2744 {
2745 if (round == 2)
2746 {
2747 prop.tp_flags |= TP_FLAG_CONT_PREV;
2748 prop.tp_col = 1;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002749 prop.tp_len = *len; // not exactly the right length
2750 mch_memmove(new_line + *len + new_prop_count
2751 * sizeof(textprop_T), &prop, sizeof(textprop_T));
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002752 }
2753 ++new_prop_count;
2754 }
2755 }
2756 }
2757 *line = new_line;
2758 *tofree = new_line;
2759 *len = new_len;
2760}
2761#endif
2762
Bram Moolenaar071d4272004-06-13 20:20:40 +00002763 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01002764ml_append_int(
2765 buf_T *buf,
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002766 linenr_T lnum, // append after this line (can be 0)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002767 char_u *line_arg, // text of the new line
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002768 colnr_T len_arg, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002769 int flags) // ML_APPEND_ flags
Bram Moolenaar071d4272004-06-13 20:20:40 +00002770{
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002771 char_u *line = line_arg;
2772 colnr_T len = len_arg;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002773 int i;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002774 int line_count; // number of indexes in current block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002775 int offset;
2776 int from, to;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002777 int space_needed; // space needed for new line
Bram Moolenaar071d4272004-06-13 20:20:40 +00002778 int page_size;
2779 int page_count;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002780 int db_idx; // index for lnum in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002781 bhdr_T *hp;
2782 memfile_T *mfp;
2783 DATA_BL *dp;
2784 PTR_BL *pp;
2785 infoptr_T *ip;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002786#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002787 char_u *tofree = NULL;
2788#endif
2789 int ret = FAIL;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002790
Bram Moolenaar071d4272004-06-13 20:20:40 +00002791 if (lnum > buf->b_ml.ml_line_count || buf->b_ml.ml_mfp == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002792 return FAIL; // lnum out of range
Bram Moolenaar071d4272004-06-13 20:20:40 +00002793
2794 if (lowest_marked && lowest_marked > lnum)
2795 lowest_marked = lnum + 1;
2796
2797 if (len == 0)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002798 len = (colnr_T)STRLEN(line) + 1; // space needed for the text
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002799
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01002800#ifdef FEAT_PROP_POPUP
Bram Moolenaar840f91f2021-05-26 22:32:10 +02002801 if (curbuf->b_has_textprop && lnum > 0
2802 && !(flags & (ML_APPEND_UNDO | ML_APPEND_NOPROP)))
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002803 // Add text properties that continue from the previous line.
2804 add_text_props_for_append(buf, lnum, &line, &len, &tofree);
2805#endif
2806
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002807 space_needed = len + INDEX_SIZE; // space needed for text + index
Bram Moolenaar071d4272004-06-13 20:20:40 +00002808
2809 mfp = buf->b_ml.ml_mfp;
2810 page_size = mfp->mf_page_size;
2811
2812/*
2813 * find the data block containing the previous line
2814 * This also fills the stack with the blocks from the root to the data block
2815 * This also releases any locked block.
2816 */
2817 if ((hp = ml_find_line(buf, lnum == 0 ? (linenr_T)1 : lnum,
2818 ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002819 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002820
2821 buf->b_ml.ml_flags &= ~ML_EMPTY;
2822
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002823 if (lnum == 0) // got line one instead, correct db_idx
2824 db_idx = -1; // careful, it is negative!
Bram Moolenaar071d4272004-06-13 20:20:40 +00002825 else
2826 db_idx = lnum - buf->b_ml.ml_locked_low;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002827 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002828 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2829
2830 dp = (DATA_BL *)(hp->bh_data);
2831
2832/*
2833 * If
2834 * - there is not enough room in the current block
2835 * - appending to the last line in the block
2836 * - not appending to the last line in the file
2837 * insert in front of the next block.
2838 */
2839 if ((int)dp->db_free < space_needed && db_idx == line_count - 1
2840 && lnum < buf->b_ml.ml_line_count)
2841 {
2842 /*
2843 * Now that the line is not going to be inserted in the block that we
2844 * expected, the line count has to be adjusted in the pointer blocks
2845 * by using ml_locked_lineadd.
2846 */
2847 --(buf->b_ml.ml_locked_lineadd);
2848 --(buf->b_ml.ml_locked_high);
2849 if ((hp = ml_find_line(buf, lnum + 1, ML_INSERT)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002850 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002851
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002852 db_idx = -1; // careful, it is negative!
2853 // get line count before the insertion
Bram Moolenaar071d4272004-06-13 20:20:40 +00002854 line_count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low;
2855 CHECK(buf->b_ml.ml_locked_low != lnum + 1, "locked_low != lnum + 1");
2856
2857 dp = (DATA_BL *)(hp->bh_data);
2858 }
2859
2860 ++buf->b_ml.ml_line_count;
2861
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002862 if ((int)dp->db_free >= space_needed) // enough room in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002863 {
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002864 /*
2865 * Insert the new line in an existing data block, or in the data block
2866 * allocated above.
2867 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00002868 dp->db_txt_start -= len;
2869 dp->db_free -= space_needed;
2870 ++(dp->db_line_count);
2871
2872 /*
2873 * move the text of the lines that follow to the front
2874 * adjust the indexes of the lines that follow
2875 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002876 if (line_count > db_idx + 1) // if there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00002877 {
2878 /*
2879 * Offset is the start of the previous line.
2880 * This will become the character just after the new line.
2881 */
2882 if (db_idx < 0)
2883 offset = dp->db_txt_end;
2884 else
2885 offset = ((dp->db_index[db_idx]) & DB_INDEX_MASK);
2886 mch_memmove((char *)dp + dp->db_txt_start,
2887 (char *)dp + dp->db_txt_start + len,
2888 (size_t)(offset - (dp->db_txt_start + len)));
2889 for (i = line_count - 1; i > db_idx; --i)
2890 dp->db_index[i + 1] = dp->db_index[i] - len;
2891 dp->db_index[db_idx + 1] = offset - len;
2892 }
Bram Moolenaar98aefe72018-12-13 22:20:09 +01002893 else
2894 // add line at the end (which is the start of the text)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002895 dp->db_index[db_idx + 1] = dp->db_txt_start;
2896
2897 /*
2898 * copy the text into the block
2899 */
2900 mch_memmove((char *)dp + dp->db_index[db_idx + 1], line, (size_t)len);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002901 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002902 dp->db_index[db_idx + 1] |= DB_MARKED;
2903
2904 /*
2905 * Mark the block dirty.
2906 */
2907 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002908 if (!(flags & ML_APPEND_NEW))
Bram Moolenaar071d4272004-06-13 20:20:40 +00002909 buf->b_ml.ml_flags |= ML_LOCKED_POS;
2910 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002911 else // not enough space in data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002912 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00002913 long line_count_left, line_count_right;
2914 int page_count_left, page_count_right;
2915 bhdr_T *hp_left;
2916 bhdr_T *hp_right;
2917 bhdr_T *hp_new;
2918 int lines_moved;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002919 int data_moved = 0; // init to shut up gcc
2920 int total_moved = 0; // init to shut up gcc
Bram Moolenaar071d4272004-06-13 20:20:40 +00002921 DATA_BL *dp_right, *dp_left;
2922 int stack_idx;
2923 int in_left;
2924 int lineadd;
2925 blocknr_T bnum_left, bnum_right;
2926 linenr_T lnum_left, lnum_right;
2927 int pb_idx;
2928 PTR_BL *pp_new;
2929
2930 /*
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002931 * There is not enough room, we have to create a new data block and
2932 * copy some lines into it.
2933 * Then we have to insert an entry in the pointer block.
2934 * If this pointer block also is full, we go up another block, and so
2935 * on, up to the root if necessary.
2936 * The line counts in the pointer blocks have already been adjusted by
2937 * ml_find_line().
2938 *
Bram Moolenaar071d4272004-06-13 20:20:40 +00002939 * We are going to allocate a new data block. Depending on the
2940 * situation it will be put to the left or right of the existing
2941 * block. If possible we put the new line in the left block and move
2942 * the lines after it to the right block. Otherwise the new line is
2943 * also put in the right block. This method is more efficient when
2944 * inserting a lot of lines at one place.
2945 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002946 if (db_idx < 0) // left block is new, right block is existing
Bram Moolenaar071d4272004-06-13 20:20:40 +00002947 {
2948 lines_moved = 0;
2949 in_left = TRUE;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002950 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002951 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002952 else // left block is existing, right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002953 {
2954 lines_moved = line_count - db_idx - 1;
2955 if (lines_moved == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002956 in_left = FALSE; // put new line in right block
2957 // space_needed does not change
Bram Moolenaar071d4272004-06-13 20:20:40 +00002958 else
2959 {
2960 data_moved = ((dp->db_index[db_idx]) & DB_INDEX_MASK) -
2961 dp->db_txt_start;
2962 total_moved = data_moved + lines_moved * INDEX_SIZE;
2963 if ((int)dp->db_free + total_moved >= space_needed)
2964 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002965 in_left = TRUE; // put new line in left block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002966 space_needed = total_moved;
2967 }
2968 else
2969 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002970 in_left = FALSE; // put new line in right block
Bram Moolenaar071d4272004-06-13 20:20:40 +00002971 space_needed += total_moved;
2972 }
2973 }
2974 }
2975
2976 page_count = ((space_needed + HEADER_SIZE) + page_size - 1) / page_size;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02002977 if ((hp_new = ml_new_data(mfp, flags & ML_APPEND_NEW, page_count))
2978 == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00002979 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002980 // correct line counts in pointer blocks
Bram Moolenaar071d4272004-06-13 20:20:40 +00002981 --(buf->b_ml.ml_locked_lineadd);
2982 --(buf->b_ml.ml_locked_high);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01002983 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00002984 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002985 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002986 {
2987 hp_left = hp_new;
2988 hp_right = hp;
2989 line_count_left = 0;
2990 line_count_right = line_count;
2991 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01002992 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00002993 {
2994 hp_left = hp;
2995 hp_right = hp_new;
2996 line_count_left = line_count;
2997 line_count_right = 0;
2998 }
2999 dp_right = (DATA_BL *)(hp_right->bh_data);
3000 dp_left = (DATA_BL *)(hp_left->bh_data);
3001 bnum_left = hp_left->bh_bnum;
3002 bnum_right = hp_right->bh_bnum;
3003 page_count_left = hp_left->bh_page_count;
3004 page_count_right = hp_right->bh_page_count;
3005
3006 /*
3007 * May move the new line into the right/new block.
3008 */
3009 if (!in_left)
3010 {
3011 dp_right->db_txt_start -= len;
3012 dp_right->db_free -= len + INDEX_SIZE;
3013 dp_right->db_index[0] = dp_right->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003014 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003015 dp_right->db_index[0] |= DB_MARKED;
3016
3017 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3018 line, (size_t)len);
3019 ++line_count_right;
3020 }
3021 /*
3022 * may move lines from the left/old block to the right/new one.
3023 */
3024 if (lines_moved)
3025 {
3026 /*
3027 */
3028 dp_right->db_txt_start -= data_moved;
3029 dp_right->db_free -= total_moved;
3030 mch_memmove((char *)dp_right + dp_right->db_txt_start,
3031 (char *)dp_left + dp_left->db_txt_start,
3032 (size_t)data_moved);
3033 offset = dp_right->db_txt_start - dp_left->db_txt_start;
3034 dp_left->db_txt_start += data_moved;
3035 dp_left->db_free += total_moved;
3036
3037 /*
3038 * update indexes in the new block
3039 */
3040 for (to = line_count_right, from = db_idx + 1;
3041 from < line_count_left; ++from, ++to)
3042 dp_right->db_index[to] = dp->db_index[from] + offset;
3043 line_count_right += lines_moved;
3044 line_count_left -= lines_moved;
3045 }
3046
3047 /*
3048 * May move the new line into the left (old or new) block.
3049 */
3050 if (in_left)
3051 {
3052 dp_left->db_txt_start -= len;
3053 dp_left->db_free -= len + INDEX_SIZE;
3054 dp_left->db_index[line_count_left] = dp_left->db_txt_start;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003055 if (flags & ML_APPEND_MARK)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003056 dp_left->db_index[line_count_left] |= DB_MARKED;
3057 mch_memmove((char *)dp_left + dp_left->db_txt_start,
3058 line, (size_t)len);
3059 ++line_count_left;
3060 }
3061
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003062 if (db_idx < 0) // left block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003063 {
3064 lnum_left = lnum + 1;
3065 lnum_right = 0;
3066 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003067 else // right block is new
Bram Moolenaar071d4272004-06-13 20:20:40 +00003068 {
3069 lnum_left = 0;
3070 if (in_left)
3071 lnum_right = lnum + 2;
3072 else
3073 lnum_right = lnum + 1;
3074 }
3075 dp_left->db_line_count = line_count_left;
3076 dp_right->db_line_count = line_count_right;
3077
3078 /*
3079 * release the two data blocks
3080 * The new one (hp_new) already has a correct blocknumber.
3081 * The old one (hp, in ml_locked) gets a positive blocknumber if
3082 * we changed it and we are not editing a new file.
3083 */
3084 if (lines_moved || in_left)
3085 buf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003086 if (!(flags & ML_APPEND_NEW) && db_idx >= 0 && in_left)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003087 buf->b_ml.ml_flags |= ML_LOCKED_POS;
3088 mf_put(mfp, hp_new, TRUE, FALSE);
3089
3090 /*
3091 * flush the old data block
3092 * set ml_locked_lineadd to 0, because the updating of the
3093 * pointer blocks is done below
3094 */
3095 lineadd = buf->b_ml.ml_locked_lineadd;
3096 buf->b_ml.ml_locked_lineadd = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003097 ml_find_line(buf, (linenr_T)0, ML_FLUSH); // flush data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003098
3099 /*
3100 * update pointer blocks for the new data block
3101 */
3102 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3103 --stack_idx)
3104 {
3105 ip = &(buf->b_ml.ml_stack[stack_idx]);
3106 pb_idx = ip->ip_index;
3107 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003108 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003109 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003110 if (pp->pb_id != PTR_ID)
3111 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003112 iemsg(_("E317: pointer block id wrong 3"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003113 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003114 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003115 }
3116 /*
3117 * TODO: If the pointer block is full and we are adding at the end
3118 * try to insert in front of the next block
3119 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003120 // block not full, add one entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00003121 if (pp->pb_count < pp->pb_count_max)
3122 {
3123 if (pb_idx + 1 < (int)pp->pb_count)
3124 mch_memmove(&pp->pb_pointer[pb_idx + 2],
3125 &pp->pb_pointer[pb_idx + 1],
3126 (size_t)(pp->pb_count - pb_idx - 1) * sizeof(PTR_EN));
3127 ++pp->pb_count;
3128 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3129 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3130 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3131 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3132 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3133 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3134
3135 if (lnum_left != 0)
3136 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3137 if (lnum_right != 0)
3138 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3139
3140 mf_put(mfp, hp, TRUE, FALSE);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003141 buf->b_ml.ml_stack_top = stack_idx + 1; // truncate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003142
3143 if (lineadd)
3144 {
3145 --(buf->b_ml.ml_stack_top);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003146 // fix line count for rest of blocks in the stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003147 ml_lineadd(buf, lineadd);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003148 // fix stack itself
Bram Moolenaar071d4272004-06-13 20:20:40 +00003149 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
3150 lineadd;
3151 ++(buf->b_ml.ml_stack_top);
3152 }
3153
3154 /*
3155 * We are finished, break the loop here.
3156 */
3157 break;
3158 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003159 else // pointer block full
Bram Moolenaar071d4272004-06-13 20:20:40 +00003160 {
3161 /*
3162 * split the pointer block
3163 * allocate a new pointer block
3164 * move some of the pointer into the new block
3165 * prepare for updating the parent block
3166 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003167 for (;;) // do this twice when splitting block 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00003168 {
3169 hp_new = ml_new_ptr(mfp);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003170 if (hp_new == NULL) // TODO: try to fix tree
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003171 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003172 pp_new = (PTR_BL *)(hp_new->bh_data);
3173
3174 if (hp->bh_bnum != 1)
3175 break;
3176
3177 /*
3178 * if block 1 becomes full the tree is given an extra level
3179 * The pointers from block 1 are moved into the new block.
3180 * block 1 is updated to point to the new block
3181 * then continue to split the new block
3182 */
3183 mch_memmove(pp_new, pp, (size_t)page_size);
3184 pp->pb_count = 1;
3185 pp->pb_pointer[0].pe_bnum = hp_new->bh_bnum;
3186 pp->pb_pointer[0].pe_line_count = buf->b_ml.ml_line_count;
3187 pp->pb_pointer[0].pe_old_lnum = 1;
3188 pp->pb_pointer[0].pe_page_count = 1;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003189 mf_put(mfp, hp, TRUE, FALSE); // release block 1
3190 hp = hp_new; // new block is to be split
Bram Moolenaar071d4272004-06-13 20:20:40 +00003191 pp = pp_new;
3192 CHECK(stack_idx != 0, _("stack_idx should be 0"));
3193 ip->ip_index = 0;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003194 ++stack_idx; // do block 1 again later
Bram Moolenaar071d4272004-06-13 20:20:40 +00003195 }
3196 /*
3197 * move the pointers after the current one to the new block
3198 * If there are none, the new entry will be in the new block.
3199 */
3200 total_moved = pp->pb_count - pb_idx - 1;
3201 if (total_moved)
3202 {
3203 mch_memmove(&pp_new->pb_pointer[0],
3204 &pp->pb_pointer[pb_idx + 1],
3205 (size_t)(total_moved) * sizeof(PTR_EN));
3206 pp_new->pb_count = total_moved;
3207 pp->pb_count -= total_moved - 1;
3208 pp->pb_pointer[pb_idx + 1].pe_bnum = bnum_right;
3209 pp->pb_pointer[pb_idx + 1].pe_line_count = line_count_right;
3210 pp->pb_pointer[pb_idx + 1].pe_page_count = page_count_right;
3211 if (lnum_right)
3212 pp->pb_pointer[pb_idx + 1].pe_old_lnum = lnum_right;
3213 }
3214 else
3215 {
3216 pp_new->pb_count = 1;
3217 pp_new->pb_pointer[0].pe_bnum = bnum_right;
3218 pp_new->pb_pointer[0].pe_line_count = line_count_right;
3219 pp_new->pb_pointer[0].pe_page_count = page_count_right;
3220 pp_new->pb_pointer[0].pe_old_lnum = lnum_right;
3221 }
3222 pp->pb_pointer[pb_idx].pe_bnum = bnum_left;
3223 pp->pb_pointer[pb_idx].pe_line_count = line_count_left;
3224 pp->pb_pointer[pb_idx].pe_page_count = page_count_left;
3225 if (lnum_left)
3226 pp->pb_pointer[pb_idx].pe_old_lnum = lnum_left;
3227 lnum_left = 0;
3228 lnum_right = 0;
3229
3230 /*
3231 * recompute line counts
3232 */
3233 line_count_right = 0;
3234 for (i = 0; i < (int)pp_new->pb_count; ++i)
3235 line_count_right += pp_new->pb_pointer[i].pe_line_count;
3236 line_count_left = 0;
3237 for (i = 0; i < (int)pp->pb_count; ++i)
3238 line_count_left += pp->pb_pointer[i].pe_line_count;
3239
3240 bnum_left = hp->bh_bnum;
3241 bnum_right = hp_new->bh_bnum;
3242 page_count_left = 1;
3243 page_count_right = 1;
3244 mf_put(mfp, hp, TRUE, FALSE);
3245 mf_put(mfp, hp_new, TRUE, FALSE);
3246 }
3247 }
3248
3249 /*
3250 * Safety check: fallen out of for loop?
3251 */
3252 if (stack_idx < 0)
3253 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003254 iemsg(_("E318: Updated too many blocks?"));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003255 buf->b_ml.ml_stack_top = 0; // invalidate stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00003256 }
3257 }
3258
3259#ifdef FEAT_BYTEOFF
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003260# ifdef FEAT_PROP_POPUP
3261 if (curbuf->b_has_textprop)
3262 // only use the space needed for the text, ignore properties
3263 len = (colnr_T)STRLEN(line) + 1;
3264# endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003265 // The line was inserted below 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003266 ml_updatechunk(buf, lnum + 1, (long)len, ML_CHNK_ADDLINE);
3267#endif
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003268
Bram Moolenaar071d4272004-06-13 20:20:40 +00003269#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003270 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003271 {
3272 if (STRLEN(line) > 0)
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003273 netbeans_inserted(buf, lnum+1, (colnr_T)0, line, (int)STRLEN(line));
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003274 netbeans_inserted(buf, lnum+1, (colnr_T)STRLEN(line),
Bram Moolenaar071d4272004-06-13 20:20:40 +00003275 (char_u *)"\n", 1);
3276 }
3277#endif
Bram Moolenaar509ce2a2016-03-11 22:52:15 +01003278#ifdef FEAT_JOB_CHANNEL
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003279 if (buf->b_write_to_channel)
3280 channel_write_new_lines(buf);
3281#endif
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003282 ret = OK;
Bram Moolenaar99ef0622016-03-06 20:22:25 +01003283
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003284theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003285#ifdef FEAT_PROP_POPUP
Bram Moolenaarb56ac042018-12-28 23:22:40 +01003286 vim_free(tofree);
3287#endif
3288 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003289}
3290
3291/*
Bram Moolenaar250e3112019-07-15 23:02:14 +02003292 * Flush any pending change and call ml_append_int()
3293 */
3294 static int
3295ml_append_flush(
3296 buf_T *buf,
3297 linenr_T lnum, // append after this line (can be 0)
3298 char_u *line, // text of the new line
3299 colnr_T len, // length of line, including NUL, or 0
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003300 int flags) // ML_APPEND_ flags
Bram Moolenaar250e3112019-07-15 23:02:14 +02003301{
3302 if (lnum > buf->b_ml.ml_line_count)
3303 return FAIL; // lnum out of range
3304
3305 if (buf->b_ml.ml_line_lnum != 0)
3306 // This may also invoke ml_append_int().
3307 ml_flush_line(buf);
3308
3309#ifdef FEAT_EVAL
3310 // When inserting above recorded changes: flush the changes before changing
3311 // the text. Then flush the cached line, it may become invalid.
3312 may_invoke_listeners(buf, lnum + 1, lnum + 1, 1);
3313 if (buf->b_ml.ml_line_lnum != 0)
3314 ml_flush_line(buf);
3315#endif
3316
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003317 return ml_append_int(buf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003318}
3319
3320/*
3321 * Append a line after lnum (may be 0 to insert a line in front of the file).
3322 * "line" does not need to be allocated, but can't be another line in a
3323 * buffer, unlocking may make it invalid.
3324 *
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003325 * "newfile": TRUE when starting to edit a new file, meaning that pe_old_lnum
Bram Moolenaar250e3112019-07-15 23:02:14 +02003326 * will be set for recovery
3327 * Check: The caller of this function should probably also call
3328 * appended_lines().
3329 *
3330 * return FAIL for failure, OK otherwise
3331 */
3332 int
3333ml_append(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003334 linenr_T lnum, // append after this line (can be 0)
3335 char_u *line, // text of the new line
3336 colnr_T len, // length of new line, including NUL, or 0
3337 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003338{
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003339 return ml_append_flags(lnum, line, len, newfile ? ML_APPEND_NEW : 0);
3340}
3341
3342 int
3343ml_append_flags(
3344 linenr_T lnum, // append after this line (can be 0)
3345 char_u *line, // text of the new line
3346 colnr_T len, // length of new line, including NUL, or 0
3347 int flags) // ML_APPEND_ values
3348{
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003349 // When starting up, we might still need to create the memfile
Bram Moolenaar250e3112019-07-15 23:02:14 +02003350 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
3351 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003352 return ml_append_flush(curbuf, lnum, line, len, flags);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003353}
3354
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003355
Bram Moolenaar250e3112019-07-15 23:02:14 +02003356#if defined(FEAT_SPELL) || defined(FEAT_QUICKFIX) || defined(PROTO)
3357/*
3358 * Like ml_append() but for an arbitrary buffer. The buffer must already have
3359 * a memline.
3360 */
3361 int
3362ml_append_buf(
3363 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003364 linenr_T lnum, // append after this line (can be 0)
3365 char_u *line, // text of the new line
3366 colnr_T len, // length of new line, including NUL, or 0
3367 int newfile) // flag, see above
Bram Moolenaar250e3112019-07-15 23:02:14 +02003368{
3369 if (buf->b_ml.ml_mfp == NULL)
3370 return FAIL;
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003371 return ml_append_flush(buf, lnum, line, len, newfile ? ML_APPEND_NEW : 0);
Bram Moolenaar250e3112019-07-15 23:02:14 +02003372}
3373#endif
3374
3375/*
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003376 * Replace line "lnum", with buffering, in current buffer.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003377 *
Bram Moolenaar1056d982006-03-09 22:37:52 +00003378 * If "copy" is TRUE, make a copy of the line, otherwise the line has been
Bram Moolenaar071d4272004-06-13 20:20:40 +00003379 * copied to allocated memory already.
Bram Moolenaar5966ea12020-07-15 15:30:05 +02003380 * If "copy" is FALSE the "line" may be freed to add text properties!
3381 * Do not use it after calling ml_replace().
Bram Moolenaar071d4272004-06-13 20:20:40 +00003382 *
3383 * Check: The caller of this function should probably also call
3384 * changed_lines(), unless update_screen(NOT_VALID) is used.
3385 *
3386 * return FAIL for failure, OK otherwise
3387 */
3388 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003389ml_replace(linenr_T lnum, char_u *line, int copy)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003390{
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003391 colnr_T len = -1;
3392
3393 if (line != NULL)
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003394 len = (colnr_T)STRLEN(line);
Bram Moolenaarccae4672019-01-04 15:09:57 +01003395 return ml_replace_len(lnum, line, len, FALSE, copy);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003396}
3397
Bram Moolenaarccae4672019-01-04 15:09:57 +01003398/*
3399 * Replace a line for the current buffer. Like ml_replace() with:
3400 * "len_arg" is the length of the text, excluding NUL.
3401 * If "has_props" is TRUE then "line_arg" includes the text properties and
3402 * "len_arg" includes the NUL of the text.
3403 */
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003404 int
Bram Moolenaarccae4672019-01-04 15:09:57 +01003405ml_replace_len(
3406 linenr_T lnum,
3407 char_u *line_arg,
3408 colnr_T len_arg,
3409 int has_props,
3410 int copy)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003411{
3412 char_u *line = line_arg;
3413 colnr_T len = len_arg;
3414
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003415 if (line == NULL) // just checking...
Bram Moolenaar071d4272004-06-13 20:20:40 +00003416 return FAIL;
3417
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003418 // When starting up, we might still need to create the memfile
Bram Moolenaar59f931e2010-07-24 20:27:03 +02003419 if (curbuf->b_ml.ml_mfp == NULL && open_buffer(FALSE, NULL, 0) == FAIL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003420 return FAIL;
3421
Bram Moolenaarccae4672019-01-04 15:09:57 +01003422 if (!has_props)
3423 ++len; // include the NUL after the text
3424 if (copy)
3425 {
3426 // copy the line to allocated memory
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003427#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003428 if (has_props)
3429 line = vim_memsave(line, len);
3430 else
3431#endif
3432 line = vim_strnsave(line, len - 1);
3433 if (line == NULL)
3434 return FAIL;
3435 }
3436
Bram Moolenaar071d4272004-06-13 20:20:40 +00003437#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003438 if (netbeans_active())
Bram Moolenaar071d4272004-06-13 20:20:40 +00003439 {
3440 netbeans_removed(curbuf, lnum, 0, (long)STRLEN(ml_get(lnum)));
Bram Moolenaara93fa7e2006-04-17 22:14:47 +00003441 netbeans_inserted(curbuf, lnum, 0, line, (int)STRLEN(line));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003442 }
3443#endif
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003444 if (curbuf->b_ml.ml_line_lnum != lnum)
3445 {
3446 // another line is buffered, flush it
3447 ml_flush_line(curbuf);
Bram Moolenaarca79a5f2018-12-13 23:16:36 +01003448 curbuf->b_ml.ml_flags &= ~ML_LINE_DIRTY;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003449
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003450#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003451 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003452 // Need to fetch the old line to copy over any text properties.
3453 ml_get_buf(curbuf, lnum, TRUE);
3454#endif
3455 }
3456
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003457#ifdef FEAT_PROP_POPUP
Bram Moolenaarccae4672019-01-04 15:09:57 +01003458 if (curbuf->b_has_textprop && !has_props)
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003459 {
3460 size_t oldtextlen = STRLEN(curbuf->b_ml.ml_line_ptr) + 1;
3461
3462 if (oldtextlen < (size_t)curbuf->b_ml.ml_line_len)
3463 {
3464 char_u *newline;
3465 size_t textproplen = curbuf->b_ml.ml_line_len - oldtextlen;
3466
3467 // Need to copy over text properties, stored after the text.
Bram Moolenaarccae4672019-01-04 15:09:57 +01003468 newline = alloc(len + (int)textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003469 if (newline != NULL)
3470 {
Bram Moolenaarccae4672019-01-04 15:09:57 +01003471 mch_memmove(newline, line, len);
Bram Moolenaar0d3cb732019-05-18 13:05:18 +02003472 mch_memmove(newline + len, curbuf->b_ml.ml_line_ptr
3473 + oldtextlen, textproplen);
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003474 vim_free(line);
3475 line = newline;
Bram Moolenaar4efe73b2018-12-16 14:37:39 +01003476 len += (colnr_T)textproplen;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003477 }
3478 }
3479 }
3480#endif
3481
Bram Moolenaarccae4672019-01-04 15:09:57 +01003482 if (curbuf->b_ml.ml_flags & ML_LINE_DIRTY) // same line allocated
3483 vim_free(curbuf->b_ml.ml_line_ptr); // free it
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003484
Bram Moolenaar071d4272004-06-13 20:20:40 +00003485 curbuf->b_ml.ml_line_ptr = line;
Bram Moolenaarccae4672019-01-04 15:09:57 +01003486 curbuf->b_ml.ml_line_len = len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003487 curbuf->b_ml.ml_line_lnum = lnum;
3488 curbuf->b_ml.ml_flags = (curbuf->b_ml.ml_flags | ML_LINE_DIRTY) & ~ML_EMPTY;
3489
3490 return OK;
3491}
3492
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003493#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003494/*
3495 * Adjust text properties in line "lnum" for a deleted line.
3496 * When "above" is true this is the line above the deleted line.
3497 * "del_props" are the properties of the deleted line.
3498 */
3499 static void
3500adjust_text_props_for_delete(
3501 buf_T *buf,
3502 linenr_T lnum,
3503 char_u *del_props,
3504 int del_props_len,
3505 int above)
3506{
3507 int did_get_line = FALSE;
3508 int done_del;
3509 int done_this;
3510 textprop_T prop_del;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003511 bhdr_T *hp;
3512 DATA_BL *dp;
3513 int idx;
3514 int line_start;
3515 long line_size;
3516 int this_props_len;
3517 char_u *text;
3518 size_t textlen;
3519 int found;
3520
3521 for (done_del = 0; done_del < del_props_len; done_del += sizeof(textprop_T))
3522 {
3523 mch_memmove(&prop_del, del_props + done_del, sizeof(textprop_T));
3524 if ((above && (prop_del.tp_flags & TP_FLAG_CONT_PREV)
3525 && !(prop_del.tp_flags & TP_FLAG_CONT_NEXT))
3526 || (!above && (prop_del.tp_flags & TP_FLAG_CONT_NEXT)
3527 && !(prop_del.tp_flags & TP_FLAG_CONT_PREV)))
3528 {
3529 if (!did_get_line)
3530 {
3531 did_get_line = TRUE;
3532 if ((hp = ml_find_line(buf, lnum, ML_FIND)) == NULL)
3533 return;
3534
3535 dp = (DATA_BL *)(hp->bh_data);
3536 idx = lnum - buf->b_ml.ml_locked_low;
3537 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3538 if (idx == 0) // first line in block, text at the end
3539 line_size = dp->db_txt_end - line_start;
3540 else
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003541 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK)
3542 - line_start;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003543 text = (char_u *)dp + line_start;
3544 textlen = STRLEN(text) + 1;
3545 if ((long)textlen >= line_size)
3546 {
3547 if (above)
3548 internal_error("no text property above deleted line");
3549 else
3550 internal_error("no text property below deleted line");
3551 return;
3552 }
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003553 this_props_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003554 }
3555
3556 found = FALSE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003557 for (done_this = 0; done_this < this_props_len;
3558 done_this += sizeof(textprop_T))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003559 {
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003560 int flag = above ? TP_FLAG_CONT_NEXT
3561 : TP_FLAG_CONT_PREV;
3562 textprop_T prop_this;
3563
3564 mch_memmove(&prop_this, text + textlen + done_del,
3565 sizeof(textprop_T));
3566 if ((prop_this.tp_flags & flag)
3567 && prop_del.tp_id == prop_this.tp_id
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003568 && prop_del.tp_type == prop_this.tp_type)
3569 {
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003570 found = TRUE;
Bram Moolenaar87be9be2020-05-30 15:32:02 +02003571 prop_this.tp_flags &= ~flag;
3572 mch_memmove(text + textlen + done_del, &prop_this,
3573 sizeof(textprop_T));
3574 break;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003575 }
3576 }
3577 if (!found)
3578 {
3579 if (above)
3580 internal_error("text property above deleted line not found");
3581 else
3582 internal_error("text property below deleted line not found");
3583 }
3584
3585 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3586 }
3587 }
3588}
3589#endif
3590
Bram Moolenaar071d4272004-06-13 20:20:40 +00003591/*
Bram Moolenaar4033c552017-09-16 20:54:51 +02003592 * Delete line "lnum" in the current buffer.
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003593 * When "flags" has ML_DEL_MESSAGE may give a "No lines in buffer" message.
3594 * When "flags" has ML_DEL_UNDO this is called from undo.
Bram Moolenaar071d4272004-06-13 20:20:40 +00003595 *
3596 * return FAIL for failure, OK otherwise
3597 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00003598 static int
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003599ml_delete_int(buf_T *buf, linenr_T lnum, int flags)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003600{
3601 bhdr_T *hp;
3602 memfile_T *mfp;
3603 DATA_BL *dp;
3604 PTR_BL *pp;
3605 infoptr_T *ip;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003606 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003607 int idx;
3608 int stack_idx;
3609 int text_start;
3610 int line_start;
3611 long line_size;
3612 int i;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003613 int ret = FAIL;
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003614#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003615 char_u *textprop_save = NULL;
Bram Moolenaardf9070e2021-08-25 17:31:37 +02003616 int textprop_save_len = 0;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003617#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003618
Bram Moolenaar071d4272004-06-13 20:20:40 +00003619 if (lowest_marked && lowest_marked > lnum)
3620 lowest_marked--;
3621
3622/*
3623 * If the file becomes empty the last line is replaced by an empty line.
3624 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003625 if (buf->b_ml.ml_line_count == 1) // file becomes empty
Bram Moolenaar071d4272004-06-13 20:20:40 +00003626 {
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003627 if ((flags & ML_DEL_MESSAGE)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003628#ifdef FEAT_NETBEANS_INTG
3629 && !netbeansSuppressNoLines
3630#endif
3631 )
Bram Moolenaar238a5642006-02-21 22:12:05 +00003632 set_keep_msg((char_u *)_(no_lines_msg), 0);
3633
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003634 // FEAT_BYTEOFF already handled in there, don't worry 'bout it below
Bram Moolenaar071d4272004-06-13 20:20:40 +00003635 i = ml_replace((linenr_T)1, (char_u *)"", TRUE);
3636 buf->b_ml.ml_flags |= ML_EMPTY;
3637
3638 return i;
3639 }
3640
3641/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003642 * Find the data block containing the line.
3643 * This also fills the stack with the blocks from the root to the data block.
3644 * This also releases any locked block..
Bram Moolenaar071d4272004-06-13 20:20:40 +00003645 */
3646 mfp = buf->b_ml.ml_mfp;
3647 if (mfp == NULL)
3648 return FAIL;
3649
3650 if ((hp = ml_find_line(buf, lnum, ML_DELETE)) == NULL)
3651 return FAIL;
3652
3653 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003654 // compute line count before the delete
Bram Moolenaar071d4272004-06-13 20:20:40 +00003655 count = (long)(buf->b_ml.ml_locked_high)
3656 - (long)(buf->b_ml.ml_locked_low) + 2;
3657 idx = lnum - buf->b_ml.ml_locked_low;
3658
3659 --buf->b_ml.ml_line_count;
3660
3661 line_start = ((dp->db_index[idx]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003662 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00003663 line_size = dp->db_txt_end - line_start;
3664 else
3665 line_size = ((dp->db_index[idx - 1]) & DB_INDEX_MASK) - line_start;
3666
3667#ifdef FEAT_NETBEANS_INTG
Bram Moolenaarb26e6322010-05-22 21:34:09 +02003668 if (netbeans_active())
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00003669 netbeans_removed(buf, lnum, 0, (long)line_size);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003670#endif
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003671#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003672 // If there are text properties, make a copy, so that we can update
3673 // properties in preceding and following lines.
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003674 if (buf->b_has_textprop && !(flags & (ML_DEL_UNDO | ML_DEL_NOPROP)))
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003675 {
3676 size_t textlen = STRLEN((char_u *)dp + line_start) + 1;
3677
3678 if ((long)textlen < line_size)
3679 {
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01003680 textprop_save_len = line_size - (int)textlen;
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003681 textprop_save = vim_memsave((char_u *)dp + line_start + textlen,
3682 textprop_save_len);
3683 }
3684 }
3685#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00003686
3687/*
3688 * special case: If there is only one line in the data block it becomes empty.
3689 * Then we have to remove the entry, pointing to this data block, from the
3690 * pointer block. If this pointer block also becomes empty, we go up another
3691 * block, and so on, up to the root if necessary.
3692 * The line counts in the pointer blocks have already been adjusted by
3693 * ml_find_line().
3694 */
3695 if (count == 1)
3696 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003697 mf_free(mfp, hp); // free the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003698 buf->b_ml.ml_locked = NULL;
3699
Bram Moolenaare60acc12011-05-10 16:41:25 +02003700 for (stack_idx = buf->b_ml.ml_stack_top - 1; stack_idx >= 0;
3701 --stack_idx)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003702 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003703 buf->b_ml.ml_stack_top = 0; // stack is invalid when failing
Bram Moolenaar071d4272004-06-13 20:20:40 +00003704 ip = &(buf->b_ml.ml_stack[stack_idx]);
3705 idx = ip->ip_index;
3706 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003707 goto theend;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003708 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003709 if (pp->pb_id != PTR_ID)
3710 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003711 iemsg(_("E317: pointer block id wrong 4"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00003712 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003713 goto theend;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003714 }
3715 count = --(pp->pb_count);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003716 if (count == 0) // the pointer block becomes empty!
Bram Moolenaar071d4272004-06-13 20:20:40 +00003717 mf_free(mfp, hp);
3718 else
3719 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003720 if (count != idx) // move entries after the deleted one
Bram Moolenaar071d4272004-06-13 20:20:40 +00003721 mch_memmove(&pp->pb_pointer[idx], &pp->pb_pointer[idx + 1],
3722 (size_t)(count - idx) * sizeof(PTR_EN));
3723 mf_put(mfp, hp, TRUE, FALSE);
3724
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003725 buf->b_ml.ml_stack_top = stack_idx; // truncate stack
3726 // fix line count for rest of blocks in the stack
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003727 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003728 {
3729 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
3730 buf->b_ml.ml_stack[buf->b_ml.ml_stack_top].ip_high +=
Bram Moolenaar6b803a72007-05-06 14:25:46 +00003731 buf->b_ml.ml_locked_lineadd;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003732 }
3733 ++(buf->b_ml.ml_stack_top);
3734
3735 break;
3736 }
3737 }
3738 CHECK(stack_idx < 0, _("deleted block 1?"));
3739 }
3740 else
3741 {
3742 /*
3743 * delete the text by moving the next lines forwards
3744 */
3745 text_start = dp->db_txt_start;
3746 mch_memmove((char *)dp + text_start + line_size,
3747 (char *)dp + text_start, (size_t)(line_start - text_start));
3748
3749 /*
3750 * delete the index by moving the next indexes backwards
3751 * Adjust the indexes for the text movement.
3752 */
3753 for (i = idx; i < count - 1; ++i)
3754 dp->db_index[i] = dp->db_index[i + 1] + line_size;
3755
3756 dp->db_free += line_size + INDEX_SIZE;
3757 dp->db_txt_start += line_size;
3758 --(dp->db_line_count);
3759
3760 /*
3761 * mark the block dirty and make sure it is in the file (for recovery)
3762 */
3763 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
3764 }
3765
3766#ifdef FEAT_BYTEOFF
Bram Moolenaarcdd8a5e2021-08-25 16:40:03 +02003767 ml_updatechunk(buf, lnum, line_size
3768# ifdef FEAT_PROP_POPUP
3769 - textprop_save_len
3770# endif
3771 , ML_CHNK_DELLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003772#endif
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003773 ret = OK;
3774
3775theend:
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01003776#ifdef FEAT_PROP_POPUP
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003777 if (textprop_save != NULL)
3778 {
3779 // Adjust text properties in the line above and below.
3780 if (lnum > 1)
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003781 adjust_text_props_for_delete(buf, lnum - 1, textprop_save,
3782 textprop_save_len, TRUE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003783 if (lnum <= buf->b_ml.ml_line_count)
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02003784 adjust_text_props_for_delete(buf, lnum, textprop_save,
3785 textprop_save_len, FALSE);
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003786 }
3787 vim_free(textprop_save);
3788#endif
3789 return ret;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003790}
3791
3792/*
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003793 * Delete line "lnum" in the current buffer.
3794 * When "message" is TRUE may give a "No lines in buffer" message.
3795 *
3796 * Check: The caller of this function should probably also call
3797 * deleted_lines() after this.
3798 *
3799 * return FAIL for failure, OK otherwise
3800 */
3801 int
Bram Moolenaarca70c072020-05-30 20:30:46 +02003802ml_delete(linenr_T lnum)
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003803{
Bram Moolenaarca70c072020-05-30 20:30:46 +02003804 return ml_delete_flags(lnum, 0);
Bram Moolenaara9d4b842020-05-30 14:46:52 +02003805}
3806
3807/*
3808 * Like ml_delete() but using flags (see ml_delete_int()).
3809 */
3810 int
3811ml_delete_flags(linenr_T lnum, int flags)
3812{
3813 ml_flush_line(curbuf);
3814 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count)
3815 return FAIL;
3816
3817#ifdef FEAT_EVAL
3818 // When inserting above recorded changes: flush the changes before changing
3819 // the text.
3820 may_invoke_listeners(curbuf, lnum, lnum + 1, -1);
3821#endif
3822
3823 return ml_delete_int(curbuf, lnum, flags);
3824}
3825
3826/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003827 * set the DB_MARKED flag for line 'lnum'
Bram Moolenaar071d4272004-06-13 20:20:40 +00003828 */
3829 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003830ml_setmarked(linenr_T lnum)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003831{
3832 bhdr_T *hp;
3833 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003834 // invalid line number
Bram Moolenaar071d4272004-06-13 20:20:40 +00003835 if (lnum < 1 || lnum > curbuf->b_ml.ml_line_count
3836 || curbuf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003837 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003838
3839 if (lowest_marked == 0 || lowest_marked > lnum)
3840 lowest_marked = lnum;
3841
3842 /*
3843 * find the data block containing the line
3844 * This also fills the stack with the blocks from the root to the data block
3845 * This also releases any locked block.
3846 */
3847 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003848 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003849
3850 dp = (DATA_BL *)(hp->bh_data);
3851 dp->db_index[lnum - curbuf->b_ml.ml_locked_low] |= DB_MARKED;
3852 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3853}
3854
3855/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01003856 * find the first line with its DB_MARKED flag set
Bram Moolenaar071d4272004-06-13 20:20:40 +00003857 */
3858 linenr_T
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003859ml_firstmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003860{
3861 bhdr_T *hp;
3862 DATA_BL *dp;
3863 linenr_T lnum;
3864 int i;
3865
3866 if (curbuf->b_ml.ml_mfp == NULL)
3867 return (linenr_T) 0;
3868
3869 /*
3870 * The search starts with lowest_marked line. This is the last line where
3871 * a mark was found, adjusted by inserting/deleting lines.
3872 */
3873 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3874 {
3875 /*
3876 * Find the data block containing the line.
3877 * This also fills the stack with the blocks from the root to the data
3878 * block This also releases any locked block.
3879 */
3880 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003881 return (linenr_T)0; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003882
3883 dp = (DATA_BL *)(hp->bh_data);
3884
3885 for (i = lnum - curbuf->b_ml.ml_locked_low;
3886 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3887 if ((dp->db_index[i]) & DB_MARKED)
3888 {
3889 (dp->db_index[i]) &= DB_INDEX_MASK;
3890 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3891 lowest_marked = lnum + 1;
3892 return lnum;
3893 }
3894 }
3895
3896 return (linenr_T) 0;
3897}
3898
Bram Moolenaar071d4272004-06-13 20:20:40 +00003899/*
3900 * clear all DB_MARKED flags
3901 */
3902 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003903ml_clearmarked(void)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003904{
3905 bhdr_T *hp;
3906 DATA_BL *dp;
3907 linenr_T lnum;
3908 int i;
3909
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003910 if (curbuf->b_ml.ml_mfp == NULL) // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003911 return;
3912
3913 /*
3914 * The search starts with line lowest_marked.
3915 */
3916 for (lnum = lowest_marked; lnum <= curbuf->b_ml.ml_line_count; )
3917 {
3918 /*
3919 * Find the data block containing the line.
3920 * This also fills the stack with the blocks from the root to the data
3921 * block and releases any locked block.
3922 */
3923 if ((hp = ml_find_line(curbuf, lnum, ML_FIND)) == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003924 return; // give error message?
Bram Moolenaar071d4272004-06-13 20:20:40 +00003925
3926 dp = (DATA_BL *)(hp->bh_data);
3927
3928 for (i = lnum - curbuf->b_ml.ml_locked_low;
3929 lnum <= curbuf->b_ml.ml_locked_high; ++i, ++lnum)
3930 if ((dp->db_index[i]) & DB_MARKED)
3931 {
3932 (dp->db_index[i]) &= DB_INDEX_MASK;
3933 curbuf->b_ml.ml_flags |= ML_LOCKED_DIRTY;
3934 }
3935 }
3936
3937 lowest_marked = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003938}
3939
3940/*
3941 * flush ml_line if necessary
3942 */
3943 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01003944ml_flush_line(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00003945{
3946 bhdr_T *hp;
3947 DATA_BL *dp;
3948 linenr_T lnum;
3949 char_u *new_line;
3950 char_u *old_line;
3951 colnr_T new_len;
3952 int old_len;
3953 int extra;
3954 int idx;
3955 int start;
3956 int count;
3957 int i;
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003958 static int entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00003959
3960 if (buf->b_ml.ml_line_lnum == 0 || buf->b_ml.ml_mfp == NULL)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003961 return; // nothing to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00003962
3963 if (buf->b_ml.ml_flags & ML_LINE_DIRTY)
3964 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003965 // This code doesn't work recursively, but Netbeans may call back here
3966 // when obtaining the cursor position.
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01003967 if (entered)
3968 return;
3969 entered = TRUE;
3970
Bram Moolenaar071d4272004-06-13 20:20:40 +00003971 lnum = buf->b_ml.ml_line_lnum;
3972 new_line = buf->b_ml.ml_line_ptr;
3973
3974 hp = ml_find_line(buf, lnum, ML_FIND);
3975 if (hp == NULL)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01003976 siemsg(_("E320: Cannot find line %ld"), lnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00003977 else
3978 {
3979 dp = (DATA_BL *)(hp->bh_data);
3980 idx = lnum - buf->b_ml.ml_locked_low;
3981 start = ((dp->db_index[idx]) & DB_INDEX_MASK);
3982 old_line = (char_u *)dp + start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003983 if (idx == 0) // line is last in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00003984 old_len = dp->db_txt_end - start;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003985 else // text of previous line follows
Bram Moolenaar071d4272004-06-13 20:20:40 +00003986 old_len = (dp->db_index[idx - 1] & DB_INDEX_MASK) - start;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01003987 new_len = buf->b_ml.ml_line_len;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003988 extra = new_len - old_len; // negative if lines gets smaller
Bram Moolenaar071d4272004-06-13 20:20:40 +00003989
3990 /*
3991 * if new line fits in data block, replace directly
3992 */
3993 if ((int)dp->db_free >= extra)
3994 {
Bram Moolenaar92755bb2021-08-15 22:18:04 +02003995#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar14c75302021-08-15 14:28:40 +02003996 int old_prop_len = 0;
3997#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01003998 // if the length changes and there are following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00003999 count = buf->b_ml.ml_locked_high - buf->b_ml.ml_locked_low + 1;
4000 if (extra != 0 && idx < count - 1)
4001 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004002 // move text of following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004003 mch_memmove((char *)dp + dp->db_txt_start - extra,
4004 (char *)dp + dp->db_txt_start,
4005 (size_t)(start - dp->db_txt_start));
4006
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004007 // adjust pointers of this and following lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00004008 for (i = idx + 1; i < count; ++i)
4009 dp->db_index[i] -= extra;
4010 }
4011 dp->db_index[idx] -= extra;
4012
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004013 // adjust free space
Bram Moolenaar071d4272004-06-13 20:20:40 +00004014 dp->db_free -= extra;
4015 dp->db_txt_start -= extra;
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004016#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar14c75302021-08-15 14:28:40 +02004017 if (buf->b_has_textprop)
Bram Moolenaar434df7a2021-08-16 21:15:32 +02004018 old_prop_len = old_len - (int)STRLEN(new_line) - 1;
Bram Moolenaar14c75302021-08-15 14:28:40 +02004019#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004020
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004021 // copy new line into the data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004022 mch_memmove(old_line - extra, new_line, (size_t)new_len);
4023 buf->b_ml.ml_flags |= (ML_LOCKED_DIRTY | ML_LOCKED_POS);
Bram Moolenaar92755bb2021-08-15 22:18:04 +02004024#if defined(FEAT_BYTEOFF) && defined(FEAT_PROP_POPUP)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004025 // The else case is already covered by the insert and delete
Bram Moolenaar14c75302021-08-15 14:28:40 +02004026 if (buf->b_has_textprop)
4027 {
4028 // Do not count the size of any text properties.
4029 extra += old_prop_len;
Bram Moolenaar434df7a2021-08-16 21:15:32 +02004030 extra -= new_len - (int)STRLEN(new_line) - 1;
Bram Moolenaar14c75302021-08-15 14:28:40 +02004031 }
4032 if (extra != 0)
4033 ml_updatechunk(buf, lnum, (long)extra, ML_CHNK_UPDLINE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004034#endif
4035 }
4036 else
4037 {
4038 /*
4039 * Cannot do it in one data block: Delete and append.
4040 * Append first, because ml_delete_int() cannot delete the
4041 * last line in a buffer, which causes trouble for a buffer
4042 * that has only one line.
4043 * Don't forget to copy the mark!
4044 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004045 // How about handling errors???
Bram Moolenaara9d4b842020-05-30 14:46:52 +02004046 (void)ml_append_int(buf, lnum, new_line, new_len,
Bram Moolenaar840f91f2021-05-26 22:32:10 +02004047 ((dp->db_index[idx] & DB_MARKED) ? ML_APPEND_MARK : 0)
4048#ifdef FEAT_PROP_POPUP
4049 | ML_APPEND_NOPROP
4050#endif
4051 );
Bram Moolenaar4cd5c522021-06-27 13:04:00 +02004052 (void)ml_delete_int(buf, lnum, ML_DEL_NOPROP);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004053 }
4054 }
4055 vim_free(new_line);
Bram Moolenaar0ca4b352010-02-11 18:54:43 +01004056
4057 entered = FALSE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004058 }
4059
4060 buf->b_ml.ml_line_lnum = 0;
4061}
4062
4063/*
4064 * create a new, empty, data block
4065 */
4066 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004067ml_new_data(memfile_T *mfp, int negative, int page_count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004068{
4069 bhdr_T *hp;
4070 DATA_BL *dp;
4071
4072 if ((hp = mf_new(mfp, negative, page_count)) == NULL)
4073 return NULL;
4074
4075 dp = (DATA_BL *)(hp->bh_data);
4076 dp->db_id = DATA_ID;
4077 dp->db_txt_start = dp->db_txt_end = page_count * mfp->mf_page_size;
4078 dp->db_free = dp->db_txt_start - HEADER_SIZE;
4079 dp->db_line_count = 0;
4080
4081 return hp;
4082}
4083
4084/*
4085 * create a new, empty, pointer block
4086 */
4087 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004088ml_new_ptr(memfile_T *mfp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004089{
4090 bhdr_T *hp;
4091 PTR_BL *pp;
4092
4093 if ((hp = mf_new(mfp, FALSE, 1)) == NULL)
4094 return NULL;
4095
4096 pp = (PTR_BL *)(hp->bh_data);
4097 pp->pb_id = PTR_ID;
4098 pp->pb_count = 0;
Bram Moolenaar20a825a2010-05-31 21:27:30 +02004099 pp->pb_count_max = (short_u)((mfp->mf_page_size - sizeof(PTR_BL))
4100 / sizeof(PTR_EN) + 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004101
4102 return hp;
4103}
4104
4105/*
Bram Moolenaarc1a9bc12018-12-28 21:59:29 +01004106 * Lookup line 'lnum' in a memline.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004107 *
4108 * action: if ML_DELETE or ML_INSERT the line count is updated while searching
4109 * if ML_FLUSH only flush a locked block
4110 * if ML_FIND just find the line
4111 *
4112 * If the block was found it is locked and put in ml_locked.
4113 * The stack is updated to lead to the locked block. The ip_high field in
4114 * the stack is updated to reflect the last line in the block AFTER the
4115 * insert or delete, also if the pointer block has not been updated yet. But
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004116 * if ml_locked != NULL ml_locked_lineadd must be added to ip_high.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004117 *
4118 * return: NULL for failure, pointer to block header otherwise
4119 */
4120 static bhdr_T *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004121ml_find_line(buf_T *buf, linenr_T lnum, int action)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004122{
4123 DATA_BL *dp;
4124 PTR_BL *pp;
4125 infoptr_T *ip;
4126 bhdr_T *hp;
4127 memfile_T *mfp;
4128 linenr_T t;
4129 blocknr_T bnum, bnum2;
4130 int dirty;
4131 linenr_T low, high;
4132 int top;
4133 int page_count;
4134 int idx;
4135
4136 mfp = buf->b_ml.ml_mfp;
4137
4138 /*
4139 * If there is a locked block check if the wanted line is in it.
4140 * If not, flush and release the locked block.
4141 * Don't do this for ML_INSERT_SAME, because the stack need to be updated.
4142 * Don't do this for ML_FLUSH, because we want to flush the locked block.
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004143 * Don't do this when 'swapfile' is reset, we want to load all the blocks.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004144 */
4145 if (buf->b_ml.ml_locked)
4146 {
Bram Moolenaar47b8b152007-02-07 02:41:57 +00004147 if (ML_SIMPLE(action)
4148 && buf->b_ml.ml_locked_low <= lnum
4149 && buf->b_ml.ml_locked_high >= lnum
4150 && !mf_dont_release)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004151 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004152 // remember to update pointer blocks and stack later
Bram Moolenaar071d4272004-06-13 20:20:40 +00004153 if (action == ML_INSERT)
4154 {
4155 ++(buf->b_ml.ml_locked_lineadd);
4156 ++(buf->b_ml.ml_locked_high);
4157 }
4158 else if (action == ML_DELETE)
4159 {
4160 --(buf->b_ml.ml_locked_lineadd);
4161 --(buf->b_ml.ml_locked_high);
4162 }
4163 return (buf->b_ml.ml_locked);
4164 }
4165
4166 mf_put(mfp, buf->b_ml.ml_locked, buf->b_ml.ml_flags & ML_LOCKED_DIRTY,
4167 buf->b_ml.ml_flags & ML_LOCKED_POS);
4168 buf->b_ml.ml_locked = NULL;
4169
Bram Moolenaar6b803a72007-05-06 14:25:46 +00004170 /*
4171 * If lines have been added or deleted in the locked block, need to
4172 * update the line count in pointer blocks.
4173 */
4174 if (buf->b_ml.ml_locked_lineadd != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004175 ml_lineadd(buf, buf->b_ml.ml_locked_lineadd);
4176 }
4177
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004178 if (action == ML_FLUSH) // nothing else to do
Bram Moolenaar071d4272004-06-13 20:20:40 +00004179 return NULL;
4180
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004181 bnum = 1; // start at the root of the tree
Bram Moolenaar071d4272004-06-13 20:20:40 +00004182 page_count = 1;
4183 low = 1;
4184 high = buf->b_ml.ml_line_count;
4185
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004186 if (action == ML_FIND) // first try stack entries
Bram Moolenaar071d4272004-06-13 20:20:40 +00004187 {
4188 for (top = buf->b_ml.ml_stack_top - 1; top >= 0; --top)
4189 {
4190 ip = &(buf->b_ml.ml_stack[top]);
4191 if (ip->ip_low <= lnum && ip->ip_high >= lnum)
4192 {
4193 bnum = ip->ip_bnum;
4194 low = ip->ip_low;
4195 high = ip->ip_high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004196 buf->b_ml.ml_stack_top = top; // truncate stack at prev entry
Bram Moolenaar071d4272004-06-13 20:20:40 +00004197 break;
4198 }
4199 }
4200 if (top < 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004201 buf->b_ml.ml_stack_top = 0; // not found, start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004202 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004203 else // ML_DELETE or ML_INSERT
4204 buf->b_ml.ml_stack_top = 0; // start at the root
Bram Moolenaar071d4272004-06-13 20:20:40 +00004205
4206/*
4207 * search downwards in the tree until a data block is found
4208 */
4209 for (;;)
4210 {
4211 if ((hp = mf_get(mfp, bnum, page_count)) == NULL)
4212 goto error_noblock;
4213
4214 /*
4215 * update high for insert/delete
4216 */
4217 if (action == ML_INSERT)
4218 ++high;
4219 else if (action == ML_DELETE)
4220 --high;
4221
4222 dp = (DATA_BL *)(hp->bh_data);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004223 if (dp->db_id == DATA_ID) // data block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004224 {
4225 buf->b_ml.ml_locked = hp;
4226 buf->b_ml.ml_locked_low = low;
4227 buf->b_ml.ml_locked_high = high;
4228 buf->b_ml.ml_locked_lineadd = 0;
4229 buf->b_ml.ml_flags &= ~(ML_LOCKED_DIRTY | ML_LOCKED_POS);
4230 return hp;
4231 }
4232
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004233 pp = (PTR_BL *)(dp); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004234 if (pp->pb_id != PTR_ID)
4235 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004236 iemsg(_("E317: pointer block id wrong"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004237 goto error_block;
4238 }
4239
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004240 if ((top = ml_add_stack(buf)) < 0) // add new entry to stack
Bram Moolenaar071d4272004-06-13 20:20:40 +00004241 goto error_block;
4242 ip = &(buf->b_ml.ml_stack[top]);
4243 ip->ip_bnum = bnum;
4244 ip->ip_low = low;
4245 ip->ip_high = high;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004246 ip->ip_index = -1; // index not known yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004247
4248 dirty = FALSE;
4249 for (idx = 0; idx < (int)pp->pb_count; ++idx)
4250 {
4251 t = pp->pb_pointer[idx].pe_line_count;
4252 CHECK(t == 0, _("pe_line_count is zero"));
4253 if ((low += t) > lnum)
4254 {
4255 ip->ip_index = idx;
4256 bnum = pp->pb_pointer[idx].pe_bnum;
4257 page_count = pp->pb_pointer[idx].pe_page_count;
4258 high = low - 1;
4259 low -= t;
4260
4261 /*
4262 * a negative block number may have been changed
4263 */
4264 if (bnum < 0)
4265 {
4266 bnum2 = mf_trans_del(mfp, bnum);
4267 if (bnum != bnum2)
4268 {
4269 bnum = bnum2;
4270 pp->pb_pointer[idx].pe_bnum = bnum;
4271 dirty = TRUE;
4272 }
4273 }
4274
4275 break;
4276 }
4277 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004278 if (idx >= (int)pp->pb_count) // past the end: something wrong!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004279 {
4280 if (lnum > buf->b_ml.ml_line_count)
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004281 siemsg(_("E322: line number out of range: %ld past the end"),
Bram Moolenaar071d4272004-06-13 20:20:40 +00004282 lnum - buf->b_ml.ml_line_count);
4283
4284 else
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004285 siemsg(_("E323: line count wrong in block %ld"), bnum);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004286 goto error_block;
4287 }
4288 if (action == ML_DELETE)
4289 {
4290 pp->pb_pointer[idx].pe_line_count--;
4291 dirty = TRUE;
4292 }
4293 else if (action == ML_INSERT)
4294 {
4295 pp->pb_pointer[idx].pe_line_count++;
4296 dirty = TRUE;
4297 }
4298 mf_put(mfp, hp, dirty, FALSE);
4299 }
4300
4301error_block:
4302 mf_put(mfp, hp, FALSE, FALSE);
4303error_noblock:
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02004304 /*
4305 * If action is ML_DELETE or ML_INSERT we have to correct the tree for
4306 * the incremented/decremented line counts, because there won't be a line
4307 * inserted/deleted after all.
4308 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00004309 if (action == ML_DELETE)
4310 ml_lineadd(buf, 1);
4311 else if (action == ML_INSERT)
4312 ml_lineadd(buf, -1);
4313 buf->b_ml.ml_stack_top = 0;
4314 return NULL;
4315}
4316
4317/*
4318 * add an entry to the info pointer stack
4319 *
4320 * return -1 for failure, number of the new entry otherwise
4321 */
4322 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004323ml_add_stack(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004324{
4325 int top;
4326 infoptr_T *newstack;
4327
4328 top = buf->b_ml.ml_stack_top;
4329
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004330 // may have to increase the stack size
Bram Moolenaar071d4272004-06-13 20:20:40 +00004331 if (top == buf->b_ml.ml_stack_size)
4332 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004333 CHECK(top > 0, _("Stack size increases")); // more than 5 levels???
Bram Moolenaar071d4272004-06-13 20:20:40 +00004334
Bram Moolenaarc799fe22019-05-28 23:08:19 +02004335 newstack = ALLOC_MULT(infoptr_T, buf->b_ml.ml_stack_size + STACK_INCR);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004336 if (newstack == NULL)
4337 return -1;
Bram Moolenaarfbd302f2015-08-08 18:23:46 +02004338 if (top > 0)
4339 mch_memmove(newstack, buf->b_ml.ml_stack,
Bram Moolenaar8c8de832008-06-24 22:58:06 +00004340 (size_t)top * sizeof(infoptr_T));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004341 vim_free(buf->b_ml.ml_stack);
4342 buf->b_ml.ml_stack = newstack;
4343 buf->b_ml.ml_stack_size += STACK_INCR;
4344 }
4345
4346 buf->b_ml.ml_stack_top++;
4347 return top;
4348}
4349
4350/*
4351 * Update the pointer blocks on the stack for inserted/deleted lines.
4352 * The stack itself is also updated.
4353 *
4354 * When a insert/delete line action fails, the line is not inserted/deleted,
4355 * but the pointer blocks have already been updated. That is fixed here by
4356 * walking through the stack.
4357 *
4358 * Count is the number of lines added, negative if lines have been deleted.
4359 */
4360 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004361ml_lineadd(buf_T *buf, int count)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004362{
4363 int idx;
4364 infoptr_T *ip;
4365 PTR_BL *pp;
4366 memfile_T *mfp = buf->b_ml.ml_mfp;
4367 bhdr_T *hp;
4368
4369 for (idx = buf->b_ml.ml_stack_top - 1; idx >= 0; --idx)
4370 {
4371 ip = &(buf->b_ml.ml_stack[idx]);
4372 if ((hp = mf_get(mfp, ip->ip_bnum, 1)) == NULL)
4373 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004374 pp = (PTR_BL *)(hp->bh_data); // must be pointer block
Bram Moolenaar071d4272004-06-13 20:20:40 +00004375 if (pp->pb_id != PTR_ID)
4376 {
4377 mf_put(mfp, hp, FALSE, FALSE);
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004378 iemsg(_("E317: pointer block id wrong 2"));
Bram Moolenaar071d4272004-06-13 20:20:40 +00004379 break;
4380 }
4381 pp->pb_pointer[ip->ip_index].pe_line_count += count;
4382 ip->ip_high += count;
4383 mf_put(mfp, hp, TRUE, FALSE);
4384 }
4385}
4386
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004387#if defined(HAVE_READLINK) || defined(PROTO)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004388/*
4389 * Resolve a symlink in the last component of a file name.
4390 * Note that f_resolve() does it for every part of the path, we don't do that
4391 * here.
4392 * If it worked returns OK and the resolved link in "buf[MAXPATHL]".
4393 * Otherwise returns FAIL.
4394 */
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004395 int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004396resolve_symlink(char_u *fname, char_u *buf)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004397{
4398 char_u tmp[MAXPATHL];
4399 int ret;
4400 int depth = 0;
4401
4402 if (fname == NULL)
4403 return FAIL;
4404
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004405 // Put the result so far in tmp[], starting with the original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004406 vim_strncpy(tmp, fname, MAXPATHL - 1);
4407
4408 for (;;)
4409 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004410 // Limit symlink depth to 100, catch recursive loops.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004411 if (++depth == 100)
4412 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004413 semsg(_("E773: Symlink loop for \"%s\""), fname);
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004414 return FAIL;
4415 }
4416
4417 ret = readlink((char *)tmp, (char *)buf, MAXPATHL - 1);
4418 if (ret <= 0)
4419 {
Bram Moolenaarcc984262005-12-23 22:19:46 +00004420 if (errno == EINVAL || errno == ENOENT)
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004421 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004422 // Found non-symlink or not existing file, stop here.
4423 // When at the first level use the unmodified name, skip the
4424 // call to vim_FullName().
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004425 if (depth == 1)
4426 return FAIL;
4427
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004428 // Use the resolved name in tmp[].
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004429 break;
4430 }
4431
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004432 // There must be some error reading links, use original name.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004433 return FAIL;
4434 }
4435 buf[ret] = NUL;
4436
4437 /*
4438 * Check whether the symlink is relative or absolute.
4439 * If it's relative, build a new path based on the directory
4440 * portion of the filename (if any) and the path the symlink
4441 * points to.
4442 */
4443 if (mch_isFullName(buf))
4444 STRCPY(tmp, buf);
4445 else
4446 {
4447 char_u *tail;
4448
4449 tail = gettail(tmp);
4450 if (STRLEN(tail) + STRLEN(buf) >= MAXPATHL)
4451 return FAIL;
4452 STRCPY(tail, buf);
4453 }
4454 }
4455
4456 /*
4457 * Try to resolve the full name of the file so that the swapfile name will
4458 * be consistent even when opening a relative symlink from different
4459 * working directories.
4460 */
4461 return vim_FullName(tmp, buf, MAXPATHL, TRUE);
4462}
4463#endif
4464
Bram Moolenaar071d4272004-06-13 20:20:40 +00004465/*
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004466 * Make swap file name out of the file name and a directory name.
4467 * Returns pointer to allocated memory or NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004468 */
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004469 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004470makeswapname(
4471 char_u *fname,
4472 char_u *ffname UNUSED,
4473 buf_T *buf,
4474 char_u *dir_name)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004475{
4476 char_u *r, *s;
Bram Moolenaar9dbe4752010-05-14 17:52:42 +02004477 char_u *fname_res = fname;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004478#ifdef HAVE_READLINK
4479 char_u fname_buf[MAXPATHL];
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004480
4481 // Expand symlink in the file name, so that we put the swap file with the
4482 // actual file instead of with the symlink.
4483 if (resolve_symlink(fname, fname_buf) == OK)
4484 fname_res = fname_buf;
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004485#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004486
Bram Moolenaar4f974752019-02-17 17:44:42 +01004487#if defined(UNIX) || defined(MSWIN) // Need _very_ long file names
Bram Moolenaarb113c3a2017-02-28 21:26:17 +01004488 int len = (int)STRLEN(dir_name);
Bram Moolenaarc525e3a2017-02-18 16:59:02 +01004489
4490 s = dir_name + len;
4491 if (after_pathsep(dir_name, s) && len > 1 && s[-1] == s[-2])
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004492 { // Ends with '//', Use Full path
Bram Moolenaar071d4272004-06-13 20:20:40 +00004493 r = NULL;
Bram Moolenaar5966ea12020-07-15 15:30:05 +02004494 if ((s = make_percent_swname(dir_name, fname_res)) != NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004495 {
4496 r = modname(s, (char_u *)".swp", FALSE);
4497 vim_free(s);
4498 }
4499 return r;
4500 }
4501#endif
4502
4503 r = buf_modname(
Bram Moolenaar071d4272004-06-13 20:20:40 +00004504 (buf->b_p_sn || buf->b_shortname),
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004505 fname_res,
Bram Moolenaar071d4272004-06-13 20:20:40 +00004506 (char_u *)
Bram Moolenaare60acc12011-05-10 16:41:25 +02004507#if defined(VMS)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004508 "_swp",
4509#else
4510 ".swp",
4511#endif
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004512 // Prepend a '.' to the swap file name for the current directory.
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004513 dir_name[0] == '.' && dir_name[1] == NUL);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004514 if (r == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004515 return NULL;
4516
4517 s = get_file_in_dir(r, dir_name);
4518 vim_free(r);
4519 return s;
4520}
4521
4522/*
4523 * Get file name to use for swap file or backup file.
4524 * Use the name of the edited file "fname" and an entry in the 'dir' or 'bdir'
4525 * option "dname".
4526 * - If "dname" is ".", return "fname" (swap file in dir of file).
4527 * - If "dname" starts with "./", insert "dname" in "fname" (swap file
4528 * relative to dir of file).
4529 * - Otherwise, prepend "dname" to the tail of "fname" (swap file in specific
4530 * dir).
4531 *
4532 * The return value is an allocated string and can be NULL.
4533 */
4534 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004535get_file_in_dir(
4536 char_u *fname,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004537 char_u *dname) // don't use "dirname", it is a global for Alpha
Bram Moolenaar071d4272004-06-13 20:20:40 +00004538{
4539 char_u *t;
4540 char_u *tail;
4541 char_u *retval;
4542 int save_char;
4543
4544 tail = gettail(fname);
4545
4546 if (dname[0] == '.' && dname[1] == NUL)
4547 retval = vim_strsave(fname);
4548 else if (dname[0] == '.' && vim_ispathsep(dname[1]))
4549 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004550 if (tail == fname) // no path before file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004551 retval = concat_fnames(dname + 2, tail, TRUE);
4552 else
4553 {
4554 save_char = *tail;
4555 *tail = NUL;
4556 t = concat_fnames(fname, dname + 2, TRUE);
4557 *tail = save_char;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004558 if (t == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004559 retval = NULL;
4560 else
4561 {
4562 retval = concat_fnames(t, tail, TRUE);
4563 vim_free(t);
4564 }
4565 }
4566 }
4567 else
4568 retval = concat_fnames(dname, tail, TRUE);
4569
Bram Moolenaar4f974752019-02-17 17:44:42 +01004570#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004571 if (retval != NULL)
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004572 for (t = gettail(retval); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004573 if (*t == ':')
4574 *t = '%';
4575#endif
4576
Bram Moolenaar071d4272004-06-13 20:20:40 +00004577 return retval;
4578}
4579
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004580/*
4581 * Print the ATTENTION message: info about an existing swap file.
4582 */
4583 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004584attention_message(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004585 buf_T *buf, // buffer being edited
4586 char_u *fname) // swap file name
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004587{
Bram Moolenaar8767f522016-07-01 17:17:39 +02004588 stat_T st;
Bram Moolenaar63d25552019-05-10 21:28:38 +02004589 time_t swap_mtime;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004590
4591 ++no_wait_return;
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01004592 (void)emsg(_("E325: ATTENTION"));
Bram Moolenaar32526b32019-01-19 17:43:09 +01004593 msg_puts(_("\nFound a swap file by the name \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004594 msg_home_replace(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004595 msg_puts("\"\n");
Bram Moolenaar63d25552019-05-10 21:28:38 +02004596 swap_mtime = swapfile_info(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004597 msg_puts(_("While opening file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004598 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004599 msg_puts("\"\n");
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004600 if (mch_stat((char *)buf->b_fname, &st) == -1)
4601 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004602 msg_puts(_(" CANNOT BE FOUND"));
Bram Moolenaard6105cb2018-10-13 19:06:27 +02004603 }
4604 else
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004605 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01004606 msg_puts(_(" dated: "));
Bram Moolenaar63d25552019-05-10 21:28:38 +02004607 msg_puts(get_ctime(st.st_mtime, TRUE));
4608 if (swap_mtime != 0 && st.st_mtime > swap_mtime)
Bram Moolenaar32526b32019-01-19 17:43:09 +01004609 msg_puts(_(" NEWER than swap file!\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004610 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004611 // Some of these messages are long to allow translation to
4612 // other languages.
Bram Moolenaar32526b32019-01-19 17:43:09 +01004613 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"));
4614 msg_puts(_("(2) An edit session for this file crashed.\n"));
4615 msg_puts(_(" If this is the case, use \":recover\" or \"vim -r "));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004616 msg_outtrans(buf->b_fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004617 msg_puts(_("\"\n to recover the changes (see \":help recovery\").\n"));
4618 msg_puts(_(" If you did this already, delete the swap file \""));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004619 msg_outtrans(fname);
Bram Moolenaar32526b32019-01-19 17:43:09 +01004620 msg_puts(_("\"\n to avoid this message.\n"));
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004621 cmdline_row = msg_row;
4622 --no_wait_return;
4623}
4624
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01004625#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004626/*
4627 * Trigger the SwapExists autocommands.
4628 * Returns a value for equivalent to do_dialog() (see below):
4629 * 0: still need to ask for a choice
4630 * 1: open read-only
4631 * 2: edit anyway
4632 * 3: recover
4633 * 4: delete it
4634 * 5: quit
4635 * 6: abort
4636 */
4637 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004638do_swapexists(buf_T *buf, char_u *fname)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004639{
4640 set_vim_var_string(VV_SWAPNAME, fname, -1);
4641 set_vim_var_string(VV_SWAPCHOICE, NULL, -1);
4642
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004643 // Trigger SwapExists autocommands with <afile> set to the file being
4644 // edited. Disallow changing directory here.
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004645 ++allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004646 apply_autocmds(EVENT_SWAPEXISTS, buf->b_fname, NULL, FALSE, NULL);
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004647 --allbuf_lock;
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004648
4649 set_vim_var_string(VV_SWAPNAME, NULL, -1);
4650
4651 switch (*get_vim_var_str(VV_SWAPCHOICE))
4652 {
4653 case 'o': return 1;
4654 case 'e': return 2;
4655 case 'r': return 3;
4656 case 'd': return 4;
4657 case 'q': return 5;
4658 case 'a': return 6;
4659 }
4660
4661 return 0;
4662}
4663#endif
4664
Bram Moolenaar071d4272004-06-13 20:20:40 +00004665/*
4666 * Find out what name to use for the swap file for buffer 'buf'.
4667 *
4668 * Several names are tried to find one that does not exist
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004669 * Returns the name in allocated memory or NULL.
Bram Moolenaarf541c362011-10-26 11:44:18 +02004670 * When out of memory "dirp" is set to NULL.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004671 *
4672 * Note: If BASENAMELEN is not correct, you will get error messages for
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004673 * not being able to open the swap or undo file
Bram Moolenaar12c22ce2009-04-22 13:58:46 +00004674 * Note: May trigger SwapExists autocmd, pointers may change!
Bram Moolenaar071d4272004-06-13 20:20:40 +00004675 */
4676 static char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01004677findswapname(
4678 buf_T *buf,
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004679 char_u **dirp, // pointer to list of directories
4680 char_u *old_fname) // don't give warning for this file name
Bram Moolenaar071d4272004-06-13 20:20:40 +00004681{
4682 char_u *fname;
4683 int n;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004684 char_u *dir_name;
4685#ifdef AMIGA
4686 BPTR fh;
4687#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004688 int r;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004689 char_u *buf_fname = buf->b_fname;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004690
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004691#if !defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004692# define CREATE_DUMMY_FILE
4693 FILE *dummyfd = NULL;
4694
Bram Moolenaar4f974752019-02-17 17:44:42 +01004695# ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01004696 if (buf_fname != NULL && !mch_isFullName(buf_fname)
4697 && vim_strchr(gettail(buf_fname), ':'))
4698 {
4699 char_u *t;
4700
4701 buf_fname = vim_strsave(buf_fname);
4702 if (buf_fname == NULL)
4703 buf_fname = buf->b_fname;
4704 else
Bram Moolenaar91acfff2017-03-12 19:22:36 +01004705 for (t = gettail(buf_fname); *t != NUL; MB_PTR_ADV(t))
Bram Moolenaar69c35002013-11-04 02:54:12 +01004706 if (*t == ':')
4707 *t = '%';
4708 }
4709# endif
4710
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004711 /*
4712 * If we start editing a new file, e.g. "test.doc", which resides on an
4713 * MSDOS compatible filesystem, it is possible that the file
4714 * "test.doc.swp" which we create will be exactly the same file. To avoid
4715 * this problem we temporarily create "test.doc". Don't do this when the
4716 * check below for a 8.3 file name is used.
4717 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004718 if (!(buf->b_p_sn || buf->b_shortname) && buf_fname != NULL
4719 && mch_getperm(buf_fname) < 0)
4720 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00004721#endif
4722
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004723 /*
4724 * Isolate a directory name from *dirp and put it in dir_name.
4725 * First allocate some memory to put the directory name in.
4726 */
Bram Moolenaar964b3742019-05-24 18:54:09 +02004727 dir_name = alloc(STRLEN(*dirp) + 1);
Bram Moolenaarf541c362011-10-26 11:44:18 +02004728 if (dir_name == NULL)
4729 *dirp = NULL;
4730 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00004731 (void)copy_option_part(dirp, dir_name, 31000, ",");
4732
Bram Moolenaar55debbe2010-05-23 23:34:36 +02004733 /*
4734 * we try different names until we find one that does not exist yet
4735 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004736 if (dir_name == NULL) // out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004737 fname = NULL;
4738 else
Bram Moolenaar69c35002013-11-04 02:54:12 +01004739 fname = makeswapname(buf_fname, buf->b_ffname, buf, dir_name);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004740
4741 for (;;)
4742 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004743 if (fname == NULL) // must be out of memory
Bram Moolenaar071d4272004-06-13 20:20:40 +00004744 break;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004745 if ((n = (int)STRLEN(fname)) == 0) // safety check
Bram Moolenaar071d4272004-06-13 20:20:40 +00004746 {
Bram Moolenaard23a8232018-02-10 18:45:26 +01004747 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004748 break;
4749 }
Bram Moolenaar48e330a2016-02-23 14:53:34 +01004750#if defined(UNIX)
Bram Moolenaar071d4272004-06-13 20:20:40 +00004751/*
4752 * Some systems have a MS-DOS compatible filesystem that use 8.3 character
4753 * file names. If this is the first try and the swap file name does not fit in
4754 * 8.3, detect if this is the case, set shortname and try again.
4755 */
4756 if (fname[n - 2] == 'w' && fname[n - 1] == 'p'
4757 && !(buf->b_p_sn || buf->b_shortname))
4758 {
4759 char_u *tail;
4760 char_u *fname2;
Bram Moolenaar8767f522016-07-01 17:17:39 +02004761 stat_T s1, s2;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004762 int f1, f2;
4763 int created1 = FALSE, created2 = FALSE;
4764 int same = FALSE;
4765
4766 /*
4767 * Check if swapfile name does not fit in 8.3:
4768 * It either contains two dots, is longer than 8 chars, or starts
4769 * with a dot.
4770 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004771 tail = gettail(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004772 if ( vim_strchr(tail, '.') != NULL
4773 || STRLEN(tail) > (size_t)8
4774 || *gettail(fname) == '.')
4775 {
4776 fname2 = alloc(n + 2);
4777 if (fname2 != NULL)
4778 {
4779 STRCPY(fname2, fname);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004780 // if fname == "xx.xx.swp", fname2 = "xx.xx.swx"
4781 // if fname == ".xx.swp", fname2 = ".xx.swpx"
4782 // if fname == "123456789.swp", fname2 = "12345678x.swp"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004783 if (vim_strchr(tail, '.') != NULL)
4784 fname2[n - 1] = 'x';
4785 else if (*gettail(fname) == '.')
4786 {
4787 fname2[n] = 'x';
4788 fname2[n + 1] = NUL;
4789 }
4790 else
4791 fname2[n - 5] += 1;
4792 /*
4793 * may need to create the files to be able to use mch_stat()
4794 */
4795 f1 = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4796 if (f1 < 0)
4797 {
4798 f1 = mch_open_rw((char *)fname,
4799 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004800 created1 = TRUE;
4801 }
4802 if (f1 >= 0)
4803 {
4804 f2 = mch_open((char *)fname2, O_RDONLY | O_EXTRA, 0);
4805 if (f2 < 0)
4806 {
4807 f2 = mch_open_rw((char *)fname2,
4808 O_RDWR|O_CREAT|O_EXCL|O_EXTRA);
4809 created2 = TRUE;
4810 }
4811 if (f2 >= 0)
4812 {
4813 /*
4814 * Both files exist now. If mch_stat() returns the
4815 * same device and inode they are the same file.
4816 */
4817 if (mch_fstat(f1, &s1) != -1
4818 && mch_fstat(f2, &s2) != -1
4819 && s1.st_dev == s2.st_dev
4820 && s1.st_ino == s2.st_ino)
4821 same = TRUE;
4822 close(f2);
4823 if (created2)
4824 mch_remove(fname2);
4825 }
4826 close(f1);
4827 if (created1)
4828 mch_remove(fname);
4829 }
4830 vim_free(fname2);
4831 if (same)
4832 {
4833 buf->b_shortname = TRUE;
4834 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004835 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004836 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004837 continue; // try again with b_shortname set
Bram Moolenaar071d4272004-06-13 20:20:40 +00004838 }
4839 }
4840 }
4841 }
4842#endif
4843 /*
4844 * check if the swapfile already exists
4845 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004846 if (mch_getperm(fname) < 0) // it does not exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004847 {
4848#ifdef HAVE_LSTAT
Bram Moolenaar8767f522016-07-01 17:17:39 +02004849 stat_T sb;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004850
4851 /*
4852 * Extra security check: When a swap file is a symbolic link, this
4853 * is most likely a symlink attack.
4854 */
4855 if (mch_lstat((char *)fname, &sb) < 0)
4856#else
4857# ifdef AMIGA
4858 fh = Open((UBYTE *)fname, (long)MODE_NEWFILE);
4859 /*
4860 * on the Amiga mch_getperm() will return -1 when the file exists
4861 * but is being used by another program. This happens if you edit
4862 * a file twice.
4863 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004864 if (fh != (BPTR)NULL) // can open file, OK
Bram Moolenaar071d4272004-06-13 20:20:40 +00004865 {
4866 Close(fh);
4867 mch_remove(fname);
4868 break;
4869 }
4870 if (IoErr() != ERROR_OBJECT_IN_USE
4871 && IoErr() != ERROR_OBJECT_EXISTS)
4872# endif
4873#endif
4874 break;
4875 }
4876
4877 /*
4878 * A file name equal to old_fname is OK to use.
4879 */
4880 if (old_fname != NULL && fnamecmp(fname, old_fname) == 0)
4881 break;
4882
4883 /*
4884 * get here when file already exists
4885 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004886 if (fname[n - 2] == 'w' && fname[n - 1] == 'p') // first try
Bram Moolenaar071d4272004-06-13 20:20:40 +00004887 {
Bram Moolenaar071d4272004-06-13 20:20:40 +00004888 /*
4889 * on MS-DOS compatible filesystems (e.g. messydos) file.doc.swp
4890 * and file.doc are the same file. To guess if this problem is
4891 * present try if file.doc.swx exists. If it does, we set
4892 * buf->b_shortname and try file_doc.swp (dots replaced by
4893 * underscores for this file), and try again. If it doesn't we
4894 * assume that "file.doc.swp" already exists.
4895 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004896 if (!(buf->b_p_sn || buf->b_shortname)) // not tried yet
Bram Moolenaar071d4272004-06-13 20:20:40 +00004897 {
4898 fname[n - 1] = 'x';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004899 r = mch_getperm(fname); // try "file.swx"
Bram Moolenaar071d4272004-06-13 20:20:40 +00004900 fname[n - 1] = 'p';
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004901 if (r >= 0) // "file.swx" seems to exist
Bram Moolenaar071d4272004-06-13 20:20:40 +00004902 {
4903 buf->b_shortname = TRUE;
4904 vim_free(fname);
Bram Moolenaar69c35002013-11-04 02:54:12 +01004905 fname = makeswapname(buf_fname, buf->b_ffname,
Bram Moolenaar04a09c12005-08-01 22:02:32 +00004906 buf, dir_name);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004907 continue; // try again with '.' replaced with '_'
Bram Moolenaar071d4272004-06-13 20:20:40 +00004908 }
4909 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004910 /*
4911 * If we get here the ".swp" file really exists.
4912 * Give an error message, unless recovering, no file name, we are
4913 * viewing a help file or when the path of the file is different
4914 * (happens when all .swp files are in one directory).
4915 */
Bram Moolenaar69c35002013-11-04 02:54:12 +01004916 if (!recoverymode && buf_fname != NULL
Bram Moolenaar2debf1c2019-08-04 20:44:19 +02004917 && !buf->b_help
4918 && !(buf->b_flags & (BF_DUMMY | BF_NO_SEA)))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004919 {
4920 int fd;
4921 struct block0 b0;
4922 int differ = FALSE;
4923
4924 /*
4925 * Try to read block 0 from the swap file to get the original
4926 * file name (and inode number).
4927 */
4928 fd = mch_open((char *)fname, O_RDONLY | O_EXTRA, 0);
4929 if (fd >= 0)
4930 {
Bram Moolenaar540fc6f2010-12-17 16:27:16 +01004931 if (read_eintr(fd, &b0, sizeof(b0)) == sizeof(b0))
Bram Moolenaar071d4272004-06-13 20:20:40 +00004932 {
4933 /*
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004934 * If the swapfile has the same directory as the
4935 * buffer don't compare the directory names, they can
4936 * have a different mountpoint.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004937 */
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004938 if (b0.b0_flags & B0_SAME_DIR)
4939 {
4940 if (fnamecmp(gettail(buf->b_ffname),
4941 gettail(b0.b0_fname)) != 0
4942 || !same_directory(fname, buf->b_ffname))
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004943 {
4944#ifdef CHECK_INODE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004945 // Symlinks may point to the same file even
4946 // when the name differs, need to check the
4947 // inode too.
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004948 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
4949 if (fnamecmp_ino(buf->b_ffname, NameBuff,
4950 char_to_long(b0.b0_ino)))
4951#endif
4952 differ = TRUE;
4953 }
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004954 }
4955 else
4956 {
4957 /*
4958 * The name in the swap file may be
4959 * "~user/path/file". Expand it first.
4960 */
4961 expand_env(b0.b0_fname, NameBuff, MAXPATHL);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004962#ifdef CHECK_INODE
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004963 if (fnamecmp_ino(buf->b_ffname, NameBuff,
Bram Moolenaar900b4d72005-12-12 22:05:50 +00004964 char_to_long(b0.b0_ino)))
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004965 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004966#else
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004967 if (fnamecmp(NameBuff, buf->b_ffname) != 0)
4968 differ = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004969#endif
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00004970 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004971 }
4972 close(fd);
4973 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00004974
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004975 // give the ATTENTION message when there is an old swap file
4976 // for the current file, and the buffer was not recovered.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004977 if (differ == FALSE && !(curbuf->b_flags & BF_RECOVERED)
4978 && vim_strchr(p_shm, SHM_ATTENTION) == NULL)
4979 {
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00004980 int choice = 0;
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02004981 stat_T st;
Bram Moolenaar071d4272004-06-13 20:20:40 +00004982#ifdef CREATE_DUMMY_FILE
4983 int did_use_dummy = FALSE;
4984
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01004985 // Avoid getting a warning for the file being created
4986 // outside of Vim, it was created at the start of this
4987 // function. Delete the file now, because Vim might exit
4988 // here if the window is closed.
Bram Moolenaar071d4272004-06-13 20:20:40 +00004989 if (dummyfd != NULL)
4990 {
4991 fclose(dummyfd);
4992 dummyfd = NULL;
Bram Moolenaar69c35002013-11-04 02:54:12 +01004993 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00004994 did_use_dummy = TRUE;
4995 }
4996#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00004997
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02004998#ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00004999 process_still_running = FALSE;
5000#endif
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005001 // It's safe to delete the swap file if all these are true:
5002 // - the edited file exists
5003 // - the swap file has no changes and looks OK
5004 if (mch_stat((char *)buf->b_fname, &st) == 0
5005 && swapfile_unchanged(fname))
5006 {
5007 choice = 4;
5008 if (p_verbose > 0)
5009 verb_msg(_("Found a swap file that is not useful, deleting it"));
5010 }
5011
Bram Moolenaarf2bd8ef2018-03-04 18:08:14 +01005012#if defined(FEAT_EVAL)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005013 /*
5014 * If there is an SwapExists autocommand and we can handle
5015 * the response, trigger it. It may return 0 to ask the
5016 * user anyway.
5017 */
Bram Moolenaar67cf86b2019-04-28 22:25:38 +02005018 if (choice == 0
5019 && swap_exists_action != SEA_NONE
Bram Moolenaar69c35002013-11-04 02:54:12 +01005020 && has_autocmd(EVENT_SWAPEXISTS, buf_fname, buf))
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005021 choice = do_swapexists(buf, fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005022
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005023 if (choice == 0)
5024#endif
5025 {
5026#ifdef FEAT_GUI
Bram Moolenaar798184c2018-10-07 20:48:39 +02005027 // If we are supposed to start the GUI but it wasn't
5028 // completely started yet, start it now. This makes
5029 // the messages displayed in the Vim window when
5030 // loading a session from the .gvimrc file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005031 if (gui.starting && !gui.in_use)
Bram Moolenaarafde13b2019-04-28 19:46:49 +02005032 gui_start(NULL);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005033#endif
Bram Moolenaar798184c2018-10-07 20:48:39 +02005034 // Show info about the existing swap file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005035 attention_message(buf, fname);
5036
Bram Moolenaar798184c2018-10-07 20:48:39 +02005037 // We don't want a 'q' typed at the more-prompt
5038 // interrupt loading a file.
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005039 got_int = FALSE;
Bram Moolenaar798184c2018-10-07 20:48:39 +02005040
5041 // If vimrc has "simalt ~x" we don't want it to
5042 // interfere with the prompt here.
Bram Moolenaar6a2633b2018-10-07 23:16:36 +02005043 flush_buffers(FLUSH_TYPEAHEAD);
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005044 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005045
5046#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005047 if (swap_exists_action != SEA_NONE && choice == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005048 {
5049 char_u *name;
5050
Bram Moolenaar964b3742019-05-24 18:54:09 +02005051 name = alloc(STRLEN(fname)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005052 + STRLEN(_("Swap file \""))
Bram Moolenaar964b3742019-05-24 18:54:09 +02005053 + STRLEN(_("\" already exists!")) + 5);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005054 if (name != NULL)
5055 {
5056 STRCPY(name, _("Swap file \""));
5057 home_replace(NULL, fname, name + STRLEN(name),
5058 1000, TRUE);
5059 STRCAT(name, _("\" already exists!"));
5060 }
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005061 choice = do_dialog(VIM_WARNING,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005062 (char_u *)_("VIM - ATTENTION"),
5063 name == NULL
5064 ? (char_u *)_("Swap file already exists!")
5065 : name,
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005066# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaar071d4272004-06-13 20:20:40 +00005067 process_still_running
5068 ? (char_u *)_("&Open Read-Only\n&Edit anyway\n&Recover\n&Quit\n&Abort") :
5069# endif
Bram Moolenaard2c340a2011-01-17 20:08:11 +01005070 (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 +00005071
Bram Moolenaar1b243ea2019-04-28 22:50:40 +02005072# ifdef HAVE_PROCESS_STILL_RUNNING
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005073 if (process_still_running && choice >= 4)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005074 choice++; // Skip missing "Delete it" button
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005075# endif
5076 vim_free(name);
5077
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005078 // pretend screen didn't scroll, need redraw anyway
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005079 msg_scrolled = 0;
5080 redraw_all_later(NOT_VALID);
5081 }
5082#endif
5083
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005084 if (choice > 0)
5085 {
5086 switch (choice)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005087 {
5088 case 1:
5089 buf->b_p_ro = TRUE;
5090 break;
5091 case 2:
5092 break;
5093 case 3:
5094 swap_exists_action = SEA_RECOVER;
5095 break;
5096 case 4:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005097 mch_remove(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005098 break;
5099 case 5:
5100 swap_exists_action = SEA_QUIT;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005101 break;
5102 case 6:
Bram Moolenaard5bc83f2005-12-07 21:07:59 +00005103 swap_exists_action = SEA_QUIT;
5104 got_int = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005105 break;
5106 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005107
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005108 // If the file was deleted this fname can be used.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005109 if (mch_getperm(fname) < 0)
5110 break;
5111 }
5112 else
Bram Moolenaar071d4272004-06-13 20:20:40 +00005113 {
Bram Moolenaar32526b32019-01-19 17:43:09 +01005114 msg_puts("\n");
Bram Moolenaar4770d092006-01-12 23:22:24 +00005115 if (msg_silent == 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005116 // call wait_return() later
Bram Moolenaar4770d092006-01-12 23:22:24 +00005117 need_wait_return = TRUE;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005118 }
5119
5120#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005121 // Going to try another name, need the dummy file again.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005122 if (did_use_dummy)
Bram Moolenaar69c35002013-11-04 02:54:12 +01005123 dummyfd = mch_fopen((char *)buf_fname, "w");
Bram Moolenaar071d4272004-06-13 20:20:40 +00005124#endif
5125 }
5126 }
5127 }
5128
5129 /*
5130 * Change the ".swp" extension to find another file that can be used.
5131 * First decrement the last char: ".swo", ".swn", etc.
5132 * If that still isn't enough decrement the last but one char: ".svz"
Bram Moolenaar69a7cb42004-06-20 12:51:53 +00005133 * Can happen when editing many "No Name" buffers.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005134 */
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005135 if (fname[n - 1] == 'a') // ".s?a"
Bram Moolenaar071d4272004-06-13 20:20:40 +00005136 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005137 if (fname[n - 2] == 'a') // ".saa": tried enough, give up
Bram Moolenaar071d4272004-06-13 20:20:40 +00005138 {
Bram Moolenaarf9e3e092019-01-13 23:38:42 +01005139 emsg(_("E326: Too many swap files found"));
Bram Moolenaard23a8232018-02-10 18:45:26 +01005140 VIM_CLEAR(fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005141 break;
5142 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005143 --fname[n - 2]; // ".svz", ".suz", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005144 fname[n - 1] = 'z' + 1;
5145 }
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005146 --fname[n - 1]; // ".swo", ".swn", etc.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005147 }
5148
5149 vim_free(dir_name);
5150#ifdef CREATE_DUMMY_FILE
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005151 if (dummyfd != NULL) // file has been created temporarily
Bram Moolenaar071d4272004-06-13 20:20:40 +00005152 {
5153 fclose(dummyfd);
Bram Moolenaar69c35002013-11-04 02:54:12 +01005154 mch_remove(buf_fname);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005155 }
5156#endif
Bram Moolenaar4f974752019-02-17 17:44:42 +01005157#ifdef MSWIN
Bram Moolenaar69c35002013-11-04 02:54:12 +01005158 if (buf_fname != buf->b_fname)
5159 vim_free(buf_fname);
5160#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005161 return fname;
5162}
5163
5164 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005165b0_magic_wrong(ZERO_BL *b0p)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005166{
5167 return (b0p->b0_magic_long != (long)B0_MAGIC_LONG
5168 || b0p->b0_magic_int != (int)B0_MAGIC_INT
5169 || b0p->b0_magic_short != (short)B0_MAGIC_SHORT
5170 || b0p->b0_magic_char != B0_MAGIC_CHAR);
5171}
5172
5173#ifdef CHECK_INODE
5174/*
5175 * Compare current file name with file name from swap file.
5176 * Try to use inode numbers when possible.
5177 * Return non-zero when files are different.
5178 *
5179 * When comparing file names a few things have to be taken into consideration:
5180 * - When working over a network the full path of a file depends on the host.
5181 * We check the inode number if possible. It is not 100% reliable though,
5182 * because the device number cannot be used over a network.
5183 * - When a file does not exist yet (editing a new file) there is no inode
5184 * number.
5185 * - The file name in a swap file may not be valid on the current host. The
5186 * "~user" form is used whenever possible to avoid this.
5187 *
5188 * This is getting complicated, let's make a table:
5189 *
5190 * ino_c ino_s fname_c fname_s differ =
5191 *
5192 * both files exist -> compare inode numbers:
5193 * != 0 != 0 X X ino_c != ino_s
5194 *
5195 * inode number(s) unknown, file names available -> compare file names
5196 * == 0 X OK OK fname_c != fname_s
5197 * X == 0 OK OK fname_c != fname_s
5198 *
5199 * current file doesn't exist, file for swap file exist, file name(s) not
5200 * available -> probably different
5201 * == 0 != 0 FAIL X TRUE
5202 * == 0 != 0 X FAIL TRUE
5203 *
5204 * current file exists, inode for swap unknown, file name(s) not
5205 * available -> probably different
5206 * != 0 == 0 FAIL X TRUE
5207 * != 0 == 0 X FAIL TRUE
5208 *
5209 * current file doesn't exist, inode for swap unknown, one file name not
5210 * available -> probably different
5211 * == 0 == 0 FAIL OK TRUE
5212 * == 0 == 0 OK FAIL TRUE
5213 *
5214 * current file doesn't exist, inode for swap unknown, both file names not
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005215 * available -> compare file names
5216 * == 0 == 0 FAIL FAIL fname_c != fname_s
Bram Moolenaar071d4272004-06-13 20:20:40 +00005217 *
5218 * Note that when the ino_t is 64 bits, only the last 32 will be used. This
5219 * can't be changed without making the block 0 incompatible with 32 bit
5220 * versions.
5221 */
5222
5223 static int
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005224fnamecmp_ino(
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005225 char_u *fname_c, // current file name
5226 char_u *fname_s, // file name from swap file
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005227 long ino_block0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005228{
Bram Moolenaar8767f522016-07-01 17:17:39 +02005229 stat_T st;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005230 ino_t ino_c = 0; // ino of current file
5231 ino_t ino_s; // ino of file from swap file
5232 char_u buf_c[MAXPATHL]; // full path of fname_c
5233 char_u buf_s[MAXPATHL]; // full path of fname_s
5234 int retval_c; // flag: buf_c valid
5235 int retval_s; // flag: buf_s valid
Bram Moolenaar071d4272004-06-13 20:20:40 +00005236
5237 if (mch_stat((char *)fname_c, &st) == 0)
5238 ino_c = (ino_t)st.st_ino;
5239
5240 /*
5241 * First we try to get the inode from the file name, because the inode in
5242 * the swap file may be outdated. If that fails (e.g. this path is not
5243 * valid on this machine), use the inode from block 0.
5244 */
5245 if (mch_stat((char *)fname_s, &st) == 0)
5246 ino_s = (ino_t)st.st_ino;
5247 else
5248 ino_s = (ino_t)ino_block0;
5249
5250 if (ino_c && ino_s)
5251 return (ino_c != ino_s);
5252
5253 /*
5254 * One of the inode numbers is unknown, try a forced vim_FullName() and
5255 * compare the file names.
5256 */
5257 retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE);
5258 retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE);
5259 if (retval_c == OK && retval_s == OK)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005260 return STRCMP(buf_c, buf_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005261
5262 /*
5263 * Can't compare inodes or file names, guess that the files are different,
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005264 * unless both appear not to exist at all, then compare with the file name
5265 * in the swap file.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005266 */
5267 if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL)
Bram Moolenaar8c3169c2018-05-12 17:04:12 +02005268 return STRCMP(fname_c, fname_s) != 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005269 return TRUE;
5270}
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005271#endif // CHECK_INODE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005272
5273/*
5274 * Move a long integer into a four byte character array.
5275 * Used for machine independency in block zero.
5276 */
5277 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005278long_to_char(long n, char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005279{
5280 s[0] = (char_u)(n & 0xff);
5281 n = (unsigned)n >> 8;
5282 s[1] = (char_u)(n & 0xff);
5283 n = (unsigned)n >> 8;
5284 s[2] = (char_u)(n & 0xff);
5285 n = (unsigned)n >> 8;
5286 s[3] = (char_u)(n & 0xff);
5287}
5288
5289 static long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005290char_to_long(char_u *s)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005291{
5292 long retval;
5293
5294 retval = s[3];
5295 retval <<= 8;
5296 retval |= s[2];
5297 retval <<= 8;
5298 retval |= s[1];
5299 retval <<= 8;
5300 retval |= s[0];
5301
5302 return retval;
5303}
5304
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005305/*
5306 * Set the flags in the first block of the swap file:
5307 * - file is modified or not: buf->b_changed
5308 * - 'fileformat'
5309 * - 'fileencoding'
5310 */
Bram Moolenaar071d4272004-06-13 20:20:40 +00005311 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005312ml_setflags(buf_T *buf)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005313{
5314 bhdr_T *hp;
5315 ZERO_BL *b0p;
5316
5317 if (!buf->b_ml.ml_mfp)
5318 return;
5319 for (hp = buf->b_ml.ml_mfp->mf_used_last; hp != NULL; hp = hp->bh_prev)
5320 {
5321 if (hp->bh_bnum == 0)
5322 {
5323 b0p = (ZERO_BL *)(hp->bh_data);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005324 b0p->b0_dirty = buf->b_changed ? B0_DIRTY : 0;
5325 b0p->b0_flags = (b0p->b0_flags & ~B0_FF_MASK)
5326 | (get_fileformat(buf) + 1);
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00005327 add_b0_fenc(b0p, buf);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005328 hp->bh_flags |= BH_DIRTY;
5329 mf_sync(buf->b_ml.ml_mfp, MFS_ZERO);
5330 break;
5331 }
5332 }
5333}
5334
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005335#if defined(FEAT_CRYPT) || defined(PROTO)
5336/*
5337 * If "data" points to a data block encrypt the text in it and return a copy
5338 * in allocated memory. Return NULL when out of memory.
5339 * Otherwise return "data".
5340 */
5341 char_u *
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005342ml_encrypt_data(
5343 memfile_T *mfp,
5344 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005345 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005346 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005347{
5348 DATA_BL *dp = (DATA_BL *)data;
5349 char_u *head_end;
5350 char_u *text_start;
5351 char_u *new_data;
5352 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005353 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005354
5355 if (dp->db_id != DATA_ID)
5356 return data;
5357
Bram Moolenaarbc563362015-06-09 18:35:25 +02005358 state = ml_crypt_prepare(mfp, offset, FALSE);
5359 if (state == NULL)
5360 return data;
5361
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005362 new_data = alloc(size);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005363 if (new_data == NULL)
5364 return NULL;
5365 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5366 text_start = (char_u *)dp + dp->db_txt_start;
5367 text_len = size - dp->db_txt_start;
5368
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005369 // Copy the header and the text.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005370 mch_memmove(new_data, dp, head_end - (char_u *)dp);
5371
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005372 // Encrypt the text.
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005373 crypt_encode(state, text_start, text_len, new_data + dp->db_txt_start,
5374 FALSE);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005375 crypt_free_state(state);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005376
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005377 // Clear the gap.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005378 if (head_end < text_start)
5379 vim_memset(new_data + (head_end - data), 0, text_start - head_end);
5380
5381 return new_data;
5382}
5383
5384/*
Bram Moolenaarbc563362015-06-09 18:35:25 +02005385 * Decrypt the text in "data" if it points to an encrypted data block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005386 */
5387 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005388ml_decrypt_data(
5389 memfile_T *mfp,
5390 char_u *data,
Bram Moolenaar8767f522016-07-01 17:17:39 +02005391 off_T offset,
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005392 unsigned size)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005393{
5394 DATA_BL *dp = (DATA_BL *)data;
5395 char_u *head_end;
5396 char_u *text_start;
5397 int text_len;
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005398 cryptstate_T *state;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005399
5400 if (dp->db_id == DATA_ID)
5401 {
5402 head_end = (char_u *)(&dp->db_index[dp->db_line_count]);
5403 text_start = (char_u *)dp + dp->db_txt_start;
5404 text_len = dp->db_txt_end - dp->db_txt_start;
5405
5406 if (head_end > text_start || dp->db_txt_start > size
5407 || dp->db_txt_end > size)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005408 return; // data was messed up
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005409
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005410 state = ml_crypt_prepare(mfp, offset, TRUE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005411 if (state != NULL)
5412 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005413 // Decrypt the text in place.
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005414 crypt_decode_inplace(state, text_start, text_len, FALSE);
Bram Moolenaarbc563362015-06-09 18:35:25 +02005415 crypt_free_state(state);
5416 }
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005417 }
5418}
5419
5420/*
5421 * Prepare for encryption/decryption, using the key, seed and offset.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005422 * Return an allocated cryptstate_T *.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005423 */
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005424 static cryptstate_T *
Bram Moolenaar8767f522016-07-01 17:17:39 +02005425ml_crypt_prepare(memfile_T *mfp, off_T offset, int reading)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005426{
5427 buf_T *buf = mfp->mf_buffer;
5428 char_u salt[50];
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005429 int method_nr;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005430 char_u *key;
5431 char_u *seed;
5432
5433 if (reading && mfp->mf_old_key != NULL)
5434 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005435 // Reading back blocks with the previous key/method/seed.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005436 method_nr = mfp->mf_old_cm;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005437 key = mfp->mf_old_key;
5438 seed = mfp->mf_old_seed;
5439 }
5440 else
5441 {
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005442 method_nr = crypt_get_method_nr(buf);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005443 key = buf->b_p_key;
5444 seed = mfp->mf_seed;
5445 }
Bram Moolenaarbc563362015-06-09 18:35:25 +02005446 if (*key == NUL)
5447 return NULL;
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005448
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005449 if (method_nr == CRYPT_M_ZIP)
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005450 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005451 // For PKzip: Append the offset to the key, so that we use a different
5452 // key for every block.
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005453 vim_snprintf((char *)salt, sizeof(salt), "%s%ld", key, (long)offset);
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005454 return crypt_create(method_nr, salt, NULL, 0, NULL, 0);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005455 }
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005456
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005457 // Using blowfish or better: add salt and seed. We use the byte offset
5458 // of the block for the salt.
Bram Moolenaar8f4ac012014-08-10 13:38:34 +02005459 vim_snprintf((char *)salt, sizeof(salt), "%ld", (long)offset);
5460 return crypt_create(method_nr, key, salt, (int)STRLEN(salt),
Christian Brabandtf573c6e2021-06-20 14:02:16 +02005461 seed, MF_SEED_LEN);
Bram Moolenaara8ffcbb2010-06-21 06:15:46 +02005462}
5463
5464#endif
5465
5466
Bram Moolenaar071d4272004-06-13 20:20:40 +00005467#if defined(FEAT_BYTEOFF) || defined(PROTO)
5468
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005469#define MLCS_MAXL 800 // max no of lines in chunk
5470#define MLCS_MINL 400 // should be half of MLCS_MAXL
Bram Moolenaar071d4272004-06-13 20:20:40 +00005471
5472/*
Bram Moolenaar0ad014c2010-07-25 14:00:46 +02005473 * Keep information for finding byte offset of a line, updtype may be one of:
Bram Moolenaar071d4272004-06-13 20:20:40 +00005474 * ML_CHNK_ADDLINE: Add len to parent chunk, possibly splitting it
5475 * Careful: ML_CHNK_ADDLINE may cause ml_find_line() to be called.
5476 * ML_CHNK_DELLINE: Subtract len from parent chunk, possibly deleting it
5477 * ML_CHNK_UPDLINE: Add len to parent chunk, as a signed entity.
5478 */
5479 static void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005480ml_updatechunk(
5481 buf_T *buf,
5482 linenr_T line,
5483 long len,
5484 int updtype)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005485{
5486 static buf_T *ml_upd_lastbuf = NULL;
5487 static linenr_T ml_upd_lastline;
5488 static linenr_T ml_upd_lastcurline;
5489 static int ml_upd_lastcurix;
5490
5491 linenr_T curline = ml_upd_lastcurline;
5492 int curix = ml_upd_lastcurix;
5493 long size;
5494 chunksize_T *curchnk;
5495 int rest;
5496 bhdr_T *hp;
5497 DATA_BL *dp;
5498
5499 if (buf->b_ml.ml_usedchunks == -1 || len == 0)
5500 return;
5501 if (buf->b_ml.ml_chunksize == NULL)
5502 {
Bram Moolenaarc799fe22019-05-28 23:08:19 +02005503 buf->b_ml.ml_chunksize = ALLOC_MULT(chunksize_T, 100);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005504 if (buf->b_ml.ml_chunksize == NULL)
5505 {
5506 buf->b_ml.ml_usedchunks = -1;
5507 return;
5508 }
5509 buf->b_ml.ml_numchunks = 100;
5510 buf->b_ml.ml_usedchunks = 1;
5511 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
5512 buf->b_ml.ml_chunksize[0].mlcs_totalsize = 1;
5513 }
5514
5515 if (updtype == ML_CHNK_UPDLINE && buf->b_ml.ml_line_count == 1)
5516 {
5517 /*
5518 * First line in empty buffer from ml_flush_line() -- reset
5519 */
5520 buf->b_ml.ml_usedchunks = 1;
5521 buf->b_ml.ml_chunksize[0].mlcs_numlines = 1;
Bram Moolenaar98aefe72018-12-13 22:20:09 +01005522 buf->b_ml.ml_chunksize[0].mlcs_totalsize = (long)buf->b_ml.ml_line_len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005523 return;
5524 }
5525
5526 /*
5527 * Find chunk that our line belongs to, curline will be at start of the
5528 * chunk.
5529 */
5530 if (buf != ml_upd_lastbuf || line != ml_upd_lastline + 1
5531 || updtype != ML_CHNK_ADDLINE)
5532 {
5533 for (curline = 1, curix = 0;
5534 curix < buf->b_ml.ml_usedchunks - 1
5535 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5536 curix++)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005537 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005538 }
Bram Moolenaara9a8e042018-10-30 22:15:55 +01005539 else if (curix < buf->b_ml.ml_usedchunks - 1
5540 && line >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005541 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005542 // Adjust cached curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005543 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5544 curix++;
5545 }
5546 curchnk = buf->b_ml.ml_chunksize + curix;
5547
5548 if (updtype == ML_CHNK_DELLINE)
Bram Moolenaar5a6404c2006-11-01 17:12:57 +00005549 len = -len;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005550 curchnk->mlcs_totalsize += len;
5551 if (updtype == ML_CHNK_ADDLINE)
5552 {
5553 curchnk->mlcs_numlines++;
5554
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005555 // May resize here so we don't have to do it in both cases below
Bram Moolenaar071d4272004-06-13 20:20:40 +00005556 if (buf->b_ml.ml_usedchunks + 1 >= buf->b_ml.ml_numchunks)
5557 {
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005558 chunksize_T *t_chunksize = buf->b_ml.ml_chunksize;
5559
Bram Moolenaar071d4272004-06-13 20:20:40 +00005560 buf->b_ml.ml_numchunks = buf->b_ml.ml_numchunks * 3 / 2;
Bram Moolenaar51b6eb42020-08-22 15:19:18 +02005561 buf->b_ml.ml_chunksize = vim_realloc(buf->b_ml.ml_chunksize,
Bram Moolenaar071d4272004-06-13 20:20:40 +00005562 sizeof(chunksize_T) * buf->b_ml.ml_numchunks);
5563 if (buf->b_ml.ml_chunksize == NULL)
5564 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005565 // Hmmmm, Give up on offset for this buffer
Bram Moolenaar9abd5c62015-02-10 18:34:01 +01005566 vim_free(t_chunksize);
Bram Moolenaar071d4272004-06-13 20:20:40 +00005567 buf->b_ml.ml_usedchunks = -1;
5568 return;
5569 }
5570 }
5571
5572 if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MAXL)
5573 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005574 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005575 int idx;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005576 int end_idx;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005577 int text_end;
5578 int linecnt;
5579
5580 mch_memmove(buf->b_ml.ml_chunksize + curix + 1,
5581 buf->b_ml.ml_chunksize + curix,
5582 (buf->b_ml.ml_usedchunks - curix) *
5583 sizeof(chunksize_T));
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005584 // Compute length of first half of lines in the split chunk
Bram Moolenaar071d4272004-06-13 20:20:40 +00005585 size = 0;
5586 linecnt = 0;
5587 while (curline < buf->b_ml.ml_line_count
5588 && linecnt < MLCS_MINL)
5589 {
5590 if ((hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5591 {
5592 buf->b_ml.ml_usedchunks = -1;
5593 return;
5594 }
5595 dp = (DATA_BL *)(hp->bh_data);
5596 count = (long)(buf->b_ml.ml_locked_high) -
5597 (long)(buf->b_ml.ml_locked_low) + 1;
5598 idx = curline - buf->b_ml.ml_locked_low;
5599 curline = buf->b_ml.ml_locked_high + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005600
5601 // compute index of last line to use in this MEMLINE
Bram Moolenaar071d4272004-06-13 20:20:40 +00005602 rest = count - idx;
5603 if (linecnt + rest > MLCS_MINL)
5604 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005605 end_idx = idx + MLCS_MINL - linecnt - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005606 linecnt = MLCS_MINL;
5607 }
5608 else
5609 {
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005610 end_idx = count - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005611 linecnt += rest;
5612 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005613#ifdef FEAT_PROP_POPUP
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005614 if (buf->b_has_textprop)
5615 {
5616 int i;
5617
5618 // We cannot use the text pointers to get the text length,
5619 // the text prop info would also be counted. Go over the
5620 // lines.
5621 for (i = end_idx; i < idx; ++i)
Bram Moolenaar4b7214e2019-01-03 21:55:32 +01005622 size += (int)STRLEN((char_u *)dp + (dp->db_index[i] & DB_INDEX_MASK)) + 1;
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005623 }
5624 else
5625#endif
5626 {
Bram Moolenaar14c75302021-08-15 14:28:40 +02005627 if (idx == 0) // first line in block, text at the end
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005628 text_end = dp->db_txt_end;
5629 else
5630 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
5631 size += text_end - ((dp->db_index[end_idx]) & DB_INDEX_MASK);
5632 }
Bram Moolenaar071d4272004-06-13 20:20:40 +00005633 }
5634 buf->b_ml.ml_chunksize[curix].mlcs_numlines = linecnt;
5635 buf->b_ml.ml_chunksize[curix + 1].mlcs_numlines -= linecnt;
5636 buf->b_ml.ml_chunksize[curix].mlcs_totalsize = size;
5637 buf->b_ml.ml_chunksize[curix + 1].mlcs_totalsize -= size;
5638 buf->b_ml.ml_usedchunks++;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005639 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005640 return;
5641 }
5642 else if (buf->b_ml.ml_chunksize[curix].mlcs_numlines >= MLCS_MINL
5643 && curix == buf->b_ml.ml_usedchunks - 1
5644 && buf->b_ml.ml_line_count - line <= 1)
5645 {
5646 /*
Bram Moolenaar8e7d6222020-12-18 19:49:56 +01005647 * We are in the last chunk and it is cheap to create a new one
Bram Moolenaar071d4272004-06-13 20:20:40 +00005648 * after this. Do it now to avoid the loop above later on
5649 */
5650 curchnk = buf->b_ml.ml_chunksize + curix + 1;
5651 buf->b_ml.ml_usedchunks++;
5652 if (line == buf->b_ml.ml_line_count)
5653 {
5654 curchnk->mlcs_numlines = 0;
5655 curchnk->mlcs_totalsize = 0;
5656 }
5657 else
5658 {
5659 /*
5660 * Line is just prior to last, move count for last
5661 * This is the common case when loading a new file
5662 */
5663 hp = ml_find_line(buf, buf->b_ml.ml_line_count, ML_FIND);
5664 if (hp == NULL)
5665 {
5666 buf->b_ml.ml_usedchunks = -1;
5667 return;
5668 }
5669 dp = (DATA_BL *)(hp->bh_data);
5670 if (dp->db_line_count == 1)
5671 rest = dp->db_txt_end - dp->db_txt_start;
5672 else
5673 rest =
5674 ((dp->db_index[dp->db_line_count - 2]) & DB_INDEX_MASK)
5675 - dp->db_txt_start;
5676 curchnk->mlcs_totalsize = rest;
5677 curchnk->mlcs_numlines = 1;
5678 curchnk[-1].mlcs_totalsize -= rest;
5679 curchnk[-1].mlcs_numlines -= 1;
5680 }
5681 }
5682 }
5683 else if (updtype == ML_CHNK_DELLINE)
5684 {
5685 curchnk->mlcs_numlines--;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005686 ml_upd_lastbuf = NULL; // Force recalc of curix & curline
Bram Moolenaar071d4272004-06-13 20:20:40 +00005687 if (curix < (buf->b_ml.ml_usedchunks - 1)
5688 && (curchnk->mlcs_numlines + curchnk[1].mlcs_numlines)
5689 <= MLCS_MINL)
5690 {
5691 curix++;
5692 curchnk = buf->b_ml.ml_chunksize + curix;
5693 }
5694 else if (curix == 0 && curchnk->mlcs_numlines <= 0)
5695 {
5696 buf->b_ml.ml_usedchunks--;
5697 mch_memmove(buf->b_ml.ml_chunksize, buf->b_ml.ml_chunksize + 1,
5698 buf->b_ml.ml_usedchunks * sizeof(chunksize_T));
5699 return;
5700 }
5701 else if (curix == 0 || (curchnk->mlcs_numlines > 10
5702 && (curchnk->mlcs_numlines + curchnk[-1].mlcs_numlines)
5703 > MLCS_MINL))
5704 {
5705 return;
5706 }
5707
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005708 // Collapse chunks
Bram Moolenaar071d4272004-06-13 20:20:40 +00005709 curchnk[-1].mlcs_numlines += curchnk->mlcs_numlines;
5710 curchnk[-1].mlcs_totalsize += curchnk->mlcs_totalsize;
5711 buf->b_ml.ml_usedchunks--;
5712 if (curix < buf->b_ml.ml_usedchunks)
5713 {
5714 mch_memmove(buf->b_ml.ml_chunksize + curix,
5715 buf->b_ml.ml_chunksize + curix + 1,
5716 (buf->b_ml.ml_usedchunks - curix) *
5717 sizeof(chunksize_T));
5718 }
5719 return;
5720 }
5721 ml_upd_lastbuf = buf;
5722 ml_upd_lastline = line;
5723 ml_upd_lastcurline = curline;
5724 ml_upd_lastcurix = curix;
5725}
5726
5727/*
5728 * Find offset for line or line with offset.
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005729 * Find line with offset if "lnum" is 0; return remaining offset in offp
5730 * Find offset of line if "lnum" > 0
Bram Moolenaar071d4272004-06-13 20:20:40 +00005731 * return -1 if information is not available
5732 */
5733 long
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005734ml_find_line_or_offset(buf_T *buf, linenr_T lnum, long *offp)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005735{
5736 linenr_T curline;
5737 int curix;
5738 long size;
5739 bhdr_T *hp;
5740 DATA_BL *dp;
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005741 int count; // number of entries in block
Bram Moolenaar071d4272004-06-13 20:20:40 +00005742 int idx;
5743 int start_idx;
5744 int text_end;
5745 long offset;
5746 int len;
5747 int ffdos = (get_fileformat(buf) == EOL_DOS);
5748 int extra = 0;
5749
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005750 // take care of cached line first
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005751 ml_flush_line(curbuf);
5752
Bram Moolenaar071d4272004-06-13 20:20:40 +00005753 if (buf->b_ml.ml_usedchunks == -1
5754 || buf->b_ml.ml_chunksize == NULL
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005755 || lnum < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005756 return -1;
5757
5758 if (offp == NULL)
5759 offset = 0;
5760 else
5761 offset = *offp;
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005762 if (lnum == 0 && offset <= 0)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005763 return 1; // Not a "find offset" and offset 0 _must_ be in line 1
Bram Moolenaar071d4272004-06-13 20:20:40 +00005764 /*
5765 * Find the last chunk before the one containing our line. Last chunk is
Bram Moolenaar14c75302021-08-15 14:28:40 +02005766 * special because it will never qualify.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005767 */
5768 curline = 1;
5769 curix = size = 0;
5770 while (curix < buf->b_ml.ml_usedchunks - 1
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005771 && ((lnum != 0
5772 && lnum >= curline + buf->b_ml.ml_chunksize[curix].mlcs_numlines)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005773 || (offset != 0
5774 && offset > size + buf->b_ml.ml_chunksize[curix].mlcs_totalsize
5775 + ffdos * buf->b_ml.ml_chunksize[curix].mlcs_numlines)))
5776 {
5777 curline += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5778 size += buf->b_ml.ml_chunksize[curix].mlcs_totalsize;
5779 if (offset && ffdos)
5780 size += buf->b_ml.ml_chunksize[curix].mlcs_numlines;
5781 curix++;
5782 }
5783
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005784 while ((lnum != 0 && curline < lnum) || (offset != 0 && size < offset))
Bram Moolenaar071d4272004-06-13 20:20:40 +00005785 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005786#ifdef FEAT_PROP_POPUP
5787 size_t textprop_total = 0;
5788#endif
5789
Bram Moolenaar071d4272004-06-13 20:20:40 +00005790 if (curline > buf->b_ml.ml_line_count
5791 || (hp = ml_find_line(buf, curline, ML_FIND)) == NULL)
5792 return -1;
5793 dp = (DATA_BL *)(hp->bh_data);
5794 count = (long)(buf->b_ml.ml_locked_high) -
5795 (long)(buf->b_ml.ml_locked_low) + 1;
5796 start_idx = idx = curline - buf->b_ml.ml_locked_low;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005797 if (idx == 0) // first line in block, text at the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005798 text_end = dp->db_txt_end;
5799 else
5800 text_end = ((dp->db_index[idx - 1]) & DB_INDEX_MASK);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005801 // Compute index of last line to use in this MEMLINE
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005802 if (lnum != 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005803 {
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005804 if (curline + (count - idx) >= lnum)
5805 idx += lnum - curline - 1;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005806 else
5807 idx = count - 1;
5808 }
5809 else
5810 {
5811 extra = 0;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005812 for (;;)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005813 {
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005814#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005815 size_t textprop_size = 0;
5816
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005817 if (buf->b_has_textprop)
5818 {
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005819 char_u *l1, *l2;
5820
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005821 // compensate for the extra bytes taken by textprops
5822 l1 = (char_u *)dp + ((dp->db_index[idx]) & DB_INDEX_MASK);
5823 l2 = (char_u *)dp + (idx == 0 ? dp->db_txt_end
5824 : ((dp->db_index[idx - 1]) & DB_INDEX_MASK));
5825 textprop_size = (l2 - l1) - (STRLEN(l1) + 1);
5826 }
5827#endif
5828 if (!(offset >= size
5829 + text_end - (int)((dp->db_index[idx]) & DB_INDEX_MASK)
5830#ifdef FEAT_PROP_POPUP
Bram Moolenaar94b6fb72020-01-17 21:00:59 +01005831 - (long)(textprop_total + textprop_size)
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005832#endif
5833 + ffdos))
5834 break;
5835
Bram Moolenaar071d4272004-06-13 20:20:40 +00005836 if (ffdos)
5837 size++;
Bram Moolenaar9df53b62020-01-13 20:40:51 +01005838#ifdef FEAT_PROP_POPUP
5839 textprop_total += textprop_size;
5840#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00005841 if (idx == count - 1)
5842 {
5843 extra = 1;
5844 break;
5845 }
5846 idx++;
5847 }
5848 }
Bram Moolenaar05ad5ff2019-11-30 22:48:27 +01005849#ifdef FEAT_PROP_POPUP
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005850 if (buf->b_has_textprop && lnum != 0)
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005851 {
5852 int i;
5853
5854 // cannot use the db_index pointer, need to get the actual text
5855 // lengths.
5856 len = 0;
5857 for (i = start_idx; i <= idx; ++i)
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005858 {
5859 char_u *p = (char_u *)dp + ((dp->db_index[i]) & DB_INDEX_MASK);
5860 len += (int)STRLEN(p) + 1;
5861 }
Bram Moolenaarb413d2e2018-12-25 23:15:46 +01005862 }
5863 else
5864#endif
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005865 len = text_end - ((dp->db_index[idx]) & DB_INDEX_MASK)
5866#ifdef FEAT_PROP_POPUP
5867 - (long)textprop_total
5868#endif
5869 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005870 size += len;
5871 if (offset != 0 && size >= offset)
5872 {
5873 if (size + ffdos == offset)
5874 *offp = 0;
5875 else if (idx == start_idx)
5876 *offp = offset - size + len;
5877 else
5878 *offp = offset - size + len
Bram Moolenaar59ff6402021-01-30 17:16:28 +01005879 - (text_end - ((dp->db_index[idx - 1]) & DB_INDEX_MASK))
5880#ifdef FEAT_PROP_POPUP
5881 + (long)textprop_total
5882#endif
5883 ;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005884 curline += idx - start_idx + extra;
5885 if (curline > buf->b_ml.ml_line_count)
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005886 return -1; // exactly one byte beyond the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005887 return curline;
5888 }
5889 curline = buf->b_ml.ml_locked_high + 1;
5890 }
5891
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005892 if (lnum != 0)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005893 {
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005894 // Count extra CR characters.
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005895 if (ffdos)
Bram Moolenaar5313dcb2005-02-22 08:56:13 +00005896 size += lnum - 1;
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005897
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005898 // Don't count the last line break if 'noeol' and ('bin' or
5899 // 'nofixeol').
Bram Moolenaar34d72d42015-07-17 14:18:08 +02005900 if ((!buf->b_p_fixeol || buf->b_p_bin) && !buf->b_p_eol
Bram Moolenaarc26f7c62018-08-20 22:53:04 +02005901 && lnum > buf->b_ml.ml_line_count)
Bram Moolenaar5eb86f92004-07-26 12:53:41 +00005902 size -= ffdos + 1;
5903 }
5904
Bram Moolenaar071d4272004-06-13 20:20:40 +00005905 return size;
5906}
5907
5908/*
5909 * Goto byte in buffer with offset 'cnt'.
5910 */
5911 void
Bram Moolenaar52ea13d2016-01-30 18:51:09 +01005912goto_byte(long cnt)
Bram Moolenaar071d4272004-06-13 20:20:40 +00005913{
5914 long boff = cnt;
5915 linenr_T lnum;
5916
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005917 ml_flush_line(curbuf); // cached line may be dirty
Bram Moolenaar071d4272004-06-13 20:20:40 +00005918 setpcmark();
5919 if (boff)
5920 --boff;
5921 lnum = ml_find_line_or_offset(curbuf, (linenr_T)0, &boff);
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005922 if (lnum < 1) // past the end
Bram Moolenaar071d4272004-06-13 20:20:40 +00005923 {
5924 curwin->w_cursor.lnum = curbuf->b_ml.ml_line_count;
5925 curwin->w_curswant = MAXCOL;
5926 coladvance((colnr_T)MAXCOL);
5927 }
5928 else
5929 {
5930 curwin->w_cursor.lnum = lnum;
5931 curwin->w_cursor.col = (colnr_T)boff;
Bram Moolenaar943d2b52005-12-02 00:50:49 +00005932 curwin->w_cursor.coladd = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00005933 curwin->w_set_curswant = TRUE;
5934 }
5935 check_cursor();
5936
Bram Moolenaar4ba37b52019-12-04 21:57:43 +01005937 // Make sure the cursor is on the first byte of a multi-byte char.
Bram Moolenaar071d4272004-06-13 20:20:40 +00005938 if (has_mbyte)
5939 mb_adjust_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00005940}
5941#endif